@charset "UTF-8";
/*********************
**********************
定義・一般設定
**********************
*********************/
/* ゆずの木 サインペン */
@font-face {
  font-family: "YuzuNoKiSign";
  src: url("../../assets/fonts/yuzunoki_signpen.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ゆずの木 ボールペン */
@font-face {
  font-family: "YuzuNoKiBall";
  src: url("../../assets/fonts/yuzunoki_ballpen.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ゆずの木 サインペン */
/* =========================================
   初期状態：フォント準備までページを不可視
   - 最初のペイントから必ず効くように :not(.fonts-ready) を採用
   - クリックも防ぎたいので visibility を使用
   ========================================= */
html:not(.fonts-ready) body {
  visibility: hidden;
}

/* 準備完了で解放 */
html.fonts-ready body {
  visibility: visible;
}

/* =========================
   フォント準備中の見せ方制御
   - visibility: hidden でレイアウトは保持（CLS回避）
   - .fonts-ready 付与で表示解放（モーション自体はGSAPに任せる）
   ========================= */
html:not(.fonts-ready) .fv_title,
html:not(.fonts-ready) .fv_logo,
html:not(.fonts-ready) .slideUp,
html:not(.fonts-ready) .slideUp-delay1,
html:not(.fonts-ready) .slideUp-delay2,
html:not(.fonts-ready) .slideUp-delay3,
html:not(.fonts-ready) .slideUp-delay4,
html:not(.fonts-ready) .slideUp-delay5,
html:not(.fonts-ready) .section_title,
html:not(.fonts-ready) .section_text {
  visibility: hidden;
}

html.fonts-ready .fv_title,
html.fonts-ready .fv_logo,
html.fonts-ready .slideUp,
html.fonts-ready .slideUp-delay1,
html.fonts-ready .slideUp-delay2,
html.fonts-ready .slideUp-delay3,
html.fonts-ready .slideUp-delay4,
html.fonts-ready .slideUp-delay5,
html.fonts-ready .section_title,
html.fonts-ready .section_text {
  visibility: visible;
}

/* ==========================================================
 フォント準備完了までの先出し抑止（FV＋アニメ要素のみ）
 - JSが html に .fonts-pending を付与 → 準備完了で .fonts-ready を付与
 - 下記は body 全体を隠さず、対象クラスだけを非表示にする
 ========================================================== */
html.fonts-pending .fv_title,
html:not(.fonts-ready) .fv_title {
  visibility: hidden !important;
}
html.fonts-pending .fv_titleBg,
html:not(.fonts-ready) .fv_titleBg {
  visibility: hidden !important;
}
html.fonts-pending .fv_logo,
html:not(.fonts-ready) .fv_logo {
  visibility: hidden !important;
}
html.fonts-pending .slideUp,
html:not(.fonts-ready) .slideUp {
  visibility: hidden !important;
}
html.fonts-pending .slideUp-delay1,
html:not(.fonts-ready) .slideUp-delay1 {
  visibility: hidden !important;
}
html.fonts-pending .slideUp-delay2,
html:not(.fonts-ready) .slideUp-delay2 {
  visibility: hidden !important;
}
html.fonts-pending .slideUp-delay3,
html:not(.fonts-ready) .slideUp-delay3 {
  visibility: hidden !important;
}
html.fonts-pending .slideUp-delay4,
html:not(.fonts-ready) .slideUp-delay4 {
  visibility: hidden !important;
}
html.fonts-pending .slideUp-delay5,
html:not(.fonts-ready) .slideUp-delay5 {
  visibility: hidden !important;
}

html.fonts-ready .fv_title {
  visibility: visible !important;
}
html.fonts-ready .fv_titleBg {
  visibility: visible !important;
}
html.fonts-ready .fv_logo {
  visibility: visible !important;
}
html.fonts-ready .slideUp {
  visibility: visible !important;
}
html.fonts-ready .slideUp-delay1 {
  visibility: visible !important;
}
html.fonts-ready .slideUp-delay2 {
  visibility: visible !important;
}
html.fonts-ready .slideUp-delay3 {
  visibility: visible !important;
}
html.fonts-ready .slideUp-delay4 {
  visibility: visible !important;
}
html.fonts-ready .slideUp-delay5 {
  visibility: visible !important;
}

/* （任意）念のため：フォント準備完了で微リフレッシュ用のフック */
/* 備考：
   - visibility を使うことでレイアウトジャンプを防止。
   - 「FVとアニメ要素だけ」なので他のテキストは通常どおり先に描画されます。
   - さらに厳密に抑止したい場合は、対象クラスをこのリストに追加してください。
*/
.skip-link {
  position: absolute;
}

.skip-link:not(:focus) {
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
  display: block;
  top: 5px;
  left: 5px;
  z-index: 9999;
  margin: 0;
  padding: 15px 20px;
  background-color: #6DB8F3;
  color: #FFFFFF;
}

html {
  margin: 0 !important;
  padding: 0;
}

body {
  color: #000000;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-style: normal;
  margin: 0;
  padding: 0;
}
body.-fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease 0s;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding-right: 60px;
  padding-left: 60px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.container.-small {
  max-width: 980px;
}
.container.-position {
  position: relative;
}

/*********************
**********************
レイアウト共通部分（header・footer・その他）
**********************
*********************/
.header {
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
@media (min-width: 769px) and (max-width: 1200px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
  }
}
@media (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
  }
}
.header_inner {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  height: 80px;
  padding: 0px 0px 0px 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .header_inner {
    padding-left: 24px;
    padding-right: 24px;
    height: 80px;
  }
}
@media (max-width: 768px) {
  .header_inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 60px;
  }
}
.header_logoWrapper {
  margin-right: auto;
}
.header_logo img {
  max-width: 130px;
}
@media (max-width: 768px) {
  .header_logo img {
    max-width: 100px;
  }
}
.header_navWrapper {
  display: flex;
  align-items: center;
}
.header_navList {
  display: flex;
}
.header_navList li a {
  padding: 4px 2px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease 0s;
  margin-right: 24px;
  font-size: 16px;
  font-weight: 700;
}
.header_navList li a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6px;
  width: 0;
  height: 10px;
  background-image: url("../../assets/img/common/marker_medium.svg");
  background-size: cover;
  transition: width 0.3s ease;
}
@media (min-width: 1200px) {
  .header_navList li a:hover::after {
    width: 100%;
  }
}
.headerBtn {
  display: inline-block;
  height: 80px;
  padding-left: 64px;
  padding-right: 30px;
  color: #FFFFFF;
  border: none;
  line-height: 80px;
  position: relative;
  font-size: 14px;
}
.headerBtn.-green {
  background-color: #00B900;
}
.headerBtn img {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  transition: all 0.3s ease 0s;
}
@media (min-width: 1200px) {
  .headerBtn:hover img {
    animation: shakeX 0.4s ease-in-out;
  }
}

@keyframes shakeX {
  0% {
    transform: translate(-50%, -50%) translateX(0);
  }
  25% {
    transform: translate(-50%, -50%) translateX(-1px);
  }
  50% {
    transform: translate(-50%, -50%) translateX(1px);
  }
  75% {
    transform: translate(-50%, -50%) translateX(-1px);
  }
  100% {
    transform: translate(-50%, -50%) translateX(0);
  }
}
.drawerIcon {
  width: 50px;
  height: 50px;
  position: relative;
  right: 0;
  top: 0;
  margin-top: 4px;
  padding-top: 9px;
  transition: all 0.3s ease 0s;
}
@media (min-width: 1200px) {
  .drawerIcon {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .drawerIcon {
    display: block;
    z-index: 99999999;
    width: 50px;
    height: 50px;
    margin-top: 0;
    padding-top: 4px;
  }
}
@media (max-width: 768px) {
  .drawerIcon {
    display: block;
    z-index: 99999999;
    margin-top: 0;
  }
}
.drawerIcon.-open .drawerIcon_toggleItem {
  background-color: #000000;
}
.drawerIcon.-open .drawerIcon_toggleItem:nth-of-type(1) {
  top: 9px;
  left: 12px;
  transform: rotate(-45deg);
}
.drawerIcon.-open .drawerIcon_toggleItem:nth-of-type(2) {
  top: 9px;
  left: 12px;
  transform: rotate(-45deg);
}
.drawerIcon.-open .drawerIcon_toggleItem:nth-of-type(3) {
  top: 9px;
  left: 12px;
  transform: rotate(45deg);
}
@media (min-width: 769px) and (max-width: 1200px) {
  .drawerIcon.-open .drawerIcon_toggleItem:nth-of-type(1) {
    top: 14px;
    left: 10px;
    transform: rotate(-45deg);
  }
  .drawerIcon.-open .drawerIcon_toggleItem:nth-of-type(2) {
    top: 14px;
    left: 10px;
    transform: rotate(-45deg);
  }
  .drawerIcon.-open .drawerIcon_toggleItem:nth-of-type(3) {
    top: 14px;
    left: 10px;
    transform: rotate(45deg);
  }
}
.drawerIcon_toggle {
  display: block;
  position: relative;
  z-index: 999;
}
.drawerIcon_toggleItem {
  position: absolute;
  display: block;
  height: 2px;
  background-color: #000000;
  transition: 0.2s ease-out 0.1s;
  width: 26px;
  left: 50%;
  transform: translateX(-50%);
}
.drawerIcon_toggleItem:nth-of-type(1) {
  top: 0;
}
.drawerIcon_toggleItem:nth-of-type(2) {
  top: 8px;
}
.drawerIcon_toggleItem:nth-of-type(3) {
  top: 16px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .drawerIcon_toggleItem {
    width: 32px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
  }
  .drawerIcon_toggleItem:nth-of-type(1) {
    top: 0;
  }
  .drawerIcon_toggleItem:nth-of-type(2) {
    top: 12px;
  }
  .drawerIcon_toggleItem:nth-of-type(3) {
    top: 24px;
  }
}
.drawerIcon_text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: #000000;
  display: inline-block;
  font-weight: 900;
  line-height: 1;
  margin: 0 auto;
  transition: all 0.3s ease 0s;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .drawerIcon_text {
    font-size: 12px;
    bottom: 2px;
  }
}

.drawer {
  visibility: hidden;
  opacity: 0;
  right: -100%;
  transition: all 0.5s ease 0s;
  background: linear-gradient(to bottom, #6DB8F3, #F8A2CC);
  position: fixed;
  top: 79px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  z-index: 999999;
}
@media (max-width: 768px) {
  .drawer {
    top: 59px;
  }
}
.drawer.-open {
  visibility: visible;
  opacity: 1;
  right: 0;
  top: 59px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .drawer.-open {
    top: 79px;
  }
}
.drawer_inner {
  padding: 0 24px;
}
.drawer_items {
  margin-top: 56px;
  margin-bottom: 40px;
}
.drawer_item {
  text-align: center;
  margin-bottom: 24px;
}
.drawer_item:last-child {
  margin-bottom: 0;
}
.drawer_item a {
  display: inline-block;
  width: 100%;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
}
.drawer_btn {
  text-align: center;
  margin-bottom: 16px;
}
.drawer_btn:last-child {
  margin-bottom: 0;
}

.grecaptcha-badge {
  display: none;
}

.footer {
  border-top: 1px solid #C8C8C8;
  background-color: #FFFFFF;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 32px;
    padding-bottom: 56px;
  }
}
.footer_logo {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer_logo {
    margin-bottom: 24px;
  }
}
.footer_logo img {
  max-width: 200px;
}
@media (max-width: 768px) {
  .footer_logo img {
    max-width: 100px;
  }
}
.footer_info {
  margin-bottom: 100px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_info {
    margin-bottom: 84px;
  }
}
@media (max-width: 768px) {
  .footer_info {
    margin-bottom: 60px;
  }
}
.footer_infoItem {
  display: flex;
  max-width: 340px;
  margin: 0 auto 12px;
}
.footer_infoItemHead {
  width: 100px;
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_infoItemHead {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .footer_infoItemHead {
    font-size: 12px;
  }
}
.footer_infoItemText {
  width: calc(100% - 120px);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_infoItemText {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .footer_infoItemText {
    font-size: 12px;
  }
}
.footer_infoText {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_infoText {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer_infoText {
    font-size: 12px;
  }
}
.footer_nav {
  margin-bottom: 60px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_nav {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .footer_nav {
    margin-bottom: 54px;
  }
}
.footer_navList {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_navList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 0px;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer_navList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0px;
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
  }
}
.footer_navList li {
  margin-right: 34px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_navList li {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .footer_navList li {
    margin-right: 0;
  }
}
.footer_navList li:last-child {
  margin-right: 0;
}
.footer_navList li a {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_navList li a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer_navList li a {
    font-size: 14px;
  }
}
.footer_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_sns {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .footer_sns {
    margin-bottom: 14px;
  }
}
.footer_snsItem.-left {
  margin-right: 24px;
}
@media (max-width: 768px) {
  .footer_snsItem.-left {
    margin-right: 20px;
  }
}
.footer_snsItem.-left i {
  font-size: 36px;
}
@media (max-width: 768px) {
  .footer_snsItem.-left i {
    font-size: 30px;
  }
}
.footer_snsItem i {
  font-size: 30px;
  color: #00B900;
}
@media (max-width: 768px) {
  .footer_snsItem i {
    font-size: 26px;
  }
}
.footer_snsItem.-instagram i {
  color: #C13584;
}
.footer_privacy {
  text-align: center;
}
.footer_privacy a {
  display: inline-block;
  font-size: 14px;
  border-bottom: 1px solid #000000;
  margin-bottom: 40px;
  transition: all 0.3s ease 0s;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_privacy a {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .footer_privacy a {
    font-size: 12px;
  }
}
.footer_privacy a:hover {
  opacity: 0.7;
}
.footer_copyright {
  background: linear-gradient(to right, #F8A2CC, #6DB8F3);
  padding: 4px 0;
}
.footer_copyright p {
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_copyright p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .footer_copyright p {
    font-size: 12px;
  }
}

/*********************
**********************
ブロック一覧
**********************
*********************/
.section {
  padding: 80px 0;
  background-color: #FFFFFF;
  position: relative;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}
.section.-pNone {
  padding: 0 !important;
}
@media (max-width: 768px) {
  .section.-pNone {
    padding: 50px 0 !important;
  }
}
.section.-pbNone {
  padding-bottom: 0 !important;
}
.section.-pLarge {
  padding: 200px 0 220px;
}
@media (max-width: 768px) {
  .section.-pLarge {
    padding: 100px 0 120px;
  }
}
.section.-bgMainThin {
  background-color: #e2f1fd;
}
.section.-bgAccentThin {
  background-color: #FEECF5;
}
.section.-bgGradient {
  background: linear-gradient(to bottom, #e2f1fd, #FEECF5);
}
.section.-waveBottom::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  width: 100%;
  height: 140px;
  background: center/100% 100% no-repeat url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 140' preserveAspectRatio='none'><path fill='%23FFFFFF' d='M0,70 C62.5,30 187.5,30 250,70 C312.5,110 437.5,110 500,70 C562.5,30 687.5,30 750,70 C812.5,110 937.5,110 1000,70 L1000,0 L0,0 Z'/></svg>");
  pointer-events: none;
  z-index: 10 !important;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section.-waveBottom::after {
    height: 120px;
  }
}
@media (max-width: 768px) {
  .section.-waveBottom::after {
    height: 50px;
    padding-bottom: 50px;
  }
}
.section.-waveTop::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  width: 100%;
  height: 140px;
  background: center/100% 100% no-repeat url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 140' preserveAspectRatio='none'><path fill='%23FFFFFF' d='M0,70 C62.5,30 187.5,30 250,70 C312.5,110 437.5,110 500,70 C562.5,30 687.5,30 750,70 C812.5,110 937.5,110 1000,70 L1000,140 L0,140 Z'/></svg>");
  pointer-events: none;
  z-index: 10 !important;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section.-waveTop::before {
    height: 120px;
  }
}
@media (max-width: 768px) {
  .section.-waveTop::before {
    height: 50px;
    padding-top: 50px;
  }
}
.section_titleEng {
  text-align: center;
  margin-bottom: 2px;
}
.section_titleEng p {
  display: inline-block;
  border: 1px solid #000000;
  padding: 2px 16px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 5px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_titleEng p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .section_titleEng p {
    font-size: 14px;
  }
}
.section_titleWrapper {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_titleWrapper {
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .section_titleWrapper {
    margin-bottom: 20px;
  }
}
.section_title {
  font-size: 48px;
  font-family: "YuzuNoKiBall", sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 10;
  margin-bottom: 16px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section_title {
    font-size: 32px;
  }
}
.section_title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  width: 100%;
  height: 28px;
  background-repeat: no-repeat;
  transition: width 0.3s ease;
  z-index: -1;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_title::after {
    height: 26px;
  }
}
@media (max-width: 768px) {
  .section_title::after {
    height: 25px;
    bottom: 2px;
  }
}
.section_title.-markerMediumWhite::after {
  background-image: url("../../assets/img/common/marker_medium_white.svg");
}
.section_title.-markerLargeWhite::after {
  background-image: url("../../assets/img/common/marker_large_white.svg");
}
@media (max-width: 768px) {
  .section_title.-markerLargeWhite::after {
    background-image: url("../../assets/img/common/marker_medium_white.svg");
  }
}
.section_title.-markerLargeMost::after {
  background-image: url("../../assets/img/common/marker_largeMost.svg");
}
@media (max-width: 768px) {
  .section_title.-markerLargeMost::after {
    background-image: url("../../assets/img/common/marker_largeMore.svg");
  }
}
.section_title.-markerLargeMore::after {
  background-image: url("../../assets/img/common/marker_largeMore.svg");
}
@media (max-width: 768px) {
  .section_title.-markerLargeMore::after {
    background-image: url("../../assets/img/common/marker_large.svg");
  }
}
.section_title.-markerLarge::after {
  background-image: url("../../assets/img/common/marker_large.svg");
}
@media (max-width: 768px) {
  .section_title.-markerLarge::after {
    background-image: url("../../assets/img/common/marker_mediumMore.svg");
  }
}
.section_title.-markerMediumMore::after {
  background-image: url("../../assets/img/common/marker_mediumMore.svg");
}
@media (max-width: 768px) {
  .section_title.-markerMediumMore::after {
    background-image: url("../../assets/img/common/marker_medium.svg");
  }
}
.section_title.-markerMedium::after {
  background-image: url("../../assets/img/common/marker_medium.svg");
}
@media (max-width: 768px) {
  .section_title.-markerMedium::after {
    background-image: url("../../assets/img/common/marker_smallMore.svg");
  }
}
.section_title.-markerSmallMore::after {
  background-image: url("../../assets/img/common/marker_smallMore.svg");
}
@media (max-width: 768px) {
  .section_title.-markerSmallMore::after {
    background-image: url("../../assets/img/common/marker_small.svg");
  }
}
.section_title.-markerSmall::after {
  background-image: url("../../assets/img/common/marker_small.svg");
}
@media (max-width: 768px) {
  .section_title.-markerSmall::after {
    background-image: url("../../assets/img/common/marker_small.svg");
  }
}
.section_text {
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .section_text {
    font-size: 14px;
  }
}
.section_text.-largeMore {
  font-size: 40px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_text.-largeMore {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .section_text.-largeMore {
    font-size: 25px;
  }
}
.section_text.-large {
  font-size: 32px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_text.-large {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .section_text.-large {
    font-size: 24px;
  }
}
.section_text.-mediumMore {
  font-size: 28px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_text.-mediumMore {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .section_text.-mediumMore {
    font-size: 18px;
  }
}
.section_text.-medium {
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_text.-medium {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .section_text.-medium {
    font-size: 16px;
  }
}
.section_text.-small {
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_text.-small {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .section_text.-small {
    font-size: 12px;
  }
}
.section_text.-small-more {
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_text.-small-more {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .section_text.-small-more {
    font-size: 11px;
  }
}
.section_text.-cWhite {
  color: #FFFFFF;
}
.section_text.-tac {
  text-align: center;
}
.section_text.-lhMedium {
  line-height: 1.8;
}
.section_text.-lhLarge {
  line-height: 2;
}

.btnWrapper {
  margin-top: 60px;
  display: flex;
  justify-content: flex-start;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .btnWrapper {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .btnWrapper {
    margin-top: 30px;
  }
}
.btnWrapper.-right {
  display: flex;
  justify-content: flex-end;
}
.btnWrapper.-center {
  display: flex;
  justify-content: center;
}
.btnWrapper.-mtSmall {
  margin-top: 30px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .btnWrapper.-mtSmall {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .btnWrapper.-mtSmall {
    margin-top: 20px;
  }
}
.btnWrapper.-mt0 {
  margin-top: 0;
}
.btnWrapper.-label {
  position: relative;
  margin-top: 90px;
}
@media (max-width: 768px) {
  .btnWrapper.-label {
    margin-top: 80px;
  }
}
.btnWrapper.-label .btnLabel {
  position: absolute;
  bottom: calc(100% + 12px);
  color: #EB5255;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 768px) {
  .btnWrapper.-label .btnLabel {
    font-size: 14px;
  }
}
.btnWrapper.-label .btnLabel::before, .btnWrapper.-label .btnLabel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: #EB5255;
  transform-origin: 50% 50%;
}
.btnWrapper.-label .btnLabel::before {
  right: calc(100% + 20px);
  transform: rotate(-22deg);
}
@media (max-width: 768px) {
  .btnWrapper.-label .btnLabel::before {
    right: calc(100% + 24px);
  }
}
.btnWrapper.-label .btnLabel::after {
  left: calc(100% + 20px);
  transform: rotate(22deg);
}
@media (max-width: 768px) {
  .btnWrapper.-label .btnLabel::after {
    left: calc(100% + 24px);
  }
}

.btn {
  display: inline-block;
  padding: 16px 20px;
  width: 100%;
  max-width: 320px;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
}
@media (max-width: 768px) {
  .btn {
    font-size: 16px;
  }
}
.btn.-bgGreen {
  background-color: #00B900;
}
.btn.-bgAccent {
  background-color: #F8A2CC;
}
.btn.-sizeMid {
  width: 320px;
}
@media (max-width: 768px) {
  .btn.-sizeMid {
    width: 100%;
    max-width: 320px;
  }
}
.btn.-w100 {
  width: 100%;
  max-width: 400px;
}
.btn.-wSp100 {
  width: 100%;
  max-width: none;
}
.btn img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.btn:hover img {
  animation: shakeX2 0.4s ease-in-out;
}

.btnLine {
  display: inline-block;
  padding: 16px 20px;
  width: 100%;
  max-width: 320px;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  background-color: #00B900;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  font-weight: 700;
}
@media (max-width: 768px) {
  .btnLine {
    font-size: 16px;
  }
}
.btnLine.-sizeMid {
  width: 320px;
}
@media (max-width: 768px) {
  .btnLine.-sizeMid {
    width: 100%;
    max-width: 320px;
  }
}
.btnLine.-w100 {
  width: 100%;
  max-width: 400px;
}
.btnLine.-wSp100 {
  width: 100%;
  max-width: none;
}
.btnLine img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.btnLine:hover img {
  animation: shakeX2 0.4s ease-in-out;
}

@keyframes shakeX2 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(1px);
  }
  75% {
    transform: translateX(-1px);
  }
  100% {
    transform: translateX(0);
  }
}
.btnContact {
  display: inline-block;
  padding: 16px 20px;
  width: 100%;
  max-width: 320px;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
}
@media (max-width: 768px) {
  .btnContact {
    font-size: 16px;
  }
}
.btnContact.-bgGreen {
  background-color: #00B900;
}
.btnContact.-bgBlack {
  background-color: #000000;
}
.btnContact.-sizeMid {
  width: 320px;
}
@media (max-width: 768px) {
  .btnContact.-sizeMid {
    width: 100%;
    max-width: 320px;
  }
}
.btnContact.-w100 {
  width: 100%;
  max-width: 400px;
}
.btnContact.-wSp100 {
  width: 100%;
  max-width: none;
}
.btnContact img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.btnContact:hover img {
  animation: shakeX2 0.4s ease-in-out;
}

.btnMore {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  width: 320px;
  padding: 16px 40px 16px 20px;
  text-align: center;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 16px;
  border: 2px solid #000000;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .btnMore {
    font-size: 15px;
  }
}
.btnMore i {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}
@media (min-width: 1200px) {
  .btnMore:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
  }
  .btnMore:hover i {
    animation: arrowBounce 0.6s ease forwards;
  }
}
.btnMore.-reverse {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #FFFFFF;
}
@media (min-width: 1200px) {
  .btnMore.-reverse:hover {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
  }
  .btnMore.-reverse:hover i {
    animation: arrowBounce 0.6s ease forwards;
  }
}
.btnMore.-small {
  width: 310px;
}

@keyframes arrowBounce {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(6px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
.btnDetail {
  display: inline-block;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .btnDetail {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .btnDetail:hover .btnDetail_icon {
    background-color: #FFFFFF;
    border: 1px solid #000000;
  }
  .btnDetail:hover i {
    color: #000000;
    animation: arrowBounceDetail 0.6s ease forwards;
  }
}
.btnDetail_text {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin-right: 12px;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .btnDetail_text {
    font-size: 13px;
    margin-right: 6px;
  }
}
.btnDetail_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background-color: #000000;
  border: 1px solid #000000;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .btnDetail_icon {
    width: 28px;
    height: 28px;
  }
}
.btnDetail_icon i {
  color: #FFFFFF;
  font-size: 12px;
}

@keyframes arrowBounceDetail {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}
.stickyBtn {
  display: inline-block;
  padding: 16px 4px;
  width: 100%;
  max-width: 320px;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.stickyBtn.-bgGreen {
  background-color: #00B900;
}
.stickyBtn.-bgAccent {
  background-color: #F8A2CC;
}
.stickyBtn img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.card {
  display: grid;
}
.card.-four {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 24px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .card.-four {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 24px;
  }
}
@media (max-width: 768px) {
  .card.-four {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 24px;
  }
}
.card.-three {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .card.-three {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 30px;
  }
}
@media (max-width: 768px) {
  .card.-three {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 24px;
  }
}

.breadcrumb {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .breadcrumb {
    margin-top: 50px;
    padding: 10px 0;
    font-size: 12px;
  }
}
.breadcrumb_line {
  margin: 0 8px;
}
@media (max-width: 768px) {
  .breadcrumb_line {
    margin: 0 6px;
  }
}
.breadcrumb_line.-cWhite {
  color: #FFFFFF;
}
.breadcrumb.-bgBlack {
  background-color: #000000;
}
.breadcrumb.-cWhite {
  color: #FFFFFF;
}

.paginationBtn {
  width: 60px;
  height: 60px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease 0s;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .paginationBtn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .paginationBtn {
    width: 30px;
    height: 30px;
  }
}
.paginationBtn i {
  color: #6DB8F3;
  transition: all 0.3s ease 0s;
}
@media (min-width: 1200px) {
  .paginationBtn:hover {
    background-color: #6DB8F3;
  }
  .paginationBtn:hover i {
    color: #FFFFFF;
  }
}

.pagination {
  padding-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .pagination {
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .pagination {
    padding-top: 34px;
  }
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-right: 16px;
  width: 36px;
  height: 36px;
  background-color: #FFFFFF;
  border: 2px solid #000000;
  color: #000000;
  transition: all 0.3s ease 0s;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .pagination .page-numbers {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .pagination .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 13px;
    margin-right: 14px;
  }
}
.pagination .page-numbers:last-child {
  margin-right: 0;
}
@media (min-width: 1200px) {
  .pagination .page-numbers:hover {
    background-color: #000000;
    color: #FFFFFF;
  }
}
.pagination .current {
  background-color: #000000;
  color: #FFFFFF;
}
.pagination .prev, .pagination .next {
  width: 36px;
  height: 36px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease 0s;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .pagination .prev, .pagination .next {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 768px) {
  .pagination .prev, .pagination .next {
    width: 30px;
    height: 30px;
  }
}
.pagination .prev i, .pagination .next i {
  color: #000000;
  font-size: 12px;
}
@media (min-width: 1200px) {
  .pagination .prev:hover, .pagination .next:hover {
    background-color: #000000;
  }
  .pagination .prev:hover i, .pagination .next:hover i {
    color: #FFFFFF;
  }
}

.pagination {
  text-align: center;
}
.pagination_top {
  margin-bottom: 6px;
  font-size: 20px;
}
.pagination_itemWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination_item {
  font-size: 20px;
  margin-right: 18px;
}
@media (max-width: 768px) {
  .pagination_item {
    margin-right: 8px;
  }
}
.pagination_item:last-child {
  margin-right: 0;
}
.pagination_item.-pre {
  width: 60px;
  height: 60px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .pagination_item.-pre {
    width: 40px;
    height: 40px;
  }
}
.pagination_item.-pre i {
  color: #6DB8F3;
}
.pagination_item.-next {
  width: 70px;
  height: 70px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .pagination_item.-next {
    width: 40px;
    height: 40px;
  }
}
.pagination_item.-next i {
  color: #FFFFFF;
}
.pagination_item.-active {
  border-bottom: 2px solid #000000;
}

.banner {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 99999;
}
@media (max-width: 768px) {
  .banner {
    right: 12px;
    bottom: 20px;
  }
}
.banner:has(> .banner_link:hover) img {
  animation: shakeX2 0.4s ease-in-out;
}
.banner img {
  width: 100%;
  max-width: 200px;
  height: auto;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .banner img {
    width: 100%;
    max-width: 160px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .banner img {
    width: 100%;
    max-width: 100px;
    height: auto;
  }
}
.banner_link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: 20;
}

@keyframes bounceBanner {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(6px);
  }
  20% {
    transform: translateX(-3px);
  }
  30% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
.stickyBtnWrapper {
  display: none;
}
@media (max-width: 768px) {
  .stickyBtnWrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 999;
  }
  .stickyBtnWrapper_item {
    width: 50%;
  }
}

.newsItem {
  position: relative;
  padding-right: 50px;
  border-bottom: 1px solid #000000;
}
.newsItem.-first {
  border-top: 1px solid #000000;
}
.newsItem_inner {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .newsItem_inner {
    display: block;
  }
}
.newsItem_date {
  font-size: 13px;
  margin-right: 24px;
  background-color: #E3E3E3;
  font-weight: 500;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .newsItem_date {
    font-size: 12px;
    display: inline-block;
    margin-bottom: 6px;
    padding: 2px 8px;
  }
}
.newsItem_bottom {
  position: relative;
  width: 100%;
}
.newsItem_title {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .newsItem_title {
    font-size: 13px;
  }
}
.newsItem_text {
  font-size: 13px;
  display: none;
  margin-left: 118px;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .newsItem_text {
    font-size: 12px;
    margin-left: 0;
    padding-bottom: 14px;
  }
}
.newsItem_btn {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px 0;
}
@media (max-width: 768px) {
  .newsItem_btn {
    padding: 14px 0;
  }
}
.newsItem_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 16px);
  width: 14px;
  height: 14px;
}
.newsItem_icon::before, .newsItem_icon::after {
  content: "";
  position: absolute;
  background: #000000;
  transition: 0.3s;
}
.newsItem_icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.newsItem_icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.newsItem.is-open .newsItem_icon::after {
  transform: rotate(-90deg);
}

.faqItem {
  background-color: #FFFFFF;
  border: 2px solid #C8C8C8;
  border-radius: 6px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .faqItem {
    margin-bottom: 14px;
  }
}
.faqItem_question {
  padding: 12px 50px 12px 24px;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
}
.faqItem_icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  margin-left: 16px;
}
.faqItem_icon::before, .faqItem_icon::after {
  content: "";
  position: absolute;
  background-color: #000000;
  transition: 0.3s;
}
.faqItem_icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faqItem_icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faqItem.is-open .faqItem_icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faqItem_questionInner {
  display: flex;
  align-items: center;
}
.faqItem_questionTextWrapper {
  width: calc(100% - 60px);
}
@media (min-width: 769px) and (max-width: 1200px) {
  .faqItem_questionTextWrapper {
    width: calc(100% - 50px);
  }
}
@media (max-width: 768px) {
  .faqItem_questionTextWrapper {
    width: calc(100% - 40px);
  }
}
.faqItem_answerInner {
  display: flex;
  align-items: center;
}
.faqItem_answerTextWrapper {
  width: calc(100% - 60px);
}
@media (min-width: 769px) and (max-width: 1200px) {
  .faqItem_answerTextWrapper {
    width: calc(100% - 50px);
  }
}
@media (max-width: 768px) {
  .faqItem_answerTextWrapper {
    width: calc(100% - 40px);
  }
}
.faqItem_questionBefore {
  background-color: #6DB8F3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 12px;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .faqItem_questionBefore {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .faqItem_questionBefore {
    width: 40px;
    height: 40px;
  }
}
.faqItem_questionBefore p {
  font-size: 20px;
  display: inline-block;
  color: #FFFFFF;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .faqItem_questionBefore p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .faqItem_questionBefore p {
    font-size: 16px;
  }
}
.faqItem_answerBefore {
  background-color: #F8A2CC;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 12px;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .faqItem_answerBefore {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .faqItem_answerBefore {
    width: 40px;
    height: 40px;
  }
}
.faqItem_answerBefore p {
  font-size: 20px;
  display: inline-block;
  color: #FFFFFF;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .faqItem_answerBefore p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .faqItem_answerBefore p {
    font-size: 16px;
  }
}
.faqItem_qText {
  font-weight: 500;
  font-size: 15px;
  text-align: left;
}
@media (max-width: 768px) {
  .faqItem_qText {
    font-size: 13px;
  }
}
.faqItem_answer {
  display: none;
  padding: 12px 50px 12px 24px;
}
.faqItem_aText {
  font-weight: 500;
  font-size: 15px;
}
@media (max-width: 768px) {
  .faqItem_aText {
    font-size: 13px;
  }
}

/* ==== bubbles (simple) ==== */
/* 泡レイヤーは背面＆クリック無効 */
.section > .bubble-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden; /* まずは互換性重視 */
  overflow: clip; /* 対応ブラウザでは clip（スクロール領域を増やさない） */
  contain: paint; /* 描画の独立性を高めてはみ出しを伝播させない */
}

/* 本文は前面 */
.section > :not(.bubble-layer) {
  position: relative;
  z-index: 1;
}

/* 泡（画像） */
.bubble {
  position: absolute;
  width: var(--size, 180px);
  height: var(--size, 180px);
  opacity: 0.9;
  will-change: transform, filter;
  /* CSSアニメ（GSAP使用時はJS側で無効化します） */
  animation: bubbleFloat var(--dur, 16s) ease-in-out var(--delay, 0s) infinite alternate;
  /* デフォルトの振れ幅（JSで上書き） */
  --dx: 0px; /* 左右のゆらぎ */
  --up: -22px; /* 上方向のゆらぎ */
  --scaleMax: 1.10; /* 最大スケール */
  --scaleMin: 0.92; /* 最小スケール */
  --rot: 6deg; /* 回転幅 */
}
@media (max-width: 768px) {
  .bubble {
    width: calc(var(--size) * 0.6667);
    height: calc(var(--size) * 0.6667);
  }
}

.bubble img {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes bubbleFloat {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(var(--dx), var(--up)) scale(var(--scaleMax)) rotate(var(--rot));
  }
  100% {
    transform: translate(0, 0) scale(var(--scaleMin)) rotate(calc(var(--rot) * -1));
  }
}
/* セクション間を跨ぐ泡だけを入れる最上位レイヤ */
#bubble-bridge-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  /* 高さはJSでドキュメント高に追従 */
  z-index: 20; /* ★ 要件：ブリッジ泡だけ 20 */
  pointer-events: none;
  overflow: hidden;
  overflow: clip;
  contain: paint;
}

/* （明示。親が20なので省略可だが可読性のため） */
#bubble-bridge-layer .bubble {
  z-index: 20;
}

/*********************
**********************
index.php
**********************
*********************/
.fv {
  position: relative;
  background-image: url("../../assets/img/top/fv.jpg");
  background-repeat: no-repeat;
  background-position: top 20% center;
  background-size: cover;
  margin-top: 80px;
  padding: 160px 0 180px;
}
@media (max-width: 768px) {
  .fv {
    background-image: url("../../assets/img/top/fv_sp.jpg");
    background-repeat: repeat;
    background-position: center center;
    margin-top: 60px;
    padding: 100px 0 120px;
  }
}
.fv_inner {
  max-width: 1500px;
  width: 100%;
  margin: auto;
  padding-right: 60px;
  padding-left: 60px;
  display: flex;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .fv_inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .fv_inner {
    padding-left: 24px;
    padding-right: 24px;
    flex-direction: column;
  }
}
.fv_textWrapper {
  width: 60%;
}
@media (max-width: 768px) {
  .fv_textWrapper {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 4px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }
}
.fv_title {
  font-size: 42px;
  font-family: "YuzuNoKiBall", sans-serif;
  font-weight: 900;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .fv_title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .fv_title {
    font-size: 34px;
  }
}
.fv_title .span {
  opacity: 0;
}
.fv_titleBg {
  position: relative;
  padding: 4px 0;
  z-index: 0;
}
.fv_titleBg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #FFFFFF;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: scaleX(var(--wipe, 0));
  transform-origin: left center;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}
.fv_pick {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F8A2CC;
  padding: 20px 40px;
  border-radius: 0 50px 50px 0;
}
@media (max-width: 768px) {
  .fv_pick {
    padding: 6px 10px;
    text-align: center;
    width: 100%;
    border-radius: 0;
  }
}
.fv_pick p {
  font-size: 34px;
  color: #FFFFFF;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .fv_pick p {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .fv_pick p {
    font-size: 20px;
  }
}
.fv_logo {
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
}
.fv_logo img {
  max-width: 300px;
}
@media (max-width: 768px) {
  .fv_logo img {
    max-width: 140px;
  }
}

