@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap");
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?e4vfqk");
  src: url("../fonts/icomoon.eot?e4vfqk#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?e4vfqk") format("truetype"), url("../fonts/icomoon.woff?e4vfqk") format("woff"), url("../fonts/icomoon.svg?e4vfqk#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-phone:before {
  content: "\e942";
}

.icon-right1:before {
  content: "\e905";
}

/*矢印*/
.icon-right2:before {
  content: "\ea3c";
}

.icon-down:before {
  content: "\e90b";
}

.icon-close:before {
  content: "\e90a";
}

.icon-free:before {
  content: "\e900";
}

.icon-mail:before {
  content: "\e901";
}

/* ==================================================
	header
================================================== */
.header {
  padding-top: 20px;
  position: relative;
  color: #000000;
  box-sizing: border-box;
  z-index: 10;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .header {
    width: 100%;
    position: fixed;
    top: 0 !important;
    z-index: 999;
    background: #fff;
    padding: 10px;
    height: 60px;
    display: flex;
    align-items: center;
  }
}
/* ========== end △ */
.header .header_inner {
  width: 100%;
}
.header .header_top {
  width: 100%;
  padding: 1% 10%;
  background: #fff;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .header .header_top {
    width: 100%;
    margin: 0;
    padding: 0 5px;
    justify-content: space-between;
    align-items: center;
  }
}
/* ========== end △ */
.header .header_top .header_logo {
  width: 300px;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .header .header_top .header_logo {
    width: 70%;
    max-width: 400px;
  }
}
/* ========== end △ */
.header .header_top .header_kiyaku {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .header_top .header_kiyaku a {
  position: relative;
}
.header .header_top .header_kiyaku a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 8px solid #005CA6;
}
.header .header_top .header_kiyaku .pmark {
  width: 50px;
  margin-left: -20px;
}

/* ==================================================
	gnav
================================================== 
#gnav{
  background: $blue;
  width: 100%;
  margin: 0 auto;
  @include media(sp-tb){
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    overflow-y: auto;
    padding-bottom: 100px;
    background: none;
    display: none;
    width: 100%;
  }

  a{
    transition: none !important;
  }
}


.nav_menu {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  @include media(sp-tb) {
    flex-wrap: wrap;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    background-color: transparent;
    &.active{
      padding-top: 60px !important;
    }
  }
  &.active {
    transform: translateY(0%);
    
  }

  .nav_menu__item {
    position: relative;
    line-height: 1;
    flex-grow: 1;
    @include media(sp-tb) {
      width: 100%;
      background: $blue;
      border-bottom: 1px solid rgba($white, 0.4);
      flex-grow: 1;
    }

    a {
      display: block;
      padding: 20px 0;
      text-decoration: none !important;
      text-align: center;
      color: $white;
      font-size: 1.6rem;
      font-weight: bold;
      @include media(sp-tb) {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        font-size: 1.4rem;
        &.nav_menu__drop {
          &::after {
            content: "";
            display: block;
            position: absolute;
            width: 8px;
            height: 8px;
            border-top: $white 2px solid;
            border-right: $white 2px solid;
            transform: rotate(135deg);
            position: absolute;
            right: 4%;
            top: 21px;
          }
        }
      }


      span {
        display: block;
      }


      &:hover {
        @include media(pc) {
          background: $lightblue;
          opacity: 1;
          color: $blue;
        }
      }

    }

    @include media(pc) {
      &:hover .sub_menu {
        z-index: 999;
        width: 100%;
        
        .sub_menu__item {
          overflow: hidden;
          height: auto;
          background: rgba($white, 0.9);
          &:nth-child(1) a{
            padding-top: 10px;
          }
          &:nth-child(3) a{
            padding-bottom: 10px;
          }
        }
        a{
          padding: 5px;
          color: $blue;
          position: relative;
          font-size: 1.4rem;
          &:hover{
            background: none;
            opacity: 0.7;
          }
        }
      }
    }

    .sub_menu {
      display: none;

      @include media(pc) {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        position: absolute;
      }

      .sub_menu__item {
        @include media(pc) {
          overflow: hidden;
          height: 0;
          transition: .2s;
        }
        @include media(sp) {
          border-top: 1px dashed #ccc;
        }
      }
    }
  }

  .current a{
    background: $lightblue;
    color: $blue;
  }

}*/
/* ==================================================
	カスタムメニュー
================================================== */

#gnav {
  background: #005CA6;
  width: 100%;
  margin: 0 auto;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  #gnav {
    position: fixed;
    z-index: 998;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    overflow-y: auto;
    padding-bottom: 100px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  #gnav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
/* ========== end △ */
#gnav a {
  transition: none !important;
}

