@charset "UTF-8";
/* #color
  -------------------------------------------------------------------------- */
/*───────────────────────────────────────────*/
/* 共通ヘッダー設定                            */
/*───────────────────────────────────────────*/
.header-inner,
.nav_outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-inner .logo {
  width: clamp(130px, 10%, 155px);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #0f80db;
  line-height: 1;
}

.site-header {
  position: fixed;
  background: rgba(255, 255, 255, 0.7803921569);
  z-index: 11111;
  width: 100%;
  /* ヘッダー高さ */
  /* ナビとボタンラッパー */
  /* 通常ナビ */
  /* ボタン共通スタイル */
  /* ヘッダーボタン内側余白 */
  /* ハンバーガーアイコン */
}
.site-header .header-inner {
  height: 5rem;
}
.site-header .nav_outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.site-header .nav {
  display: flex;
  align-items: center;
}
.site-header .nav .nav-list {
  display: flex;
  align-items: center;
  gap: 2.25vw;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.site-header .nav .nav-list li {
  position: relative;
}
.site-header .nav .nav-list li a {
  display: inline-block;
  color: #2e2e2e;
  text-decoration: none;
  padding: 0.5rem 0;
}
.site-header .nav .nav-list li.has-submenu {
  /* デスクトップ用のプラス／マイナス */
  /* ホバー時だけ展開するサブメニュー */
}
.site-header .nav .nav-list li.has-submenu > a {
  padding-right: 1.2em;
}
.site-header .nav .nav-list li.has-submenu > a::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  color: currentColor;
  transition: transform 0.2s;
}
.site-header .nav .nav-list li.has-submenu:hover > a::after {
  content: "-";
}
.site-header .nav .nav-list li.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  white-space: nowrap;
  z-index: 999;
}
.site-header .nav .nav-list li.has-submenu .submenu li a {
  display: block;
  color: #2e2e2e;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.site-header .nav .nav-list li.has-submenu .submenu li a:hover {
  background: #f5f5f5;
}
.site-header .nav .nav-list li.has-submenu:hover > .submenu {
  display: block;
}
.site-header .btn {
  display: inline-block;
  width: clamp(144px, 50%, 300px);
  height: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
}
.site-header .btn--primary {
  background: #0f80db;
  color: #fff;
}
.site-header .btn--secondary {
  background: #0c64ab;
  color: #fff;
}
.site-header .header-btn {
  padding: 0 1.5rem;
  box-sizing: border-box;
  color: #fff;
}
.site-header .hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  z-index: 1001;
}
.site-header .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/*───────────────────────────────────────────*/
/* モバイル（759px 以下）                    */
/*───────────────────────────────────────────*/
@media (max-width: 759px) {
  .site-header {
    /* ハンバーガーを表示 */
    /* スライドメニュー本体 */
    /* 縦並びメニュー */
    /* お問い合わせボタンは非表示 */
    /* モバイルではプラスマークを完全に消す */
    /* ハンバーガー開時 */
  }
  .site-header .hamburger {
    display: block;
    color: #0f80db;
  }
  .site-header .nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: #f0f8ff;
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
  }
  .site-header .nav-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    white-space: normal !important;
  }
  .site-header .btn {
    display: none !important;
  }
  .site-header .nav-list li.has-submenu > a::after {
    content: none !important;
  }
  .site-header .nav-list li.has-submenu .submenu {
    display: none !important;
  }
  .site-header.open {
    /* サブメニューを常に展開 */
  }
  .site-header.open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .site-header.open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .site-header.open .nav-list li.has-submenu .submenu {
    display: block !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-left: 1rem !important;
    white-space: normal !important;
  }
}
.site-header.open .nav {
  display: flex;
  transform: translateX(0);
}

/* #フッター共通
  -------------------------------------------------------------------------- */
