@charset "UTF-8";
dl, ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.green {
  color: #097EBD;
}
.bg-green {
  background-color:#097EBD;
}

#wpadminbar {
  opacity: 0.5;
  position: absolute !important;
}
.btn__cta > a {
  background-color: #FDF100;
  display: flex;
  align-items: center;
  border-radius: 35px;
  transition: all 0.3s ease;
  border: #FDF100 3px solid;
  position: relative;
}
.btn__cta > a:hover {
  background-color: #FFFFFF;
  border: #FDF100 3px solid;
}
.btn__cta > a:hover .btn__cta-icon {
  background-color: #FDF100;
}
.btn__cta > a .btn__cta-icon {
  aspect-ratio: 1;
  width: 40px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 12px 14px 20px;
  transition: all 0.3s ease;
}
.btn__cta > a .btn__cta-icon > img {
  width: 16px;
}
.btn__cta > a > p {
  font-weight: bold;
  font-size: 16px;
  padding-right: 52px;
  display: block;
  margin-top: 1px;
}
.btn__cta > a::after {
  content: "";
  background-image: url(../image/asset/chevron-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  aspect-ratio: 3/5;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.btn__cta > a:hover::after {
  right: 16px;
}

.main-contents {
  padding-top: 155px;
}

.site-header {
  background-color: #FFFFFF;
  color: #222222;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
.site-header .header__top {
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .header__top-wrap {
  display: flex;
  align-items: center;
}
.site-header .header__top-logo {
  width: 280px;
  display: flex;
  margin-right: 40px;
  transition: all 0.3s ease;
}
.site-header .header__top-logo:hover {
  opacity: 0.7;
}
.site-header .header__top-sns {
  margin-right: 20px;
  width: 45px;
  transition: all 0.3s ease;
}
.site-header .header__top-sns:hover {
  opacity: 0.7;
}
.site-header .header__top .header__contact {
  display: flex;
  gap: 20px;
  align-items: center;
}
.site-header .header__top .header__contact-txt {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}
.site-header .header__top .header__contact-txt > p > span {
  letter-spacing: 0.035em;
}
.site-header .header__top .header__contact-tel {
  font-size: 48px;
  font-weight: bold;
  color: #097EBD;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}
.site-header .header__top .header__contact-tel:hover {
  opacity: 0.7;
}
.site-header .header__top .header__contact-tel2 p {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.site-header .header__top .header__contact-tel2 a {
  color: #097EBD;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}
.site-header .header__top .header__contact-tel2 a:hover {
  opacity: 0.7;
}
.site-header .header-nav > ul {
  display: flex;
  justify-content: center;
  background-color: #F2F5F7;
  gap: 0 40px;
  font-size: 16px;
  font-weight: bold;
}
.site-header .header-nav > ul li > a {
  color: #222222;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 16px 0;
}
.site-header .header-nav > ul li > a:hover {
  color: #097EBD;
}
.site-header .header-nav > ul .submenu {
  visibility: hidden;
  z-index: 5;
  position: absolute;
  transition: all 0.3s ease;
  padding: 0px 16px 0;
  opacity: 0;
}
.site-header .header-nav > ul .has-submenu:hover ul.submenu {
  visibility: visible;
  opacity: 1;
  background-color: #F2F5F7;
  border-radius: 4px;
  margin-top: 16px;
}
.site-header .header-nav > ul .has-submenu:hover ul.submenu > li:not(:first-of-type) {
  border-top: #87BEE0 1px solid;
}
.site-header .header-nav > ul .has-submenu > a {
  position: relative;
}
.site-header .header-nav > ul .has-submenu > a::after {
  content: "";
  background-color: transparent;
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: -20px;
  z-index: 10;
}
.site-header .btn__cta-line {
  display: none;
}

@media screen and (max-width: 1620px) {
  .site-header .header__top {
    padding: 15px 30px;
  }
  .site-header .header__top-logo {
    width: 180px;
    margin-right: 20px;
  }
  .site-header .header__top-sns {
    width: 35px;
    margin-right: 10px;
  }
  .site-header .header__contact .header__contact-tel {
    font-size: 36px;
  }
  .site-header .header__contact .header__contact-tel2 p,
  .site-header .header__contact .header__contact-tel2 a {
    font-size: 12px;
  }
  .site-header .header-nav > ul {
    gap: 0 20px;
    font-size: 14px;
  }
  .btn__cta > a .btn__cta-icon {
    width: 30px;
    margin: 10px 8px 10px 15px;
  }
  .btn__cta > a .btn__cta-icon > img {
    width: 12px;
  }
  .btn__cta > a > p {
    font-size: 14px;
    padding-right: 40px;
  }
  .btn__cta > a::after {
    width: 5px;
    right: 15px;
  }
  .btn__cta > a:hover::after {
    right: 12px;
  }
 .main-contents  {
    padding-top: 130px;
  }
}
@media screen and (max-width: 1200px) {
  .site-header .header__top {
    padding: 10px 20px;
  }
  .site-header .header__top-logo {
    width: 150px;
    margin-right: 10px;
  }
  .site-header .header__top-sns {
    width: 30px;
    margin-right: 5px;
  }
  .site-header .header__contact .header__contact-tel {
    font-size: 22px;
  }
  .site-header .header__contact .header__contact-tel2 p,
  .site-header .header__contact .header__contact-tel2 a {
    font-size: 10px;
  }
  .site-header .header-nav > ul {
    gap: 0 20px;
    font-size: 12px;
    flex-wrap: wrap;
  }
  .btn__cta > a .btn__cta-icon {
    width: 25px;
    margin: 8px 6px 8px 12px;
  }
  .btn__cta > a .btn__cta-icon > img {
    width: 10px;
  }
  .btn__cta > a > p {
    font-size: 12px;
    padding-right: 30px;
  }
 .main-contents  {
    padding-top: 110px;
  }
}
@media screen and (max-width: 1023px) {
  .main-contents {
    padding-top: 52px;
  }
  .site-header .header__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    text-align: center;
  }
  .site-header .header__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .site-header .header-nav > ul {
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: flex-start;
  }
  .site-header .header-nav > ul {
    display: block;
  }
  .site-header .header__top .header__contact {
    display: none;
  }
  .site-header .header-nav {
    display: none;
  }
}
/* =========================================================
   Hamburger & Fullscreen Drawer (<=1023px)  
   ========================================================= */
@media screen and (max-width: 1023px) {
  .hamburger {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: #0A78B7;
    z-index: 1003;
    place-items: center;
    touch-action: manipulation;
    transition: all 0.24s ease;
  }
  .hamburger:focus-visible {
    outline: 2px solid #005a8f;
    outline-offset: 2px;
  }
  .hamburger__bar {
    margin: auto;
    display: block;
    width: 15px;
    height: 1.25px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }
  .hamburger__bar + .hamburger__bar {
    margin-top: 5px;
  }
  /* 開いた時はX形状に */
  body.nav-open .hamburger {
    background: #fff;
    border: #097EBD 1px solid;
  }
  body.nav-open .hamburger__bar {
    background: #0A78B7;
  }
  body.nav-open .hamburger .hamburger__bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  body.nav-open .hamburger .hamburger__bar:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .hamburger .hamburger__bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  /* 背景オーバーレイ */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 995;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }
  body.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  /* フル幅ドロワー（横幅100%） */
  .mobile-drawer {
    width: 100%;
    max-width: 500px;
    position: fixed;
    inset: 0;
    left: auto;
    background: #fff;
    z-index: 996;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-drawer.is-active {
    transform: translateX(0);
  }
  .mobile-drawer__inner {
    padding: 52px 0px 0px;
    max-width: 100%;
  }
  /* ドロワー内の各ブロックは横幅100%で展開 */
  .mobile-drawer__inner > * {
    width: 100%;
  }
  /* ドロワー内に入った header__contact は必ず表示 */
  .mobile-drawer .header__contact {
    display: block !important;
    margin: auto;
    margin-bottom: 24px;
    margin-top: 32px;
    text-align: center;
    max-width: 360px;
  }
  /* ドロワー内ナビの体裁（ベース） */
  .mobile-drawer .header-nav {
    display: block !important;
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0 45px 104px;
    height: auto;
    background-color: #F2F5F7;
  }
  .mobile-drawer .header-nav > ul {
    display: block;
  }
  .mobile-drawer .header-nav > ul > li {
    position: relative;
  }
  .mobile-drawer .header-nav > ul > li > a {
    display: block;
    padding: 20px 0 0;
    /* 右はトグルボタンの分 */
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    text-decoration: none;
    font-weight: bold;
  }
  /* サブメニュー（折りたたみ） */
  .mobile-drawer .submenu {
    display: block;
    padding: 0 0 12px 16px;
  }
  .mobile-drawer li.is-submenu-open > .submenu {
    display: block;
  }
  .mobile-drawer .submenu li a {
    display: block;
    padding: 12px 0 0;
    font-size: 15px;
  }
  /* サブメニュー用トグル */
  .mobile-drawer .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 28px;
    height: 100%;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  .mobile-drawer .submenu-toggle:focus-visible {
    outline: 2px solid #005a8f;
    outline-offset: 2px;
  }
  .mobile-drawer .submenu-toggle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }
  .mobile-drawer .submenu-toggle[aria-expanded=true]::before {
    transform: rotate(-135deg);
  }
  /* 低モーション環境 */
}
@media screen and (max-width: 1023px) and (prefers-reduced-motion: reduce) {
  .mobile-drawer,
  .nav-overlay,
  .hamburger__bar,
  .mobile-drawer .submenu-toggle::before {
    transition: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .site-header .header__top-logo {
    margin-right: auto;
    width: 170px;
  }
  .site-header .header__top-wrap {
    width: 100%;
    padding: 10px 20px;
  }
  .site-header .header__top-sns {
    margin-right: 10px;
  }
  .header__contact-txt {
    line-height: 1.5em;
    font-weight: 500;
  }
  .header__contact-tel,
  .header__contact-tel2 {
    font-weight: bold;
    color: #097EBD;
    font-family: "Montserrat", sans-serif;
  }
  .header__contact-tel {
    font-size: 40px;
    margin-top: 14px;
    display: flex;
    justify-content: center;
  }
  .header__contact-tel img {
    width: 32px;
    margin-right: 8px;
    flex-shrink: 0;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header__contact-tel2 a {
    margin-top: 4px;
    display: inline-block;
    font-size: 20px;
  }
  .header__contact-tel2 p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #222222;
    margin-top: 14px;
    font-size: 16px;
  }
  .header__contact-tel2::after {
    content: "";
    background-image: url(../image/asset/line.svg);
    width: 100%;
    height: 5px;
    display: block;
    margin: 20px 0;
    background-size: 7px 104px;
    background-repeat: repeat-x;
  }
  .btn__cta-line.btn__cta > a {
    background-color: #4CC764;
    border: 3px solid #4CC764;
  }
  .btn__cta-line.btn__cta > a::after {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(251deg) brightness(107%) contrast(109%);
  }
  .btn__cta-line.btn__cta > a p {
    transition: all 0.3s ease;
    color: #FFF;
  }
  .btn__cta-line.btn__cta > a:hover {
    background-color: #FFFFFF;
    border: 3px solid #4CC764;
  }
  .btn__cta-line.btn__cta > a:hover::after {
    filter: none;
  }
  .btn__cta-line.btn__cta > a:hover p {
    color: #222;
  }
  .btn__cta-line.btn__cta > a:hover .btn__cta-icon {
    background-color: #4CC764;
  }
  .btn__cta-line.btn__cta > a:hover .btn__cta-icon img {
    filter: invert(100%) sepia(2%) saturate(0%) hue-rotate(186deg) brightness(105%) contrast(102%);
  }
  .mobile-drawer .btn__cta {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 24px;
  }
  .mobile-drawer .btn__cta > a {
    justify-content: center;
  }
  .mobile-drawer .btn__cta > a::after {
    width: 4.8px;
    right: 30px;
  }
  .mobile-drawer .contact-banner__txt05 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
  }
  .mobile-drawer .btn__cta > a .btn__cta-icon {
    width: 32px;
  }
  .mobile-drawer .btn__cta > a .btn__cta-icon > img {
    width: 12.8px;
  }
  .mobile-drawer .btn__cta-line a .btn__cta-icon > img {
    filter: invert(73%) sepia(31%) saturate(852%) hue-rotate(78deg) brightness(88%) contrast(86%);
    width: 17.07px;
  }
  .mobile-drawer .btn__cta > a > p {
    font-size: 16px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .header__contact-txt {
    font-size: 12px;
  }
  .header__contact-tel {
    font-size: 32px;
  }
  .header__contact-tel2 p,
  .header__contact-tel2 a {
    font-size: 14px;
  }
  .main-contents {
    padding-top: 76px;
  }
}/*# sourceMappingURL=header.css.map */