@charset "UTF-8";
/*************************************************************
	大人の休日倶楽部　ヘッダーCSS
*************************************************************/
header[data-header=otona-header] {
  border-top: none;
  border-bottom: none;
}

.l-otona-header .l-header__logo {
  width: min(72.5vw, 319px);
}
@media (min-width: 1024px) {
  .l-otona-header .l-header__logo {
    width: 132px;
  }
}
@media (min-width: 1024px) {
  .l-otona-header .l-nav__lv1 {
    width: 100%;
    padding-left: 230px;
  }
}
@media (min-width: 1024px) {
  .l-otona-header .l-nav__lower {
    right: 140px;
  }
}
@media (min-width: 1024px) {
  .l-otona-header .l-nav-wrapper__footer {
    display: block;
    width: 63px;
    position: absolute;
    top: 50%;
    right: 32px;
    translate: 0 -50%;
  }
}
@media (min-width: 1024px) {
  .l-otona-header .l-nav-wrapper__footer__close {
    display: none;
  }
}

/*************************************************************
	大人の休日倶楽部　フッターCSS
*************************************************************/
/*************************************************************
ダイアログ（モーダル）CSS
*************************************************************/
:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

.co_dialog {
  overscroll-behavior: none;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  background-color: transparent;
  border: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: all 0.5s;
  opacity: 0;
}
.co_dialog::backdrop {
  background-color: transparent;
  backdrop-filter: blur(1px);
  transition: all 0.2s;
}
.co_dialog[open] {
  opacity: 1;
}
@starting-style {
  .co_dialog[open] {
    opacity: 0;
  }
}
.co_dialog[open]::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}
@starting-style {
  .co_dialog[open]::backdrop {
    background-color: transparent;
  }
}
.co_dialog > .co_dialogOuter {
  pointer-events: none;
  width: 100%;
  height: calc(100% + 1px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 751px) {
  .co_dialog > .co_dialogOuter {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.co_dialog > .co_dialogOuter > .co_dialogWrapper {
  pointer-events: all;
  position: relative;
  max-width: 1200px;
  width: 100%;
}
.co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogInner {
  padding: 0 20px;
  background-color: #ffffff;
  border-radius: 40px;
  overflow: auto;
}
@media only screen and (min-width: 751px) {
  .co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogInner {
    padding: 0 40px 0 60px;
  }
}
.co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogInner > .co_dialogContentOuter {
  max-height: 70vh;
  width: 100%;
  height: fit-content;
  overflow-y: auto;
  padding: 48px 0;
}
@media only screen and (min-width: 751px) {
  .co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogInner > .co_dialogContentOuter {
    max-width: 1200px;
    max-height: 80vh;
    padding: 72px 20px 72px 0;
  }
}
.co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogInner > .co_dialogContentOuter .co_dialogContentWrapper {
  width: 100%;
  height: 100%;
  overscroll-behavior: contain;
  position: relative;
}
.co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogTopCloseBtnOuter {
  pointer-events: all;
  position: absolute;
  top: -55px;
  right: 10px;
  display: block;
  width: 48px;
  height: 48px;
  z-index: 99999;
}
@media only screen and (min-width: 751px) {
  .co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogTopCloseBtnOuter {
    width: 64px;
    height: 64px;
    top: 10px;
    right: 60px;
  }
}
.co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogTopCloseBtnOuter > .co_dialogTopCloseBtn {
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 100%;
  border: #008803 solid 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media only screen and (min-width: 751px) {
  .co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogTopCloseBtnOuter > .co_dialogTopCloseBtn {
    width: 64px;
    height: 64px;
    transition: all 0.2s;
  }
}
@media (any-hover: hover) {
  .co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogTopCloseBtnOuter > .co_dialogTopCloseBtn:hover {
    background-color: #e9f1e8;
    border-color: #005c02;
  }
}
.co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogTopCloseBtnOuter > .co_dialogTopCloseBtn > .icon {
  display: inline-block;
}
.co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogTopCloseBtnOuter > .co_dialogTopCloseBtn > .icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogTopCloseBtnOuter > .co_dialogTopCloseBtn > .icon-close::before {
  mask: url(/otona/common2026/img/dialog/icon_close.svg) center/100% 100%;
  background-color: #008803;
}
.co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogTopCloseBtnOuter > .co_dialogTopCloseBtn > i {
  width: 1.6rem;
  height: 1.6rem;
}
@media only screen and (min-width: 751px) {
  .co_dialog > .co_dialogOuter > .co_dialogWrapper > .co_dialogTopCloseBtnOuter > .co_dialogTopCloseBtn > i {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.co_dialog > .co_dialogOuter .co_dialogBottomCloseBtnOuter {
  margin-top: 50px;
}

/* ********************************************************************************************************* */
/*ダイアログ内の汎用ヘッダー（/company/assets/css/common.css、/company/assets/css/components.cssから抜き出した） */
.c-heading-secondary {
  margin-bottom: 32px;
}

@media (min-width: 768px), print {
  .c-heading-secondary {
    margin-bottom: 40px;
  }
}
.c-heading-secondary--center {
  text-align: center;
}

.c-heading-secondary__title {
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.6;
}
.c-heading-secondary__title.important {
  color: #ff0000;
}

@media (min-width: 768px), print {
  .c-heading-secondary__title {
    font-size: 3.2rem;
  }
}
.c-heading-secondary--center::after {
  margin-left: auto;
  margin-right: auto;
}

.c-heading-secondary::after {
  content: "";
  display: block;
  width: 40px;
  height: 5px;
  background: #008803;
  border-radius: 10px;
  margin-top: 16px;
}

/* モーダルで開くアイコン「＋」（無かったのでcssで自作） */
button.c-button__inner[data-targetdialogname],
button.c-button__inner[data-targetdialogname] {
  position: relative;
}
button.c-button__inner[data-targetdialogname]::before,
button.c-button__inner[data-targetdialogname]::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin-top: auto;
  margin-bottom: auto;
  background-color: var(--color-theme-main);
  border-radius: 2px;
}
button.c-button__inner[data-targetdialogname]::after,
button.c-button__inner[data-targetdialogname]::after {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  margin-top: auto;
  margin-bottom: auto;
  background-color: var(--color-theme-main);
  border-radius: 2px;
  mask-image: none;
}

/*************************************************************
ダイアログ内　特典の例CSS
*************************************************************/
/*ダイアログを開くボタン */
.ot9_d_bftOpenBtn {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  text-align: left;
}

/*メインビジュアル */
.ot9_d_bftMvImgOuter {
  width: 100%;
  height: auto;
  display: block;
}

.ot9_d_bftMvImgWrapper {
  width: 60%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 751px) {
  .ot9_d_bftMvImgWrapper {
    max-width: 300px;
    width: 100%;
  }
}

.ot9_d_bftMvImg {
  width: 100%;
  height: auto;
  display: block;
  line-height: 1;
}

/* 特典詳細 */
.ot9_d_bftDetailOuter {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(to bottom, #eeefe3 0px, #ffffff 65vh);
}
@media only screen and (min-width: 751px) {
  .ot9_d_bftDetailOuter {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 35px;
  }
}

.ot9_d_bftDetailWrapper {
  width: 100%;
  height: auto;
  display: block;
  /*特典のHTMLを貼り付け */
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview {
  width: 100%;
  height: auto;
  display: block;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dt {
  color: #333333;
  font-weight: bold;
  font-size: 1.4rem;
}
@media only screen and (min-width: 751px) {
  .ot9_d_bftDetailWrapper > .tokuten-detail-overview > dt {
    font-size: 1.6rem;
  }
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dt.font-blown {
  color: #005856;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dt.font-L {
  font-size: 1.4rem;
}
@media only screen and (min-width: 751px) {
  .ot9_d_bftDetailWrapper > .tokuten-detail-overview > dt.font-L {
    font-size: 1.6rem;
  }
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd {
  margin-bottom: 20px;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > .ico_conditions {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 5px;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > .ico_conditions > li {
  display: block;
  width: fit-content;
  height: auto;
  font-size: 1.4rem;
  margin-right: 10px;
  padding: 4px 1em;
  border-radius: 2px;
  line-height: 1;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > .ico_conditions > li.member {
  background: linear-gradient(to bottom, #b9dbdf 0%, #9cced3 100%);
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > .ico_conditions > li.allmembers {
  background: linear-gradient(to bottom, #b2eae7 0%, #82dcd6 100%);
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > .ico_conditions > li.total {
  background: linear-gradient(to bottom, #b1d3f1 0%, #83b8e4 100%);
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > .ico_conditions > li.card01 {
  background: linear-gradient(to bottom, #d6d4a3 0%, #c8c081 100%);
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > .ico_conditions > li.card02 {
  background: linear-gradient(to bottom, #f3d99b 0%, #ecc15a 100%);
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > .ico_conditions > li.reservation {
  background: linear-gradient(to bottom, #f2c89b 0%, #eaa65e 100%);
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > .btn_question {
  display: none;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd p {
  margin-bottom: 0.5em;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > p {
  font-size: 1.4rem;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > p.font-bold {
  font-weight: bold;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > p.font-blown {
  color: #005856;
  font-size: 1.4rem;
}
@media only screen and (min-width: 751px) {
  .ot9_d_bftDetailWrapper > .tokuten-detail-overview > dd > p.font-blown {
    font-size: 1.6rem;
  }
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus {
  border: none;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.12);
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dt {
  font-family: initial;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #1c7a77;
  padding: 10px 15px 5px;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd {
  font-size: 1.4rem;
  padding: 10px 15px 15px 15px;
  margin-top: 10px;
}
@media only screen and (min-width: 751px) {
  .ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd {
    font-size: 1.6rem;
  }
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd p {
  font-size: 1.4rem;
}
@media only screen and (min-width: 751px) {
  .ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd p {
    font-size: 1.6rem;
  }
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd strong {
  color: #d80000;
  font-weight: bold;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd b {
  font-weight: bold;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd span {
  display: inline-block;
  margin-top: 0.7em;
  margin-bottom: 0.4em;
  padding: 3px 8px;
  background-color: #ffecec;
  font-size: 1.4rem;
}
@media only screen and (min-width: 751px) {
  .ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd span {
    font-size: 1.6rem;
  }
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd mark {
  color: #d80000;
  font-style: normal;
  font-weight: normal;
  background: none;
}
.ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd small {
  font-size: 1em;
}
@media only screen and (min-width: 751px) {
  .ot9_d_bftDetailWrapper > .tokuten-detail-overview .bonus > dd small {
    font-size: 0.9em;
  }
}

/*************************************************************
ダイアログ内　過去に実施したイベント・キャンペーンCSS
*************************************************************/
/*ダイアログを開くボタン */
.ot9_d_cmpOpenBtn {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  text-align: left;
}

/*メインビジュアル */
.ot9_d_cmpMvImgOuter {
  width: 100%;
  height: auto;
  display: block;
}

.ot9_d_cmpMvImgWrapper {
  width: 60%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 751px) {
  .ot9_d_cmpMvImgWrapper {
    max-width: 300px;
    width: 100%;
  }
}

.ot9_d_cmpMvImg {
  width: 100%;
  height: auto;
  display: block;
  line-height: 1;
}

/* 過去に実施したイベント・キャンペーン */
.ot9_d_cmpOuter {
  width: 100%;
  height: auto;
  display: block;
}
.ot9_d_cmpOuter > .bl_cpEndmessageWrapper {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (min-width: 751px) {
  .ot9_d_cmpOuter > .bl_cpEndmessageWrapper {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.ot9_d_cmpOuter > .bl_cpEndmessageWrapper > .bl_cpEndmessage {
  background-color: #ffd75c;
  padding-top: 17px;
  padding-bottom: 14px;
  padding-left: 30px;
  padding-right: 30px;
}
.ot9_d_cmpOuter > .bl_cpEndmessageWrapper > .bl_cpEndmessage > .bl_cpEndmessageText {
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
}
@media only screen and (min-width: 751px) {
  .ot9_d_cmpOuter > .bl_cpEndmessageWrapper > .bl_cpEndmessage > .bl_cpEndmessageText {
    font-size: 1.6rem;
  }
}
.ot9_d_cmpOuter > .bl_cpMainvisualWrapper {
  margin-top: 20px;
  width: 100%;
}
@media only screen and (min-width: 751px) {
  .ot9_d_cmpOuter > .bl_cpMainvisualWrapper {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.ot9_d_cmpOuter .bl_cpMainLeadWrapper {
  width: 100%;
  margin-top: 20px;
}
@media only screen and (min-width: 751px) {
  .ot9_d_cmpOuter .bl_cpMainLeadWrapper {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
.ot9_d_cmpOuter .bl_cpMainLeadWrapper .bl_cpMainLeadText {
  font-size: 1.4rem;
}
@media only screen and (min-width: 751px) {
  .ot9_d_cmpOuter .bl_cpMainLeadWrapper .bl_cpMainLeadText {
    font-size: 1.6rem;
  }
}

/*************************************************************
大人の休日倶楽部共通用CSS
*************************************************************/
/*汎用スタイル */
.ot9_ttl-lv1 {
  font-size: 3.2rem;
  font-size: clamp(2.6rem, 7.2727272727vw, 3.6rem);
  font-weight: bold;
}

.ot9_ttl-lv1-icon {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.ot9_ttlOuter-l {
  margin-bottom: 60px;
}
@media only screen and (min-width: 751px) {
  .ot9_ttlOuter-l {
    margin-bottom: 80px;
  }
}

.ot9_ttlOuter-m {
  margin-bottom: 40px;
}
@media only screen and (min-width: 751px) {
  .ot9_ttlOuter-m {
    margin-bottom: 60px;
  }
}

.ot9_ttlOuter-s {
  margin-bottom: 20px;
}
@media only screen and (min-width: 751px) {
  .ot9_ttlOuter-s {
    margin-bottom: 40px;
  }
}

.ot9_ttl-m {
  font-size: 2.6rem;
  font-size: clamp(2.4rem, 5.9090909091vw, 3rem);
  font-weight: bold;
}

.ot9_ttl-s {
  font-size: 2rem;
  font-size: clamp(1.8rem, 4.5454545455vw, 2.4rem);
  font-weight: bold;
}

.ot9_ttl-bg {
  padding: 8px;
  background-color: var(--color-theme-main);
  border-radius: 3px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}
@media only screen and (min-width: 751px) {
  .ot9_ttl-bg {
    padding: 10px 8px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.ot9_txt-left {
  text-align: left;
}

@media only screen and (min-width: 751px) {
  .ot9_txt-left_pc {
    text-align: left;
  }
}

.ot9_txt-center {
  text-align: center;
}

@media only screen and (min-width: 751px) {
  .ot9_txt-center_pc {
    text-align: center;
  }
}

.ot9_indent01 {
  padding-left: 1em !important;
  text-indent: -1em !important;
}

.ot9_indent02 {
  padding-left: 2em !important;
  text-indent: -2em !important;
}

.ot9_indent03 {
  padding-left: 3em !important;
  text-indent: -3em !important;
}

.ot9_separator-green {
  display: block;
  margin: 40px auto;
  border-top: 1px solid #00934f;
}
@media only screen and (min-width: 751px) {
  .ot9_separator-green {
    margin: 60px auto;
  }
}

/*ページのh1タグ（戻るボタンとh1テキスト） */
.ot9_ttlPageHeader {
  display: flex;
  justify-content: center;
}
.ot9_ttlPageHeader .ot9_ttlOuter-m-backBtnOuter {
  width: 30px;
  width: clamp(24px, 6.8181818182vw, 30px);
  height: auto;
  display: flex;
  align-items: center;
}
.ot9_ttlPageHeader .ot9_ttlOuter-m-backBtnOuter .ot9_ttlOuter-m-backBtnLink {
  display: block;
}
.ot9_ttlPageHeader .ot9_ttlOuter-m-headerTextOuter {
  width: calc(100% - clamp(24px, 6.8181818182vw, 30px));
}
@media only screen and (min-width: 751px) {
  .ot9_ttlPageHeader .ot9_ttlOuter-m-headerTextOuter {
    width: fit-content;
    margin-left: 15px;
  }
}

/*レイアウトスタイル */
.ot9_wrap {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 751px) {
  .ot9_wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.ot9_sec {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 751px) {
  .ot9_sec {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

/*背景色の設定 */
.ot9_secbg {
  padding: 40px 0;
  position: relative;
}
@media only screen and (min-width: 751px) {
  .ot9_secbg {
    padding: 58px 0;
  }
}
.ot9_secbg::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
@media only screen and (min-width: 751px) {
  .ot9_secbg::before {
    width: calc(50% + 660px);
  }
}
.ot9_secbg[data-listalternately].ot9_secbg-layoutRight::before {
  top: 0;
  right: 0;
  left: auto;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.ot9_secbg[data-listalternately].ot9_secbg-layoutLeft::before {
  top: 0;
  left: 0;
  right: auto;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.ot9_secbg.ot9_secbg-green::before {
  background-color: #e4fbea;
}
.ot9_secbg.ot9_secbg-yellow::before {
  background-color: #f6f6e4;
}
.ot9_secbg.ot9_secbg-gray::before {
  background-color: #f7f7f7;
}
.ot9_secbg.ot9_secbg-middle::before {
  background-color: #e4fbea;
}
.ot9_secbg.ot9_secbg-zipang::before {
  background-color: #dfedf9;
}

.ot9_content {
  margin-bottom: 90px;
}

/* パス購入例 */
.ot9_sample {
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.ot9_sampleBox {
  padding: 20px;
  border-radius: 20px;
  background-color: #ffffff;
}
@media only screen and (min-width: 751px) {
  .ot9_sampleBox {
    padding: 40px;
    padding-top: 35px;
  }
}

.ot9_sampleTtl {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.ot9_sampleList {
  margin-top: 10px;
}

.ot9_sampleListDl {
  display: flex;
}

.ot9_sampleListDt {
  width: 2em;
}

.ot9_sampleListDd {
  width: calc(100% - 2em);
}

.ot9_sampleListDd-dl {
  display: flex;
  flex-wrap: wrap;
}

.ot9_sampleListDd-dt {
  width: 3em;
}

.ot9_sampleListDd-dd {
  width: calc(100% - 3em);
}

/* 入会の申込みはこちら */
.ot9_join .ot9_wrap + .ot9_wrap {
  margin-top: 60px;
}
@media only screen and (min-width: 751px) {
  .ot9_join .ot9_wrap + .ot9_wrap {
    margin-top: 80px;
  }
}
.ot9_join .ot9_joinTxt {
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 4.0909090909vw, 2.4rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.ot9_join .ot9_joinTxt-l {
  font-size: 2.4rem;
  font-size: clamp(2rem, 5.4545454545vw, 3.6rem);
  font-weight: bold;
}
.ot9_join .ot9_joinTxtImg {
  max-width: 100%;
  width: max-content;
}
.ot9_join .ot9_joinTxt-cpEnd {
  width: fit-content;
  padding-left: 2em;
  padding-right: 2em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  text-align: center;
  background-color: #202020;
  color: #ffffff;
  border-radius: 2px;
}
@media only screen and (min-width: 751px) {
  .ot9_join .ot9_joinTxt-cpEnd {
    font-size: 1.8rem;
  }
}

/* フッター上バナー */
.ot9_bnrArea {
  margin: 40px;
}
.ot9_bnrArea .ot9_bnrArea_cardList {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ot9_bnrArea .ot9_bnrArea_cardItem {
  max-width: 400px;
  width: 100%;
}
.ot9_bnrArea .ot9_bnrArea_cardLink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #dddddd;
  border-radius: 20px;
  padding: 20px;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.ot9_bnrArea .ot9_bnrArea_cardLink[target=_blank]::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  pointer-events: none;
  background-color: #ffffff;
  top: 6px;
  right: 6px;
}
.ot9_bnrArea .ot9_bnrArea_cardLink[target=_blank]::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  pointer-events: none;
  background-color: #6d6d6d;
  -webkit-mask: url(/assets/img/icon/blank.svg) no-repeat center/contain;
  mask: url(/assets/img/icon/blank.svg) no-repeat center/contain;
  top: 10px;
  right: 10px;
}
.ot9_bnrArea .ot9_bnrArea_cardLinkImage .ot9_bnrArea_cardLinkImage-facebook {
  width: 49px;
  height: 50px;
}

/*モーダルの閉じるボタンのアイコンを消す*/
.co_dialogCloseBtn-deleteIcon::before, .co_dialogCloseBtn-deleteIcon::after {
  display: none;
}

/* 各所で使うスライダー */
@media only screen and (min-width: 751px) {
  .ot9_otoku_sliderTtl {
    text-align: center;
  }
}

.swiper-slide .c-card__image img {
  object-fit: contain;
}

/*************************************************************
よくあるご質問CSS
*************************************************************/
/* 初期状態（FAQデータ取得前）は透明度を落とす */
[data-questionid] {
  opacity: 0.5;
  transition-property: opacity;
  transition-duration: 0.4s;
}
[data-questionid].active {
  opacity: 1;
}

/* よくあるご質問枠 */
.ot9_qa .ot9_qa_list {
  margin-top: 20px;
}
.ot9_qa .ot9_qa_listItem.ot9_qa_listItem {
  margin-top: 18px;
}
.ot9_qa .ot9_qa_listItemButton {
  width: 100%;
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: color 0.2s;
}
@media (any-hover: hover) {
  .ot9_qa .ot9_qa_listItemButton:hover {
    text-decoration: underline;
    color: var(--color-text-green);
  }
}
.ot9_qa .ot9_qa_listItemIcon {
  display: grid;
  place-items: center;
  width: 40px;
  width: clamp(30px, 9.0909090909vw, 40px);
  height: 40px;
  height: clamp(30px, 9.0909090909vw, 40px);
  background-color: #00934f;
  border-radius: 50%;
}
.ot9_qa .ot9_qa_listItemIconTxt {
  font-size: 2rem;
  font-size: clamp(1.6rem, 4.5454545455vw, 2rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 3px;
}
.ot9_qa .ot9_qa_listItemTxt {
  display: block;
  width: calc(100% - 50px);
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 3.6363636364vw, 1.8rem);
  font-weight: bold;
  margin-top: 6px;
  margin-top: clamp(2px, 1.3636363636vw, 6px);
  text-align: left;
}

/* モーダル上のレイアウト */
.ot9_faqModalOuter {
  width: 100%;
  height: auto;
  display: block;
}

.ot9_faqModalQuestion {
  width: 100%;
  height: auto;
  display: block;
}

.ot9_faqModalQuestionItem {
  width: 100%;
  display: flex;
  gap: 10px;
}
@media only screen and (min-width: 751px) {
  .ot9_faqModalQuestionItem {
    gap: 20px;
  }
}

.ot9_faqModalQuestionItemIcon {
  display: grid;
  place-items: center;
  width: 40px;
  width: clamp(30px, 9.0909090909vw, 40px);
  height: 40px;
  height: clamp(30px, 9.0909090909vw, 40px);
  background-color: #00934f;
  border-radius: 50%;
}
.ot9_faqModalQuestionItemIcon.answer {
  background-color: #ffffff;
  border: 1px solid #00934f;
}

.ot9_faqModalQuestionItemIconTxt {
  font-size: 2rem;
  font-size: clamp(1.6rem, 4.5454545455vw, 2rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 3px;
}
.ot9_faqModalQuestionItemIcon.answer .ot9_faqModalQuestionItemIconTxt {
  color: #00934f;
}

.ot9_faqModalQuestionItemTxt {
  display: block;
  width: calc(100% - 50px);
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 6px;
  margin-top: clamp(2px, 1.3636363636vw, 6px);
  text-align: left;
}
@media only screen and (min-width: 751px) {
  .ot9_faqModalQuestionItemTxt {
    font-size: 2rem;
  }
}

.ot9_faqModalAnswer {
  margin-top: 30px;
  font-size: 1.4rem;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
@media only screen and (min-width: 751px) {
  .ot9_faqModalAnswer {
    font-size: 1.6rem;
    gap: 20px;
  }
}

.ot9_faqModalAnswerItemTxt {
  display: block;
  width: calc(100% - 50px);
}

/*************************************************************
重要なお知らせCSS
*************************************************************/
.co_importantInfoOuter {
  width: 100%;
  height: auto;
  display: block;
  background-color: #f6f6e4;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-top: 25px;
  padding-bottom: 31px;
}

.co_importantInfoListOuter {
  width: 100%;
  height: auto;
  display: block;
}

.co_importantInfoList {
  width: 100%;
  height: auto;
  display: block;
}

.co_importantInfoListItem {
  width: 100%;
  height: auto;
  display: block;
}
.co_importantInfoListItem:not(:first-of-type) {
  margin-top: 20px;
}
@media only screen and (min-width: 751px) {
  .co_importantInfoListItem:not(:first-of-type) {
    margin-top: 25px;
  }
}

.co_importantInfoListContentsOuter {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.co_importantInfoListContentsTtlText {
  width: 100%;
  height: auto;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #ff0000;
}
@media only screen and (min-width: 751px) {
  .co_importantInfoListContentsTtlText {
    font-size: 1.8rem;
  }
}

.co_importantInfoListContentsBtnOuter {
  margin-top: 9px;
}

.co_importantInfoListContentsBtn {
  cursor: pointer;
  position: relative;
  padding-left: 1.3em;
}
.co_importantInfoListContentsBtn::before {
  position: absolute;
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  top: 0.1em;
  bottom: 0;
  left: 0;
  margin-top: auto;
  margin-bottom: auto;
  background: url(/otona/common2026/img/icon_modalopen.svg) no-repeat left top;
}
@media (any-hover: hover) {
  .co_importantInfoListContentsBtn:hover {
    text-decoration: underline;
  }
}

/*************************************************************
エマージェンシー枠CSS
*************************************************************/
.ot9_emergencyOuter {
  width: 100%;
  height: auto;
  display: block;
  background-color: #fef2f2;
  margin-top: 30px;
  margin-bottom: 40px;
  padding-top: 25px;
  padding-bottom: 31px;
}
.ot9_emergencyOuter b {
  font-weight: bold !important;
}
.ot9_emergencyOuter {
  /* リンク */
}
.ot9_emergencyOuter a {
  text-decoration: underline;
  color: var(--color-text);
}
@media (any-hover: hover) {
  .ot9_emergencyOuter a:hover {
    color: var(--color-text-green);
  }
}
.ot9_emergencyOuter a[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 0.25em;
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
  background: url(/assets/img/icon/blank.svg) no-repeat center/contain;
}
.ot9_emergencyOuter a[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  margin-left: 0.25em;
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
  background: url(/assets/img/icon/pdf.svg) no-repeat center/contain;
}
.ot9_emergencyOuter a[href^="#"]::after {
  content: "";
  display: inline-block;
  margin-left: 0.25em;
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
  background: url(/assets/img/icon/chev-cir-down.svg) no-repeat center/contain;
}
.ot9_emergencyOuter {
  /* リスト */
}
.ot9_emergencyOuter ul li + li {
  margin-top: 0.9em;
}

/*************************************************************
番号付きヘッダータイトル要素
*************************************************************/
.co_numberingHeaderTtlOuter {
  margin-top: 40px;
  margin-bottom: 30px;
}
.co_numberingHeaderTtlOuter .co_numberingHeaderTtl {
  font-size: 2rem;
  font-size: clamp(1.6rem, 4.5454545455vw, 2.6rem);
  font-weight: bold;
  text-align: center;
}
.co_numberingHeaderTtlOuter .co_numberingHeaderTtl.co_numberingHeaderTtl-num {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 60px;
  min-height: min(13.6363636364vw, 60px);
  text-align: left;
  padding-left: 75px;
  padding-left: min(17.0454545455vw, 75px);
  background-position: left top;
  background-size: 56px;
  position: relative;
}
@media only screen and (min-width: 751px) {
  .co_numberingHeaderTtlOuter .co_numberingHeaderTtl.co_numberingHeaderTtl-num {
    display: grid;
    place-items: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.co_numberingHeaderTtlOuter .co_numberingHeaderTtl .co_numberingHeaderTtl-numIcon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-size: min(5.9090909091vw, 2.6rem);
  color: #ffffff;
  text-align: center;
  width: 60px;
  width: min(13.6363636364vw, 60px);
  height: 60px;
  height: min(13.6363636364vw, 60px);
  background-color: var(--color-theme-main);
  border-radius: 50%;
}

/*************************************************************
テーブルCSS
*************************************************************/
.ot9_table .ot9_tableInner {
  padding: 10px;
  padding: min(2.2727272727vw, 10px);
  border: 1px solid var(--color-border);
  background-color: #ffffff;
}
.ot9_table th, .ot9_table td {
  font-size: 1.4rem;
  font-size: min(3.1818181818vw, 1.4rem);
  padding: 12px 8px;
  padding: min(2.7272727273vw, 12px) min(1.8181818182vw, 8px);
  text-align: center;
  vertical-align: middle;
  line-height: 1.2;
  border: none;
}
.ot9_table th {
  font-weight: bold;
}
.ot9_table thead th {
  background-color: #eeeeee;
  border-bottom: 1px solid var(--color-border);
}
.ot9_table thead th + th {
  border-left: 1px solid var(--color-border);
}
.ot9_table tbody tr + tr th, .ot9_table tbody tr + tr td {
  border-top: 1px solid var(--color-border);
}
.ot9_table tbody tr th {
  background-color: #fafafa;
}
.ot9_table tbody tr th + td {
  border-left: 1px solid var(--color-border);
}
.ot9_table tbody tr td + td {
  border-left: 1px solid var(--color-border);
}
.ot9_table .ot9_table_flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
@media only screen and (min-width: 751px) {
  .ot9_table .ot9_table_flex {
    justify-content: center;
  }
}
.ot9_table .ot9_table_bg-red {
  background-color: #ffe5eb;
}
.ot9_table .ot9_table_bg-blue {
  background-color: #dfedf9;
}
.ot9_table .ot9_table_bg-yellow {
  background-color: #f6f6e4;
}
.ot9_table .ot9_table_txt-orange {
  color: var(--color-warning);
}
.ot9_table .ot9_table_txt-l {
  font-size: 2.6rem;
  font-size: min(5.9090909091vw, 2.6rem);
}
.ot9_table .ot9_tableTxt-left {
  text-align: left;
}
.ot9_table .ot9_tableTxt-icon {
  display: inline-block;
  margin-right: 4px;
  margin-left: min(11.8181818182vw, 52px);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.ot9_table .ot9_tableTxt-icon.u-service-icon-train {
  background-size: 22px;
}
.ot9_table .ot9_tableTxt-icon.ot9top_icon-railwayline {
  background-image: url(/otona/common2026/img/icon_railwayline.png) !important;
  background-size: 2px 20px;
}
.ot9_table .ot9_tableTxt-icon.u-service-icon-going {
  background-size: 27px;
}
.ot9_table .ot9_tableTxt-icon.u-service-icon-area_map {
  background-size: 17px;
}
.ot9_table .ot9_table_icon-5 {
  max-width: 60px;
  width: 100%;
}
.ot9_table .ot9_table_icon-30 {
  max-width: 60px;
  width: 100%;
}