.site-footer {
  background-color: #333;
  color: #fff;
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
.site-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.site-footer .footer-top .footer-logo {
  flex: 1 1 180px;
}
.site-footer .footer-top .footer-logo img {
  display: block;
  width: 140px;
  height: auto;
}
.site-footer .footer-top .footer-logo p {
  margin-top: 0.5rem;
  opacity: 0.8;
  font-size: 0.875rem;
}
.site-footer .footer-top .footer-links {
  flex: 3 1 600px;
  display: flex;
  justify-content: space-between;
}
.site-footer .footer-top .footer-links .footer-col {
  flex: 1;
}
.site-footer .footer-top .footer-links .footer-col h3 {
  margin-bottom: 0.75rem;
  font-weight: bold;
  font-size: 1rem;
}
.site-footer .footer-top .footer-links .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-top .footer-links .footer-col ul li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-top .footer-links .footer-col ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s;
}
.site-footer .footer-top .footer-links .footer-col ul li a:hover {
  opacity: 0.7;
}
.site-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
}
.site-footer .footer-bottom .footer-copy {
  margin: 0;
  opacity: 1;
}
.site-footer .footer-bottom .footer-util-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-bottom .footer-util-nav ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s;
}
.site-footer .footer-bottom .footer-util-nav ul li a:hover {
  opacity: 0.7;
}
@media (max-width: 759px) {
  .site-footer .footer-top,
  .site-footer .footer-bottom {
    flex-direction: column;
    text-align: left;
  }
  .site-footer .footer-top .footer-logo,
  .site-footer .footer-top .footer-links {
    flex: none !important;
    width: auto;
  }
  .site-footer .footer-top .footer-links {
    flex-direction: column;
    gap: 1rem;
    margin-left: 7%;
  }
  .site-footer .footer-bottom .footer-util-nav {
    margin-top: 1rem;
  }
}

/* #会社概要
  -------------------------------------------------------------------------- */
