@charset "UTF-8";
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

a:visited,
a:active {
  color: #1A1A1A;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/********************************************/
/*  ham_menu*/
/********************************************/
@media (min-width: 1024px) {
  #ham_menu_trigger,
  #ham_nav_wrapper {
    display: none;
  }
}
#fixed_main {
  padding-top: 0;
}

.header .ham_menu_trigger {
  position: fixed;
  top: 8px;
  right: 11px;
  width: 50px;
  height: 50px;
  z-index: 9999;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .ham_menu_trigger span {
  width: 28px;
  height: 2px;
  background: #1E2380;
  display: block;
}
.header .ham_menu_trigger span + span {
  margin-top: 8px;
}

.ham_menu_trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-315deg);
          transform: translateY(9px) rotate(-315deg);
}
.ham_menu_trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.ham_menu_trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10.5px) rotate(315deg);
          transform: translateY(-10.5px) rotate(315deg);
}

/*
.ham_menu_trigger.nogap {
  top: 0;
  right: 0;
}
.ham_menu_trigger.active span {
  &:nth-of-type(1) {
    transform: translateY(9px) rotate(-315deg);
  }
  &:nth-of-type(2) {
    opacity: 0;
  }
  &:nth-of-type(3) {
    transform: translateY(-9px) rotate(315deg);
  }

  @include breakpoint__min(device_tablet) {
    &:nth-of-type(1) {
      transform: translateY(10px) rotate(-315deg);
    }
    &:nth-of-type(2) {
      opacity: 0;
    }
    &:nth-of-type(3) {
      transform: translateY(-15px) rotate(315deg);
    }

  }
}
*/
/********************************************/
/*header > ham_nav_wrapper */
/********************************************/
.header .ham_nav_wrapper {
  position: fixed;
  padding: 45px 40px;
  top: 0;
  right: -150px;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: #1E2380;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9980;
}