/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .menu-global-container {
    width: 100%;
  }
}
/* ========== end △ */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 1024px) {
  .fixed {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    box-shadow: 0 0 8px gray;
  }
}
/* ========== end △ */
#menu-global {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  width: 80%;
  margin: 0 auto;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  #menu-global {
    flex-wrap: wrap;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    background-color: transparent;
    pointer-events: auto;
    position: relative;
    z-index: 999;
  }
  #menu-global.active {
    transform: translateY(0);
    padding-top: 60px !important;
  }
}
/* ========== end △ */
#menu-global.active {
  transform: translateY(0%);
}
#menu-global li {
  position: relative;
  line-height: 1;
  flex-grow: 1;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  #menu-global li {
    width: 100%;
    background: #005CA6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    flex-grow: 1;
  }
}
/* ========== end △ */
#menu-global li a {
  display: block;
  padding: 15px 0;
  text-decoration: none !important;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  #menu-global li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    font-size: 1.4rem;
  }
}
/* ========== end △ */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 1024px) {
  #menu-global li a:hover {
    background: #BDE2FF;
    opacity: 1;
    color: #005CA6;
  }
}
/* ========== end △ */
#menu-global li.current_page_item > a, #menu-global li.current-menu-parent > a {
  background: #BDE2FF;
  color: #005CA6;
}
#menu-global li.current_page_item:after, #menu-global li.current-menu-parent:after {
  border-color: #005CA6;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 1024px) {
  #menu-global > li:nth-last-child(-n+2) {
    display: none;
  }
}
/* ========== end △ */
#menu-global li#menu-item-82 a {
  background: none;
  color: #fff;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 1024px) {
  #menu-global li#menu-item-82 a:hover {
    background: #BDE2FF;
    opacity: 1;
    color: #005CA6;
  }
}
/* ========== end △ */
#menu-global .menu-item-has-children {
  position: relative;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 1024px) {
  #menu-global .menu-item-has-children:hover .sub-menu {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    position: absolute;
    width: 100%;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.9);
  }
  #menu-global .menu-item-has-children:hover .sub-menu a {
    color: #005CA6;
    padding: 10px 0;
    font-size: 1.4rem;
    background: inherit !important;
  }
  #menu-global .menu-item-has-children:hover .sub-menu a:hover {
    opacity: 0.7 !important;
  }
}
/* ========== end △ */
#menu-global .menu-item-has-children .sub-menu {
  display: none;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  #menu-global .menu-item-has-children:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    transform: rotate(135deg);
    position: absolute;
    right: 4%;
    top: 21px;
  }
  #menu-global .menu-item-has-children .sub-menu li {
    border: none;
    border-top: 1px dotted #fff;
    background: #004073;
  }
  #menu-global .menu-item-has-children .sub-menu a {
    background: inherit !important;
    color: #fff;
  }
}
/* ========== end △ */
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .hamburger {
    display: block;
    position: absolute;
    z-index: 3;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-align: center;
    background: #005CA6;
  }
  .hamburger::after {
    content: "MENU";
    font-size: 1rem;
    display: block;
    position: absolute;
    bottom: 7px;
    left: 5px;
    color: #fff;
    width: 40px;
    height: 10px;
  }
  .hamburger.active::after {
    content: "CLOSE";
    display: block;
    position: absolute;
    left: 5px;
    color: #fff;
    width: 40px;
    height: 10px;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 10px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 8px;
  }

  .hamburger span:nth-child(2) {
    top: 18px;
  }

  .hamburger span:nth-child(3) {
    top: 28px;
  }

  .hamburger.active span:nth-child(1) {
    top: 20px;
    left: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/* ========== end △ */
.body-fixed {
  position: fixed;
  width: 100%;
}

/* ==================================================
footer
================================================== */
.footer {
  background: #a8a8ac;
  color: #fff;
  padding: 50px 0;
  margin-top: 120px;
}
.footer-inner {
  display: flex;
  align-items: center;
  width: 95%;
}
.footer-cont {
  width: 330px;
}
.footer-logo {
  display: block;
}
.footer-adress {
  margin-top: 20px;
}
.footer-copy {
  margin-top: 50px;
  font-size: 1.2rem;
}
.footer-privacy {
  width: 80px;
  margin-left: 20px;
}
.footer-menu {
  width: calc(100% - 460px);
  margin-left: auto;
}
.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
.footer-menu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .footer-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-menu {
    width: 100%;
    margin-top: 50px;
  }
  .footer-menu ul {
    justify-content: center;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .footer {
    margin-top: 80px;
  }
  .footer-inner {
    display: block;
    text-align: center;
  }
  .footer-cont {
    width: 100%;
  }
  .footer-logo {
    width: 250px;
    margin: 0 auto;
  }
  .footer-menu {
    margin-top: 20px;
  }
  .footer-menu ul {
    display: block;
  }
  .footer-privacy {
    width: auto;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-privacy img {
    width: 60px;
    height: 100%;
  }
  .footer-copy {
    width: calc(100% - 60px);
    font-size: 1.0rem;
    margin-top: 0;
  }
}
/* ========== end △ */
/* ==================================================
	basic layout
================================================== */
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #000000;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', "Helvetica", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  #wrapper {
    font-size: 1.4rem;
    overflow: hidden;
  }
}
/* ========== end △ */
/* ==================================================
	共通 追加
================================================== */
img {
  width: 100%;
  vertical-align: bottom;
}

