@charset "UTF-8";

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* --------------------------------------------
 base
-------------------------------------------- */
:root {
  --black: #202020;
  --l-black: #333333;
  --blue: #137FDE;
  --d-blue: #003E9E;
  --yellow: #FFE100;
  --rec-yellow: #FFE110;
  --green: #00766B;
  --margin-i: calc(100% - 40px);
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--l-black);
  font-size: calc(16rem / 16);
  line-height: 1.5;
}

a {
  display: block;
  color: currentColor;
  cursor: pointer;
}

p {
  line-height: 1.5;
}

button {
  color: currentColor;
}

/* br */
.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

/* 非表示要素 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* アンカーリンク調整 */
.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

/* タブレット幅以上で電話番号から発信しない */
@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 768px) {

  /* br */
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }

  body {
    font-size: calc(15rem / 16);
  }
}

/* -----------------------------------------------
 margin
----------------------------------------------- */
.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb100 {
  margin-bottom: 100px;
}

/* --------------------------------------------
 layout
-------------------------------------------- */
.contents {
  max-width: 1400px;
  width: var(--margin-i);
  margin-inline: auto;
}

.inner {
  max-width: 1200px;
  width: var(--margin-i);
  margin-inline: auto;
}

.min-inner {
  max-width: 1000px;
  width: var(--margin-i);
  margin-inline: auto;
}

@media screen and (max-width: 960px) {}


/* --------------------------------------------
 common
-------------------------------------------- */
/* セクションの見出し */
.sec-head {
  position: relative;
  text-align: center;
  margin-inline: auto;
  padding-top: 100px;
  margin-bottom: 30px;
}

.sec-head::after {
  position: absolute;
  content: '';
  width: calc(240rem / 16);
  height: 3px;
  background: var(--yellow);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sec-head_ttl {
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
}

.sec-head_ttl_ja {
  display: block;
  padding-block: calc(20rem / 16) calc(30rem / 16);
  font-size: calc(20rem / 16);
  font-weight: bold;
}

/* ページトップへ戻る */
.page-top {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  margin-bottom: 15px;
  opacity: .6;
  background: #F2F0E9;
  color: #333;
  border: 2px solid white;
  transition: all 0.3s;
}

.page-top {
  position: fixed;
  right: 15px;
  bottom: 30px;
  opacity: 0;
  transform: translateY(130px);
  z-index: 70;
}

.page-top::after {
  position: absolute;
  content: '';
  inset: 0;
  margin: auto;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}

.page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(130px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(130px);
  }
}

@media screen and (max-width: 768px) {

  /* セクションの見出し */
  .sec-head {
    padding-top: 80px;
  }

  .sec-head::after {
    width: 100px;
  }

  .sec-head_ttl {
    font-size: 30px;
  }

  .sec-head_ttl_ja {
    padding-block: calc(8rem / 16) calc(18rem / 16);
  }
}

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

.header_inner {
  max-width: 1780px;
  margin-inline: auto;
  padding-block: calc(20rem / 16) calc(20rem / 16);
  padding-inline: 5.6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 800ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

#header.fixed .header_inner {
  padding-block: calc(10rem / 16);
}


.header_logo {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.header_logo--nohmi {
  width: 120px;
  height: 50px;
  stroke: white;
  fill: white;
}

.header_logo--sd {
  width: 282px;
  height: 46px;
  fill: white;
}

#header.fixed .hd-bg {
  background-color: #fff;
  -webkit-box-shadow: 0 0px 1px rgba(0, 0, 0, .2);
  box-shadow: 0 0px 10px rgba(0, 0, 0, .2);
}

#header.fixed .header_logo--nohmi {
  stroke: green;
  fill: green;
}

#header.fixed .header_logo--sd {
  fill: var(--black);
}

body.is-open .header_logo--nohmi {
  stroke: green;
  fill: green;
}

body.is-open .header_logo--sd {
  fill: var(--black);
}

.header_gnav-list {
  display: flex;
  align-items: center;
  column-gap: calc(100vw *(10 / 1920));
}

.header_gnav-link {
  color: white;
  font-size: clamp(0.9375rem, 0.7143rem + 0.4464vw, 1.25rem);
  font-weight: bold;
  transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 20px calc(100vw *(20 / 1920));
}

.header_gnav-link:hover {
  background: #b2dbff;
}

