@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  max-width: 1920px;
  margin: 0 auto;
  color: #333;
}

.textJp {
  font-family: 'Noto Serif JP', serif;
}

.textEn {
  font-family: 'Secular One', sans-serif;
}

.element {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


/* common */
.contentsEachTitle {
  color: #051c31;
  display: flex;
  flex-direction: column;
}

.contentsEachTitleEn {
  font-size: 64px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 10px;
}

.contentsEachTitle h2 {
  font-size: 18px;
  font-weight: 700;
  text-align: right;
  position: relative;
  line-height: 1em;
}

.contentsEachTitle h2:before {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  background-color: #051c31;
}

.contentsEachTitle h2 span {
  position: relative;
  background: #fff;
  padding: 5px 0 5px 10px;
}

.contentsEachTitleBlack h2 span {
  background: none !important;
}

.contentsEachTitleBlack {
  color: #000;
}

.contentsEachTitleBlack h2:before {
  background: #000;
  width: 120px;
}

.contentsEachTitleWhite h2 span {
  background: none !important;
}

.contentsEachTitleWhite {
  color: #fff;
}

.contentsEachTitleWhite h2:before {
  background-color: #fff;
  width: 200px;
}


/* header */
.header {
  display: flex;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.headerMenu {
  display: flex;
  align-items: center;
  padding: 0 5px 0 0;
}

.headerMenu li {
  border-right: 1px solid #051C31;
}

.headerMenu li:first-child {
  border-left: 1px solid #051C31;
}

.headerMenu a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  display: block;
  width: 138px;
  text-align: center;
  padding: 5px 0;
  line-height: 1em;
  transition: 0.5s;
}

.headerMenu a:hover {
  opacity: 0.5;
  transition: 0.5s;
}


/* mainVisual */
.mainVisual {
  background-image: url(../images/mainVisualBg.jpg);
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
}

.mainVisualTitle {
  width: 100%;
  max-width: 1150px;
  margin: -125px auto 0 auto;
  padding: 0 10px;
  color: #fff;
  font-size: 52px;
  line-height: 1.5em;
  font-weight: 500;
}


/* catchcopy */
.catchcopy {
  width: 100%;
  max-width: 1150px;
  margin: 80px auto;
}

.catchcopyText {
  font-size: 35px;
  text-align: center;
  line-height: 2em;
  font-weight: 700;
  margin: 0 0 50px 0;
}

.catchcopyText span {
  border-bottom: 2px solid #051c31;
}

.catchcopyInfoText {
  font-size: 16px;
  text-align: center;
  line-height: 2.5em;
}


/* service */
.serviceBox {
  margin-left: 10%;
  background: #dadde0;
  padding: 50px 0 0 0;
  position: relative;
  overflow: hidden;
}

.serviceBox:before {
  content: "SERVICE";
  color: rgba(255, 255, 255, 0.5);
  font-size: 300px;
  position: absolute;
  top: -40px;
  left: -30px;
  line-height: 1;
  font-family: 'Secular One', sans-serif;
  font-weight: 600;
}

.serviceInBox {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.serviceTitleBox {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0 80px 0;
}

.serviceTitleRight {
  padding-left: 50px;
  line-height: 1.7em;
  font-size: 18px;
}

.serviceEach {
  margin: 50px 0;
  border: 1px solid #051c31;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px 15px;
  color: #051c31;
}
.serviceEach:not(:first-of-type){ margin-top: 2rem; }

.serviceEachTitleCopy {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7em;
}

.serviceEachTitle {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.7em;
}

.serviceEachExplanation {
  padding-top: 5px;
  font-size: 16px;
  line-height: 1.7em;
}

.serviceEachLinkBt {
  font-size: 18px;
  margin-top: 50px;
}

.serviceEachLinkBt a {
  padding: 15px 50px;
  border: 1px solid #051c31;
  font-weight: bold;
  line-height: 1.7em;
  transition: 0.5s;
  position: relative;
}

.serviceEachLinkBt a:after {
  width: 50px;
  height: 1px;
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  background: #051c31;
  margin-top: -0.5px;
}

.serviceEachLinkBt a:hover {
  background: #051c31;
  color: #fff;
  transition: 0.5s;
}

.serviceImage {
  text-align: center;
  line-height: 0;
  padding: 50px 0 0 0;
  max-width: 750px;
  margin: 0 auto;
}

.serviceImage img {
  width: 100%;
}

/* */
.company {
  margin: 80px 0 0 0;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.companyBox {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px 50px 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 101;
}

.company:before {
  content: "COMPANY";
  color: rgba(0, 0, 0, 0.07);
  font-size: 300px;
  position: absolute;
  bottom: -65px;
  line-height: 1;
  font-family: 'Secular One', sans-serif;
  font-weight: 600;
  z-index: 99;
  left: 50%;
  -webkit-transform : translateX(-50%);
  transform : translateX(-50%);
  letter-spacing: -10px;
}

.companyTable {
  margin: 50px 0;
}

.companyTable table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7em;
}

.companyTable tr {
  border-bottom: 1px solid #051c31;
}

.companyTable tr:first-child {
  border-top: 1px solid #051c31;
}

.companyTable th {
  width: 250px;
  text-align: left;
  vertical-align: middle;
  padding: 20px 10px 20px 70px;
  font-weight: bold;
}

.companyTable td {
  padding: 20px 15px;
}

.companyTable td span {
  padding-top: 1.7em;
  display: block;
}

.companyTable span:first-child {
  padding-top: 0;
}

.companyTable td span:before {
  content: "■";
  margin-right: 5px;
}

.companyMapbt {
  font-size: 12px;
  background: #dadde0;
  color: #333;
  text-decoration: none;
  padding: 5px 10px;
  transition: 0.5s;
}

.companyMapbt:hover {
  background: #051c31;
  color: #fff;
}

.companyGroupbt {
  text-decoration: underline;
  color: #333;
  margin-left: 15px;
  transition: 0.5s;
}

.companyGroupbt:hover {
  opacity: 0.5;
}


/*groupIntroduction*/
.groupIntroduction {
  background: #051c31;
  padding: 0 0 50px 0;
}

.groupIntroductionTitle {
  color: #fff;
  text-align: center;
  font-size: 36px;
  line-height: 1.7em;
  font-weight: 700;
  padding: 50px 10px 20px 10px;
}

.groupIntroductionImage {
  max-width: 1150px;
  margin: 0 auto;
  background: #fff;
  padding: 15px;
  text-align: center;
}

.groupIntroductionImage img {
  width: 100%;
}


/* recruit */
.recruit {
  margin: 80px 0 0 0;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.recruitBox {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px 50px 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 101;
  background-image: url(../images/recruitBg.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 52% auto;
  position: relative;
}

.recruitBox:after {
  content: "";
  width: 270px;
  height: 160px;
  background-color: #fff;
  position: absolute;
  right: 365px;
  bottom: 250px;
  z-index: 100;
}

.recruit:before {
  content: "RECRUIT";
  color: rgba(0, 0, 0, 0.07);
  font-size: 300px;
  position: absolute;
  bottom: -65px;
  line-height: 1;
  font-family: 'Secular One', sans-serif;
  font-weight: 600;
  z-index: 99;
  left: 50%;
  -webkit-transform : translateX(-50%);
  transform : translateX(-50%);
  letter-spacing: 10px;
}

.recruitContents {
  margin: 50px 0 30px 0;
  position: relative;
  z-index: 500;
}

.recruitContentsText {
  font-size: 18px;
  line-height: 1.7em;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}

.recruitContentsText span {
  font-weight: bold;
  color: #051c31;
  padding: 15px 0 0 0;
  display: block;
}

.recruitContentsText span:before {
  content: "■";
  margin-right: 3px;
}

.recruitInfoText {
  font-size: 14px;
  line-height: 1.7em;
  margin: 15px 0;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
}

.recruitInfoText a {
  text-decoration: underline;
  transition: 0.5s;
}

.recruitInfoText a:hover {
  opacity: 0.5;
}


/* contact */
.contact {
  margin: 0;
  position: relative;
  z-index: 100;
  overflow: hidden;
  background-color: #555;
  background-image: url(../images/contactBg.jpg);
  background-size: cover;
  background-position: center bottom;
}

.contactBox {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 70px 5px 70px 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contactBox > .contentsEachTitle {
  width: 300px;
  padding-right: 10px;
}

.contactTelBox {
  width: 100%;
  max-width: 370px;
  height: 150px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin: 0 10px;
}

.contactTelTitle {
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.7em;
  position: absolute;
  top: -15px;
  width: 100%;
}

.contactTelTitle:before {
  width: 125px;
  height: 1px;
  border-top: 1px solid #fff;
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
}

.contactTelTitle:after {
  width: 125px;
  height: 1px;
  border-top: 1px solid #fff;
  content: "";
  position: absolute;
  right: 0;
  top: 15px;
}

.contactTelText a {
  color: #fff;
  text-align: center;
  font-size: 43px;
  letter-spacing: -1px;
  line-height: 1.7em;
  transition: 0.5s;
}

.contactTelText a:hover {
  opacity: 0.5;
}

.contactMailBox {
  width: 100%;
  max-width: 370px;
  height: 150px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin: 0 10px;
}

.contactMailTitle {
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.7em;
  position: absolute;
  top: -15px;
  width: 100%;
}

.contactMailTitle:before {
  width: 110px;
  height: 1px;
  border-top: 1px solid #fff;
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
}

.contactMailTitle:after {
  width: 110px;
  height: 1px;
  border-top: 1px solid #fff;
  content: "";
  position: absolute;
  right: 0;
  top: 15px;
}

.contactMailText {
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 1.7em;
}

.contactMailBt {
  text-align: center;
  font-size: 18px;
  line-height: 1.7em;
  margin: 5px 0 0 0;
}

.contactMailBt a {
  padding: 10px 10px;
  width: 280px;
  display: block;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.5s;
  font-weight: bold;
  color: #051c31;
}

.contactMailBt a:hover {
  opacity: 0.5;
}

.contactMailBt span:before {
  margin-right: 20px;
  content: "";
  width: 25px;
  height: 20px;
  display: inline-block;
  background: url(../images/mail.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}


/* footer */
.footer {

}

.footer p {
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.7em;
  background: #051c31;
  padding: 15px 0;
}


/* top */
.totop {
  position: fixed;
  z-index: 1000;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
}

.totop:hover {
  opacity: 0.5;
}

.totop img {
  width: 50px;
}

@media screen and (max-width: 959px) {
  /* sp */
  .contentsEachTitleEn {
    font-size: 48px;
    margin-bottom: 0;
  }

  .contentsEachTitleBlack h2:before {
    width: 60px;
  }

  .contentsEachTitleWhite h2:before {
    width: 125px;
  }

  .headerMenu {
    display: none;
    width: 100%;
  }

  .headerMenu li {
    border-right: 0;
    border-bottom: 1px solid #051C31;
  }

  .headerMenu li:first-child {
    border-left: 0;
    border-top: 1px solid #051C31;
  }

  .headerMenu a {
    padding: 15px 0;
    text-align: left;
    width: auto;
  }

  .headerMenu.active {
    display: block;
    position: fixed;
    top: 71px;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 15px;
  }

  #spMenuBt {
    display: block;
    margin: 0 10px 0 auto;
    padding: 0 0 0 10px;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 36px;
    height: 30px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #051C31;
    border-radius: 4px;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 13px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(13px) rotate(-45deg);
  }

  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-13px) rotate(45deg);
  }



  .mainVisual {
    height: 300px;
  }

  .mainVisualTitle {
    font-size: 26px;
    letter-spacing: -1px;
  }

  .catchcopy {
    margin-top: 50px;
  }

  .catchcopyText {
    font-size: 26px;
    line-height: 1.7em;
    margin-bottom: 30px;
    box-sizing: border-box;
    padding: 0 10px;
  }

  .catchcopyInfoText {
    font-size: 14px;
    box-sizing: border-box;
    padding: 0 10px;
  }

  .serviceBox {
    margin-left: 5%;
    padding-top: 30px;
  }

  .serviceBox:before {
    font-size: 125px;
    top: -20px;
    left: -15px;
    font-weight: unset;
  }

  .serviceInBox {
    padding: 0 10px;
  }

  .serviceTitleBox {
    flex-wrap: wrap;
    margin-bottom: 30px;
    flex-direction: column;
  }

  .serviceTitleRight {
    padding-left: 0;
    padding-top: 10px;
    font-size: 14px;
  }

  .serviceEach {
    padding: 30px 10px;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .serviceEachTitleCopy {
    font-size: 14px;
  }

  .serviceEachTitle {
    font-size: 26px;
    line-height: 1.5em;
  }

  .serviceEachExplanation {
    font-size: 12px;
  }

  .serviceEachLinkBt {
    font-size: 14px;
    margin-top: 30px;
  }

  .serviceEachLinkBt a {
    padding: 10px 30px;
  }

  .serviceImage {
    max-width: 600px;
  }

  .companyTable {
    margin: 30px 0;
  }

  .companyTable table {
    font-size: 14px;
  }

  .companyTable th {
    display: block;
    width: auto;
    padding: 10px 0 5px 0;
    font-size: 14px;
  }

  .companyTable td {
    display: block;
    font-size: 14px;
    padding: 0 0 10px 0;
    line-height: 1.7em;
  }

  .company:before {
    font-size: 125px;
    bottom: -30px;
    font-weight: unset;
  }

  .groupIntroduction {
    padding-bottom: 30px;
  }

  .groupIntroductionTitle {
    font-size: 22px;
    padding-top: 30px;
  }

  .groupIntroductionImage {
    padding: 10px 0;
    margin: 0 10px;
  }

  .recruitBox {
    background: none;
  }

  .recruit:before {
    font-size: 125px;
    bottom: -30px;
    letter-spacing: -5px;
    font-weight: unset;
  }

  .recruitBox:after {
    display: none;
  }

  .recruitContents {
    margin-top: 30px;
  }

  .recruitContentsText {
    font-size: 14px;
  }

  .recruitInfoText {
    font-size: 12px;
  }

  .recruitImage {
    text-align: center;
    padding: 30px 50px 0 50px;
  }

  .recruitImage img {
    width: 100%;
    max-width: 600px;
  }

  .contactBox {
    padding: 40px 20px;
    flex-direction: column;
  }

  .contactTelBox {
    width: 100%;
    box-sizing: border-box;
    height: 125px;
    margin: 40px auto 0 auto;
  }

  .contactTelText a {
    font-size: 36px;
  }

  .contactMailBox {
    width: 100%;
    box-sizing: border-box;
    height: 125px;
    margin: 40px auto 0 auto;
  }

  .contactMailText {
    font-size: 14px;
  }

  .contactMailBt {
    font-size: 14px;
  }

  .contactMailBt a {
    padding: 5px 0;
    width: 250px;
  }

  .contactTelTitle:before {
    width: 125px;
  }

  .contactTelTitle:after {
    width: 125px;
  }

  .contactMailTitle:before {
    width: 100px;
  }

  .contactMailTitle:after {
    width: 100px;
  }

  .footer p {
    padding: 15px 15px 75px 15px;
  }

  .totop {
    right: 15px;
    bottom: 15px;
  }

}

@media screen and (min-width: 960px) {
  /* pc */
  .sponly {
    display: none;
  }
}

@media screen and (min-width: 960px) and (max-width: 1084px) {
  .recruitBox:after {
    height: 305px;
  }
}

/* logo */
.headerLogo {
  padding: 0 5px 0 5px;
  line-height: 1;
  max-width: 350px;
  width: calc( 100% - 590px );
}

.headerLogo img {
  max-width: 100%;
  width: auto;
}

.headerLogo > a{
  display: flex;
  align-items: center;
}
.headerLogo > a > *{
  font-size: 0;
  line-height: 1;
}
.headerLogo > a > p:first-of-type{ width: 15%; }
.headerLogo > a > p:nth-of-type(2){ width: 45%; }
.headerLogo > a > div{
  margin: 0px 10px 0 6px;
  width: 30%;
}

.headerLogo > a > div > p:nth-of-type(2){
  border-top: 1px solid #000000;
  padding-top: 1px;
}

@media screen and (min-width: 960px) {
  .headerLogo {
    max-width: 500px;
    width: calc( 100% - 590px );
  }
}
@media screen and (max-width: 959px) {
  .headerLogo {
    width: calc( 100% - 46px );
    max-width: 350px;
  }

  .headerLogo img {
    height: auto;
    width: 100%;
  }
}

/* ------------------------------------------------------
休業のお知らせ（夏季、年末）
------------------------------------------------------ */
#holiday{
  border: 4px solid #cccccc;
  margin: 0 auto 80px;
  padding: 1.5rem 1rem;
  width: 96%;
}
@media screen and (min-width: 960px) {
  #holiday{ max-width: 980px; }
}
@media screen and (max-width: 959px) {
  #holiday{ max-width: 820px; }
}

#holiday .ib{ display: inline-block; }

#holiday > div{ width: 100% }

#holiday > div p{
  line-height: 1.4;
  text-align: center;
}
#holiday > div p:not(:first-of-type){
  margin-top: 1rem;
}
#holiday > div p.holiday_title{
  font-size: 120%;
  font-weight: bold;
}

#holiday > div p.holiday_period{
  border: 1px solid #000000;
  margin: 1rem auto 0;
  padding: 1rem;
  width: 100%;
  max-width: 520px;
}

#holiday > div .color01{ color: #08276c; }
#holiday > div .font-weight01{ font-weight: bold; }