.company-wrap {
  font-family: sans-serif;
  /* -- grid -- */
}
.company-wrap .company-inner {
  background-color: #f0f8ff;
  padding: 100px 20px;
  margin-inline: auto;
}
@media (max-width: 599px) {
  .company-wrap .company-inner {
    padding: 10px 4%;
  }
}
.company-wrap section {
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .company-wrap h1.main-text {
    font-size: 1.75rem;
  }
  .company-wrap .sub-text {
    font-size: 0.75rem;
  }
}
.company-wrap h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  line-height: 1;
}
.company-wrap .sub-title {
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 3.68rem;
}
.company-wrap a {
  text-decoration: none;
}
.company-wrap strong {
  font-size: 1.25rem;
}
.company-wrap li {
  list-style: none;
}
.company-wrap .nowrap {
  white-space: nowrap;
}
.company-wrap .center {
  text-align: center;
}
.company-wrap .bold-text {
  font-weight: 700;
}
.company-wrap .text-color--blue {
  color: #0f80db;
}
.company-wrap .text-color--white {
  color: #fff;
}
.company-wrap .dec-under--blue {
  border-bottom: 1px solid #0f80db;
  padding-bottom: 0.75rem;
}
.company-wrap .dec-under--light-blue {
  border-bottom: 1px solid #f0f8ff;
  padding-bottom: 0.75rem;
}
.company-wrap .title-bg--white {
  background-color: #fff;
  border-radius: 10px;
  padding: 3.3rem 3.43rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 599px) {
  .company-wrap .title-bg--white {
    padding: 2.5rem 1.5rem;
  }
}
.company-wrap .flex-4to2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-inline: auto;
  justify-content: center;
  justify-items: center;
  max-width: 600px;
}
@media (max-width: 759px) {
  .company-wrap .flex-4to2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.company-wrap .flex-3to1 {
  display: grid;
  grid-template-columns: 1.25fr 1fr 3fr;
  gap: 1.5rem;
  place-items: center;
}
@media (max-width: 759px) {
  .company-wrap .flex-3to1 {
    display: block;
  }
}
.company-wrap .flex-2.start {
  display: grid;
  grid-template-columns: 4.75rem 1fr;
  gap: 0.5rem;
  place-items: start;
  line-height: 2;
}
.company-wrap .flex-2.center {
  display: grid;
  grid-template-columns: 4.75rem 1fr;
  gap: 3rem;
  place-items: center start;
}
@media (max-width: 599px) {
  .company-wrap .flex-2.center {
    gap: 1rem;
  }
}
.company-wrap .flex-2to1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.company-wrap .two-col-40-60 {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 1rem;
  place-items: center;
}
@media (max-width: 759px) {
  .company-wrap .flex-2to1,
  .company-wrap .two-col-40-60 {
    display: block;
  }
}
.company-wrap .company__overlay {
  width: 100%;
  height: 30vw;
  background: url(../../company/image/company_img.png) center/cover no-repeat;
  position: relative;
  margin-inline: auto;
}
@media (max-width: 959px) {
  .company-wrap .company__overlay {
    padding-top: 17rem;
  }
}
.company-wrap .title-bg--toka_white {
  position: absolute;
  place-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: clamp(1rem, 3vw, 1.8rem) clamp(1.25rem, 7vw, 7.75rem);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 12rem;
}
.company-wrap .hero_main-text,
.company-wrap .hero_sub-text {
  margin: 0;
}
.company-wrap .hero_sub-text {
  font-weight: 700;
  font-size: 0.8rem;
}
.company-wrap .nav-inner {
  padding-block: 1rem;
}
.company-wrap .company-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.company-wrap .company-nav-item span {
  color: #2e2e2e;
}
.company-wrap .company-nav-item img {
  width: 20px;
}

.company-inner section:first-child {
  margin-top: 100px;
}

.company-inner section:last-child {
  margin-bottom: 100px;
}

.greeting-text_wrap img {
  width: 100%;
}

@media (max-width: 959px) {
  .greeting-text_wrap img {
    width: 90%;
  }
}
.line-height-change {
  line-height: 2.18;
}

@media (max-width: 599px) {
  .line-height-change {
    line-height: 1.5;
  }
}
.pb40 {
  padding-bottom: 1.5rem;
}

@media (max-width: 599px) {
  .pb40 {
    padding-bottom: 1rem;
  }
}
.fs14 {
  font-size: 14px;
}

.third-title {
  font-size: 1.5rem;
}

.history-wrap li {
  margin-bottom: 1.5rem;
}

.history-year {
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  position: relative;
  font-weight: 700;
}

.line-height-year {
  line-height: 1;
}

.history-year span {
  margin: 0;
  padding: 0;
  line-height: 0.1;
}

.history-wrap li:not(:last-child) .history-year:after {
  content: "";
  width: 2rem;
  border: 1px solid #e8e8e8;
  position: absolute;
  transform: rotate(90deg);
  left: 1.5rem;
  top: 6rem;
  z-index: 10;
}

@media (max-width: 429px) {
  .history-wrap li:not(:last-child) .history-year:after {
    width: 4rem;
    left: 0.6rem;
    top: 6rem;
  }
}
.info-detail {
  line-height: 2;
}

/* #パーソナルジム　エフフォリアについて
  -------------------------------------------------------------------------- */
.about-wrap {
  font-family: sans-serif;
  /* -- grid -- */
}
.about-wrap .about-inner {
  background-color: #f0f8ff;
  padding: 100px 20px;
  margin-inline: auto;
}
@media (max-width: 599px) {
  .about-wrap .about-inner {
    padding: 10px 4%;
  }
}
.about-wrap section {
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .about-wrap h1.main-text {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
  }
  .about-wrap .sub-text {
    font-size: 0.75rem;
  }
}
.about-wrap h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  line-height: 1;
}
.about-wrap .sub-title {
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 3.68rem;
}
.about-wrap strong {
  font-size: 1.25rem;
}
.about-wrap .nowrap {
  white-space: nowrap;
}
.about-wrap .center {
  text-align: center;
}
.about-wrap .center {
  text-align: center;
}
.about-wrap .bold-text {
  font-weight: 700;
}
.about-wrap .text-color--blue {
  color: #0f80db;
}
.about-wrap .text-color--white {
  color: #fff;
}
.about-wrap .title-bg--blue {
  background-color: #0f80db;
  border-radius: 10px;
  padding: 1rem 2.18rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  margin-inline: auto;
}
.about-wrap .title-bg--white {
  background-color: #fff;
  border-radius: 10px;
  padding: 3.3rem 3.43rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 599px) {
  .about-wrap .title-bg--white {
    padding: 2.5rem 1.5rem;
  }
  .about-wrap .store-item {
    margin-bottom: 50px;
  }
}
.about-wrap .flex-4to3to2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 759px) {
  .about-wrap .flex-4to3to2 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 599px) {
  .about-wrap .flex-4to3to2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-wrap .flex-3to1 {
  display: grid;
  grid-template-columns: 1.25fr 1fr 3fr;
  gap: 1.5rem;
  place-items: center;
}
@media (max-width: 759px) {
  .about-wrap .flex-3to1 {
    display: block;
    margin-top: 100px;
  }
}
.about-wrap .flex-2 {
  display: grid;
  grid-template-columns: 4.75rem 1fr;
  gap: 0.5rem;
  place-items: center;
}
.about-wrap .flex-2to1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.about-wrap .two-col-60-40 {
  display: grid;
  grid-template-columns: 65% 45%;
  align-items: center;
  gap: 1rem;
}
.about-wrap .two-col-10-90 {
  display: grid;
  grid-template-columns: 10% 90%;
  gap: 3rem;
  place-items: center start;
}
@media (max-width: 599px) {
  .about-wrap .two-col-10-90 > img {
    margin-inline: auto;
    display: block;
    width: 4.18rem;
  }
}
.about-wrap .two-col-20-80 {
  display: grid;
  grid-template-columns: 20% 80%;
  place-items: center start;
}
@media (max-width: 599px) {
  .about-wrap .two-col-20-80 {
    display: block;
    margin-bottom: 50px;
  }
  .about-wrap .two-col-20-80 img {
    margin-inline: auto;
  }
}
@media (max-width: 759px) {
  .about-wrap .flex-2to1,
  .about-wrap .two-col-60-40 {
    display: block;
  }
}

.about__overlay {
  width: 100%;
  height: 30vw;
  background: url(../../service/image/gym_img.png) center/cover no-repeat;
  position: relative;
  margin-inline: auto;
}

@media (max-width: 959px) {
  .about__overlay {
    padding-top: 14rem;
    height: 70vw;
  }
}
.title-bg--toka_white {
  position: absolute;
  place-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: clamp(0.25rem, 2vw, 1.8rem) clamp(1.25rem, 7vw, 7.75rem);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 14rem;
}

.hero_main-text,
.hero_sub-text {
  margin: 0;
}

.hero_sub-text {
  font-weight: 700;
  font-size: 0.8rem;
}

.circle-bg {
  width: 8rem;
  height: 8rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  place-items: center;
  padding: 0.5rem;
}

#about-features {
  padding-inline: 10%;
}