#header.fixed .header_gnav-link {
  color: var(--black);
  padding: 10px calc(100vw *(20 / 1920));
}

.header_gnav-btn-area {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(90rem / 16);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s cubic-bezier(0.215, 0.61, 0.355, 1), visibility .3s cubic-bezier(0.215, 0.61, 0.355, 1);
  background: white;
  padding: 60px calc(15rem / 16);
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.3);
}

#header.fixed .mega-menu {
  top: calc(65rem / 16);
}

.header_gnav-item {
  position: relative;
  cursor: pointer;
}

.mega-menu_btn.is-active .header_gnav-link {
  background: #b2dbff;
}

.mega-menu_btn.is-active .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu_item {
  padding-bottom: 15px;
}

.mega-menu_item>a {
  display: block;
  position: relative;
  width: calc(240rem / 16);
  background: #F3F3F3;
  font-size: calc(18rem / 16);
  font-weight: bold;
  padding: calc(10rem / 16);
  transition: all .3s;
}

.mega-menu_item>a:hover {
  background: #b2dbff;
}

.mega-menu_item>a::after {
  position: absolute;
  content: '';
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/_common/icon_link-arrow-b.svg);
  width: 20px;
  height: 20px;
}

:root {
  --vh: 1vh;
}

.header_sp-menu {
  position: absolute;
  right: -100%;
  transition: all .5s ease;
  width: 100%;
  z-index: 80;
  top: 0;
  overflow-y: scroll;
  height: calc(var(--vh, 1vh) * 100);
}


.sp-menu_gnav {
  background: #eeeeee;
  padding: 20px;
  height: 100%;
  padding-top: 85px;

  overflow-y: scroll;
}

@media screen and (max-width: 960px) {
  .header_gnav {
    display: none;
  }

  .header_inner {
    padding-block: calc(20rem / 16) calc(25rem / 16);
    position: relative;
    z-index: 90;
  }

  /* ハンバーガーボタン */
  .header_menu-btn {
    position: relative;
    width: 55px;
    height: 45px;
    transition: background-color .3s ease;
  }

  .header_menu-btn.active {
    background: #d1d1d1;
  }

  .header_menu-btn span {
    display: inline-block;
    position: absolute;
    left: 12px;
    height: 3px;
    border-radius: 2px;
    background: white;
    transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 60%;
  }

  #header.fixed .header_menu-btn span {
    background: var(--black);
  }

  .header_menu-btn span:nth-of-type(1) {
    top: 13px;
  }

  .header_menu-btn span:nth-of-type(2) {
    top: 21px;
  }

  .header_menu-btn span:nth-of-type(3) {
    top: 29px;
  }

  .header_menu-btn.active span:nth-of-type(1) {
    top: 16px;
    left: 12px;
    transform: translateY(6px) rotate(-40deg);
  }

  .header_menu-btn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .header_menu-btn.active span:nth-of-type(3) {
    top: 28px;
    left: 12px;
    transform: translateY(-6px) rotate(40deg);
  }

  body.is-open {
    overflow: clip;
    /* メニューコンテンツが開いているときは後ろを動かさないようにする指定、実機にて確認後要修正（要注意iOS）240626追記_hidden→clipへ変更　stickyを効かせるため */
  }

  body.is-open #header .hd-bg {
    background: white;
  }

  body.is-open .header_sp-menu {
    right: 0%;
  }

  .sp-menu_gnav-item {
    padding-bottom: 24px;
  }

  .sp-menu_gnav-item_ttl {
    font-size: calc(20rem / 16);
    font-weight: bold;
    background: #BADFFF;
    padding-left: calc(18rem / 16);
  }

  .sp-menu_gnav-link {
    display: inline-block;
    margin-top: 16px;
    margin-left: calc(18rem / 16);
    font-size: calc(15rem / 16);
  }

  .sp-menu_info-list {
    padding-left: calc(18rem / 16);
  }

  .sp-menu_info-list>li {
    padding-top: 16px;
  }
}

@media screen and (max-width: 768px) {
  .header_logo {
    column-gap: calc(100vw *(14 / 390));
  }

  .header_logo--nohmi {
    width: min(80px, calc(100vw *(97 / 390)));
  }

  .header_logo--sd {
    width: min(256px, calc(100vw *(164 / 390)));
  }

  .header_inner {
    padding-block: calc(15rem / 16) calc(20rem / 16);
  }
}