.concept_inner {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .concept_inner {
    flex-direction: column;
  }
}
.concept_img {
  width: 36%;
  margin-right: auto;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .concept_img {
    width: 40%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .concept_img {
    width: 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .concept_img img {
    max-width: 340px;
  }
}
.concept_textWrapper {
  width: 60%;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .concept_textWrapper {
    width: 56%;
  }
}
@media (max-width: 768px) {
  .concept_textWrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.concept_title {
  font-size: 48px;
  font-family: "YuzuNoKiBall", sans-serif;
  font-weight: 700;
  margin-bottom: 28px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .concept_title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .concept_title {
    font-size: 34px;
    text-align: center;
  }
}

.campaign_label {
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .campaign_label {
    margin-bottom: 24px;
  }
}
.campaign_label.-step {
  margin-bottom: 38px;
}
.campaign_label.-step p {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaign_label.-step p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .campaign_label.-step p {
    font-size: 16px;
  }
}
.campaign_label.-step p::before, .campaign_label.-step p::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: calc(100% + 14px);
  background: #000000;
  transform-origin: 50% 50%;
}
.campaign_label.-step p::before {
  right: calc(100% + 30px);
  transform: rotate(-22deg);
}
@media (max-width: 768px) {
  .campaign_label.-step p::before {
    right: calc(100% + 24px);
  }
}
.campaign_label.-step p::after {
  left: calc(100% + 30px);
  transform: rotate(22deg);
}
@media (max-width: 768px) {
  .campaign_label.-step p::after {
    left: calc(100% + 24px);
  }
}
.campaign_label p {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaign_label p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .campaign_label p {
    font-size: 16px;
  }
}
.campaign_label p::before, .campaign_label p::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: #000000;
  transform-origin: 50% 50%;
}
.campaign_label p::before {
  right: calc(100% + 30px);
  transform: rotate(-22deg);
}
@media (max-width: 768px) {
  .campaign_label p::before {
    right: calc(100% + 24px);
  }
}
.campaign_label p::after {
  left: calc(100% + 30px);
  transform: rotate(22deg);
}
@media (max-width: 768px) {
  .campaign_label p::after {
    left: calc(100% + 24px);
  }
}
.campaign_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 24px;
  justify-content: center;
  margin-bottom: 32px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaign_items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .campaign_items {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 32px;
  }
}
.campaign_step {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.campaign_stepItems {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaign_stepItems {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .campaign_stepItems {
    margin-top: 16px;
    flex-direction: column;
  }
}
.campaign_stepItem {
  display: block;
  background-color: #6DB8F3;
  padding: 10px 24px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .campaign_stepItem {
    width: 100%;
    padding: 8px 18px;
  }
}
.campaign_stepItem p {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaign_stepItem p {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .campaign_stepItem p {
    font-size: 16px;
  }
}
.campaign_stepItem.-left {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .campaign_stepItem.-left {
    margin-right: 0;
    margin-bottom: 14px;
  }
}

.campaignItem {
  background-color: #F8A2CC;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .campaignItem {
    width: 260px;
    height: 260px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaignItem.-center {
    margin: 0 auto;
    grid-column: 1/3;
  }
}
.campaignItem_contents {
  text-align: center;
}
.campaignItem_benefit {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaignItem_benefit {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .campaignItem_benefit {
    font-size: 16px;
  }
}
.campaignItem_title {
  font-size: 24px;
  background-color: #FFFFFF;
  color: #6DB8F3;
  font-weight: 700;
  padding: 0 6px;
  margin-bottom: 4px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaignItem_title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .campaignItem_title {
    font-size: 18px;
  }
}
.campaignItem_title.-mb {
  margin-bottom: 6px;
}
.campaignItem_title.-mbLarge {
  margin-bottom: 10px;
}
.campaignItem_title span {
  font-size: 16px;
  font-weight: 500;
  margin: 0 4px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaignItem_title span {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .campaignItem_title span {
    font-size: 12px;
  }
}
.campaignItem_regular {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 14px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaignItem_regular {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .campaignItem_regular {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.campaignItem_text {
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaignItem_text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .campaignItem_text {
    font-size: 12px;
  }
}
.campaignItem_text span {
  font-size: 13px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .campaignItem_text span {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .campaignItem_text span {
    font-size: 10px;
  }
}
.campaignItem_bag {
  position: absolute;
  right: 14px;
  bottom: -30px;
  transform: translateX(50%);
}
.campaignItem_bag img {
  width: 200px;
  height: auto;
}
@media (max-width: 768px) {
  .campaignItem_bag img {
    width: 140px;
  }
}

.about_news {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .about_news {
    flex-direction: column;
  }
}
.about_newsLabel {
  width: 130px;
  margin-right: auto;
  height: 130px;
  border-radius: 50%;
  background-color: #6DB8F3;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .about_newsLabel {
    width: 90px;
    height: 90px;
    margin-right: 0;
    margin-bottom: 14px;
  }
}
.about_newsLabel p {
  display: inline-block;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .about_newsLabel p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .about_newsLabel p {
    font-size: 16px;
  }
}
.about_newsItem {
  width: calc(100% - 160px);
}
@media (max-width: 768px) {
  .about_newsItem {
    width: 100%;
  }
}

.featureItem {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .featureItem {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .featureItem {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto 50px;
  }
}
.featureItem:last-child {
  margin-bottom: 0;
}
.featureItem.-order .featureItem_img {
  order: 2;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .featureItem.-order .featureItem_img {
    order: 1;
  }
}
.featureItem.-order .featureItem_textWrapper {
  order: 1;
}
@media (max-width: 768px) {
  .featureItem.-order .featureItem_textWrapper {
    order: 2;
  }
}
.featureItem_img {
  width: 44%;
  margin-right: auto;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .featureItem_img {
    width: 36%;
  }
}
@media (max-width: 768px) {
  .featureItem_img {
    width: 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .featureItem_img img {
    max-width: 300px;
  }
}
.featureItem_textWrapper {
  width: 52%;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .featureItem_textWrapper {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .featureItem_textWrapper {
    width: 100%;
  }
}
.featureItem_title {
  font-family: "YuzuNoKiBall", sans-serif;
  font-weight: 700;
  font-size: 34px;
  background-color: #6DB8F3;
  display: inline-block;
  padding: 0 4px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .featureItem_title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .featureItem_title {
    font-size: 24px;
  }
}
.featureItem_title.-mbMedium {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .featureItem_title.-mbMedium {
    margin-bottom: 6px;
  }
}
.featureItem_title.-mbLarge {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .featureItem_title.-mbLarge {
    margin-bottom: 14px;
  }
}

.case_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .case_items {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
  }
}
@media (max-width: 768px) {
  .case_items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.caseItem {
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .caseItem {
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .caseItem {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .caseItem.-order .caseItem_img {
    order: 2;
  }
}
@media (max-width: 768px) {
  .caseItem.-order .caseItem_textWrapper {
    order: 1;
    margin-left: 0;
    margin-right: auto;
  }
}
.caseItem_img {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .caseItem_img {
    margin-bottom: 14px;
    width: 34%;
  }
}
@media (max-width: 768px) {
  .caseItem_img img {
    max-width: 340px;
  }
}
@media (max-width: 768px) {
  .caseItem_textWrapper {
    width: 60%;
    margin-left: auto;
  }
}
.caseItem_label {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .caseItem_label {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .caseItem_label {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
.caseItem_label::before, .caseItem_label::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: #000000;
  transform-origin: 50% 50%;
}
.caseItem_label::before {
  right: calc(100% + 18px);
  transform: rotate(-22deg);
}
@media (max-width: 768px) {
  .caseItem_label::before {
    right: calc(100% + 14px);
  }
}
.caseItem_label::after {
  left: calc(100% + 18px);
  transform: rotate(22deg);
}
@media (max-width: 768px) {
  .caseItem_label::after {
    left: calc(100% + 14px);
  }
}
.caseItem_badge {
  display: inline-block;
  background-color: #6DB8F3;
  color: #FFFFFF;
  padding: 2px 10px;
  font-size: 26px;
  font-weight: 700;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .caseItem_badge {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .caseItem_badge {
    font-size: 20px;
    margin-bottom: 8px;
  }
}

.trainerItem {
  max-width: 500px;
  margin: 0 auto;
}
.trainerItem_img {
  text-align: center;
}
.trainerItem_img img {
  max-width: 340px;
}
.trainerItem_name {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .trainerItem_name {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .trainerItem_name {
    font-size: 20px;
    margin-bottom: 14px;
  }
}
.trainerItem_text {
  font-size: 18px;
  text-align: center;
  line-height: 1.6;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .trainerItem_text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .trainerItem_text {
    font-size: 14px;
    text-align: left;
  }
}

.price_plan {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-bottom: 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .price_plan {
    gap: 24px 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .price_plan {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 24px;
  }
}
.planItem {
  border: 6px solid #6DB8F3;
  border-radius: 6px;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .planItem {
    max-width: 400px;
    margin: 0 auto;
  }
}
.planItem_title {
  text-align: center;
  background-color: #6DB8F3;
  padding: 0 4px 8px;
}
.planItem_title p {
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .planItem_title p {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .planItem_title p {
    font-size: 20px;
  }
}
.planItem_contents {
  padding: 40px 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .planItem_contents {
    padding: 32px 24px;
  }
}
@media (max-width: 768px) {
  .planItem_contents {
    padding: 24px 20px;
  }
}
.planItem_contentsTop {
  display: flex;
  align-items: center;
  max-width: 310px;
  margin: 0 auto 30px;
}
@media (max-width: 768px) {
  .planItem_contentsTop {
    margin: 0 auto 20px;
    max-width: 240px;
  }
}
.planItem_label {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid #F8A2CC;
  margin-right: auto;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .planItem_label {
    width: 64px;
    height: 64px;
    border: 6px solid #F8A2CC;
  }
}
@media (max-width: 768px) {
  .planItem_label {
    width: 54px;
    height: 54px;
    border: 6px solid #F8A2CC;
  }
}
.planItem_label p {
  font-size: 20px;
  color: #F8A2CC;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .planItem_label p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .planItem_label p {
    font-size: 16px;
  }
}
.planItem_textWrapper {
  width: calc(100% - 94px);
}
@media (min-width: 769px) and (max-width: 1200px) {
  .planItem_textWrapper {
    width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  .planItem_textWrapper {
    width: calc(100% - 64px);
  }
}
.planItem_textRegular {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .planItem_textRegular {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .planItem_textRegular {
    font-size: 12px;
  }
}
.planItem_textRegular::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  z-index: 20;
  background-color: #000000;
}
.planItem_textRegular span {
  font-size: 20px;
  margin: 0 4px;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .planItem_textRegular span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .planItem_textRegular span {
    font-size: 16px;
  }
}
.planItem_textCp {
  font-size: 14px;
  font-weight: 500;
  color: #EB5255;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .planItem_textCp {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .planItem_textCp {
    font-size: 12px;
  }
}
.planItem_textCp span {
  font-size: 28px;
  font-weight: 700;
  margin: 0 4px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .planItem_textCp span {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .planItem_textCp span {
    font-size: 20px;
  }
}
.planItem_tags {
  display: flex;
  justify-content: center;
}
.planItem_tagItem {
  padding: 2px 12px;
  background-color: #e2f1fd;
  border-radius: 5px;
  margin-right: 14px;
}
@media (max-width: 768px) {
  .planItem_tagItem {
    margin-right: 10px;
  }
}
.planItem_tagItem:last-child {
  margin-right: 0;
}
.planItem_tagItem p {
  font-size: 14px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .planItem_tagItem p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .planItem_tagItem p {
    font-size: 12px;
  }
}

.menu {
  border: 6px solid #6DB8F3;
  border-radius: 6px;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .menu {
    max-width: 400px;
    margin: 0 auto;
  }
}
.menu_title {
  text-align: center;
  background-color: #6DB8F3;
  padding: 0 4px 8px;
}
.menu_title p {
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .menu_title p {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .menu_title p {
    font-size: 20px;
  }
}
.menu_contents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 40px;
  padding: 40px 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .menu_contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .menu_contents {
    grid-template-columns: repeat(1, 1fr);
    padding: 32px 20px;
    gap: 14px 40px;
  }
}
@media (max-width: 768px) {
  .menu_item {
    display: flex;
    align-items: center;
  }
}
.menu_itemIcon {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .menu_itemIcon {
    margin-bottom: 14px;
    width: 34%;
    margin-right: auto;
  }
}
.menu_itemIcon img {
  max-width: 220px;
}
.menu_itemText {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .menu_itemText {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .menu_itemText {
    font-size: 14px;
    width: 60%;
    text-align: left;
  }
}

.access_map {
  position: relative;
  z-index: 60;
}
.access_map iframe {
  width: 100%;
  height: 400px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .access_map iframe {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .access_map iframe {
    height: 240px;
  }
}

/*********************
**********************
page-archive-news.php
**********************
*********************/
.pageTop {
  margin-top: 80px;
  position: relative;
  background-image: url("../../assets/img/common/bg_pageTop.png?20250821");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  margin-top: 80px;
  padding: 80px 0 90px;
}
@media (max-width: 768px) {
  .pageTop {
    margin-top: 60px;
  }
}

.news_item {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .news_item {
    margin-bottom: 14px;
  }
}

/*********************
**********************
404.php
**********************
*********************/
.nf_items {
  display: flex;
}
@media (max-width: 768px) {
  .nf_items {
    flex-direction: column;
  }
}
.nf_itemLeft {
  width: 34%;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .nf_itemLeft {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.nf_itemRight {
  width: 60%;
}
@media (max-width: 768px) {
  .nf_itemRight {
    width: 100%;
  }
}
.nf_itemLeftTitle {
  font-size: 140px;
  line-height: 1;
  color: #6DB8F3;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .nf_itemLeftTitle {
    font-size: 110px;
  }
}
@media (max-width: 768px) {
  .nf_itemLeftTitle {
    font-size: 90px;
  }
}
.nf_itemLeftSubtitle {
  font-size: 32px;
  margin-bottom: 8px;
  color: #6DB8F3;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .nf_itemLeftSubtitle {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .nf_itemLeftSubtitle {
    font-size: 20px;
  }
}
.nf_itemLeftText {
  font-weight: 500;
  font-size: 20px;
  color: #6DB8F3;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .nf_itemLeftText {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .nf_itemLeftText {
    font-size: 16px;
  }
}
.nf_itemRightText {
  margin-bottom: 30px;
  padding: 24px;
  background-color: #e2f1fd;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .nf_itemRightText {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .nf_itemRightText p {
    font-size: 14px;
  }
}

/*********************
**********************
page-privacy.php
**********************
*********************/
.privacy {
  /* ========== ベース ========== */
  /* ========== カード（薄ピンク帯） ========== */
  /* ========== 見出し・本文 ========== */
  /* ========== リスト（ul/ol どちらでも “数字” で表示） ========== */
  /*
    - どの .privacy_list でも CSS カウンタで 1. 2. 3. を描画
    - HTML が <ul> でも <ol> でも見た目は十進数
    - ネストしたリストは各階層で 1 から再カウント
  */
  /* ========== 住所など ========== */
}
.privacy_contents {
  background-color: #FFFFFF;
  padding: 40px 0;
  word-break: break-word;
  scroll-behavior: smooth;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .privacy_contents {
    padding: 32px 0;
  }
}
@media (max-width: 768px) {
  .privacy_contents {
    padding: 24px 0;
  }
}
.privacy_section {
  position: relative;
  background: #FEECF5;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
  scroll-margin-top: 100px; /* 固定ヘッダー対策 */
}
@media (min-width: 769px) and (max-width: 1200px) {
  .privacy_section {
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 18px;
    scroll-margin-top: 90px;
  }
}
@media (max-width: 768px) {
  .privacy_section {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    scroll-margin-top: 70px;
  }
}
.privacy_section + .privacy_section {
  margin-top: 4px;
}
.privacy_heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 10px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .privacy_heading {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .privacy_heading {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.privacy_text, .privacy_lead {
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .privacy_text, .privacy_lead {
    font-size: 14px;
  }
}
.privacy_lead {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .privacy_lead {
    margin-bottom: 20px;
  }
}
.privacy_list {
  /* まず既定のマーカーを消す */
  list-style: none;
  margin: 8px 0 0 0;
  padding-left: 0;
  /* このリストのカウンタを初期化 */
  counter-reset: num;
  /* 文字サイズ・行間は共通 */
  font-size: 16px;
  line-height: 1.9;
  /* 旧指定のクラスは互換用に残す（見た目はすべて数字） */
  /* ネストの段下げを強めたい場合に使用（任意） */
}
@media (max-width: 768px) {
  .privacy_list {
    font-size: 14px;
  }
}
.privacy_list li {
  position: relative;
  /* 数字分のインデント */
  padding-left: 1.9em;
  margin: 4px 0;
  /* 数字マーカー */
  /* ネストした .privacy_list を見つけたら、そこで番号をリセット */
}
.privacy_list li::before {
  counter-increment: num;
  content: counter(num) ". ";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6em; /* 数字幅分 */
  text-align: right; /* ピリオドを揃える */
  font-weight: 600;
  font-variant-numeric: tabular-nums lining-nums;
}
.privacy_list li > .privacy_list {
  counter-reset: num;
  margin-top: 4px;
}
.privacy_list.-ol { /* no-op: 数字カウンタで統一 */ }
.privacy_list.-ul { /* no-op: 数字カウンタで統一 */ }
.privacy_list.-indent {
  margin-left: 0.6em;
}
.privacy_list.-indent li {
  padding-left: 2.2em;
}
.privacy_list.-indent li::before {
  width: 1.9em;
}
.privacy_address {
  font-style: normal;
  line-height: 1.9;
  font-size: 16px;
}
@media (max-width: 768px) {
  .privacy_address {
    font-size: 14px;
  }
}

/*********************
**********************
ユーティリティ
**********************
*********************/
.u-caution {
  font-size: 10px;
}
@media (max-width: 768px) {
  .u-caution {
    font-size: 9px;
  }
}

.u-marker {
  display: inline-block;
  position: relative;
}
.u-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  width: 100%;
  height: 28px;
  background-repeat: no-repeat;
  transition: width 0.3s ease;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-marker::after {
    height: 26px;
  }
}
@media (max-width: 768px) {
  .u-marker::after {
    height: 25px;
    bottom: 2px;
  }
}
.u-marker.-largeMost::after {
  background-image: url("../../assets/img/common/marker_largeMost.svg");
}
.u-marker.-largeMore::after {
  background-image: url("../../assets/img/common/marker_largeMore.svg");
}
.u-marker.-large::after {
  background-image: url("../../assets/img/common/marker_large.svg");
}
.u-marker.-mediumMore::after {
  background-image: url("../../assets/img/common/marker_mediumMore.svg");
}
.u-marker.-medium::after {
  background-image: url("../../assets/img/common/marker_medium.svg");
}
.u-marker.-smallMore::after {
  background-image: url("../../assets/img/common/marker_smallMore.svg");
}
.u-marker.-small::after {
  background-image: url("../../assets/img/common/marker_small.svg");
}

.u-cWhite {
  color: #FFFFFF;
}

.u-cMain {
  color: #6DB8F3;
}

.u-cAccent {
  color: #F8A2CC;
}

.u-link {
  border-bottom: 1px solid #6DB8F3;
  transition: all 0.3s ease 0s;
  color: #6DB8F3;
}
.u-link:hover {
  opacity: 0.7;
  cursor: pointer;
}
.u-link.-cBlack {
  border-bottom: 1px solid #000000;
  color: #000000;
}

.u-fzMedium {
  font-size: 24px;
}
@media (max-width: 768px) {
  .u-fzMedium {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .u-fzMedium {
    font-size: 18px;
  }
}

.u-comingWrapper {
  position: relative;
  cursor: default;
  width: 100%;
  height: 100%;
}
.u-comingWrapper::after {
  position: absolute;
  content: "Coming Soon";
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #FFFFFF;
  background-color: rgba(119, 113, 113, 0.7);
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-comingWrapper::after {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .u-comingWrapper::after {
    font-size: 16px;
    max-width: 400px;
  }
}
.u-comingWrapper:hover {
  box-shadow: none;
}

.u-borderTop {
  border-top: 1px solid #000000;
}

.u-borderBottom {
  border-bottom: 1px solid #000000;
}
.u-borderBottom.-medium {
  border-bottom: 2px solid #000000;
}

.u-dib {
  display: inline-block;
}

.u-dnone {
  display: none;
}

.u-mlr3 {
  margin-right: 2.5px;
  margin-left: 2.5px;
}

.u-colorWhite {
  color: #FFFFFF;
}

.u-pl28 {
  padding-left: 28px;
}

.u-pl14 {
  padding-left: 14px;
}

.u-fwb {
  font-weight: 700;
}

.u-fwm {
  font-weight: 500;
}

.u-fwl {
  font-weight: 300;
}

.u-nowrap {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.u-mtMedium {
  margin-top: 100px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mtMedium {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .u-mtMedium {
    margin-top: 60px;
  }
}

.u-mtMedium-more {
  margin-top: 60px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mtMedium-more {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .u-mtMedium-more {
    margin-top: 30px;
  }
}

.u-mtSmall {
  margin-top: 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mtSmall {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .u-mtSmall {
    margin-top: 20px;
  }
}

.u-mbLarge {
  margin-bottom: 120px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mbLarge {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .u-mbLarge {
    margin-bottom: 70px;
  }
}

.u-mbMedium {
  margin-bottom: 100px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mbMedium {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .u-mbMedium {
    margin-bottom: 60px;
  }
}

.u-mbMedium-more {
  margin-bottom: 60px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mbMedium-more {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .u-mbMedium-more {
    margin-bottom: 24px;
  }
}

.u-mbSmall {
  margin-bottom: 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mbSmall {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .u-mbSmall {
    margin-bottom: 20px;
  }
}

.u-mbSmall-more {
  margin-bottom: 30px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mbSmall-more {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .u-mbSmall-more {
    margin-bottom: 16px;
  }
}

.u-mbSmallest {
  margin-bottom: 20px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mbSmallest {
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) {
  .u-mbSmallest {
    margin-bottom: 16px;
  }
}

.u-mbSmallest-more {
  margin-bottom: 8px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mbSmallest-more {
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .u-mbSmallest-more {
    margin-bottom: 4px;
  }
}

.u-nowrap {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.u-mb4 {
  margin-bottom: 4px;
}

.u-mb6 {
  margin-bottom: 6px;
}

.u-mb8 {
  margin-bottom: 8px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb12 {
  margin-bottom: 12px;
}

.u-mb14 {
  margin-bottom: 14px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb18 {
  margin-bottom: 18px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb36 {
  margin-bottom: 36px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mr10 {
  margin-right: 10px;
}

.u-mr14 {
  margin-right: 14px;
}

.u-mr16 {
  margin-right: 16px;
}

.u-mr20 {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .u-mr20.-confirm {
    margin-right: 0;
  }
}

.u-ml10 {
  margin-left: 10px;
}

.u-mt72 {
  margin-top: 72px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-pt20 {
  padding-top: 20px;
}

.u-fz16 {
  font-size: 16px;
}

.u-fz17 {
  font-size: 17px;
}

.u-fz18 {
  font-size: 18px;
}

.u-fz20 {
  font-size: 20px;
}

.u-fz24 {
  font-size: 24px;
}

.u-fz32 {
  font-size: 32px;
}

.u-fz40 {
  font-size: 40px;
}

.u-fz50 {
  font-size: 50px;
}

.u-fzSmall-more {
  font-size: 12px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-fzSmall-more {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .u-fzSmall-more {
    font-size: 10px;
  }
}

.u-fzSmall {
  font-size: 16px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-fzSmall {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .u-fzSmall {
    font-size: 12px;
  }
}

.u-fzMedium-more {
  font-size: 18px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-fzMedium-more {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .u-fzMedium-more {
    font-size: 14px;
  }
}

.u-fzMedium {
  font-size: 24px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-fzMedium {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .u-fzMedium {
    font-size: 18px;
  }
}

.u-fzLarge {
  font-size: 30px;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-fzLarge {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .u-fzLarge {
    font-size: 22px;
  }
}

.u-tac {
  text-align: center;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .u-onlyPc {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .u-onlyPc {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .u-onlyTab {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .u-onlyTab {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .u-onlyPcTab {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .u-onlySp {
    display: none !important;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-onlySp {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .u-onlySp {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .u-onlyTabSp {
    display: none !important;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-onlyTabSp {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .u-onlyTabSp {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .u-onlyPcSp {
    display: block !important;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-onlyPcSp {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .u-onlyPcSp {
    display: block !important;
  }
}/*# sourceMappingURL=style.css.map */