@media (max-width: 599px) {
  .features-image {
    display: block;
    margin-inline: auto;
    margin-bottom: 50px;
  }
  .features-num {
    display: none;
  }
  .title-bg--toka_white {
    width: 85%;
    padding: 50px 0;
  }
}
.history-wrap img {
  width: 70%;
  height: auto;
}

@media (max-width: 759px) {
  .history-wrap img {
    display: block;
    margin-inline: auto;
  }
}
.timeline-year {
  background-color: #bde2ff;
  border-radius: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.25rem;
  position: relative;
  z-index: 50;
}

@media (min-width: 600px) {
  .history-inner .two-col-20-80:not(:last-child) .timeline-year::after {
    content: "";
    width: 6rem;
    border: 1px solid #bde2ff;
    position: absolute;
    transform: rotate(90deg);
    left: 0;
    top: 5rem;
    z-index: 10;
  }
}
@media (max-width: 599px) {
  .timeline-year {
    margin-inline: auto;
  }
}
.training-image {
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .training-image {
    margin-bottom: 30px;
  }
}
.training-image img {
  width: 100%;
}

.store-item h3 {
  padding: 0.4em 0.5em; /*文字の上下 左右の余白*/
  border-left: solid 5px #0f80db;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.map-info p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.about-button {
  display: block;
  width: 60%;
  padding: 1.5rem 0;
  background-color: #f15f5f;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.125rem;
  border-radius: 50px;
  transition: background-color 0.2s;
  border: none;
  margin-inline: auto;
  margin-bottom: 100px;
}

.about-button:hover {
  background-color: #d24b4b;
}

@media (max-width: 599px) {
  .about-button {
    width: 90%;
  }
}
/* #お問い合せ
  -------------------------------------------------------------------------- */