@media (max-width: 768px) {
  .header .ham_nav_wrapper {
    padding: 45px 10%;
  }
}
@media (min-width: 1300px) {
  .header .ham_nav_wrapper {
    padding: 90px 80px;
    width: 52.6%;
  }
}
.header .ham_nav_wrapper.open {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.header .ham_main_nav {
  color: #FFF;
  /* font-size: clamp(1.8rem, 1.6vw, 2.5rem); */
  font-size: clamp(1.8rem, 1.9vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.header .ham_main_nav a {
  color: #FFF;
  /* font-size: clamp(1.8rem, 1.6vw, 2.5rem); */
  font-size: clamp(1.8rem, 1.9vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
}

.header .ham_main_nav a:hover {
  opacity: 0.5;
}

.header .ham_main_nav .nav_box {
  border-top: 1px solid #FFF;
}

.header .ham_main_nav .nav_box.nav01 {
  border-top: none;
}

.header .ham_main_nav .nav_box.nav01 ul {
  margin: 30px auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .ham_main_nav .nav_box.nav01 ul li {
  padding: 10px 15px;
  border-bottom: 1px solid #fff;
}
.header .ham_main_nav .nav_box.nav01 ul li:first-of-type {
  border-top: 1px solid #fff;
}
.header .ham_main_nav .nav_box.nav01 ul li.animate a {
  position: relative;
  -webkit-animation-name: txt_anime;
          animation-name: txt_anime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}

/*
.header .head_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  box-sizing: border-box;
  text-align: left;
//  opacity: 0;
//  visibility: hidden;
//  transform: translateX(150px);
//  transition: 0.3s;
//    &.open {
//      transform: translateX(0);
//      visibility: visible;
//      opacity: 1;
//    }
}


.header .main_nav {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: auto;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
//  @include syuei_gothic_bold();
  color: $white;
  @include breakpoint__min (device_ios) {
    margin-left: 0;
  }
  @include breakpoint__min (device_sp) {
    font-size: 1.8rem;
    justify-content: center;
    margin-left: auto;
  }
    .title {
      position: relative;
      display: inline-block;
      padding-bottom: 1.2em;
      font-size: 1em;
        a {
          position: relative;
          display: inline-block;
          padding-bottom: 5px;
          color: inherit;
          transition: all 0.3s;
            &::before {
              position: absolute;
              left: 0;
              bottom: 0;
              content: "";
              width: 0px;
              height: 2px;
              background-color: $white;
              transition: all 0.3s;
            }
            &:hover::before {
              width: 100%;
            }
        }
    }

    .nav_container {
      margin-bottom: 32px;
      font-size: 0.778em;
      border-left: 2px solid $white;
        li {
          margin-bottom: 15px;
          padding-left: 10px;
          @include breakpoint__min (device_600) {
            padding-left: 20px;
            padding-right: 67px;
          }
        }
        a {
          position: relative;
          display: inline-block;
          padding-bottom: 5px;
          color: inherit;
          transition: all 0.3s;
            &::before {
              position: absolute;
              left: 0;
              bottom: 0;
              content: "";
              width: 0px;
              height: 2px;
              background-color: $white;
              transition: all 0.3s;
            }
            &:hover::before {
              width: 100%;
            }
        }
    }
}

.header {
  .bg_green {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 0 0 20px;
//    background-color: $primary_dark;
      &.white {
        background-color: $white;
      }
    @include breakpoint__min(device_tablet) {
      height: 70vh;
      padding: 67px 0 0 87px;
    }
      .common_link_btn {
        display: flex;
        justify-content: right;
        max-width: 250px;
        width: 100%;
        margin-left: auto;
        @include breakpoint__min (device_sp) {
          max-width: 456px;
        }
          a {
            position: relative;
            display: block;
            padding: 15px 20px;
            width: 100%;
            transition: all 0.3s;
//            @include din2014_regular();
            @include breakpoint__min (device_sp) {
              padding: 25px 35px;
            }
              &::after {
                position: absolute;
                right: 20px;
                top: 50%;
                content: "";
                width: 12px;
                height: 12px;
                background: url("https://kk-sansin.for-development.com/sys/assets/img/ico/triangle-right.svg")no-repeat center / contain;
                transform: translateY(-50%);
                @include breakpoint__min (device_sp) {
                  right: 35px;
                }
              }
              &:hover {
                opacity: .7;
              }
              span {
                display: inline-block;
                font-size: 1.2rem;
//                @include syuei_gothic_bold();
                color: $white;
                @include breakpoint__min (device_sp) {
                  font-size: 1.4rem;
                }
              }
          }
      }
  }
}
*/
/********************************************/
/*header > nav */
/********************************************/
/*
.header .main_nav .nav_box {
  width: 48%;
  margin-right: 4%;
  &:nth-child(2n) {
    margin-right: 0;
  }
  @include breakpoint__min (device_600) {
    width: auto;
    margin-right: 0;
    &:nth-child(2n) {
      margin-right: auto;
    }
  }
}
*/
/********************************************/
/*header > entry_btn */
/********************************************/
/*
.header .header_recruit {
  position: fixed;
  bottom: 55px;
  right: 0;
  width: 250px;
  max-height: 80px;
  transform: translateX(185px);
  transition: transform ease 0.28s;
  z-index: 9999;
  @include breakpoint__min (device_sp) {
    transform: translateX(290px);
    width: 377px;
    top: 80px;
  }
    .en {
      position: relative;
      display: flex;
      align-items: center;
      background-color: $secondary;
      font-size: 1.2rem;
      padding: 20px 22px 20px 15px;
//      color: $primary_dark;
//      @include syuei_gothic_bold();
      transition: all 0.3s;
      @include breakpoint__min (device_sp) {
        padding: 20px 22px;
        font-size: 1.4rem;
      }
        &:hover {
          opacity: .7;
        }
        &::after {
          position: absolute;
          right: 20px;
          top: 50%;
          content: "";
          width: 12px;
          height: 12px;
          background: url("https://kk-sansin.for-development.com/sys/assets/img/ico/triangle-right.svg")no-repeat center / contain;
          transform: translateY(-50%);
          @include breakpoint__min (device_sp) {
            right: 30px;
          }
        }
      }
      .ja {
        padding-left: 13px;
        font-size: 1.6rem;
//        color: $primary_dark;
        letter-spacing: 0.06em;
        @include breakpoint__min (device_sp) {
          padding-left: 25px;
          font-size: 2.4rem;
        }
      }
}

.header .header_recruit.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
*/
/********************************************/
/*footer */
/********************************************/
/********************************************/
/*scroll_btn */
/********************************************/
.top_scroll {
  position: fixed;
  bottom: 15px;
  left: 0;
}

.top_scroll a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 769px) {
  .top_scroll {
    bottom: 30px;
  }
  .top_scroll a {
    padding: 25px;
  }
}
.top_scroll a:hover {
  opacity: 0.7;
}

/********************************************/
/*header */
/********************************************/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 140px;
  z-index: 9999;
}

@media (max-width: 1023px) {
  .header {
    position: absolute;
    height: 60px;
    z-index: 3;
  }
}
.header .head_wrapper {
  max-height: 124px;
}
@media (min-width: 821px) {
  .header .head_wrapper {
    padding-right: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .header .head_wrapper {
    padding-right: 30px;
  }
}

.header .logo {
  padding: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 330px;
  font-size: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 15px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 821px) {
  .header .logo {
    padding: 30px;
    width: 33.6%;
    max-width: 264px;
    border-radius: 0 0 20px 0;
  }
}
@media (min-width: 1024px) {
  .header .logo {
    padding: 40px;
    width: 42%;
    max-width: 330px;
    border-radius: 0 0 30px 0;
  }
}

.header .gnav_wrapper {
  display: none;
}
@media (min-width: 1024px) {
  .header .gnav_wrapper {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    display: block;
  }
}

.header .gnav_wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 12px;
}
@media (min-width: 1200px) {
  .header .gnav_wrapper ul {
    gap: 0 1.88vw;
  }
}

.header .gnav_wrapper ul li {
  position: relative;
}

.header .gnav_wrapper ul li a,
.header .gnav_wrapper ul li span {
  padding: 20px 0;
  color: #1A1A1A;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  cursor: pointer;
}

.header .gnav_wrapper ul li a:hover,
.header .gnav_wrapper ul li span:hover {
  color: #003A91;
}

.header .gnav_wrapper ul li span {
  padding-bottom: 48px;
}

.header .gnav_wrapper ul li ul.child {
  position: absolute;
  content: "";
  top: 48px;
  left: 0;
  padding: 24px 26px;
  width: 295px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid #003A91;
  border-radius: 10px;
  gap: 10px 0;
  background: #FFF;
  display: none;
  opacity: 0;
}

.header .gnav_wrapper ul li ul.child.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.header .gnav_wrapper ul li ul.child li {
  line-height: 1;
}

/********************************************/
/*header > nav */
/********************************************/
.header .main_nav .nav_box {
  width: 48%;
  margin-right: 4%;
}

.header .main_nav .nav_box:nth-child(2n) {
  margin-right: 0;
}

@media (min-width: 600px) {
  .header .main_nav .nav_box {
    width: 24%;
    margin-right: 1.3333%;
  }
  .header .main_nav .nav_box:nth-child(4n) {
    margin-right: 0;
  }
}
/********************************************/
/*header > entry_btn */
/********************************************/
.header .header_recruit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform ease 0.28s;
  transition: -webkit-transform ease 0.28s;
  transition: transform ease 0.28s;
  transition: transform ease 0.28s, -webkit-transform ease 0.28s;
  z-index: 9999;
}

@media (min-width: 1024px) {
  .header .header_recruit {
    -webkit-transform: translateX(297px);
            transform: translateX(297px);
    width: 377px;
  }
}
.header .header_recruit .en {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  padding: 20px 22px 20px 15px;
  color: #FFF;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 769px) {
  .header .header_recruit .en {
    padding: 20px 10px;
    font-size: 1.4rem;
  }
}
.header .header_recruit .en:hover {
  opacity: 0.7;
}

.header .header_recruit .en .add_text {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header .header_recruit.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.header .header_recruit.open .en .add_text {
  opacity: 1;
  visibility: visible;
}

/********************************************/
/*footer */
/********************************************/
.footer .f_contact {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
}
@media (min-width: 769px) {
  .footer .f_contact {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.f_contact_inner h2.ttl {
  margin: 0 auto 50px;
}
.f_contact_inner .catch {
  position: relative;
  margin: 0 auto 34px;
  padding: 22px 0 22px 88px;
  max-width: 450px;
  border: 2px dashed #484C92;
}
@media (min-width: 769px) {
  .f_contact_inner .catch {
    padding: 22px 0 22px 124px;
  }
}
.f_contact_inner .catch::before {
  position: absolute;
  content: "";
  width: 84px;
  height: 106px;
  top: -34px;
  left: 10px;
  background: url(../img/common/osaka.svg) no-repeat 0 0/contain;
}
@media (min-width: 769px) {
  .f_contact_inner .catch::before {
    left: 19px;
  }
}
.f_contact_inner .catch p {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (min-width: 769px) {
  .f_contact_inner .catch p {
    letter-spacing: 0.1em;
  }
}
.f_contact_inner .txt_base {
  margin-bottom: 60px;
}
.f_contact_inner .txt_base p {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  line-height: 1.8;
}
@media (min-width: 769px) {
  .f_contact_inner .txt_base p {
    text-align: center;
  }
}
.f_contact_inner .tel_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 70px;
}
@media (max-width: 768px) {
  .f_contact_inner .tel_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px 0;
  }
}
.f_contact_inner .tel_wrap .telbox {
  width: 100%;
  max-width: 386px;
}
.f_contact_inner .tel_wrap .telbox .tel {
  color: #1E2380;
  font-size: clamp(3rem, 2.6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .f_contact_inner .tel_wrap .telbox .tel {
    text-align: center;
  }
}
.f_contact_inner .tel_wrap .telbox .tel span {
  font-size: clamp(4.2rem, 3.77vw, 5rem);
}
.f_contact_inner .tel_wrap .telbox .time {
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}
.f_contact_inner .tel_wrap .btn {
  width: 360px;
}
.f_contact_inner .tel_wrap .btn a {
  width: 360px;
  height: 77px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  background: #1E2380;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer_wrapper {
  padding: 60px 20px 40px;
  background: #535353;
}

/*
@media (min-width: 1024px) {
  .footer_wrapper {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .footer_wrapper {
    flex-direction: column-reverse;
    gap: 60px 0;
  }
}
*/
.footer_wrapper .main_width {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .footer_wrapper .main_width {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px 0;
  }
}
.footer_wrapper .main_width .f_logo {
  width: 250px;
}
@media (max-width: 768px) {
  .footer_wrapper .main_width .f_logo {
    margin: 0 auto;
  }
}
.footer_wrapper .main_width .f_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 20px;
}
@media (max-width: 820px) {
  .footer_wrapper .main_width .f_nav ul {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 20px;
  }
}
@media (max-width: 768px) {
  .footer_wrapper .main_width .f_nav ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .footer_wrapper .main_width .f_nav ul li {
    width: 46%;
  }
}
.footer_wrapper .main_width .f_nav ul a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.footer_wrapper .copyright {
  padding-top: 40px;
}
.footer_wrapper .copyright.main_width {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer_wrapper .copyright p {
  color: #fff;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (max-width: 768px) {
  .footer_wrapper .copyright p {
    font-size: 1.2rem;
    text-align: center;
  }
}

/********************************************/
/*breadcrumb */
/********************************************/
.breadcrumb .breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.breadcrumb .breadcrumb__list .breadcrumb__item {
  color: #1E2380;
  font-weight: 500;
}
.breadcrumb .breadcrumb__list .breadcrumb__item a {
  color: #B8B8B8;
  font-weight: 500;
}
.breadcrumb .breadcrumb__list .breadcrumb__item::after {
  content: "ー";
  margin-left: 10px;
  color: #B8B8B8;
}
.breadcrumb .breadcrumb__list .breadcrumb__item:last-child::after {
  content: none;
}

