@charset "UTF-8";
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Th.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Th.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Rg.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Bd.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Eb.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Eb.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/*
@function rem($size) {
  @return $size / 10 + rem;
}
*/
/*
@function rems($size) {
  @return ($size / 375) * 100vw;
}
*/
* {
  box-sizing: border-box;
}

:root,
html {
  font-size: 100%;
}

body {
  color: #000000;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/*//////////////////////////////////////////
//  共通設定
//////////////////////////////////////////*/
.inner {
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 0.75rem;
  }
}

img,
video {
  max-width: 100%;
  height: auto;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

em {
  font-style: normal;
}

.picture {
  display: block;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
}
/*セレクトボックスの設定(全ブラウザ共通にするため)
//設定やアイコンは用途に合わせて書き換え*/
select::-ms-expand {
  display: none;
}

label {
  font-size: 0.9375rem;
}

.select-box {
  position: relative;
  display: block;
  padding: 0;
  max-width: 4.375rem;
  width: 100%;
  height: 2.375rem;
}
.select-box:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  z-index: 2;
  background: url("../images/arrow-select.svg") 0 0 no-repeat;
  pointer-events: none;
}
.select-box select {
  display: block;
  width: 100%;
  height: 2.375rem;
  padding-left: 1.5em;
  margin: 0;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 0.3125rem;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
}

.page-index {
  padding-top: 9.625rem;
}
@media screen and (max-width: 768px) {
  .page-index {
    padding-top: 5.46875rem;
  }
}

.breadcrumbs {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-top: 1rem;
    padding: 0 0.75rem;
  }
}
.breadcrumbs a {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 400;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .breadcrumbs a {
    font-size: 0.5625rem;
  }
}
.breadcrumbs a:after {
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 0.0625rem solid #000;
  border-right: 0.0625rem solid #000;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .breadcrumbs a:after {
    width: 0.25rem;
    height: 0.25rem;
  }
}
.breadcrumbs span {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .breadcrumbs span {
    font-size: 0.5625rem;
  }
}