* {
  box-sizing: border-box;
}

a {
  transition: all 0.3s ease;
  vertical-align: baseline;
}

a.disabled {
  pointer-events: none;
}

.fitimg {
  width: 100%;
  object-fit: cover;
}

.btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  position: relative;
}

.btn {
  width: 200px;
  padding: 15px;
  color: #005CA6;
  border: 1px solid #005CA6;
  text-align: center;
  border-radius: 7px;
  font-weight: bold;
  display: block;
  position: relative;
}
.btn span {
  position: absolute;
  top: 20px;
  right: 10px;
  font-size: 1.4rem;
}
.btn:hover {
  background: #005CA6;
  color: #fff;
  opacity: 1;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .btn {
    padding: 10px;
  }
  .btn span {
    top: 14px;
    font-size: 1.2rem;
  }
}
/* ========== end △ */
a.scroll {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  a.scroll {
    padding-top: 50px;
    margin-top: -50px;
  }
}
/* ========== end △ */
.indent_wrap p, .indent_wrap li {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 5px;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.indent_ml20 {
  margin-left: 20px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .indent_ml20 {
    margin-left: 10px;
  }
}
/* ========== end △ */
/* サイズ
-------------------------------------------------- */
.w90 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.w900 {
  width: 900px;
  margin: 0 auto;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .w900 {
    width: 90%;
  }
}
/* ========== end △ */
.font30 {
  font-size: 3.0rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .font30 {
    font-size: 2.4rem;
  }
}
/* ========== end △ */
.font24 {
  font-size: 2.4rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .font24 {
    font-size: 2.0rem;
  }
}
/* ========== end △ */
.font20 {
  font-size: 2.0rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .font20 {
    font-size: 1.8rem;
  }
}
/* ========== end △ */
.font14 {
  font-size: 1.4rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .font14 {
    font-size: 1.2rem;
  }
}
/* ========== end △ */
.font12 {
  font-size: 1.2rem;
}

.sans {
  font-family: 'Noto Sans JP', sans-serif;
}

/* カラー
-------------------------------------------------- */
.pink {
  color: #fe4e8c;
}

.red {
  color: #cf1126;
}

.blue {
  color: #005CA6;
}

.lightblue {
  color: #BDE2FF;
}

.gray {
  color: #8e8e93;
}

a.under {
  color: #005CA6;
  text-decoration: underline !important;
}

/* レイアウト
-------------------------------------------------- */
.cont_fl {
  display: flex;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .cont_fl {
    display: block;
  }
}
/* ========== end △ */
.align_center {
  align-items: center;
}

.align_base {
  align-items: baseline;
}

.jus_between {
  justify-content: space-between;
}

.jus_center {
  justify-content: center;
}

.fl_img {
  display: flex;
  gap: 0 20px;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1023px) {
  .fl_img-img {
    width: 40%;
  }
  .fl_img-txt {
    width: 60%;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .fl_img {
    display: block;
  }
  .fl_img-img {
    width: 100%;
  }
  .fl_img-txt {
    width: 100%;
    margin-top: 20px;
  }
}
/* ========== end △ */
.mt80 {
  margin-top: 80px !important;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .mt80 {
    margin-top: 50px !important;
  }
}
/* ========== end △ */
/* ==================================================
	slick
================================================== */
.slick-slider .slide-arrow {
  width: 20px;
  top: 80px;
  cursor: pointer;
  z-index: 10;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .slick-slider .slide-arrow {
    width: 15px;
    top: 35%;
  }
}
/* ========== end △ */
.slick-slider .prev-arrow {
  position: absolute;
  left: -20px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .slick-slider .prev-arrow {
    left: -13px;
  }
}
/* ========== end △ */
.slick-slider .next-arrow {
  position: absolute;
  right: -20px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .slick-slider .next-arrow {
    right: -13px;
  }
}
/* ========== end △ */
.slick-slider .slick-dots {
  display: flex;
  justify-content: center;
}
.slick-slider .slick-dots li button:before {
  content: "";
  background: #b9cdb7;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.slick-slider .slick-dots li.slick-active button:before {
  background: #cda06a;
}
.slick-slider .slick-slide img {
  width: 100%;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .slick-slider .slick-dots li {
    margin: 0 2px;
  }
}
/* ========== end △ */
/* 見出し
-------------------------------------------------- */
.h2_midashi {
  background: #BDE2FF;
  color: #005CA6;
  border-bottom: 4px solid #005CA6;
  padding: 15px;
  font-size: 2.0rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .h2_midashi {
    padding: 10px;
    font-size: 1.6rem;
  }
}
/* ========== end △ */
.h3_midashi {
  border-left: 7px solid #005CA6;
  color: #005CA6;
  font-size: 2.0rem;
  padding: 5px 20px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .h3_midashi {
    border-left: 5px solid #005CA6;
    font-size: 1.6rem;
    padding: 5px 15px;
  }
}
/* ========== end △ */
