@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

img,
picture {
  max-width: 100%;
  display: inline-block;
}

input,
button,
textarea,
select {
  font: inherit;
  cursor: pointer;
}

strong {
  font-weight: bolder;
}

textarea {
  resize: vertical;
}

:root {
  /* ベース設定（16px / 行間 1.03） */
  --font_base: 16px/1.875 'Zen Kaku Gothic New', 'Noto Sans JP', 'Hiragino Sans', "Hiragino Kaku Gothic ProN", sans-serif;
  /* フォントファミリー */
  --f-mincho: 'Zen Old Mincho', serif;
  --f-gothic: 'Zen Kaku Gothic New', sans-serif;
  /* フォントサイズ：fo関数を使ってremに変換して格納 */
  --fz-ac: 2.5rem; /* MVタイトルなど */
  --fz-xl: 2.25rem; /* MVタイトルなど */
  --fz-lg: 2rem; /* セクション見出し */
  --fz-mg: 1.5rem; /* h3 */
  --fz-md: 1.25rem; /* サブ見出し・ロゴ */
  --fz-sm: 1.125rem; /* 小見出し */
  --fz-base: 1rem; /* 本文標準 */
  --fz-xs: 0.875rem; /* 補足・ナビ */
  --fz-xxs: 0.875rem; /* 補足・ナビ */
  /* (sp)フォントサイズ：fo関数を使ってremに変換して格納 */
  --fz-s-ac: 1.875rem; /* MVタイトルなど */
  --fz-s-lg: 1.5rem; /* セクション見出し */
  --fz-s-md: 1.3125rem; /* サブ見出し・ロゴ */
  --fz-s-xs: 1.0625rem; /* 補足・ナビ */
  /* 行間・文字間 */
  --lh-default: 1.7;
  --ls-default: 0.05em;
  --ls-h2: 0.16em;
  --ls-catch: 0.24em;
  --ls-s-default: 0em;
  /* 余白 (Margin) */
  --m-h2-bottom: 10px;
  --m-subtitle-bottom: 25px;
}

:root {
  --default-black: #333;
  --default-white: #fff;
  --default-blue: #009CEF;
  --base-gray-default: #F4F6F8;
  --base-gray-dark:#6C6C6C;
  --c-main: #F2EDE4;
  --c-header: #F2EDE4;
  --c-footer: #424845;
  --c-btn-orange: #C15D3E;
  --c-btn-gold: #F0B170;
  --c-btn-green: #58987D;
  --c-sec-1: #58987D;
  --c-sec-2: #B4DDCB;
  --c-contact: #E5D9C4;
  --c-text: #333333;
  --c-calender: #dcd3c1;
  --c-gold-btn:#1E2B25;
  --c-pankuzu:#90836B;
  --c-hover:#40B5F3;
}

.rotate-image {
  /* アニメーション名, 速度, 線形, 無限ループ */
  animation: rotateAnime 15s linear infinite;
  /* アイコンが四角い場合、丸くすると綺麗 */
  border-radius: 50%;
}

/* 回転の定義 */
@keyframes rotateAnime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
a[href^=https],
a[href^="mailto:"] {
  word-break: break-all;
}

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

a {
  color: var(--default-blue);
  text-decoration: none;
  transition: all 0.5s;
}

@media all and (min-width: 768px) {
  .spOnly {
    display: none !important;
  }
}

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

.l-header {
  padding: 13px 10px 15px;
  border-bottom: solid 1px var(--base-gray-light);
}
@media all and (min-width: 768px) {
  .l-header {
    padding: 13px 50px 15px;
  }
}

.l-header .l-header_logo {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  width: 110px;
  height: 33px;
  background-size: contain;
}
@media all and (min-width: 768px) {
  .l-header .l-header_logo {
    width: 180px;
    height: 60px;
  }
}
.l-header .l-header_logo a {
  display: block;
  width: 100%;
}
@media all and (min-width: 768px) {
  .l-header .l-header_logo a {
    height: 60px;
  }
}

#Top .l-header .l-header_logo a {
  pointer-events: none;
}

@media all and (min-width: 768px) {
  .l-header {
    display: flex;
    justify-content: space-between;
  }
}

.l-header {
  background-color: var(--c-header);
  position: relative;
  z-index: 100;
  width: 92vw;
  box-shadow: 0px 1px 6px rgba(23, 49, 38, 0.16);
}
@media screen and (max-width: 767px) {
  .l-header {
    border-bottom: 1px solid var(--c-contact);
  }
}
.l-header_flex {
  display: flex;
  align-items: center;
  padding: 20px 0;
  width: 92vw;
  max-width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-header_flex {
    margin: 0 auto;
    padding: 6px 0;
  }
}
.l-header_title {
  font-family: var(--f-mincho);
  font-size: var(--fz-lg);
  font-weight: bold;
  margin-right: auto;
  z-index: 1001;
  white-space: nowrap;
}
.l-header_title a {
  color: var(--default-black);
}
@media screen and (max-width: 767px) {
  .l-header_title {
    margin: 0;
  }
}
.l-header_menu-inner {
  display: flex;
  align-items: center;
  margin-left: 50px;
  flex-shrink: 0;
}
@media screen and (min-width:768px) and (max-width: 1019px) {
  .l-header_menu-inner {
    margin-left: clamp(16px, 3vw, 50px);
  }
}
@media screen and (max-width: 767px) {
  .l-header_menu-inner {
    display: none;
    position: fixed;
    top: 92px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--c-contact);
    flex-direction: column;
    justify-content: flex-start;
    z-index: 1000;
    overflow-y: auto;
    margin-left: auto;
  }
  .l-header_menu-inner.is-open {
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  .l-header_nav {
    width: 100%;
  }
}
.l-header_nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
  margin-right: 30px;
  font-weight: bold;
  white-space: nowrap;
}
@media all and (min-width: 768px) {
  .l-header_nav ul li a {
    position: relative;
    padding: 8px 0;
    display: inline-block;
    color: var(--default-black);
    transition: color 0.3s ease;
  }
  .l-header_nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 12px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }
  .l-header_nav ul li a:hover {
    color: var(--c-btn-orange);
  }
  .l-header_nav ul li a:hover::after {
    clip-path: inset(0 0 0 0);
  }
  .l-header_nav ul li:nth-child(1) a::after {
    background-image: url("../images/img_top_gmenu2_title_deco.png");
  }
  .l-header_nav ul li:nth-child(2) a::after {
    background-image: url("../images/img_top_gmenu1_title_deco.png");
  }
  .l-header_nav ul li:nth-child(3) a::after {
    background-image: url("../images/img_top_gmenu1_title_deco.png");
  }
  .l-header_nav ul li:nth-child(4) a::after {
    background-image: url("../images/img_top_gmenu_title_deco.png");
  }
}
@media screen and (max-width: 767px) {
  .l-header_nav ul {
    flex-direction: column;
    margin-right: 0;
    gap: 0;
  }
  .l-header_nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--c-header);
  }
  .l-header_nav ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 5vw;
    font-size: 1.1rem;
    color: var(--default-black);
    text-decoration: none;
  }
  .l-header_nav ul li a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--c-btn-orange);
    border-right: 2px solid var(--c-btn-orange);
    transform: rotate(45deg);
  }
}
.l-header_contact {
  display: flex;
  gap: 20px;
}
@media all and (min-width: 768px) {
  .l-header_contact .c-btn.is-small {
    position: relative;
    z-index: 1;
    transition: background-color 0.3s ease, opacity 0.3s ease;
  }
  .l-header_contact .c-btn.is-small::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 32px;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .l-header_contact .c-btn.is-small:hover {
    opacity: 0.9;
  }
  .l-header_contact .c-btn.is-small:hover::before {
    border-color: rgba(255, 255, 255, 0.6);
    inset: 2px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_contact {
    flex-direction: column;
    width: 100%;
    padding: 22px 5vw;
    gap: 15px;
  }
  .l-header_contact .is-orange {
    order: 1;
  }
  .l-header_contact .is-green {
    order: 2;
  }
  .l-header_contact .spOnly {
    order: 3;
  }
  .l-header_contact .c-btn {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  .l-header_contact .c-btn.is-dark {
    background-color: #3C3C3C;
  }
}

.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
    z-index: 1100;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--c-btn-orange);
    border: none;
    position: relative;
    cursor: pointer;
  }
  .c-hamburger span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--default-white);
    transition: 0.3s;
  }
  .c-hamburger span:nth-child(1) {
    top: 15px;
  }
  .c-hamburger span:nth-child(2) {
    top: 21px;
  }
  .c-hamburger span:nth-child(3) {
    top: 27px;
  }
  .c-hamburger.is-active span:nth-child(1) {
    transform: translate(-50%, 6px) rotate(45deg);
  }
  .c-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .c-hamburger.is-active span:nth-child(3) {
    transform: translate(-50%, -6px) rotate(-45deg);
  }
}