.contact-wrap {
  font-family: sans-serif;
  /* -- grid -- */
  /* ラベル */
  /* 値 */
  /* 区切り線 */
  /* ボタンラップ */
  /* TOPに戻るボタン */
}
.contact-wrap .contact-inner,
.contact-wrap .confirm-inner,
.contact-wrap .thanks-inner {
  background-color: #f0f8ff;
  padding: 100px 20px;
  margin-inline: auto;
}
@media (max-width: 599px) {
  .contact-wrap .contact-inner,
  .contact-wrap .confirm-inner,
  .contact-wrap .thanks-inner {
    padding: 10px 4%;
  }
}
.contact-wrap section {
  margin-bottom: 100px;
}
.contact-wrap h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  line-height: 1;
}
.contact-wrap .sub-title {
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 3.68rem;
}
.contact-wrap strong {
  font-size: 1.25rem;
}
.contact-wrap li {
  list-style: none;
}
.contact-wrap .nowrap {
  white-space: nowrap;
}
.contact-wrap .center {
  text-align: center;
}
.contact-wrap .bold-text {
  font-weight: 700;
}
.contact-wrap .text-color--blue {
  color: #0f80db;
}
.contact-wrap .text-color--white {
  color: #fff;
}
.contact-wrap .dec-under--blue {
  border-bottom: 1px solid #0f80db;
  padding-bottom: 0.75rem;
}
.contact-wrap .dec-under--light-blue {
  border-bottom: 1px solid #f0f8ff;
  padding-bottom: 0.75rem;
}
.contact-wrap .title-bg--white {
  background-color: #fff;
  border-radius: 10px;
  padding: 3.3rem 3.43rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 599px) {
  .contact-wrap .title-bg--white {
    padding: 2.5rem 1.5rem;
  }
}
.contact-wrap .flex-4to2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 500px;
  margin-inline: auto;
}
@media (max-width: 759px) {
  .contact-wrap .flex-4to2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-wrap .flex-3to1 {
  display: grid;
  grid-template-columns: 1.25fr 1fr 3fr;
  gap: 1.5rem;
  place-items: center;
}
@media (max-width: 759px) {
  .contact-wrap .flex-3to1 {
    display: block;
  }
}
.contact-wrap .contact__overlay {
  width: 100%;
  height: 30vw;
  background: url(../../contact/image/contact_img.png) center/cover no-repeat;
  position: relative;
  margin-inline: auto;
}
.contact-wrap .title-bg--toka_white {
  position: absolute;
  place-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: clamp(1rem, 3vw, 1.8rem) clamp(1.25rem, 7vw, 7.75rem);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.contact-wrap .hero_main-text,
.contact-wrap .hero_sub-text {
  margin: 0;
}
.contact-wrap .hero_sub-text {
  font-weight: 700;
  font-size: 0.8rem;
}
.contact-wrap .note {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-wrap .note span {
  color: #0f80db;
}
.contact-wrap .contact-inner,
.contact-wrap .confirm-inner,
.contact-wrap .thanks-inner {
  padding: 100px 7vw;
}
.contact-wrap .form-innner {
  margin-bottom: 3rem;
}
.contact-wrap .required-star {
  color: #007bff;
  margin-left: 0.25rem;
}
.contact-wrap .form-innner input,
.contact-wrap .form-innner textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  border: none;
  background-color: #f0f0f0;
  border-radius: 1rem;
  font-size: 1rem;
  color: #333;
  resize: vertical;
}
.contact-wrap .form-innner input:focus,
.contact-wrap .form-innner textarea:focus {
  outline: 2px solid #007bff;
  background-color: #fff;
}
.contact-wrap .checkbox-group {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact-wrap .checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: normal;
}
.contact-wrap .checkbox-group input[type=checkbox] {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
}
.contact-wrap .btn-submit {
  display: block;
  width: 100%;
  padding: 1rem 0;
  background-color: #f15f5f;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.2s;
}
.contact-wrap .btn-submit:hover {
  background-color: #d24b4b;
}
.contact-wrap .form-wrap,
.contact-wrap .confirm-wrap,
.contact-wrap .thanks-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: sans-serif;
}
.contact-wrap .confirm-list dt {
  font-weight: bold;
  align-self: start;
}
.contact-wrap .confirm-list dd {
  margin: 0;
  padding: 1rem;
  border-radius: 1rem;
  color: #555;
  white-space: pre-wrap;
  word-break: break-word;
}
.contact-wrap .thanks-wrap p {
  margin-bottom: 1.5rem;
}
.contact-wrap .thanks-sep {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}
.contact-wrap .btn-wrap {
  margin-top: 2.5rem;
}
.contact-wrap .btn-return {
  display: block;
  width: 100%;
  padding: 1rem 0;
  background-color: #f15f5f;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.125rem;
  border-radius: 2rem;
  transition: background-color 0.2s;
}
.contact-wrap .btn-return:hover {
  background-color: #d24b4b;
}/*# sourceMappingURL=style.css.map */