/*//////////////////////////////////////////
//  header
//////////////////////////////////////////*/
.main-header {
  background: #fff;
  width: 100%;
  position: fixed;
  z-index: 10;
}
.main-header .h-inner {
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
  padding: 1.875rem 1.875rem 0.9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .main-header .h-inner {
    padding: 0.9375rem 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .main-header .h-inner {
    height: 2.96875rem;
    padding: 0 0.375rem;
  }
}
.main-header .h-inner .logo {
  width: 12.5625rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .main-header .h-inner .logo {
    width: 6.28125rem;
  }
}
@media screen and (max-width: 1080px) {
  .main-header .h-inner .search-area {
    display: none;
  }
}
.main-header .h-inner .search-area form {
  display: flex;
  align-items: center;
}
.main-header .h-inner .search-area form input[type=text] {
  max-width: 13.625rem;
  width: 100%;
  height: 2.1875rem;
  background: #fff;
  border-radius: 0.3125rem 0 0 0.3125rem;
  font-size: 1rem;
  padding-left: 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.32);
}
.main-header .h-inner .search-area form input[type=text]::-moz-placeholder {
  color: #808080;
}
.main-header .h-inner .search-area form input[type=text]::placeholder {
  color: #808080;
}
.main-header .h-inner .search-area form button {
  width: 2.625rem;
  height: 2.1875rem;
  border-radius: 0 0.3125rem 0.3125rem 0;
  border: 1px solid #013193;
  background: #013193;
}
.main-header .h-inner .search-area .tags-list {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.5625rem;
}
.main-header .h-inner .search-area .tags-list a {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  background: #119cd2;
  border-radius: 3.125rem;
  padding: 0 0.875rem;
  height: 1.5625rem;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  transition: linear all 0.2s;
}
.main-header .h-inner .search-area .tags-list a:hover {
  background: rgb(40.3744493392, 182.436123348, 237.6255506608);
}
.main-header .h-inner .contact-area {
  display: flex;
  align-items: center;
  gap: 1.8125rem;
}
@media screen and (max-width: 1080px) {
  .main-header .h-inner .contact-area {
    display: none;
  }
}
.main-header .h-inner .contact-area .tel {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.main-header .h-inner .contact-area .tel .tel-link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 2.1125rem;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  color: #013193;
  letter-spacing: -0.05em;
  line-height: 1;
}
.main-header .h-inner .contact-area .tel .tel-link:before {
  content: "";
  display: inline-block;
  width: 2.8125rem;
  height: 1.875rem;
  background-image: url("../images/common/icon-dial.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.main-header .h-inner .contact-area .tel .reception-hours {
  font-size: 0.82125rem;
  color: #013193;
  letter-spacing: 0.025em;
  text-align: right;
  line-height: 1;
}
.main-header .h-inner .contact-area .btn-contact {
  width: 12.8125rem;
  height: 3.75rem;
  background: linear-gradient(to bottom, #fc861b 0%, #f34800 50%, #fc861b 100%);
  background-size: 100% 200%;
  background-position: top center;
  border: 3px solid #fff;
  border-radius: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
  color: #fff;
  font-weight: 700;
  font-size: 1.333125rem;
  line-height: 1;
  gap: 0.4375rem;
  transition: background-position 0.2s ease;
}
.main-header .h-inner .contact-area .btn-contact:hover {
  background-position: bottom center;
}
.main-header .h-inner .contact-area .btn-contact:before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../images/common/icon-mail.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.main-header .h-inner .sp-icon-list {
  display: none;
}
@media screen and (max-width: 1080px) {
  .main-header .h-inner .sp-icon-list {
    display: flex;
    align-items: center;
    gap: 0.6875rem;
    margin-right: 3.53125rem;
  }
}
@media screen and (max-width: 768px) {
  .main-header .h-inner .sp-icon-list li {
    width: 1.875rem;
  }
  .main-header .h-inner .sp-icon-list li img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.main-header .gnav {
  width: 100%;
  background: #013193;
  overflow-x: auto;
  /* スクロールバー全体のデザイン調整（Google Chrome, Safari, Edge等のWebkit系ブラウザ用） */
}
.main-header .gnav::-webkit-scrollbar {
  height: 2px; /* 横スクロールバーの高さ */
}
.main-header .gnav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1); /* スクロールバーの軌道（背景） */
  border-radius: 3px;
}
.main-header .gnav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35); /* つまみ（ドラッグ部分） */
  border-radius: 3px;
}
.main-header .gnav::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.6);
}
.main-header .gnav {
  /* Firefox 用のスクロールバーデザイン調整 */
  scrollbar-width: thin; /* 幅を細くする */
  scrollbar-color: rgba(255, 255, 255, 0.35) rgba(255, 255, 255, 0.1); /* つまみ色 軌道色 */
}
.main-header .gnav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  width: 75rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .main-header .gnav-inner {
    width: -moz-max-content;
    width: max-content;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .main-header .gnav-inner li {
    flex-shrink: 0;
    white-space: nowrap;
  }
}
.main-header .gnav-inner li:not(:last-child) {
  border-right: 1px solid #fff;
}
.main-header .gnav-inner a {
  padding: 0 1.875rem;
  color: #fff;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  .main-header .gnav-inner a {
    font-size: 0.84375rem;
  }
}
.main-header .gnav-inner a span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  padding-top: 3px;
}
.main-header .gnav-inner a span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.main-header .gnav-inner a:hover span::after {
  transform: scaleX(1);
}
.main-header {
  /* ハンバーガーメニューボタンのスタイル */
}
.main-header .drawer-toggle {
  display: none;
}
@media screen and (max-width: 1080px) {
  .main-header .drawer-toggle {
    display: block;
    position: absolute;
    right: 1.25rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 3.125rem;
    height: 1.875rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
    padding: 0;
  }
  .main-header .drawer-toggle span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #013193; /* 白色の三本線 */
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .main-header .drawer-toggle span:nth-child(1) {
    top: 0;
  }
  .main-header .drawer-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .main-header .drawer-toggle span:nth-child(3) {
    bottom: 0;
  }
  .main-header .drawer-toggle {
    /* オープン時の✕印のアニメーション */
  }
  .main-header .drawer-toggle.is-open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .main-header .drawer-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .main-header .drawer-toggle.is-open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  .main-header .drawer-toggle {
    right: 1.375rem;
    width: 1.5625rem;
    height: 0.9375rem;
  }
}
.main-header {
  /* ドロワーメニューのスタイル */
}
.main-header .drawer-menu {
  display: none;
}
@media screen and (max-width: 1080px) {
  .main-header .drawer-menu {
    display: block;
    position: fixed;
    top: 8.5rem;
    right: -100%; /* 初期状態は画面外（右側）に隠す */
    width: 80%;
    max-width: 23.4375rem;
    height: 100vh;
    background-color: #013193; /* 背景色は$navy */
    z-index: 99;
    padding: 1.8125rem 0.84375rem 6.25rem;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease; /* スライドのアニメーション */
    overflow-y: auto;
  }
  .main-header .drawer-menu.is-open {
    right: 0; /* スライドインして表示 */
  }
}
@media screen and (max-width: 768px) {
  .main-header .drawer-menu {
    top: 5.46875rem;
    max-width: initial;
    width: 100%;
  }
}
.main-header .drawer-menu .drawer-banner a {
  display: block;
  margin: 0 auto;
}
.main-header .drawer-menu .drawer-banner img {
  display: block;
  margin: 0 auto;
}
.main-header .sp-nav-wrapper {
  margin-top: 1.5rem;
}
.main-header .sp-nav-wrapper h2 {
  background: #eff7ff;
  color: #013193;
  min-height: 2.5rem;
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}
.main-header .sp-nav-wrapper .sp-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-direction: column;
}
.main-header .sp-nav-wrapper .sp-nav li:not(:last-child) {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 1080px) {
  .main-header .sp-nav-wrapper .sp-nav li:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.main-header .sp-nav-wrapper .sp-nav li a {
  display: block;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  padding: 0 2rem;
}
@media screen and (max-width: 1080px) {
  .main-header .sp-nav-wrapper .sp-nav li a {
    padding: 1rem 0;
    text-align: center;
    font-size: 0.75rem;
  }
}
.main-header .drawer-cta {
  margin-top: 0.5rem;
}
.main-header .drawer-cta img {
  display: block;
  margin: 0 auto;
}

.cta-contents {
  background: #fff;
  border-radius: 0.625rem;
  padding: 0.6875rem;
}
@media screen and (max-width: 1200px) {
  .cta-contents {
    padding: 0.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents {
    border-radius: 0.3125rem;
    padding: 0.34375rem;
  }
}
.cta-contents .cta-inner {
  border: 1px solid #0046b2;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2.1875rem 0.875rem 1.6875rem 8.4375rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner {
    padding: 2.9166666667vw 1.1666666667vw 2.25vw 11.25vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner {
    border-radius: 0.25rem;
    flex-direction: column;
    padding: 0.53125rem 0.625rem 0.78125rem;
    gap: 0.59375rem;
    text-align: center;
  }
}
.cta-contents .cta-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8.6875rem;
  height: 10.375rem;
  background: url("../images/top/img-consultation.png") no-repeat center bottom/contain;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner::before {
    width: 11.5833333333vw;
    height: 13.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner::before {
    width: 5.21875rem;
    height: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .txt-ara {
    text-align: center;
  }
}
.cta-contents .cta-inner .txt-ara .lead {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #0046b2;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .txt-ara .lead {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .txt-ara .lead {
    font-size: 1.125rem;
    display: inline;
  }
}
.cta-contents .cta-inner .txt-ara .ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #0046b2;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .txt-ara .ttl {
    font-size: 2.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .txt-ara .ttl {
    font-size: 1.125rem;
    display: inline;
  }
}
.cta-contents .cta-inner .contact-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  flex: 1;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .contact-wrap {
    gap: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .contact-wrap {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    padding-left: 4.625rem;
  }
}
.cta-contents .cta-inner .contact-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.cta-contents .cta-inner .contact-area a {
  font-size: 2.5625rem;
  font-weight: 700;
  color: #31a924;
  font-family: "LINE Seed JP", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .contact-area a {
    font-size: 3.1666666667vw;
    gap: 0.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .contact-area a {
    font-size: 1.4375rem;
    gap: 0.375rem;
  }
}
.cta-contents .cta-inner .contact-area a::before {
  content: "";
  display: inline-block;
  width: 3.375rem;
  height: 2.25rem;
  background: url("../images/common/icon-dial.svg") no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .contact-area a::before {
    width: 4.5vw;
    height: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .contact-area a::before {
    width: 1.9334375rem;
    height: 1.28875rem;
  }
}
.cta-contents .cta-inner .contact-area .note {
  font-size: 0.875rem;
  font-weight: 700;
  color: #31a924;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .contact-area .note {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .contact-area .note {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .btn-more {
    width: 24vw;
    padding: 0.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .btn-more {
    max-width: 12.625rem;
    width: 100%;
  }
}
.cta-contents .cta-inner .btn-more .btn-txt em {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .btn-more .btn-txt em {
    font-size: 1.6666666667vw;
    gap: 0.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .btn-more .btn-txt em {
    font-size: 0.8125rem;
    gap: 0.125rem;
  }
}
.cta-contents .cta-inner .btn-more .btn-txt em:before {
  content: "";
  display: inline-block;
  width: 1.6625rem;
  height: 1.25rem;
  background-image: url("../images/common/icon-mail-cta.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .btn-more .btn-txt em:before {
    width: 2.2166666667vw;
    height: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .btn-more .btn-txt em:before {
    width: 0.83125rem;
    height: 0.625rem;
  }
}

.drawer-cta .cta-contents {
  background: #fff;
  border-radius: 0.3125rem;
  padding: 0.34375rem;
}
.drawer-cta .cta-contents .cta-inner {
  border: 1px solid #0046b2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 0.25rem;
  flex-direction: column;
  padding: 0.53125rem 0.625rem 0.78125rem;
  gap: 0.59375rem;
  text-align: center;
}
.drawer-cta .cta-contents .cta-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url("../images/top/img-consultation.png") no-repeat center bottom/contain;
  width: 5.21875rem;
  height: 6.25rem;
}
.drawer-cta .cta-contents .cta-inner .txt-ara {
  text-align: center;
}
.drawer-cta .cta-contents .cta-inner .txt-ara .lead {
  font-weight: 700;
  color: #0046b2;
  line-height: 1.3;
  font-size: 1.125rem;
  display: inline;
}
.drawer-cta .cta-contents .cta-inner .txt-ara .ttl {
  font-weight: 700;
  color: #0046b2;
  line-height: 1.3;
  font-size: 1.125rem;
  display: inline;
}
.drawer-cta .cta-contents .cta-inner .contact-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 4.625rem;
}
.drawer-cta .cta-contents .cta-inner .contact-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.125rem;
}
.drawer-cta .cta-contents .cta-inner .contact-area a {
  font-weight: 700;
  color: #31a924;
  font-family: "LINE Seed JP", sans-serif;
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: -0.03em;
  font-size: 1.4375rem;
  gap: 0.375rem;
}
.drawer-cta .cta-contents .cta-inner .contact-area a::before {
  content: "";
  display: inline-block;
  background: url("../images/common/icon-dial.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .drawer-cta .cta-contents .cta-inner .contact-area a::before {
    width: 1.9334375rem;
    height: 1.28875rem;
  }
}
.drawer-cta .cta-contents .cta-inner .contact-area .note {
  font-weight: 700;
  color: #31a924;
  line-height: 1.2;
  font-size: 0.625rem;
}
.drawer-cta .cta-contents .cta-inner .btn-more {
  max-width: 12.625rem;
  width: 100%;
  padding: 0.09375rem;
}
.drawer-cta .cta-contents .cta-inner .btn-more .btn-txt em {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  gap: 0.125rem;
}
.drawer-cta .cta-contents .cta-inner .btn-more .btn-txt em:before {
  content: "";
  display: inline-block;
  background-image: url("../images/common/icon-mail-cta.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 0.83125rem;
  height: 0.625rem;
}

/*//////////////////////////////////////////
//  footer
//////////////////////////////////////////*/
.main-footer {
  background: linear-gradient(165deg, #0046b2 0, #002359 100%);
  padding: 5.9375rem 0;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .main-footer {
    margin-top: 3.125rem;
    padding: 3.125rem 0;
  }
}
.main-footer .f-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 0.25rem;
  border-bottom: 3px solid #fff;
  text-align: center;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .main-footer .f-ttl {
    font-size: 1.25rem;
    padding-bottom: 0.125rem;
    border-bottom: 0.09375rem solid #fff;
    margin-bottom: 0.9375rem;
  }
}
.main-footer .f-ttl span {
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
  display: block;
}
@media screen and (max-width: 768px) {
  .main-footer .f-ttl span {
    padding-bottom: 0.75rem;
    border-bottom: 0.03125rem solid rgba(255, 255, 255, 0.5);
  }
}
.main-footer .f-txt {
  font-size: 1.125rem;
  line-height: 2;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .main-footer .f-txt {
    font-size: 0.625rem;
    margin-bottom: 0.9375rem;
  }
}
.main-footer .f-nav {
  display: flex;
  justify-content: center;
  margin-top: 3.375rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  .main-footer .f-nav {
    gap: 1.5rem 0;
  }
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav {
    gap: 0;
    flex-direction: column;
    margin-top: 0.5625rem;
  }
}
.main-footer .f-nav li:not(:last-child) {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav li:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.main-footer .f-nav li a {
  display: block;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav li a {
    padding: 1rem 0;
    text-align: center;
    font-size: 0.75rem;
  }
}
.main-footer .copyright {
  display: flex;
  justify-content: center;
  margin-top: 3.375rem;
  font-weight: 700;
  color: #fff;
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .main-footer .copyright {
    font-size: 0.625rem;
    margin-top: 2.125rem;
  }
}

/*//////////////////////////////////////////
//  Section Header
//////////////////////////////////////////*/
.sec-head {
  text-align: center;
  border-bottom: 0.125rem solid #013193;
  padding-bottom: 0.25rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .sec-head {
    border-bottom-width: 0.125rem;
    padding-bottom: 0.125rem;
    margin-bottom: 1rem;
  }
}
.sec-head .en {
  display: inline-block;
  background-color: #013193;
  color: #fff;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.375rem 1.75rem 0.375rem;
  border-radius: 9999px;
}
@media screen and (max-width: 768px) {
  .sec-head .en {
    font-size: 0.625rem;
    padding: 0.3125rem 1.6875rem 0.25rem;
  }
}
.sec-head .jp {
  margin-top: 0.625rem;
  color: #013193;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sec-head .jp {
    margin-top: 0.5625rem;
    font-size: 1.3125rem;
    line-height: 1.3333333333;
  }
}
.sec-head .jp .txt {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .sec-head .jp .txt {
    font-size: 0.659375rem;
    margin-top: 0.75rem;
  }
}
.sec-head .jp span {
  display: block;
  border-bottom: 0.0625rem solid #013193;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sec-head .jp span {
    padding-bottom: 0.75rem;
  }
}

/*//////////////////////////////////////////
//  Button More
//////////////////////////////////////////*/
.btn-more {
  display: flex;
  max-width: 18rem;
  width: 100%;
  height: 4.5rem;
  padding: 0.25rem;
  border-radius: 3.125rem;
  background: linear-gradient(to bottom, #ff8000 0%, #b53500 100%);
}
@media screen and (max-width: 1200px) {
  .btn-more {
    height: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .btn-more {
    max-width: 12.625rem;
    height: 2.5rem;
    padding: 0.125rem;
  }
}
.btn-more .btn-txt {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 0.125rem;
}
.btn-more .btn-txt em {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .btn-more .btn-txt em {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .btn-more .btn-txt em {
    font-size: 0.75rem;
  }
}
.btn-more .btn-txt em span {
  font-size: 0.875rem;
}
@media screen and (max-width: 1200px) {
  .btn-more .btn-txt em span {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .btn-more .btn-txt em span {
    font-size: 0.625rem;
  }
}
.btn-more .btn-txt:after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 1.125rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  .btn-more .btn-txt:after {
    width: 0.1875rem;
    height: 0.1875rem;
    right: 1rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
.btn-more.small-type {
  max-width: 11.875rem;
  height: 3rem;
  padding: 0.125rem;
}
@media screen and (max-width: 768px) {
  .btn-more.small-type {
    max-width: 6.25rem;
    height: 1.5625rem;
    padding: 0.0625rem;
  }
}
.btn-more.small-type .btn-txt:after {
  right: 0.75rem;
}
@media screen and (max-width: 768px) {
  .btn-more.small-type .btn-txt:after {
    right: 0.5rem;
  }
}
.btn-more.small-type .btn-txt em {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .btn-more.small-type .btn-txt em {
    font-size: 0.5625rem;
    font-weight: 500;
  }
}/*# sourceMappingURL=common.css.map */