.l-header {
  z-index: 1001;
  background-color: var(--c-header);
}
@media all and (min-width: 768px) {
  .l-header { /* Safari対応 */
    position: sticky;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    min-width: -moz-max-content;
    min-width: max-content;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
@media all and (min-width: 768px) {
  .l-header_flex {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: clamp(16px, 4vw, 50px);
    padding-right: clamp(16px, 4vw, 50px);
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .l-header_flex {
    width: 92vw;
    margin: 0 auto;
    padding: 2px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header_flex {
    padding: 2px 0;
  }
}
@media screen and (max-width: 767px) {
  body.is-open .l-header {
    position: fixed;
    top: 0;
    padding-right: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .l-header_menu-inner {
    position: fixed;
    top: 92px; /* ヘッダーの高さに合わせて調整 */
    left: 0;
    width: 100%;
    height: calc(100dvh - 92px); /* 画面の高さからヘッダー分を引く */
    overflow-y: auto; /* これでメニュー内だけスクロール可能になる */
    -webkit-overflow-scrolling: touch; /* 指の動きに吸い付くように */
    background-color: var(--c-contact);
    z-index: 1000;
    display: none;
  }
  .l-header_menu-inner.is-open {
    display: flex !important;
  }
}
footer {
  border-top: solid 2px var(--default-black);
}

.l-footer {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin: auto;
    padding: 5px 0 30px;
  }
}
@media all and (min-width: 768px) {
  .l-footer {
    padding: 40px 50px;
    display: block;
    width: 100%;
    min-width: max(100%, -moz-max-content);
    min-width: max(100%, max-content);
    box-sizing: border-box;
  }
}
.l-footer small {
  font-size: 0.6875rem;
}

.l-footer {
  background-color: var(--c-footer);
  color: var(--default-white);
  background-image: url(../images/img_footer_back.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 270px auto;
  background-position: 20px 0px;
}
.l-footer_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer_flex {
    flex-direction: column;
    gap: 20px;
    width: 92vw;
  }
}
.l-footer_info {
  margin-right: auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-footer_info {
    margin-top: 20px;
  }
}
.l-footer_logo {
  font-family: var(--f-mincho);
  font-size: var(--fz-lg);
  white-space: nowrap;
}
.l-footer_logo a {
  color: var(--default-white);
}
.l-footer_nav {
  margin-left: 50px;
}
.l-footer_nav ul {
  display: flex;
  font-weight: bold;
  gap: 35px;
  list-style: none;
  margin-right: 36px;
  padding-top: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-footer_nav ul {
    font-size: var(13);
  }
}
.l-footer_nav ul a {
  color: var(--default-white);
  text-decoration: none;
}
.l-footer address {
  font-style: normal;
  margin-bottom: 10px;
  opacity: 0.8;
  white-space: nowrap;
}
.l-footer_pdf {
  font-size: var(--fz-xxs);
  color: var(--default-white);
}
.l-footer_pdf::before {
  content: "";
  display: inline-block;
  width: 1.2em; /* フォントサイズに合わせた幅 */
  height: 1.4em; /* アイコンの高さ（PDFっぽく） */
  margin-right: 0.5em; /* アイコンと文字の間隔 */
  background-image: url(../common/ico_pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.l-footer_copy {
  font-size: var(12);
  opacity: 0.6;
}
.l-footer_contact {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .l-footer_contact {
    flex-direction: column;
    width: 100%;
  }
}

.l-footer_nav ul li a {
  position: relative;
  padding: 8px 0;
  display: inline-block;
  transition: color 0.3s ease;
}
.l-footer_nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 110%;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-footer_nav ul li a:hover {
  color: var(--c-btn-orange);
}
.l-footer_nav ul li a:hover::after {
  clip-path: inset(0 0 0 0);
  color: var(--c-btn-orange);
}
.l-footer_nav ul li:nth-child(1) a::after {
  background-image: url("../images/img_top_gmenu2_title_deco.png");
}
.l-footer_nav ul li:nth-child(2) a::after {
  background-image: url("../images/img_top_gmenu1_title_deco.png");
}
.l-footer_nav ul li:nth-child(3) a::after {
  background-image: url("../images/img_top_gmenu1_title_deco.png");
}
.l-footer_nav ul li:nth-child(4) a::after {
  background-image: url("../images/img_top_gmenu_title_deco.png");
}

body {
  font: var(--font_base);
  color: var(--default-black);
  background: #fff;
}

@media all and (min-width: 768px) {
  html {
    overflow-x: auto;
  }
}

.l-header_contact {
  position: relative;
  z-index: 1002;
}

.c-btn {
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
}

/* スマホ時のみ有効にする */
@media screen and (max-width: 767px) {
  body.is-open {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}
@media all and (min-width: 768px) {
  body {
    min-width: 1020px;
    overflow: visible;
    overflow-x: visible !important;
    width: max(100%, -moz-max-content);
    width: max(100%, max-content);
    max-width: none;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
  }
}

/* メニューが開いている時、bodyのスクロールを止める */
.mainCont-inner {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .mainCont-inner {
    width: 92vw;
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .mainCont-inner {
    width: 1020px;
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .mainCont-inner.form {
    width: 950px;
  }
}

.l-breadcrumb {
  display: block !important;
  min-height: 1px;
  background-color: var(--c-pankuzu);
  background: rgba(144, 131, 107, 0.14);
  padding: 12px 50px;
}
.l-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fz-xxs);
  color: var(--default-black);
}
.l-breadcrumb ul li {
  display: flex;
  align-items: center;
}
.l-breadcrumb ul li a {
  color: var(--c-btn-orange); /* 青っぽい色（標準的なリンクカラー） */
  text-decoration: none; /* デフォルトの下線を消す（borderで制御するため） */
  position: relative;
  display: inline-block;
  padding-bottom: 0px;
  border-bottom: 1px solid var(--c-btn-orange); /* 下線を表示 */
  transition: 0.3s; /* ホバー時の変化を滑らかにする */
}
.l-breadcrumb ul li {
  /* マウスを乗せた時の演出（オプション） */
}
.l-breadcrumb ul li a:hover {
  color: var(--c-btn-orange); /* 少し濃い青に */
}
.l-breadcrumb ul li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  font-size: 1.2rem;
  color: var(--default-black);
}
@media screen and (max-width: 767px) {
  .l-breadcrumb {
    padding: 10px 0;
  }
  .l-breadcrumb ul {
    margin: 0 auto;
    width: 92vw;
  }
}

.c-title {
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 1.625rem;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .c-title {
    font-size: 2.1875rem;
    margin-bottom: 20px;
  }
}

.text_center,
.text_center_Pc,
.text_center_Sp {
  text-align: center;
}

.c-btn,
.c-btn a {
  text-decoration: none;
  cursor: pointer;
}

.c-btn_primary {
  display: block;
}

/* --- Animations --- */
@keyframes rotate-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-left {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.c-btn {
  /* --- 基本設定を維持 --- */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 35px;
  min-width: 200px;
  height: 64px;
  border-radius: 32px;
  font-size: var(--fz-base);
  color: var(--default-white);
  text-decoration: none;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
  gap: 10px;
  box-shadow: 0px 3px 6px rgba(23, 49, 38, 0.16);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.c-btn__icon {
  width: 18px;
  height: auto;
  flex-shrink: 0;
}
.c-btn.is-small {
  min-width: 0px;
  height: 54px;
  font-weight: bold;
  gap: 10px !important;
  padding: 0 35px !important;
}
.c-btn {
  /* --- Orange と Gold に共通のアニメーション・構造設定 --- */
}
.c-btn.is-orange, .c-btn.is-gold {
  padding: 0 70px 0 35px;
  gap: 0;
  transition: opacity 0.3s;
}
.c-btn.is-orange:hover, .c-btn.is-gold:hover {
  filter: brightness(1.1);
}
.c-btn.is-orange .c-btn_gold-icon i, .c-btn.is-gold .c-btn_gold-icon i {
  background-color: var(--c-btn-gold);
}
.c-btn.is-orange .c-btn_gold-icon i::before, .c-btn.is-gold .c-btn_gold-icon i::before {
  border-color: var(--c-btn-gold);
}
.c-btn.is-orange .c-btn_gold-icon, .c-btn.is-gold .c-btn_gold-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  z-index: 2;
  pointer-events: none;
}
.c-btn.is-orange .c-btn_gold-icon::after, .c-btn.is-gold .c-btn_gold-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/common/ico_btn_small.png") no-repeat center/48px auto;
  z-index: 3;
  transform: rotate(0deg);
}
.c-btn.is-orange .c-btn_gold-icon::before, .c-btn.is-gold .c-btn_gold-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/common/ico_btn_large.png") no-repeat center/100% 100%;
  z-index: 2;
  transform: rotate(0deg);
}
.c-btn.is-orange .c-btn_gold-icon i, .c-btn.is-gold .c-btn_gold-icon i {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  z-index: 5;
  transition: transform 0.3s ease-out, left 0.3s ease-out, width 0.3s ease-out;
}
.c-btn.is-orange .c-btn_gold-icon i::before, .c-btn.is-gold .c-btn_gold-icon i::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
}
.c-btn.is-orange:hover .c-btn_gold-icon i, .c-btn.is-gold:hover .c-btn_gold-icon i {
  left: 65%;
  width: 10px;
  transition: 0.6s;
}
.c-btn.is-orange:hover .c-btn_gold-icon::after, .c-btn.is-gold:hover .c-btn_gold-icon::after {
  animation: rotate-right 2s linear infinite;
}
.c-btn.is-orange:hover .c-btn_gold-icon::before, .c-btn.is-gold:hover .c-btn_gold-icon::before {
  animation: rotate-left 2s linear infinite;
}
.c-btn {
  /* --- 個別の色・フォント設定 --- */
}
.c-btn.is-orange {
  background-color: var(--c-btn-orange);
}
.c-btn.is-orange .c-btn_gold-icon i {
  background-color: var(--c-btn-orange);
}
.c-btn.is-orange .c-btn_gold-icon i::before {
  border-color: var(--c-btn-orange);
}
.c-btn.is-gold {
  color: var(--c-gold-btn);
  background-color: var(--c-btn-gold);
  font-family: var(--f-mincho);
  font-weight: bold;
}
.c-btn.is-gold .c-btn_gold-icon i {
  background-color: var(--c-btn-gold);
}
.c-btn.is-gold .c-btn_gold-icon i::before {
  border-color: var(--c-btn-gold);
}
.c-btn.is-green {
  background-color: var(--c-btn-green);
}

.c-btn.is-small {
  position: relative;
  z-index: 1;
}
.c-btn.is-small::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 28px;
  transition: all 0.3s ease;
  pointer-events: none;
}
.c-btn.is-small:hover::before {
  border-color: rgba(255, 255, 255, 0.6);
  inset: 2px;
}

.mt-50 {
  margin-top: -50px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb10 {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .mt10_Sp {
    margin-top: 10px;
  }
  .mt15_Sp {
    margin-top: 15px;
  }
  .mt20_Sp {
    margin-top: 20px;
  }
  .mt30_Sp {
    margin-top: 30px;
  }
  .mt40_Sp {
    margin-top: 40px;
  }
  .mt50_Sp {
    margin-top: 50px;
  }
}
@media all and (min-width: 768px) {
  .mt-70_Pc {
    margin-top: -70px;
  }
  .mt-50_Pc {
    margin-top: -50px;
  }
  .mt10_Pc {
    margin-top: 10px;
  }
  .mt15_Pc {
    margin-top: 15px;
  }
  .mt20_Pc {
    margin-top: 20px;
  }
  .mt30_Pc {
    margin-top: 30px;
  }
  .mt40_Pc {
    margin-top: 40px;
  }
  .mt50_Pc {
    margin-top: 50px;
  }
}
.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .mb10_Sp {
    margin-bottom: 10px;
  }
  .mb15_Sp {
    margin-bottom: 15px;
  }
  .mb20_Sp {
    margin-bottom: 20px;
  }
  .mb30_Sp {
    margin-bottom: 30px;
  }
  .mb40_Sp {
    margin-bottom: 40px;
  }
  .mb50_Sp {
    margin-bottom: 50px;
  }
}
@media all and (min-width: 768px) {
  .mb10_Pc {
    margin-bottom: 10px;
  }
  .mb15_Pc {
    margin-bottom: 15px;
  }
  .mb20_Pc {
    margin-bottom: 20px;
  }
  .mb30_Pc {
    margin-bottom: 30px;
  }
  .mb40_Pc {
    margin-bottom: 40px;
  }
  .mb50_Pc {
    margin-bottom: 50px;
  }
}
.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

@media screen and (max-width: 767px) {
  .mr10_Sp {
    margin-right: 10px;
  }
  .mr15_Sp {
    margin-right: 15px;
  }
  .mr20_Sp {
    margin-right: 20px;
  }
  .mr30_Sp {
    margin-right: 30px;
  }
  .mr40_Sp {
    margin-right: 40px;
  }
  .mr50_Sp {
    margin-right: 50px;
  }
}
@media all and (min-width: 768px) {
  .mr10_Pc {
    margin-right: 10px;
  }
  .mr15_Pc {
    margin-right: 15px;
  }
  .mr20_Pc {
    margin-right: 20px;
  }
  .mr30_Pc {
    margin-right: 30px;
  }
  .mr40_Pc {
    margin-right: 40px;
  }
  .mr50_Pc {
    margin-right: 50px;
  }
}
.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .ml10_Sp {
    margin-left: 10px;
  }
  .ml15_Sp {
    margin-left: 15px;
  }
  .ml20_Sp {
    margin-left: 20px;
  }
  .ml30_Sp {
    margin-left: 30px;
  }
  .ml40_Sp {
    margin-left: 40px;
  }
  .ml50_Sp {
    margin-left: 50px;
  }
}
@media all and (min-width: 768px) {
  .ml10_Pc {
    margin-left: 10px;
  }
  .ml15_Pc {
    margin-left: 15px;
  }
  .ml20_Pc {
    margin-left: 20px;
  }
  .ml30_Pc {
    margin-left: 30px;
  }
  .ml40_Pc {
    margin-left: 40px;
  }
  .ml50_Pc {
    margin-left: 50px;
  }
}
.w50 {
  width: 50px;
}

.w80 {
  width: 80px;
}

.w100 {
  width: 100px;
}

.w120 {
  width: 120px;
}

.w150 {
  width: 150px;
}

.w160 {
  width: 160px;
}

.w180 {
  width: 180px;
}

.w200 {
  width: 200px;
}

.w220 {
  width: 220px;
}

.w250 {
  width: 250px !important;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w30per {
  width: 30%;
}

.w50per {
  width: 50%;
}

.w60per {
  width: 60%;
}

.w70per {
  width: 70%;
}

.w80per {
  width: 80%;
}

.w100per {
  width: 100% !important;
}

@media all and (min-width: 768px) {
  .w50_Pc {
    width: 50px;
  }
  .w80_Pc {
    width: 80px;
  }
  .w100_Pc {
    width: 100px;
  }
  .w120_Pc {
    width: 120px;
  }
  .w150_Pc {
    width: 150px;
  }
  .w160_Pc {
    width: 160px;
  }
  .w180_Pc {
    width: 180px;
  }
  .w200_Pc {
    width: 200px;
  }
  .w220_Pc {
    width: 220px;
  }
  .w250_Pc {
    width: 250px;
  }
  .w300_Pc {
    width: 300px;
  }
  .w350_Pc {
    width: 350px;
  }
  .w400_Pc {
    width: 400px;
  }
  .w430_Pc {
    width: 430px;
  }
  .w450_Pc {
    width: 450px;
  }
  .w500_Pc {
    width: 500px;
  }
  .w850_Pc {
    width: 850px;
  }
  .w900_Pc {
    width: 900px;
  }
  .w30per_Pc {
    width: 30%;
  }
  .w50per_Pc {
    width: 50%;
  }
  .w60per_Pc {
    width: 60%;
  }
  .w70per_Pc {
    width: 70%;
  }
  .w80per_Pc {
    width: 80%;
  }
  .w100per_Pc {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .w50_Sp {
    width: 50px;
  }
  .w80_Sp {
    width: 80px;
  }
  .w100_Sp {
    width: 100px;
  }
  .w120_Sp {
    width: 120px;
  }
  .w150_Sp {
    width: 150px;
  }
  .w160_Sp {
    width: 160px;
  }
  .w180_Sp {
    width: 180px;
  }
  .w200_Sp {
    width: 200px;
  }
  .w220_Sp {
    width: 220px;
  }
  .w250_Sp {
    width: 250px;
  }
  .w300_Sp {
    width: 300px;
  }
  .w350_Sp {
    width: 350px;
  }
  .w400_Sp {
    width: 400px;
  }
  .w450_Sp {
    width: 450px;
  }
  .w500_Sp {
    width: 500px;
  }
  .w30per_Sp {
    width: 30%;
  }
  .w50per_Sp {
    width: 50%;
  }
  .w60per_Sp {
    width: 60%;
  }
  .w70per_Sp {
    width: 70%;
  }
  .w80per_Sp {
    width: 80%;
  }
  .w100per_Sp {
    width: 100%;
  }
}
.color_red_default {
  color: var(--default-red);
}

.color_brown_default {
  color: var(--default-brown);
}

.foS10 {
  font-size: 0.625rem;
  line-height: 1.4;
}

.foS11 {
  font-size: 0.6875rem;
  line-height: 1.4;
}

.foS12 {
  font-size: 0.75rem;
  line-height: 1.4;
}

.foS13 {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.foS14 {
  font-size: 0.875rem;
  line-height: 1.6;
}

.foS15 {
  font-size: 0.9375rem;
}

.foM16 {
  font-size: 1rem;
}

.foL17 {
  font-size: 1.0625rem;
}

.foL18 {
  font-size: 1.125rem;
}

.foL19 {
  font-size: 1.1875rem;
  line-height: 1.6;
}

.foL20 {
  font-size: 1.25rem;
  line-height: 1.6;
}

.foL21 {
  font-size: 1.3125rem;
  line-height: 1.6;
}

.foL22 {
  font-size: 1.375rem;
  line-height: 1.5;
}

.foL24 {
  font-size: 1.5rem;
  line-height: 1.5;
}

.foL26 {
  font-size: 1.625rem;
  line-height: 1.5;
}

.foL28 {
  font-size: 1.75rem;
  line-height: 1.5;
}

.foL30 {
  font-size: 1.875rem;
  line-height: 1.5;
}

.foL32 {
  font-size: 2rem;
  line-height: 1.4;
}

.foL34 {
  font-size: 2.125rem;
  line-height: 1.4;
}

.foL36 {
  font-size: 2.25rem;
  line-height: 1.4;
}

.foL38 {
  font-size: 2.375rem;
  line-height: 1.4;
}

.foL40 {
  font-size: 2.5rem;
  line-height: 1.4;
}

.foL44 {
  font-size: 2.75rem;
  line-height: 1.4;
}

.foL48 {
  font-size: 3rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .foS10_Sp {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Sp {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Sp {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Sp {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Sp {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .foS15_Sp {
    font-size: 0.9375rem;
  }
  .foM16_Sp {
    font-size: 1rem;
  }
  .foL17_Sp {
    font-size: 1.0625rem;
  }
  .foL18_Sp {
    font-size: 1.125rem;
  }
  .foL19_Sp {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Sp {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Sp {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Sp {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Sp {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Sp {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Sp {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Sp {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Sp {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Sp {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Sp {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Sp {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Sp {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Sp {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Sp {
    font-size: 3rem;
    line-height: 1.4;
  }
}
@media all and (min-width: 768px) {
  .foS10_Pc {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Pc {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Pc {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Pc {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Pc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .foS15_Pc {
    font-size: 0.9375rem;
  }
  .foM16_Pc {
    font-size: 1rem;
  }
  .foL17_Pc {
    font-size: 1.0625rem;
  }
  .foL18_Pc {
    font-size: 1.125rem;
  }
  .foL19_Pc {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Pc {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Pc {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Pc {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Pc {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Pc {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Pc {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Pc {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Pc {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Pc {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Pc {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Pc {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Pc {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Pc {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Pc {
    font-size: 3rem;
    line-height: 1.4;
  }
}
.asterisk-16 {
  padding-left: 1rem;
}

.asterisk-16::before {
  content: "※";
  margin-left: -1rem;
}

.asterisk-15 {
  padding-left: 0.9375rem;
}

.asterisk-15::before {
  content: "※";
  margin-left: -0.9375rem;
}

.asterisk-14 {
  padding-left: 0.875rem;
}

.asterisk-14::before {
  content: "※";
  margin-left: -0.875rem;
}

.text_left {
  text-align: left;
}

html {
  position: relative;
}
@media all and (min-width: 768px) {
  html {
    min-width: 100%;
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (max-width: 767px) {
  html {
    width: 100%;
  }
}

body {
  position: relative;
}

body {
  font: var(--font_base);
  color: var(--c-text);
  background-color: var(--c-main);
  letter-spacing: var(--ls-default);
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    letter-spacing: var(--ls-s-default);
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Content Width (mainCont-inner) --- */
.mainCont-inner {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .mainCont-inner {
    width: 92vw;
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .mainCont-inner {
    width: 1020px;
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .mainCont-inner.form {
    width: 950px;
  }
}

/* --- Typography --- */
.p-mv, .p-about, .p-details, .p-access {
  overflow: hidden;
}

.p-mv_title {
  font-family: var(--f-mincho);
  font-size: var(--fz-xl);
  line-height: 1.7;
  text-shadow: 0px 3px 6px rgb(255, 255, 255);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-mv_title {
    font-size: var(--fz-s-lg);
  }
}

h2, .c-title {
  font-family: var(--f-mincho);
  font-size: var(--fz-lg);
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  h2, .c-title {
    letter-spacing: var(--ls-s-default);
  }
}
h2 img, .c-title img {
  position: absolute;
  top: 48px;
}

.c-title .about_accent {
  color: var(--c-btn-gold);
  font-size: var(--fz-ac);
}

.c-title .detail_accent {
  color: var(--c-btn-orange);
  font-size: var(--fz-ac);
}

.c-subtitle {
  display: block;
  font-family: var(--f-mincho);
  font-size: var(--fz-sm);
  font-weight: bold;
  letter-spacing: var(--ls-default);
  margin-bottom: 15px;
}

.c-text {
  line-height: 1.8;
  margin-bottom: 20px;
}

.text_shadow {
  text-shadow: 0px 3px 6px rgba(23, 49, 38, 0.16);
}

/* --- Layout Sections --- */
.l-header, .p-mv, .p-about, .p-details, .p-access, .p-contact, .l-footer {
  width: 100%;
}

.p-mv {
  padding: 160px 0 160px;
}
@media all and (min-width: 768px) {
  .p-mv {
    padding-top: 60px;
  }
}
.p-mv {
  position: relative;
  z-index: 3;
  background-color: transparent;
  overflow: hidden;
  margin-bottom: -300px;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding: 152px 0 72px;
  }
}
.p-mv::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 300vw;
  height: 300vw;
  background-color: var(--c-header);
  border-radius: 50%;
  z-index: -2;
  box-shadow: 0px 3px 6px rgba(23, 49, 38, 0.16);
}
@media screen and (max-width: 767px) {
  .p-mv::before {
    width: 600vw;
    height: 600vw;
  }
}
.p-mv_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-mv_flex {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.p-mv_content {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-mv_content {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-mv_title {
    order: 1;
    white-space: nowrap;
  }
}
.p-mv_lead {
  font-weight: bold;
  margin-top: 32px;
  line-height: 1.8;
  text-shadow: 0px 3px 6px rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .p-mv_lead {
    order: 2;
  }
}
.p-mv_image {
  width: 42%;
  margin-left: -5%;
  margin-bottom: -4%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-mv_image {
    margin: 0 auto;
    width: 92vw;
    position: absolute;
    top: 0px;
    z-index: -1;
  }
  .p-mv_image img {
    opacity: 0.3;
    width: 330px;
    height: auto;
    margin-left: auto;
    margin-top: -50px;
  }
}
.p-mv_schedule {
  margin-top: 64px;
  border-radius: 8px;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .p-mv_schedule {
    order: 3;
    margin-top: 80px;
    background: var(--default-white);
    border-radius: 10px;
  }
}
.p-mv_schedule_text {
  font-size: var(--fz-xs);
}
.p-mv_table {
  width: 85%;
  border-collapse: collapse;
  font-size: var(--fz-sm);
  text-align: center;
  line-height: 1;
}
.p-mv_table th, .p-mv_table td {
  padding: 12px 5px;
  border-bottom: 1px solid var(--c-calender);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-mv_table th, .p-mv_table td {
    padding: 10px 3px;
  }
}
.p-mv_table thead th {
  font-weight: bold;
  color: var(--default-black);
  border-bottom: 2px solid var(--c-calender);
}
.p-mv_table tbody th {
  font-weight: normal;
  text-align: left;
  padding-right: 15px;
}
.p-mv_table td {
  position: relative;
  height: 48px;
  vertical-align: middle;
}
.p-mv_table td::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
}
.p-mv_table td.is-open::before {
  width: 16px;
  height: 16px;
  border: 3px solid var(--c-btn-orange);
  border-radius: 50%;
}
.p-mv_table td.is-off::before {
  width: 12px;
  height: 3px;
  background-color: var(--c-btn-orange);
  border-radius: 2px;
}

.p-mv_schedule-sp {
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 10px;
  width: 100%;
}
.p-mv_schedule-sp .p-mv_schedule-time-label br,
.p-mv_schedule-sp .p-mv_schedule-times span br {
  display: none;
}
.p-mv_schedule-sp {
  /* ヘッダーエリア */
}
.p-mv_schedule-sp .p-mv_schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--c-calender);
  padding-bottom: 20px;
}
.p-mv_schedule-sp .p-mv_schedule-time-label {
  font-size: var(--fz-s-lg);
  font-weight: bold;
  color: var(--default-black);
  line-height: 1.2;
  white-space: nowrap;
  width: 150px;
  white-space: nowrap;
  padding: 0 18px;
  text-align: center;
}
@media screen and (max-width: 570px) {
  .p-mv_schedule-sp .p-mv_schedule-time-label {
    width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv_schedule-sp .p-mv_schedule-time-label {
    font-size: var(--fz-base);
  }
}
.p-mv_schedule-sp .p-mv_schedule-times {
  display: flex;
  gap: 20px;
  font-size: var(--fz-s-lg);
  text-align: center;
  line-height: 1.2;
}
.p-mv_schedule-sp .p-mv_schedule-times span {
  display: block;
  width: 120px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 570px) {
  .p-mv_schedule-sp .p-mv_schedule-times span {
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv_schedule-sp .p-mv_schedule-times span {
    font-size: var(--fz-base);
  }
}
.p-mv_schedule-sp {
  /* ボディエリア */
}
.p-mv_schedule-sp .p-mv_schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-calender);
}
.p-mv_schedule-sp .p-mv_schedule-row:last-child {
  border-bottom: none;
}
.p-mv_schedule-sp .p-mv_schedule-day {
  font-size: var(--fz-s-lg);
  font-weight: bold;
  color: var(--c-text);
  white-space: nowrap;
  flex-shrink: 0;
  width: 150px;
  text-align: center;
}
@media screen and (max-width: 570px) {
  .p-mv_schedule-sp .p-mv_schedule-day {
    width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv_schedule-sp .p-mv_schedule-day {
    font-size: var(--fz-base);
  }
}
.p-mv_schedule-sp .p-mv_schedule-icons {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-shrink: 0;
}
.p-mv_schedule-sp .p-mv_schedule-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 30px;
  position: relative;
}
@media screen and (max-width: 570px) {
  .p-mv_schedule-sp .p-mv_schedule-icons span {
    width: 70px;
  }
}
.p-mv_schedule-sp .p-mv_schedule-icons span.is-open::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 4px solid var(--c-btn-orange);
  border-radius: 50%;
}
.p-mv_schedule-sp .p-mv_schedule-icons span.is-off::before {
  content: "";
  display: block;
  width: 24px;
  height: 4px;
  background-color: var(--c-btn-orange);
  border-radius: 2px;
}

.p-about {
  color: var(--default-white);
  /* paddingは、コンテンツと丸みの重なり具合で調整してください */
  padding: 340px 0 180px;
  position: relative;
  z-index: 2;
  /* --- [ここがポイント] 巨大な円の一部にする設定 --- */
  /* 水平方向: 端から中央へのカーブではなく、画面幅の1.5倍（150%）の巨大な円を想定
     垂直方向: その巨大な円の端っこを、画面幅の20%（20vw）分だけ見せる
  */
  /* ------------------------------------------- */
  /* もし次のセクションと重ねたい場合は、ネガティブマージンを入れます */
  margin-bottom: -500px;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 315px 0 72px;
  }
}
.p-about::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300vw;
  height: 300vw;
  background-color: var(--c-sec-1);
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0px 3px 6px rgba(23, 49, 38, 0.16);
}
@media screen and (max-width: 767px) {
  .p-about::before {
    width: 600vw;
    height: 600vw;
  }
}
.p-about_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about_flex {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.p-about_image {
  width: 420px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-about_image {
    width: 80%;
    margin: 0 auto;
  }
}
.p-about_image > img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.p-about_image_bgDeco img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  opacity: 1;
  z-index: 1;
}
.p-about_image_bgDeco .is-deco-1 {
  width: 70%;
  bottom: -90px;
  right: -80px;
  /* 世羅町の自然のイメージ画像などを想定 */
  transform: rotate(195deg);
}
@media screen and (max-width: 767px) {
  .p-about_image_bgDeco .is-deco-1 {
    idth: 90%;
    bottom: -140px;
    right: 200px;
  }
}
.p-about_image_bgDeco .is-deco-2 {
  width: 90%;
  top: -90px;
  left: -200px;
}
@media screen and (max-width: 767px) {
  .p-about_image_bgDeco .is-deco-2 {
    width: 90%;
    top: -120px;
    left: 200px;
  }
}
.p-about_content {
  width: calc(100% - 460px);
  flex-shrink: 0;
}
.p-about_content_bgDeco img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  opacity: 1;
  z-index: -1;
}
.p-about_content_bgDeco .is-deco-3 {
  top: -70px;
  left: -50px;
}
@media screen and (max-width: 767px) {
  .p-about_content_bgDeco .is-deco-3 {
    top: -40px;
    left: -30px;
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-about .p-about_content {
    order: 1;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-about .p-about_image {
    order: 2;
    width: 100%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-about .c-btn.is-gold {
    order: 3;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.p-details {
  padding: 540px 0 120px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-details {
    padding: 515px 0 72px;
  }
}
.p-details::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300vw;
  height: 300vw;
  background-color: var(--c-sec-2);
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0px 3px 6px rgba(23, 49, 38, 0.16);
}
@media screen and (max-width: 767px) {
  .p-details::before {
    width: 600vw;
    height: 600vw;
  }
}
.p-details_flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 40px;
  flex-direction: row-reverse;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-details_flex {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
}
.p-details .p-details_content {
  width: calc(100% - 480px);
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-details .p-details_content {
    order: 1;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-details .p-details_image {
    order: 2;
    width: 100%;
    margin: 20px auto;
  }
}
@media all and (min-width: 768px) {
  .p-details .c-btn.is-orange {
    margin-right: 338px;
  }
}
@media screen and (max-width: 767px) {
  .p-details .c-btn.is-orange {
    order: 3;
    margin-top: 20px;
    width: 100%;
  }
}
.p-details_image {
  width: 420px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-details_image {
    width: 80%;
    margin: 0 auto;
  }
}
.p-details_image > img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.p-details_image_bgDeco img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
}
.p-details_image_bgDeco .is-deco-4 {
  width: 80px;
  bottom: -30px;
  right: -30px;
  /* 世羅町の自然のイメージ画像などを想定 */
}
.p-details_content {
  flex: 1;
  position: relative;
}
.p-details_content_bgDeco img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  opacity: 1;
  z-index: -1;
  height: 350px;
}
.p-details_content_bgDeco .is-deco-5 {
  top: -55px;
  right: -55px;
}
@media screen and (max-width: 767px) {
  .p-details_content_bgDeco .is-deco-5 {
    display: none;
  }
}

.c-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 10px;
  letter-spacing: var(--ls-default);
  line-height: 1;
  box-shadow: 0px 3px 6px rgba(23, 49, 38, 0.16);
  white-space: nowrap;
}
.c-label.has-icon {
  gap: 8px;
}
.c-label__icon {
  width: 14px;
  height: auto;
  flex-shrink: 0;
}
.c-label.is-green {
  background-color: var(--c-btn-green);
  color: var(--default-white);
}

.p-access {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-access {
    margin-top: 36px;
  }
}
.p-access .l-header, .p-access .p-mv, .p-access .p-about, .p-access .p-details, .p-access .p-access, .p-access .p-contact, .p-access .l-footer {
  width: 100%;
}
.p-access_flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-access_flex {
    flex-direction: column;
    gap: 30px;
  }
}
.p-access_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-access_info {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-access_table {
    overflow-x: auto;
  }
}
.p-access_table img {
  width: 100%;
  height: auto;
}
.p-access_address {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-access_address-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.p-access_map {
  position: relative;
  z-index: -1;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-access_map {
    width: 100%;
    margin-top: 30px;
  }
}
.p-access_map iframe {
  position: relative;
  z-index: 2;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-access_map iframe {
    width: 100% !important;
    height: 250px;
  }
}
.p-access_map-deco05 {
  position: absolute;
  bottom: -120px;
  left: -150px;
  width: 280px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-access_map-deco05 {
    width: 280px;
    bottom: -60px;
    left: -120px;
  }
}
.p-access_map-deco06 {
  position: absolute;
  top: -160px;
  right: -200px;
  width: 320px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-access_map-deco06 {
    width: 320px;
    top: -180px;
    right: -150px;
  }
}
.p-access_map iframe {
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-access_map iframe {
    width: 100% !important;
    height: 250px;
  }
}

.p-contact {
  width: 100%;
  margin-top: 77px;
  margin-bottom: 120px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin-top: 40px;
    margin-bottom: 72px;
  }
}
.p-contact_flex {
  display: flex;
  min-height: 240px;
  background-color: var(--c-contact);
}
@media screen and (max-width: 767px) {
  .p-contact_flex {
    flex-direction: column;
  }
}
.p-contact_item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact_item {
    padding: 30px 20px;
  }
}
.p-contact_item:first-child .p-contact_content {
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .p-contact_item:first-child .p-contact_content {
    gap: 10px;
  }
}
.p-contact_item:last-child {
  border-left: 1px solid var(--default-white);
}
.p-contact_item:last-child .p-contact_content {
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .p-contact_item:last-child {
    border-left: none;
    margin-top: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-contact_item .c-btn.is-gold.is-anim {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 70px;
  }
}
.p-contact_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-contact_content {
    width: 100%;
  }
}
.p-contact_label {
  font-size: var(--fz-md);
  font-weight: bold;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .p-contact_label {
    font-size: var(--fz-s-md);
  }
}
.p-contact_label::before {
  content: "";
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.p-contact_label.is-tel::before {
  background-image: url("/common/ico_tel_black.svg");
}
.p-contact_label.is-mail::before {
  background-image: url("/common/ico_mail_black.svg");
}
.p-contact_label span {
  position: relative;
  display: inline-block;
}
.p-contact_label span::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 110%;
  height: 6px;
  background: url("../images/img_top_contact_title_deco.png") no-repeat center bottom/100% auto;
  pointer-events: none;
}
.p-contact_tel {
  display: block;
  font-size: var(--fz-lg);
  font-weight: bold;
  text-decoration: none;
  color: var(--c-text);
  letter-spacing: var(--ls-h2);
  line-height: 1;
}
.p-contact_tel .tel-small {
  font-size: var(--fz-md);
  font-weight: 400;
  margin-right: -10px;
  letter-spacing: var(--ls-default);
}
@media screen and (max-width: 767px) {
  .p-contact_tel .tel-small {
    font-size: var(--fz-s-xs);
  }
}
@media screen and (max-width: 767px) {
  .p-contact_tel {
    font-size: var(--fz-s-ac);
  }
}

.page_title {
  position: relative;
  width: 100%;
  height: 210px;
  background-image: url("/images/img_h1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page_title {
    background-image: url("../images/img_h1_sp.png");
    margin-top: 93px;
    height: 180px;
  }
}
.page_title .mainCont-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
}
.page_title_text {
  color: var(--c-text);
  font-family: var(--f-mincho);
  font-size: var(--fz-ac);
  font-weight: bold;
  text-shadow: 0px 3px 6px rgba(255, 255, 255, 0.16);
}
@media screen and (max-width: 767px) {
  .page_title_text {
    font-size: var(--fz-s-ac);
  }
}

.page_mv .mainCont-inner {
  margin-top: 40px;
}

.page_contents .page_h2, .page_contents .mt40 h2, .mt40 .page_contents h2 {
  display: inline;
  position: relative;
  font-family: var(--f-mincho);
  font-size: var(--fz-lg);
  font-weight: bold;
  line-height: 1.8;
  background-image: url("../images/img_top_detail_title_deco.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 11px;
  padding-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .page_contents .page_h2, .page_contents .mt40 h2, .mt40 .page_contents h2 {
    font-size: var(--fz-s-lg);
  }
}
.page_contents .page_h2_deco {
  display: none;
}
.page_contents #c_s02 {
  scroll-margin-top: 93px;
}
@media all and (min-width: 768px) {
  .page_contents #c_s02 {
    scroll-margin-top: 128px;
  }
}
.page_contents .page_tel {
  margin-top: 24px;
  margin-bottom: 40px;
}
.page_contents .page_tel_text a {
  color: var(--c-btn-orange);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 0px;
  border-bottom: 1px solid var(--c-btn-orange);
  line-height: 1.4;
}
.page_contents .page_mail {
  margin-top: 24px;
}
.page_contents .page_mail_text a {
  color: var(--c-btn-orange);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 0px;
  border-bottom: 1px solid var(--c-btn-orange);
  line-height: 1.4;
}

.mt40 {
  margin-top: 40px;
}
.page_ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.page_ul li {
  position: relative;
  padding-left: 1.5em;
  line-height: 2;
  color: var(--default-black);
}
.page_ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--c-btn-orange);
  border-radius: 50%;
  background-color: transparent;
}

.p-page_page {
  margin-top: 60px;
}

.p_h3 {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  font-family: var(--f-mincho);
  font-size: var(--fz-mg);
  font-weight: bold;
  color: var(--default-black);
  line-height: 1.5;
  margin-top: 24px;
}
.p_h3::before, .p_h3::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
}
.p_h3::before {
  background-color: var(--c-sec-2);
  left: 4px;
  transform: translateY(-30%);
  z-index: 1;
}
.p_h3::after {
  background-color: var(--c-sec-1);
  left: 0;
  transform: translateY(-70%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p_h3 {
    font-size: var(--fz-s-md);
    padding-left: 24px;
  }
  .p_h3::before, .p_h3::after {
    width: 10px;
    height: 10px;
  }
}

.p_h4 {
  font-weight: bold;
  margin-top: 18px;
}

.about_text {
  margin-top: 16px;
}

.about_concepts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 40px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .about_concepts {
    gap: 30px 0;
  }
}

.about_concept_card {
  width: calc(50% - 20px);
  background: var(--default-white);
  border-radius: 40px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .about_concept_card {
    width: 100%;
    padding: 20px;
    border-radius: 30px;
  }
}

.about_concept_img {
  position: relative;
  width: 100%;
  margin-bottom: 45px;
}
.about_concept_img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}

.about_concept_label {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 90%;
  background: #e8e2d5;
  border-radius: 50px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.about_concept_label .num {
  background: #fff;
  color: var(--c-btn-orange);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--f-mincho);
  font-weight: bold;
  font-size: 1.8rem;
  margin-right: 10px;
  flex-shrink: 0;
}
.about_concept_label .text {
  font-weight: bold;
}

.about_concept_desc {
  line-height: 1.8;
  margin-top: 0;
}

.fee_table_wrapper {
  margin-top: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .fee_table_wrapper {
    background-color: var(--default-white);
    padding: 0px 20px 0px 20px;
    border-radius: 10px;
  }
}

.fee_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.fee_table th, .fee_table td {
  padding: 20px;
  border-bottom: 1px solid var(--c-calender);
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .fee_table th, .fee_table td {
    padding: 15px 0 !important;
  }
}
.fee_table th:nth-child(2), .fee_table td:nth-child(2) {
  text-align: right;
}
.fee_table th:nth-child(1), .fee_table td:nth-child(1) {
  text-align: left;
}
.fee_table tbody tr:last-child td {
  border-bottom: none;
}
.fee_table thead th {
  color: var(--default-black);
  font-weight: bold;
  font-size: var(--fz-sm);
  border-bottom: 2px solid var(--c-calender);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .fee_table thead th {
    font-size: var(--fz-base);
  }
}
.fee_table tbody tr {
  transition: background-color 0.3s;
}
.fee_table .region {
  font-weight: bold;
  color: var(--default-black);
  width: 40%;
}
@media screen and (max-width: 767px) {
  .fee_table .region {
    width: 50%;
    font-size: var(--fz-base);
  }
}
.fee_table .price {
  font-size: var(--fz-mg);
  font-weight: bold;
  color: var(--c-btn-orange);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .fee_table .price {
    font-size: var(--fz-base);
  }
}

.menu_table {
  width: 100% !important;
}

.menu_concept_label {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .menu_concept_label {
    width: 65%;
    justify-content: center;
  }
}

body#Second {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

main {
  flex: 1;
}

/* 既存のスタイル */
#titleArea {
  padding: 80px 20px 100px 20px;
  text-align: center;
  background: var(--default-white);
}
@media screen and (max-width: 767px) {
  #titleArea {
    padding: 140px 20px 70px;
  }
}

#titleArea h1 {
  font-size: var(--fz-xl);
  color: var(--c-btn-green);
  margin-bottom: 10px;
}

.edit-area {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .edit-area {
    text-align: left;
  }
}

.link_btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--c-btn-green);
  color: var(--default-white);
  text-decoration: none;
  border-radius: 30px;
  margin-top: 30px;
  transition: 0.3s;
}

.back_top_btn {
  z-index: 1 !important;
}

input[type=email],
input[type=tel],
input[type=text],
input[type=url],
dd textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--default-gray);
  background: var(--base-gray-default);
}

::-moz-placeholder {
  color: var(--default-gray);
}

::placeholder {
  color: var(--default-gray);
}

.form .intro {
  letter-spacing: 0.06em;
}

@media all and (min-width: 768px) {
  .form-Item input[type=text].w250_Pc {
    width: 250px;
  }
}

.form-Item label.block,
.form-Item .label_confirm {
  display: block;
  margin-bottom: 5px;
  color: var(--base-gray-dark);
  font-size: 0.875rem;
}

.form_explanation {
  margin-top: 3px;
  font-size: 0.875rem;
  color: var(--default-gray-brown);
}

.privacyArea {
  margin: 25px auto;
  padding: 10px 20px;
  border: solid 4px var(--base-gray-light);
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .privacyArea {
    margin: 25px auto;
  }
}

.privacyArea dl {
  padding: 8px 6px;
  text-align: center;
  background: var(--base-gray-default);
}
@media all and (min-width: 768px) {
  .privacyArea dl {
    padding: 15px 10px 5px;
  }
}

.privacyArea a {
  text-decoration: underline;
}

.form-Item {
  padding: 25px 0;
}
@media all and (min-width: 768px) {
  .form-Item {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.form-Item + .form-Item {
  border-top: 1px solid var(--default-gray-light);
}

.form-Item dt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form-Item dt {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .form-Item dt {
    margin-top: 15px;
    padding-right: 10px;
  }
}

.form-Item dd {
  letter-spacing: 0.04em;
}

.label_checkbox input[type=checkbox] {
  display: none;
}

.label_checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  cursor: pointer;
}

.label_checkbox label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 1px solid var(--default-gray);
}

.label_checkbox input[type=checkbox]:checked + label::after {
  position: absolute;
  content: "";
  top: 7px;
  left: 3px;
  width: 20px;
  height: 6px;
  border-left: 3px solid #333;
  border-bottom: 3px solid #333;
  transform: rotate(-45deg);
}

.label_checkbox input[type=checkbox]:checked + label::before {
  background: var(--base-pink-default);
  border: solid 1px #FF2E2E;
}

/* 必須&任意マーク */
.form-Item .ico {
  text-align: center;
  font-size: 0.6875rem;
  display: inline-block;
  color: #fff;
  line-height: 1;
  line-height: 1;
  padding: 6px 6px;
  vertical-align: middle;
  text-decoration: none;
  white-space: nowrap;
}
.form-Item .ico.required {
  background-color: var(--default-red);
}
.form-Item .ico.optional {
  color: #333;
  background-color: var(--default-gray-light);
}

.form-Item ul.radio_area {
  margin-left: -25px;
  margin-top: 10px;
}

li.radio {
  list-style: none;
}

.radio {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .radio:last-child {
    margin-bottom: 0;
  }
}

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}

.radio input[type=radio] + .radio-label:before {
  content: "";
  background: var(--base-gray-default);
  border-radius: 100%;
  border: 1px solid var(--default-gray-light);
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 0.2em;
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

.radio input[type=radio]:checked + .radio-label:before {
  background-color: var(--default-blue);
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
}

.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: var(--default-blue);
}

.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
  border-color: var(--default-gray-light);
  background: var(--default-gray-light);
}

.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

/* PCのみ横並びの場合 */
@media all and (min-width: 768px) {
  .radio_area_short {
    display: flex;
  }
}

.select_area {
  position: relative;
  display: inline-block;
  border: 1px solid var(--default-gray);
  vertical-align: middle;
  background: var(--base-gray-default);
}
@media screen and (max-width: 767px) {
  .select_area {
    width: 100%;
  }
}
.select_area::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 20px;
  right: 16px;
  width: 0;
  height: 0;
  border-width: 9px 6px 0 6px;
  border-style: solid;
  border-color: var(--default-gray) transparent transparent transparent;
  pointer-events: none;
}

.select_area select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 11px 15px;
  padding-right: 2.5em;
  border: none;
  outline: 0;
  background: var(--base-gray-default);
  text-indent: 0.01px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .select_area select {
    width: 100%;
  }
}

.ajax_err p {
  position: relative;
  margin-top: 8px;
  padding: 8px 15px 8px;
  display: inline-block;
  color: var(--default-red-dark);
  line-height: 1.6;
  font-size: fo(14);
  border-radius: 5px;
  border: solid 1px var(--default-red-dark);
  background: var(--base-pink-default);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
@media all and (min-width: 768px) {
  .ajax_err p {
    margin-top: 10px;
    padding: 10px 40px 10px;
    font-size: 0.9375rem;
  }
}

.ajax_err p:before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--default-red-dark);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p:after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--base-pink-default);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p.arw_center:before {
  left: 50%;
  transform: translateX(50%);
}

.ajax_err p.arw_center:after {
  left: 50%;
  transform: translateX(50%);
}

.l-form-btnArea {
  margin: 20px auto 50px;
}

.l-form-actbtn {
  padding: 0;
}
@media all and (min-width: 768px) {
  .l-form-actbtn {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
}
.l-form-actbtn li {
  list-style: none;
}

@media screen and (max-width: 767px) {
  .l-form-actbtn li + li {
    margin-top: 15px;
  }
}
@media all and (min-width: 768px) {
  .l-form-actbtn li + li {
    margin-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .btn_form {
    width: 100%;
  }
}

.btn_form a {
  display: block;
  padding: 20px;
  text-align: center;
  color: #fff;
  border-radius: 40px;
}
@media all and (min-width: 768px) {
  .btn_form a {
    width: 420px;
  }
}
.btn_form a:hover {
  text-decoration: none;
  background: var(--default-blue);
}

.btn_form.send {
  background: var(--default-black);
  border-radius: 40px;
}
.btn_form.back {
  background: var(--default-gray);
  border-radius: 40px;
}

@media all and (min-width: 768px) {
  .form-address {
    display: flex;
  }
}

#Ready-text {
  margin: 15px auto;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
}

.form-Contents.conlayout {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .form-Contents.conlayout .form-Item dt {
    margin-top: 0 !important;
  }
}