/* -----------------------------------------------
 footer
----------------------------------------------- */
.footer {
  position: relative;
  background: var(--blue);
  padding-top: 80px;
  overflow: hidden;
}

.footer::after {
  position: absolute;
  content: '';
  background: url(../img/_common/bg_footer.png) no-repeat 0%/ cover;
  right: 0;
  bottom: -10%;
  width: 540px;
  height: 540px;
  z-index: 0;
}

.footer .contents {
  z-index: 10;
  position: relative;
  width: calc(100% - 100px);
}

.top-contact {
  display: flex;
  align-items: center;
  margin-bottom: 85px;
}

.footer .sec-head {
  color: white;
  padding-top: 0;
  margin-left: 0;
}

.cta {
  width: 68%;
}

.cta_wrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.cta-box {
  display: block;
  position: relative;
  text-align: center;
  background: white;
  width: calc(440rem / 16);
  padding: calc(25rem / 16) calc(100vw *(25 / 1920));
  font-size: clamp(25px, 2.3vw, 45px);
  font-weight: bold;
  font-weight: bold;
  color: var(--blue);
}

.cta_tell::before,
.cta_mail::before {
  content: '';
  position: relative;
  display: inline-block;
  width: calc(41rem / 16);
  height: calc(41rem / 16);
  left: 0;
  top: calc(2rem / 16);
  margin-right: calc(15rem / 16);
  padding-top: calc(3rem / 16);
}

.cta_tell::before {
  background: url(../img/_common/icon_tel.svg) no-repeat 0% 0% /cover;
}

.cta_mail::before {
  background: url(../img/_common/icon_mail.svg) no-repeat 0% 0% /cover;
}

.cta-box span {
  padding-top: calc(5rem / 16);
  display: block;
  font-size: calc(20rem / 16);
}

.cta-box::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background: white;
  bottom: -6px;
  right: -6px;
}

.cta-box::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 1px;
  background: white;
  bottom: -6px;
  right: -6px;
}

.cta_tell {
  display: flex;
  align-items: center;
  justify-content: center;

}

.cta_mail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  display: flex;
  align-items: center
}

.footer_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 140px;
  color: white;
  font-size: calc(16rem / 16);
}

.footer_logo {
  padding-bottom: 8px;
}

.footer_logo--nohmi {
  width: 120px;
  height: 50px;
  stroke: white;
  fill: white;
}

.footer_name {
  font-size: calc(30rem / 16);
  font-weight: bold;
  padding-bottom: 18px;
}

.footer_txt {
  line-height: 1.7;
}

.footer_gnav {
  width: 68%;
}

.footer_gnav-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 95px;
}

.footer_gnav-item_ttl {
  padding-bottom: calc(24rem / 16);
  font-size: calc(25rem / 16);
  font-weight: bold;
  color: #68A5DB;
}

.footer_gnav-link {
  margin-bottom: 20px;
  display: inline-block;
}

.footer_info-list {
  display: flex;
  gap: calc(80rem / 16);
}

.footer_gnav-link,
.footer_info-list a {
  transition: opacity .2s;
}

.footer_gnav-link:hover,
.footer_info-list a:hover {
  opacity: .7;
}

.copyright {
  text-align: center;
  background: white;
  font-size: calc(12rem / 16);
  padding-block: 8px;
}

@media screen and (max-width: 960px) {
  .top-contact {
    flex-direction: column;
    align-items: center;
  }

  .footer .sec-head {
    margin-left: auto;
  }

  .cta {
    width: 100%;
  }

  .cta_wrap {
    flex-direction: column;
  }

  .cta-box {
    width: 100%;
    height: calc(130rem / 16);
  }

  .footer_wrap {
    flex-direction: column-reverse;
  }

  .footer_gnav {
    width: 100%;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 30px;
  }

  .cta_wrap a:first-child {
    padding-top: calc(10rem / 16);
  }

  .cta-box {
    height: calc(100rem / 16);
  }

  .footer_gnav-item_ttl {
    padding-block: calc(4rem / 16);
    padding-left: 16px;
    font-size: calc(20rem / 16);
    color: white;
    background: #288BE1;
    margin-bottom: 16px;
  }

  .footer_gnav-list {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .footer_info-list {
    flex-direction: column;
    gap: 16px;
    padding-left: 16px;
  }

  .footer_gnav-link {
    padding-left: 16px;
    margin-bottom: 16px;
  }
}