@charset "UTF-8";



/*  all */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Noto Sans JP", "Poppins", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "sans-serif";
    overflow-x: hidden;
    background: #fff;
}

ul, ol, li {
    list-style: none;
    padding-left: 0;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

p {
    font-size: 1rem;
    line-height: 2;
    font-weight: 400;
    letter-spacing: 0;
}

a {
    text-decoration: none;
}

.en {
    font-family: "Poppins" !important;
}

/*====================================*/
/* 指定フォント ここから */
/*====================================*/
/* --NotoSans-- */
@font-face {
    font-family: "NotoSerifJP-M";
    src: url('../fonts/NotoSerifJP-Medium.otf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "NotoSerifJP-B";
    src: url('../fonts/NotoSerifJP-Bold.otf') format('truetype');
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: "NotoSerif";
    src: url('../fonts/NotoSerif.ttf') format('truetype');
    font-display: swap;
}

/*====================================*/
/* base contents */
/*====================================*/
html, body {
    font-family: Lato, 'NotoSerifJP-M', 'NotoSerifJP-B', 'NotoSerif', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体',
        'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN',
        'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック',
        'MS PGothic', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .1em;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
    color: #1C1C1C;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    word-break: break-all;
}

@media screen and (min-width: 768px) {
    html, body {
        font-size: 16px;
    }
}

body {
    background-color: var(--blk-color);
    overflow-x: hidden;
}

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

/* ----pc,sp/on_off---- */
.pc {
    display: none;
}

.tb {
    display: none;
}

.sp {
    display: block;
}

@media screen and (min-width: 959px) {
    .tb {
        display: block;
    }

    .sp {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .pc {
        display: block;
    }

    .tb {
        display: none;
    }
}

:root {
    /* color */
    --wht: #fff;
    --wht-gray: #f7f7f7;
    --blk: #2C2C2C;
    --accent: #FFFEEA;
    --main-color: #004139;
    --sub-color: #E7F6E1;
    --blk-color: #F9FFF7;
    --blk-color02: #608751;
    --blk-color03: #749666;
    --blk-color04: #83A5A1;
    --point-color: #D2EAC8;
    --point: #C63343;
}

.bold {
    font-family: "NotoSerifJP-B";
}
.new {
    position: relative;
    top: 0;
    left: 0;
}
.new::before {
    content: "NEW!!";
    position: absolute;
    top: -19px;
    left: -1px;
    font-size: 12px;
    color: #ff0000;
    font-family: 'Noto Sans JP';
    width: max-content;
    display: block;
    font-weight: normal;
    letter-spacing: normal;
}

.contetn-center {
    margin: 0 auto;
}
.text-center {
    text-align: center;
    margin-bottom: 16px;
}

/*==================================== レイアウト ====================================*/
.inner {
    max-width: 1032px;
    margin: auto;
}

.common.inner {
    max-width: 1080px;
}

.marker {
    background: linear-gradient(transparent 50%, var(--point-color) 50%);
}

.marker02 {
    background: linear-gradient(transparent 50%, var(--blk-color03) 50%);
}

.color-1 {
    color: var(--main-color);
}

.red {
    color: var(--point);
}

/* ----flexbox---- */
.flex {
    display: block;
}

.fl,
.col_2,
.col_3,
.col_2_3,
.col_2_4,
.col_3_5 {
    display: flex;
    flex-flow: row wrap;
}

.col_1,
.col_1_2 {
    display: block;
}

.col_1>* {
    display: block;
    width: 100%;
}

.col_1_2>* {
    flex-basis: 100%;
    margin-bottom: 1rem;
}

.col_right>*:last-child {
    flex-basis: calc(75% - .9rem);
}

.col_3>* {
    flex-basis: calc(100% / 3 - .8rem);
}

.col_2_3>*,
.col_2_4>* {
    flex-basis: calc(100% / 2 - .5rem);
    margin-bottom: 1rem;
}

.col_3_5>* {
    flex-basis: calc(100% / 3 - .8rem);
    margin-bottom: 1rem;
}

.cols>* {
    width: 100%;
    min-width: 0;
}

.col-25 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}


.gap_1 {
    gap: 1.5rem;
}

.gap_2 {
    gap: 2rem;
}

.gap_3 {
    gap: 3rem;
}

.fld-clm {
    flex-direction: column;
}

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

    .col_1_2>* {
        flex-basis: calc(100% / 2 - .8rem);
        margin-bottom: 1.6rem;
    }

    .col_1_3>* {
        flex-basis: calc(100% / 2 - 1.2rem);
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1200px) {
    .flex {
        display: flex;
    }

    .col_1_3>* {
        flex-basis: calc(100% / 3 - 1.5rem);
        margin-bottom: 0;
    }

    .col_right>*:last-child {
        flex-basis: calc(80% - .9rem);
    }

    .col_2_3>* {
        flex-basis: calc(100% / 3 - 2rem);
        margin-bottom: 0;
    }

    .col_2_4>* {
        flex-basis: calc(100% / 4 - 1.5rem);
        margin-bottom: 0;
    }

    .col_3_5>* {
        flex-basis: calc(100% / 5 - .5rem);
        margin-bottom: 0;
    }
}

.jf_fs {
    justify-content: flex-start;
}

.jf_sb {
    justify-content: space-between;
}

.jf_c {
    justify-content: center;
}

.jf_e {
    justify-content: space-evenly;
}

.jf_fe {
    justify-content: flex-end;
}

.item-c {
    align-items: center;
}

/* ----grid-layout---- */
.grid,
.grid_1_2,
.grid_1_3,
.grid_3,
.grid_4,
.grid_2_4 {
    display: grid;
}

.grid_1_2 {
    grid-template-columns: 1fr;
}

.grid_2_4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 1rem;
}

.grid_3 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.grid_4 {
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (min-width:600px) {
    .grid_1_2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid_1_3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid_2_4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.point-list .point-item {
    position: relative;
    padding-left: 1rem;
}

.benefits-point {
    position: relative;
    padding-left: 1rem;
}

.point-list .point-item:before {
    position: absolute;
    content: "※";
    top: 0;
    left: 0;
}

.point-list .point-item.red:before {
    position: absolute;
    color: var(--point);
    content: "※";
    top: 0;
    left: 0;
}

/* ================================ 装飾 =================================== */
/* ----フェードインアニメーション---- */
.view.view-fix,
.view.view-slideup,
.view.view-slidedown,
.view.view-slidein-L,
.view.view-slidein-R {
    opacity: 0;
}

.view.view-fix.on {
    opacity: 1;
    animation: view-fix 1s ease both;
}

.view.view-slideup.on {
    opacity: 1;
    animation: view-slideup 1s ease both;
}

.view.view-slidedown.on {
    opacity: 1;
    animation: view-slidedown 1s ease both;
}

.view.view-slidein-L.on {
    opacity: 1;
    animation: view-slidein-L 1s ease both;
}

.view.view-slidein-R.on {
    opacity: 1;
    animation: view-slidein-R 1s ease both;
}

@keyframes view-fix {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes view-slideup {
    0% {
        opacity: 0;
        transform: translate(0, 35px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidedown {
    0% {
        opacity: 0;
        transform: translate(0, -35px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidein-L {
    0% {
        opacity: 0;
        transform: translate(-35px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidein-R {
    0% {
        opacity: 0;
        transform: translate(35px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.btn-wrap {
    align-content: center;
    border-radius: .5rem;
    height: auto;
    padding: .75rem 1rem .75rem 2rem;
    transform: translate(0px, 0px);
    transition-duration: 600ms;
    width: auto;
    max-width: 300px;
    overflow: hidden;
}

@media screen and (max-width:768px) {
    .btn-wrap {
        width: 100%;
    }
}

.btn-wrap.-wh {
    position: relative;
    transition: color 0.5s ease;
    background: var(--wht);
}

.btn-wrap.-bl {
    position: relative;
    transition: color 0.5s ease;
    background: var(--main-color);
    color: var(--wht);
}

.btn-wrap.-bl::hover {
    color: #fff;
}

.btn-wrap.-bl:hover::before,
.btn-wrap.-wh:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-wrap.-bl::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #007062;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
    border-radius: .5rem;
}

.btn-wrap.-wh::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #C6D4C0;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
    border-radius: .5rem;
}

.side__icn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.side__icn>img {
    height: 1.5rem;
    width: 1.5rem;
}

.btn-wrap a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-wrap:hover {
    opacity: 1;
}

.btn-wrap .txt {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    height: auto;
    line-height: 1.01;
    opacity: 1;
    text-align: left;
    transform: translate(0px, 0px);
    transition-duration: 600ms;
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
}



.btn-wrap.-bl .txt {
    color: var(--wht);
}

.btn-icn__box {
    position: relative;
    align-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.0);
    border-radius: 0;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 2rem;
    justify-content: center;
    margin: 0px 0px 0px 30px;
    overflow-x: visible;
    overflow-y: visible;
    transform: scale(1, 1);
    width: 2rem;
    max-width: calc(100% - 30px);
    display: flex;
}

.top__arrow {
    backdrop-filter: brightness(100%);
    flex: none;
    height: auto;
    transition-duration: 0ms;
    width: 12px;
    z-index: 3;
    max-width: 100%;
    display: flex;
    position: relative;
    z-index: 1;
}

.btn-wrap:hover .top__arrow {
    opacity: 0;
    transform: translate(10px, 0px);
    transition-duration: 600ms;
}

.btn-icn__box .bottom__arrow__box {
    align-content: center;
    align-items: center;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: center;
    left: 0;
    margin: 0 0 0 0;
    padding: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    max-width: 100%;
    display: flex;
}

.btn-icn__box .bottom__arrow {
    flex: none;
    height: auto;
    transform: translate(-10px, 0px);
    opacity: 0;
    position: absolute;
    transition-delay: 0ms;
    transition-duration: 0ms;
    width: 12px;
    max-width: 100%;
}

.btn-wrap:hover .btn-icn__box .bottom__arrow {
    opacity: 1;
    transform: translate(0px, 0px);
    transition-delay: 250ms;
    transition-duration: 600ms;
}

.btn-icn__box .arrow__bg {
    background: var(--main-color);
    border-radius: 50%;
    flex: none;
    height: 100%;
    left: 0;
    margin: 0 0 0 0;
    position: absolute;
    top: 0;
    transition-duration: 600ms;
    width: 100%;
    max-width: 100%;
}

.btn-wrap.-bl .arrow__bg {
    background: var(--wht);
}

.btn-wrap:hover .btn-icn__box .arrow__bg {
    transform: scale(1.3, 1.3);
}

/*==============================================================================*/
/*================================== ヘッダー ==================================*/
/*==============================================================================*/
header {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    /* left: 0; */
    width: fit-content;
    /* max-width: 1920px; */
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    background-color: var(--main-color);
    border-radius: 0 0 0 1.5rem;
}

header .edge-icon.top {
    position: absolute;
    left: -1.5rem;
    top: 1rem;
}

@media screen and (max-width:767px) {
    header .edge-icon.top {
        position: absolute;
        left: -1.7rem;
        top: .75rem;
    }
}

header .edge-icon.bottom {
    position: absolute;
    right: 1rem;
    bottom: -1.5rem;
}

@media (min-width: 1025px) {
    header {
        padding: 2rem 2.5rem 1.5rem;
    }
}

/* .header-container {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
} */

.header-logo {
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (max-width: 768px) and (orientation: landscape) {
    .header-logo {
        width: clamp(70px, 17.991004497751124vw, 140px);
    }
}

.logo-link {
    display: block;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.logo-link:hover {
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        z-index: 999;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        padding-right: clamp(30px, 8vw, 60px);
        padding-bottom: clamp(30px, 8vw, 60px);
        padding-left: clamp(30px, 8vw, 60px);
        transition-duration: 300ms;
        transform: translateX(200%);
        overflow: auto;
        /* ナビメニューの背景色を変えたい時 */
        background-color: oklab(0.34 -0.06 0 / 0.96);
        ;
    }

    .nav-menu.active {
        transform: translateX(0);
    }
}

@media (min-width: 1025px) {
    .nav-menu {
        padding-top: 0 !important;
    }
}

.menu-list .menu-item:hover {
    transition-duration: 300ms;
}

.menu-list .menu-item:hover {
    opacity: .7;
}

@media (min-width: 1025px) {
    .menu-list {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(20px, 2.0833333333333335vw, 40px);
    }
}

@media (max-width: 1024px) {
    .menu-item {
        /* 各ナビメニューの下線を変えたい時 */
        border-style: solid;
        border-color: #fff;
        border-bottom-width: 1px;
    }
}

.menu-link {
    display: block;
    color: var(--wht);
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.menu-item.contact.btn-wrap.-wh {
    border-radius: .25rem;
    color: var(--main-color);
    background-color: var(--wht);
    border: none;
    max-width: 330px;
}

@media (max-width: 1024px) {
    .menu-link {
        font-size: clamp(14px, 1.0416666666666667vw, 20px);
        padding-top: 1rem;
        padding-bottom: 1rem;
        text-align: center;
    }

    .menu-item.contact.btn-wrap.-wh {
        margin: auto;
        margin-top: 2rem;
    }
}

@media (min-width: 1025px) {
    .menu-link {
        font-size: clamp(14px, 1.0416666666666667vw, 20px);
    }
}

.hamburger-button {
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    height: clamp(40px, 3.466666666666667vw, 26px);
    margin-right: 0;
    margin-left: auto;
    cursor: pointer;
    display: block;
    position: relative;
}

.hamburger-lines {
    position: relative;
    width: clamp(32px, 10.666666666666666vw, 90px);
    height: clamp(13px, 3.466666666666667vw, 26px);
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

@media (max-width: 1024px) {
    .hamburger-lines {
        width: clamp(32px, 10.666666666666666vw, 32px);
        height: clamp(24px, 3.466666666666667vw, 26px);
    }
}

.hamburger-lines.active {
    height: 1px;
}

.hamburger-lines .line {
    position: absolute;
    right: 0;
    /* left: 0; */
    display: block;
    width: 100%;
    height: clamp(3px, .26666666666666666vw, 2px);
    margin: auto;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    /* ハンバーガーメニューの線の色を変えたい時 */
    background-color: var(--wht);
}

.hamburger-lines.active .line {
    /* ハンバーガーメニューオープン時の線の色を変えたい時 */
    background-color: #fff;
}

.hamburger-lines .line:nth-child(1) {
    top: 0;
}

.hamburger-lines .line:nth-child(2) {
    bottom: 0;
}

@media (min-width: 1025px) {

    /* タブレットサイズ以上でハンバーガーメニューを丸ごと非表示 */
    .hamburger-button {
        display: none;
    }
}

.hamburger-button {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
}

@media screen and (max-width:767px) {
    .hamburger-button {
        position: relative;
    }
}

/* ハンバーガーメニューの線 */
.hamburger-button span {
    width: 100%;
    border-radius: 2px;
    background-color: var(--wht);
    position: relative;
    transition: ease .4s;
    display: block;
    height: 3px;
}

.hamburger-button.active span {
    background-color: var(--wht);
}

.hamburger-button .line:nth-child(1) {
    top: 0;
}

.hamburger-button .line:nth-child(2) {
    margin: .75rem 0px;
}

.hamburger-button .line:nth-child(3) {
    bottom: 0;
    width: 50%;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
    transform: translateX(0);
}

@media screen and (max-width:767px) {
    .header__nav {
        display: block;
        padding: 6rem 1.1rem 3rem;
        border-radius: 0 0 30px 30px;
    }
}


.frames .bar-vertical {
    background-color: var(--main-color);
    height: 8px;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 998;
}

.frames .edge-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
}


.frames .bar-horizontal {
    background-color: var(--main-color);
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    z-index: 998;
}

.frames .bar-horizontal:after {
    background-color: var(--main-color);
    content: "";
    display: block;
    height: 100%;
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 998;
}

.frames .bar-vertical {
    display: block;
    height: 1rem;
}

.frames .bar-horizontal,
.frames .bar-horizontal:after {
    width: 1rem;
}

@media screen and (max-width:767px) {
    .frames .bar-vertical {
        display: block;
        height: .8rem;
    }

    .frames .bar-horizontal,
    .frames .bar-horizontal:after {
        width: 1rem;
    }
}

.frames-inr {
    padding: 0 1rem;
}

/*==============================================================================*/
/*================================== mv ==================================*/
/*==============================================================================*/
#mv {
    margin-bottom: 3.5rem;
}

.mv-innr {
    max-width: 1240px;
    margin: auto;
}

.common.mv-innr {
    max-width: 1080px;
}

#mv .logo-area {
    display: flex;
    gap: .5rem;
    align-items: end;
    padding: 2rem 3rem;
}

#mv .logo-area .btn {
    color: var(--wht);
    background-color: var(--main-color);
    padding: .75rem 1rem;
    border-radius: .5rem;
}

@media screen and (max-width:767px) {
    #mv .logo-area {
        padding: 2rem 0rem;
        margin-right: 4rem;
        align-items: center;
    }
}

#mv .btn-area {
    width: 100%;
}

#mv .logo-area .txt {
    font-size: 1.25rem;
    line-height: 1.25;
    color: var(--main-color);
}

@media screen and (max-width:767px) {
    #mv .logo-area .logo {
        width: 77px;
    }

    #mv .logo-area .txt {
        font-size: 1rem;
    }
}

#mv .btn-area .btn-wrap {
    max-width: initial;
    border: none;
    padding: 1.5rem 1.5rem;
    width: max-content;
    margin-left: auto;
}

@media screen and (max-width:767px) {
    #mv .btn-area .btn-wrap {
        padding: 1rem 0;
    }

    #mv .mv-img-area .img-box .txt-box .ttl-box {
        font-size: 2rem;
        /* padding: 2rem 2rem 1.5rem; */
        margin-bottom: 1rem;
    }
}

#mv .btn-area .btn-wrap a {
    margin-left: auto;
    font-family: initial;
    width: fit-content;
}

#mv .btn-area .btn-wrap .txt {
    color: var(--blk);
}

#mv .btn-wrap a .btn-icn__box {
    margin-left: 1rem;
}

#mv .mv-img-area {
    max-height: 600px;
}

#mv .mv-img-area .img-box {
    position: relative;
    min-height: 340px;
}

#mv .mv-img-area .img-box .mv-img {
    border-radius: 2rem;
    /* max-height: 600px; */
    min-height: 340px;
    object-fit: cover;
}

@media screen and (max-width:767px) {
    #mv .mv-img-area .img-box .mv-img {
        /* margin-bottom: 1.25rem; */
    }
}

#mv .mv-img-area .img-box .txt-box {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--wht);
    padding: 2rem 5rem 1.5rem;
    width: 470px;
    max-width: 470px;
    border-radius: 32px 0px;
    background: linear-gradient(180deg, rgba(0, 88, 22, 0.48) 0%, rgba(0, 0, 0, 0.48) 100%);
}

#mv .mv-img-area .img-box .txt-box .ttl-box {
    font-size: 2.5rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

@media screen and (max-width:767px) {
    #mv .mv-img-area .img-box .txt-box {
        padding: 0;
        width: initial;
        border-radius: 32px 0px;
        padding: 1.5rem 1.75rem;
    }

    #mv .mv-img-area .img-box .txt-box .ttl-box {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

#mv .mv-img-area .img-box .txt-box .ttl-box .bottom {
    margin-left: auto;
}

#mv .mv-img-area .img-box .txt-box .sub-ttl {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    white-space: nowrap;
}

#mv .mv-img-area .img-box .txt-box .sub-ttl::before,
#mv .mv-img-area .img-box .txt-box .sub-ttl::after {
    background-color: var(--wht);
    content: "";
    height: 1px;
    width: 100%;
}

#mv .mv-img-area .img-box .txt-box .sub-ttl::before {
    margin-right: .5rem;
}

#mv .mv-img-area .img-box .txt-box .sub-ttl::after {
    margin-left: .5rem;
}

#mv .mv-img-area .btn-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--blk-color);
    width: 320px;
    max-width: 320px;
    margin-left: auto;
    border-radius: 2rem 0 0;
}

@media screen and (max-width:767px) {
    #mv .mv-img-area .btn-box {
        position: static;
        bottom: 0;
        right: 0;
        background-color: var(--blk-color);
        width: 100%;
        max-width: initial;
        border-radius: 2rem 0 0;
    }
}

#mv .mv-img-area .btn-box .wrap {
    position: relative;
    display: flex;
    gap: 1.25rem;
    flex-direction: column;
    padding: 2.5rem 0 0rem 2.5rem;
}

@media screen and (max-width:767px) {
    #mv .mv-img-area .btn-box .wrap {
        padding: 1rem;
        justify-content: center;
        max-width: 320px;
        margin: auto;
    }
}

#mv .mv-img-area .btn-box .edge-icon {
    position: absolute;
}

#mv .mv-img-area .btn-box .edge-icon.top {
    top: -2rem;
    right: 0;
}

#mv .mv-img-area .btn-box .edge-icon.bottom {
    bottom: 0;
    left: -2rem;
}

#mv .mv-img-area .btn-box .btn-wrap {
    width: 280px;
    margin-bottom: .25rem;
}

@media screen and (max-width:767px) {
    #mv .mv-img-area .btn-box .btn-wrap {
        width: 100%;
    }
}

#mv .mv-img-area .btn-box .txt {
    line-height: 1.5rem;
}

/*==============================================================================*/
/*================================== course-link ==================================*/
/*==============================================================================*/
#course-link .btn-list {
    background-color: var(--sub-color);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-radius: 50px;
    margin-bottom: 4rem;
}

@media screen and (max-width:900px) {
    #course-link .btn-list {
        flex-direction: column;
    }
}

#course-link .btn-list .btn-wrap {
    border-radius: 50px;
    width: 330px;
    transition-duration: 300ms;
}

#course-link .btn-list .btn-wrap:hover {
    opacity: .7;
}

/*==============================================================================*/
/*================================== about ==================================*/
/*==============================================================================*/
#about {
    position: relative;
    margin-bottom: 8rem;
}

#about .about__cnt {
    width: calc(100% / 2);
    margin-bottom: 8rem;
}

@media screen and (max-width:767px) {
    #about .about__cnt {
        width: initial;
        margin-bottom: 2rem;
    }
}

#about .about__cnt .l__box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media screen and (max-width:767px) {
    #about .about__cnt .l__box {
        margin-bottom: 3.5rem;
    }
}

#about .about__cnt .l__box .lead {
    font-size: 2rem;
    color: var(--main-color);
}

#about .about__cnt .r__box {
    width: calc(100% / 2 - 3rem);
    position: absolute;
    top: 0;
    right: 0;
}

@media screen and (max-width:767px) {
    #about .about__cnt .r__box {
        width: calc(100% + 1rem);
        position: static;
        overflow: hidden;
    }
}

#about .about__cnt .r__box img {
    border-radius: 2rem 0 0 2rem;
}

#about .about__img {
    display: flex;
    gap: 5rem;
}

@media screen and (max-width:767px) {
    #about .about__img {
        flex-direction: column;
        gap: 2.5rem;
    }
}

#about .about__img .r__box {
    padding-top: 7rem;
}

@media screen and (max-width:767px) {
    #about .about__img .l__box {
        padding-top: initial;
        padding-right: 6rem;
    }

    #about .about__img .r__box {
        padding-top: initial;
        padding-left: 6rem;
    }
}

#about .about__img img {
    border-radius: 1.5rem;
}

/*==============================================================================*/
/*================================== benefits ==================================*/
/*==============================================================================*/
#benefits {
    position: relative;
    background-color: var(--sub-color);
    border-radius: 3.25rem 3.25rem 0 0;
}

@media screen and (max-width:1025px) {
    #benefits {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
    }
}

#benefits .bg-img.left {
    position: absolute;
    top: calc(100% / 6);
    width: 50vw;
}

#benefits .bg-img.right {
    position: absolute;
    bottom: calc(100% / 9);
    width: 50vw;
    right: 0;
}

#benefits .benefits-cnt {
    position: relative;
}

#benefits .benefits-cnt .bg-img.point {
    position: absolute;
    width: 30vw;
    top: -6.5vw;
    right: 3vw;
}

@media screen and (max-width:1025px) {
    #benefits .benefits-cnt .bg-img.point {
        left: 5vw;
    }
}

#benefits .inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding: 4rem 1rem;
}

.common-ttl-box {
    color: var(--main-color);
    margin-bottom: 3.5rem;
}

@media screen and (max-width:1025px) {
    .common-ttl-box {
        margin-bottom: 2rem;
    }
}

.common-ttl-box .ttl-jp {
    font-size: 2rem;
}

#benefits .bg-img.sp-img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: -5rem;
}

#benefits .benefits-list {
    counter-reset: li;
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

#benefits li.benefits-item {
    background-color: var(--wht);
    padding: 1.5rem 2.5rem;
    border-radius: 1.25rem;
    width: 880px;
    max-width: 880px;
}

@media screen and (max-width:1025px) {
    #benefits li.benefits-item {
        padding: 1rem;
        width: 100%;
    }
}

#benefits li.benefits-item:nth-child(-n+4) {
    margin-left: auto;
}

#benefits li.benefits-item:nth-child(n+5) {
    margin-right: auto;
}

/* #benefits li.benefits-item .benefits-ttl-box {
    display: flex;
} */

#benefits li.benefits-item .benefits-ttl-box .ttl {
    margin-bottom: 1rem;
    color: var(--main-color);
}

@media screen and (max-width:1025px) {
    #benefits li.benefits-item .benefits-ttl-box .ttl {
        font-size: 1.25rem;
    }
}

#benefits li.benefits-item .benefits-ttl-box .txt,
#benefits li.benefits-item .benefits-ttl-box .point-list {
    font-size: 1rem;
}

#benefits li.benefits-item .benefits-ttl-box {
    font-size: 1.75rem;
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5;
}

#benefits li.benefits-item .benefits-ttl-box::before {
    counter-increment: li;
    content: counter(li);
    position: absolute;
    left: 0;
    top: .5rem;
    /* 数字のY軸線上の位置を調整 */
    display: block;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--main-color);
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.85rem;
    text-align: center;
}

#benefits li.benefits-item .benefits-ttl-box .benefits.mb {
    margin-bottom: 1.5rem;
}

#benefits li.benefits-item .benefits-ttl-box .lead {
    font-size: 1.25rem;
    background-color: var(--accent);
    display: inline-block;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

#benefits li.benefits-item .benefits-ttl-box .point-list .point-item {
    position: relative;
    padding-left: 1rem;
}

#benefits .benefits-point {
    position: relative;
    padding-left: 1rem;
}

#benefits li.benefits-item .benefits-ttl-box .point-list .point-item:before,
#benefits .benefits-point:before {
    position: absolute;
    content: "※";
    top: 0;
    left: 0;
}

#benefits li.benefits-item .benefits-ttl-box .point-list .point-item .red {
    color: var(--point);
}

/*==============================================================================*/
/*================================== achieve-slide ==================================*/
/*==============================================================================*/
#auto-slide {
    margin-bottom: -2rem;
}

.slide-animation {
    display: flex;
    overflow: hidden;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}

.slide-animation li {
    width: 563px;
}

@media screen and (max-width:1025px) {
    .slide-animation li {
        width: 300px;
    }
}

.slide-contents {
    display: flex;
    animation: loopAnimation 30s linear infinite;
}

@keyframes loopAnimation {
    0% {
        transform: translate(0%);
    }

    100% {
        transform: translate(-100%);
    }
}

/*==============================================================================*/
/*================================== cv-box ==================================*/
/*==============================================================================*/
.cv-box {
    background-color: var(--blk-color02);
    border-radius: 3.25rem;
    position: relative;
}

@media screen and (max-width:1025px) {
    .cv-box {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        border-radius: 1.5rem;
    }
}

.cv-box .inner {
    padding: 4.5rem 1rem;
}

.cv-box .common-ttl-box {
    color: var(--wht);
}

.cv-box .cv-cnt {
    gap: 3rem;
}

.cv-box .cv-cnt .l-box img {
    border-radius: 1.25rem;
}

.cv-box .cv-cnt .r-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cv-box .cv-cnt .r-box .top .btn-wrap,
.cv-box .cv-cnt .r-box .bottom .btn-wrap {
    margin-bottom: 1rem;
}

@media screen and (max-width:1025px) {

    .cv-box .cv-cnt .r-box .top .btn-wrap,
    .cv-box .cv-cnt .r-box .bottom .btn-wrap {
        width: 300px;
    }

    .cv-box .cv-cnt .r-box .top,
    .cv-box .cv-cnt .r-box .bottom {
        margin: auto;
    }
}

.cv-box .cv-cnt .r-box .top>.txt,
.cv-box .cv-cnt .r-box .bottom>.txt {
    line-height: 1.5rem;
    color: var(--wht);
}

/*==============================================================================*/
/*================================== recruitment ==================================*/
/*==============================================================================*/
#recruitment .inner {
    padding: 4.5rem 1rem;
}

#recruitment .l-box img {
    border-radius: 1.5rem;
}

#recruitment .recruitment-cnt {
    gap: 2rem;
}

#recruitment .r-box .recruitment-item {
    margin-bottom: 1.5rem;
    color: var(--main-color);
}

#recruitment .r-box .recruitment-item .ttl {
    background-color: var(--main-color);
    color: var(--wht);
    padding: .5rem 1rem;
    border-radius: .25rem;
    display: inline-block;
    margin-bottom: .25rem;
}

#recruitment .r-box .recruitment-item .price .num {
    font-size: 2rem;
}

/*==============================================================================*/
/*================================== membership ==================================*/
/*==============================================================================*/
#membership {
    background-color: var(--sub-color);
    border-radius: 3.25rem;
    position: relative;
    z-index: 1;
    margin-bottom: -3rem;
}

@media screen and (max-width:1025px) {
    #membership {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        border-radius: 1.5rem;
    }
}

#membership>.inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#membership>.inner .membership-txt,
#membership>.inner .common-ttl-box {
    padding: 0rem 1rem;
}

#membership .membership-join-item {
    padding-left: 1rem;
}

#membership .membership-join-item .btn-wrap {
    margin-top: 1rem;
}

#membership .membership-join-item .day {
    position: relative;
    color: var(--main-color);
    background-color: var(--accent);
    padding-left: .5rem;
    display: inline-block;
}

#membership .membership-join-item .txt .green {
    color: var(--main-color);
}

#membership .membership-join-item .day::before {
    position: absolute;
    content: "";
    top: .5rem;
    left: -1rem;
    height: 1rem;
    width: 1rem;
    background-color: var(--main-color);
    padding-left: 1rem;
}

#membership .membership-txt {
    margin-bottom: 2rem;
}

#membership .membership-txt .point-txt {
    display: flex;
    align-items: center;
    color: var(--point);
    margin-bottom: 1rem;
}

#membership .membership-join {
    position: relative;
}

#membership .membership-join .membership-join-cnt {
    position: relative;
    padding: 2.5rem 3rem;
}

@media screen and (max-width:1025px) {
    #membership .membership-join .membership-join-cnt {
        overflow: hidden;
    }
}

#membership .membership-join .membership-join-cnt:not(:last-child) {
    margin-bottom: 3rem;
}

#membership .membership-join .membership-join-cnt::before {
    content: "";
    position: absolute;
    display: block;
    width: 100vw;
    top: 0;
    height: 100%;
    left: -25%;
    background-color: var(--wht);
    border-radius: 0 3rem 3rem 0;
}

#membership .membership-join .membership-join-cnt:nth-child(even)::before {
    width: 90vw;
    top: 0;
    height: 100%;
    right: -25%;
    left: initial;
    background-color: var(--wht);
    border-radius: 3rem 3rem;
}

@media screen and (max-width:1025px) {

    #membership .membership-join .membership-join-cnt::before,
    #membership .membership-join .membership-join-cnt:nth-child(even)::before {
        width: 120%;
    }
}

#membership .membership-join .membership-join-cnt .wrap {
    position: relative;
    display: grid;
    gap: 2rem;
}

#membership .membership-join .ttl-box .ttl {
    font-size: 1.5rem;
}

/*==============================================================================*/
/*================================== cv-box v-2 ==================================*/
/*==============================================================================*/
.cv-box.v-2 {
    border-radius: 0 0 3.25rem 3.25rem;
    margin-bottom: -3.25rem;
}

@media screen and (max-width:1025px) {
    .common.cv-box.v-2 {
        border-radius: 1.75rem;
    }
}

.cv-box.v-2 .inner {
    padding: 6.5rem 1rem 4.5rem;
}

.common.cv-box.v-2 .inner {
    padding: 4.5rem 1rem 4.5rem;
}

@media screen and (max-width:1025px) {
    .common.cv-box.v-2 .inner {
        padding: 4.5rem 1rem 4.5rem;
    }
}

/*==============================================================================*/
/*================================== footer ==================================*/
/*==============================================================================*/
.footer {
    background-color: var(--main-color);
    color: var(--wht);
}

.txt-line {
    text-decoration: underline;
    display: grid;
}

.footer .inner {
    padding: 7.5rem 1rem 3.5rem;
}

.footer .footer-cnt .l-box .ttl {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.footer .footer-list .txt-line {
    transition-duration: 300ms;
}

.footer .footer-list .txt-line:hover {
    opacity: .7;
}

.footer .footer-cnt .r-box .wrap {
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.20);
    padding: 1.5rem 2rem;
    transition-duration: 300ms;
}

.footer .footer-cnt .r-box .wrap:hover {
    opacity: .7;
}

@media screen and (max-width:1025px) {
    .footer .footer-cnt .r-box .wrap {
        padding: 1rem;
    }
}

.footer .footer-cnt .r-box .txt-box {
    display: flex;
    flex-direction: column;

}

.footer .footer-cnt .r-box .txt-box .txt {
    line-height: 1.75rem;
    margin-bottom: auto;
}

.footer .footer-list {
    display: grid;
    gap: 1rem;
}

.footer .footer-list .txt-line {
    border-left: solid 1px var(--wht);
    padding-left: 1rem;
    display: inline-block;
}

.footer .copyright {
    text-align: center;
    font-size: .88rem;
    padding-bottom: 1rem;
}

.footer .bottom__arrow__box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background-color: var(--wht);
    border-radius: 50px;
    margin-left: auto;
}

.footer .bottom__arrow__box img {
    width: 1rem;
}

/*==============================================================================*/
/*================================== 下層ページ共通スタイル ==================================*/
/*==============================================================================*/
.mv-common-ttl {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mv-common-ttl .en {
    font-family: "NotoSerif" !important;
     !i;
     !;
}

.mv-common-ttl .ja {
    font-size: 2.5rem;
}

@media screen and (max-width:1025px) {
    .mv-common-ttl .ja {
        font-size: 2rem;
    }
}

.mv-common-sub-ttl .sub-ttl {
    color: var(--blk-color04);
    font-size: 3rem;
}

@media screen and (max-width:1025px) {
    .mv-common-sub-ttl .sub-ttl {
        color: var(--blk-color04);
        font-size: 1.75rem;
    }
}

.mv-common-sub-ttl {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--blk-color);
    margin-left: auto;
    border-radius: 2rem 0 0;
}

@media screen and (max-width:1025px) {
    .mv-common-sub-ttl {
        border-radius: 1rem 0 0;
    }
}

.mv-common-sub-ttl .wrap {
    position: relative;
    padding: 1rem 1.5rem 1rem;
}

.mv-common-sub-ttl .wrap .edge-icon {
    position: absolute;
}

.mv-common-sub-ttl .wrap .edge-icon.top {
    top: -2rem;
    right: 0;
}

.mv-common-sub-ttl .wrap .edge-icon.bottom {
    bottom: 0;
    left: -2rem;
}

@media screen and (max-width:1025px) {
    .mv-common-sub-ttl .wrap .edge-icon.top {
        top: -2.25rem;
        right: 0;
    }

    .mv-common-sub-ttl .wrap .edge-icon.bottom {
        bottom: 0;
        left: -2.25rem;
    }
}

/*==============================================================================*/
/*================================== ページ【料金】 ==================================*/
/*==============================================================================*/
#price {
    background-color: var(--wht);
    padding-top: 4rem;
    margin-bottom: 5rem;
}

.price-cnt {
    margin-bottom: 5rem;
}

.price-cnt:not(:last-child) {
    margin-bottom: 5rem;
}

#price .ttl-box {
    position: relative;
    border-bottom: solid 3px #DCDCDC;
    padding-bottom: 1.25rem;
    box-sizing: border-box;
    margin-bottom: 3rem;
}

#price .price-cnt {
    margin-bottom: 3rem;
}

#price .ttl-box::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    bottom: -3px;
    left: 0;
    height: 3px;
    width: 9rem;
}

#price .ttl-box .logo {
    width: 250px;
}

#price .ttl-box .sub-txt {
    font-size: 1.5rem;
}

@media screen and (max-width:1025px) {
    #price .ttl-box .logo {
        width: 215px;
    }
}

.price-cnt .open-day {
    color: var(--wht);
    background-color: var(--point);
    padding: .5rem 1rem;
    display: inline-block;
    border-radius: .25rem;
    margin-bottom: 1.25rem;
}

.price-cnt .ttl {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 1.75rem;
}

@media screen and (max-width: 1025px) {
    #price .price-cnt .ttl {
        font-size: 1.5rem;
    }
}

table.price-box {
    border-collapse: collapse;
}

table.price-box th,
table.price-box td {
    padding: 20px;
    box-sizing: border-box;
    line-height: 1.3;
    vertical-align: middle;
}

@media screen and (max-width: 1025px) {
    .price-box {
        overflow: scroll;
    }
}

.price-table {
    width: 100%;
    max-width: 800px;
    font-family: "Noto Sans JP";
    margin: auto;
    margin-bottom: 2rem;
}

@media screen and (max-width: 1025px) {
    .price-table {
        width: 450px;
        overflow: auto;
    }
}

.price-table tr .days {
    background-color: #FAFAFA;
    border-left: none;
}

.price-table .week th {
    border: 1px solid #DDD;
    background: var(--blk-color02);
    padding: 20px;
    color: var(--wht);
}

.price-table .week .period {
    width: 270px;
    max-width: 270px;
}

@media screen and (max-width: 1025px) {
    .price-table .week .period {
        width: 150px;
        max-width: 150px;
    }
}

.price-table td {
    border: 1px solid #DDD;
    padding: 20px;
    font-family: "Noto Sans JP" !important;
    font-weight: bold;
    text-align: center;
    width: calc(100% / 3.5);
}

.price-table th {
    border: 1px solid #DDD;
    padding: 20px;
    font-weight: normal !important;
    text-align: center;
}

.common.point {
    background-color: var(--sub-color);
    padding: 2.5rem;
    border-radius: 2rem;
}

@media screen and (max-width: 1025px) {
    .common.point {
        padding: 1.5rem;
    }
}

.common.point .ttl {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.common.point .point-list {
    line-height: 2;
}

#price .cv-box.v-2 .inner {
    padding: 4.5rem 1rem 4.5rem;
}

#mv.commn {
    margin-bottom: 3rem;
}

#mv.commn .mv-common-sub-ttl .wrap .edge-icon.top {
    top: -2rem;
    right: 0;
}

#mv.commn .mv-common-sub-ttl .wrap .edge-icon.bottom {
    bottom: 0;
    left: -2rem;
}

/*==============================================================================*/
/*================================== ページ【会則】 ==================================*/
/*==============================================================================*/
#regulations {
    background-color: var(--wht);
    padding-top: 4rem;
    margin-bottom: 5rem;
}

#regulations .regulations-txt {
    margin-bottom: 2rem;
}

#regulations .regulations-cnt {
    margin-bottom: 3rem;
}

.regulations-table {
    border-collapse: collapse;
    width: 100%;
}

.regulations-table th, .regulations-table td {
    padding: .5rem 0;
}

.regulations-table th {
    font-weight: bold;
    width: 10%;
    min-width: 4em;
}

.regulations-table .l-ttl, .regulations-table .r-ttl {
    font-size: 1.5rem;
    color: var(--main-color);
}

.point-list-num {
    counter-reset: num;
}

.point-list-num02 {
    counter-reset: num02;
}

.point-list-num03 {
    counter-reset: num03;
}

.point-list-num>li.point-item-num {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5;
    counter-increment: num;
}

.point-list-num02>li.point-item-num02 {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5;
    counter-increment: num02;
}

.point-list-num03>li.point-item-num03 {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5;
    counter-increment: num03;
}

.point-list-num>li.point-item-num::before {
    content: counter(num);
    position: absolute;
    left: 0;
    top: .25rem;
    /* 数字のY軸線上の位置を調整 */
    display: block;
    width: 1.1rem;
    height: 1.1rem;
    border: 1px solid var(--blk);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--blk);
    line-height: .9rem;
    text-align: center;
}

.point-list-num02>li.point-item-num02 {
    padding-left: 1.25em;
}

.point-list-num02>li.point-item-num02::before {
    content: counter(num02)".";
    border: none;
}

.point-list-num03>li.point-item-num03 {
    padding-left: 1.25em;
    text-indent: -1.5rem;
    font-size: 1rem;
}

.point-list-num03>li.point-item-num03::before {
    content: "("counter(num03)")";
    border: none;
}

.common.ttl-box {
    position: relative;
    border-bottom: solid 3px #DCDCDC;
    padding-bottom: 1.25rem;
    box-sizing: border-box;
    margin-bottom: 2rem;
    font-size: 2rem;
}


.cancel-fee-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 15px;
}
.cancel-fee-title {
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}
.card-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.cancel-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
}
.card-header {
    background-color: #004139; /* サイトの緑色 */
    color: white;
    padding: 1rem;
    font-weight: bold;
    text-align: center;
}
.card-content {
    padding: 0;
}
.fee-row {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #eee;
}
.fee-row:last-child {
    border-bottom: none;
}
.fee-type {
    flex: 1;
    padding: 1rem;
    background-color: #f5f5f5;
    font-weight: bold;
    font-size: 14px;
}
.fee-amount {
    flex: 1;
    padding: 1rem;
    text-align: right;
    font-size: 14px;
}
.cancel-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #004139; /* サイトの緑色 */
}

@media screen and (min-width: 768px) {
    .card-container {
        flex-direction: row;
    }
    
    .cancel-card {
        width: 50%;
    }
    
    .fee-row {
        display: flex;
        align-items: center;
        min-height: 60px; /* 各行の高さを揃える */
    }
}


@media screen and (max-width: 1025px) {
    .common.ttl-box {
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .card-header {
        font-size: 14px;
    }
    .cancel-fee-title {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 1.5rem;
        text-align: left;
        color: #333;
    }
    .fee-row {
        flex-direction: column;
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .fee-type {
        width: 100%;
        padding: 0.7rem 1rem;
    }
    
    .fee-amount {
        width: 100%;
        padding: 0.7rem 1rem;
        text-align: center;
        border-top: 1px solid #f0f0f0;
    }
}

.common.ttl-box::before {
    position: absolute;
    content: "";
    background: var(--main-color);
    bottom: -3px;
    left: 0;
    height: 3px;
    width: 9rem;
}

/*==============================================================================*/
/*================================== common ==================================*/
/*==============================================================================*/
.common.main-txt {
    margin-bottom: 2rem;
    color: var(--main-color);
    font-size: 1.5rem;
}

/*==============================================================================*/
/*================================== competition ==================================*/
/*==============================================================================*/
#competition {
    background-color: var(--wht);
    padding-top: 4rem;
    margin-bottom: 5rem;
}

.event-info {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    background-color: var(--accent);
    padding: .5rem 1.5rem;
}

.conp-table {
    width: 100%;
    font-family: "Noto Sans JP";
    margin-bottom: 2rem;
    text-align: center;
    font-size: .9rem;
}

@media screen and (max-width: 1025px) {
    .conp-table {
        width: 1080px;
        overflow: auto;
    }
}

.conp-table td {
    border: 1px solid #DDD;
    padding: .75rem;
    font-family: "Noto Sans JP" !important;
    vertical-align: middle;
}

.price-cnt:first-of-type .conp-table th.total,
.price-cnt:first-of-type .conp-table td:nth-child(4) {
    width: calc(100% / 6.5);
}

.price-cnt:first-of-type .conp-table th.reservation,
.price-cnt:first-of-type .conp-table td:nth-child(6) {
    width: calc(100% / 6.5);
}

.conp-table td:nth-child(5) {
    white-space: nowrap;
}

.conp-table th {
    border: 1px solid #DDD;
    padding: 20px;
    font-weight: normal !important;
    vertical-align: middle;
    text-align: center;
}

.conp-table tr .days {
    background-color: #FAFAFA;
    border-left: none;
}

/* .conp-table tr > td:last-child {
    border-right: none;
} */

.conp-table .table-cnt th {
    border: 1px solid #DDD;
    background: var(--blk-color02);
    padding: 20px;
    color: var(--wht);
    text-align: center;
}

.conp-table .table-cnt .reservation>.small {
    font-size: .75rem;
}

@media screen and (max-width: 1025px) {
    .price-box {
        overflow: scroll;
    }
}

.price-cnt .open-day {
    color: var(--wht);
    background-color: var(--point);
    padding: .5rem 1rem;
    display: inline-block;
    border-radius: .25rem;
    margin-bottom: 1.25rem;
}

.price-cnt .ttl {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 1.75rem;
}

.point-item02 {
    position: relative;
    padding-left: 1rem;
}

.point-list02 .point-item02:before {
    position: absolute;
    content: "";
    height: .5rem;
    width: .5rem;
    background: var(--main-color);
    top: .5rem;
    left: 0;
}

.point-item03 {
    position: relative;
    padding-left: 1rem;
}

.point-list03 .point-item03:before {
    position: absolute;
    content: "";
    height: .25rem;
    width: .25rem;
    background: var(--main-color);
    border-radius: 50px;
    top: .7rem;
    left: 0;
}

.common .ttl-point {
    margin-bottom: 2rem;
    color: var(--point);
    position: relative;
    padding-left: 1.25rem;
    font-size: 1.25rem;
}

.common .ttl-point:before {
    position: absolute;
    content: "★";
    color: var(--point);
    top: 0;
    left: 0;
}

/*==============================================================================*/
/*================================== competition ==================================*/
/*==============================================================================*/
.calendar-cnt {
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.calendar-cnt .ttl {
    text-align: center;
    font-family: "Noto Sans JP" !important;
    font-weight: bold !important;
    font-size: 1.5rem;
}

.calendar-cnt .calendar {
    padding: 0 30px 30px 30px;
}

.calendar-cnt .calendar .day .place-item {
    font-size: .8rem;
}

.calendar-cnt table {
    width: 100%;
}

.calendar-cnt th {
    font-weight: normal;
    font-size: 14px;
}

.calendar-cnt td {
    font-weight: bold;
    height: 77px;
}

.calendar-cnt .day td:first-child,
.calendar-holiday {
    color: #ff838b;
}

.calendar-normal {
    color: #000;   
}

.calendar.april *:nth-child(2)>td:nth-child(-n+2) {
    color: #cecece;
}

.calendar.april *:last-child>td:nth-last-child(-n+3) {
    color: #cecece;
}

.calendar.may *:nth-child(2)>td:nth-child(-n+4) {
    color: #cecece;
}

.calendar-cnt .day td:last-child {
    color: #04c;
}

.calendar-cnt .day .num {
    position: relative;
    margin-bottom: .75rem;
    display: block;
}

.calendar-cnt .day .num.limited::after {
    content: "★";
    color: #BA8B00;
}

.calendar-cnt .week th {
    border-bottom: 5px solid var(--blk-color02);
    padding: 1.25rem;
    border-top: none;
    border-left: none;
    border-right: none;
    text-align: center;
    font-family: "Noto Sans JP" !important;
    font-weight: bold !important;
    font-size: 1.13rem;
}

@media screen and (max-width: 1025px) {
    .calendar-cnt .week th {
        padding: .5rem;
    }
}

.calendar-cnt .week th:first-child {
    color: var(--point);
}

.calendar-cnt .week th:last-child {
    color: #04c;
}

.calendar-cnt th {
    border: 1px solid #DDD;
    padding: 1.25rem;
    font-weight: normal !important;
}

.calendar-cnt td {
    border: 1px solid #DDD;
    padding: .7rem;
    font-family: "Noto Sans JP" !important;
    font-weight: bold;
    max-height: 77px;
    width: calc(100% / 7);
}

.calendar-cnt td,
.calendar-cnt th {
    vertical-align: top;
}

.calendar-cnt .place-item {
    display: flex;
    align-items: center;
    gap: .5rem;
}

@media screen and (max-width: 1025px) {
    .calendar-cnt td {
        padding: .5rem;
    }

    .calendar-cnt .place-item {
        flex-direction: column;
    }
}

#event {
    background-color: var(--wht);
    padding-top: 4rem;
    margin-bottom: 5rem;
}

.event-cnt .wrap {
    padding: 1.5rem;
    background: #F6F6F6;
    border-radius: 1.25rem;
    margin-bottom: 4rem;
}

.event-icn-list {
    display: flex;
    gap: 2rem;
    border-bottom: dotted 1px #ADADAD;
    padding-bottom: 1rem;
    margin-bottom: 1.7rem;
}

@media screen and (max-width: 1025px) {
    .event-icn-list {
        flex-direction: column;
        gap: .25rem;
    }
}

#event .common.main-txt {
    text-align: center;
}

#event .icn-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 20px;
    border-radius: .25rem;
    padding: .25rem .5rem;
}

#event .icn-box.double {
    background-color: var(--main-color);
}

.place-item:has(.icn-box.double) .place {
    color: var(--main-color) !important;
}

#event .icn-box.ladies {
    background: #E708A8;
}

.place-item:has(.icn-box.ladies) .place {
    color: #E708A8 !important;
}

#event .icn-box.club72 {
    background: #0899E7;
}
#event .icn-box.special {
    background: #E3E708;
}

.place-item:has(.icn-box.club72) .place {
    color: #0899E7 !important;
}

.event-icn-list>li {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.star {
    color: #BA8B00;
}

#event .detail td {
    padding: initial;
    margin-left: .5rem;
    display: block;
}

#event .detail td:last-child {
    padding-bottom: 1.5rem;
}

#event .detail td.ttl {
    margin-bottom: .75rem;
}

#event .detail .ladies {
    margin-bottom: .5rem;
    color: #E708A8;
}

#event .detail .special {
    margin-bottom: .5rem;
    color: #acae5e;
}

#line {
    background-color: var(--sub-color);
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    margin-bottom: 5rem;
}

#line .ttl-box {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
    #line .ttl-box {
        flex-direction: column;
    }
}

#line .r-box .ttl {
    font-size: 1.5rem;
}

#line .line-cnt {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
    #line .r-box {
        text-align: center;
    }

    #line .line-cnt {
        flex-direction: column;
    }
}

#line .line-cnt .l-box>p {
    margin-bottom: 2.5rem;
}

#line .line-cnt .l-box .btn-wrap {
    max-width: 320px;
}

#line .line-cnt .l-box .btn-wrap .txt {
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    #line .line-cnt .l-box .btn-wrap .txt {
        font-size: 1rem;
    }

    #line .line-cnt .l-box .btn-wrap .menu-link {
        padding: .5rem 0;
    }
}

#line .bottom-txt {
    text-align: center;
}

#line .bottom-txt>p {
    display: inline-block;
}

.swiper {
    overflow: hidden;
}

.swiper-button-next, .swiper-button-prev {
    position: inherit;
}

.swiper-button-next, .swiper-button-prev {
    width: inherit;
    height: inherit;
    margin-top: inherit;
}

.switch__box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.switch__box .btn__box {
    display: flex;
    gap: 1rem;
    padding-left: 5rem;
}

@media screen and (max-width: 767px) {
    .switch__box .btn__box {
        padding-left: 2.5rem;
    }
}

.swiper-button-prev, .swiper-button-next {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    text-align: center;
    background-color: var(--main-color);
    border: 1px solid var(--wht);
    left: 0;
    border-radius: 50%;
    padding: 0;
    transition: 0.3s;
    cursor: pointer;
}

.swiper-button-next.swiper-button-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.swiper-button-prev .arrow {
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
    position: absolute;
    width: 1rem;
    top: 50%;
    left: 50%;
}

.swiper-button-next .arrow {
    position: absolute;
    width: 1rem;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.swiper-button-prev::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 11px;
    height: 11px;
    transition: all 0.3s;
    transform: translateX(-30%) translateY(-50%) rotate(225deg);
}

.swiper-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 11px;
    height: 11px;
    transition: all 0.3s;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: none;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: none;
}

.swiper-btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.swipe-indicator-container {
    display: none;
    /* デフォルトでは非表示 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    /* クリックイベントを下の要素に透過 */
}

.swipe-indicator {
    background-color: rgba(188, 188, 188, 0.7);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pulse 2s infinite;
}

.swipe-icon {
    animation: swipe-animation 1.5s infinite;
    width: 120px;
    height: 120px;
}

.swipe-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swipe-text {
    color: white;
    font-weight: bold;
    margin-top: 8px;
    font-size: 14px;
}

@keyframes swipe-animation {
    0% {
        transform: translateX(-10px);
        opacity: 0.3;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }

    100% {
        transform: translateX(-10px);
        opacity: 0.3;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

/* 特定の表の親要素に相対位置を設定 */
.price-box, .conp-table {
    position: relative;
}

/* スマホ表示の場合のみインジケーターを表示 */
@media screen and (max-width: 1025px) {

    .price-box:not(.swiped) .swipe-indicator-container,
    .conp-table:not(.swiped) .swipe-indicator-container {
        display: block;
    }
}

.benefits {
    margin-bottom: 2rem;
}

.benefits .ttl {
    color: var(--wht);
    background-color: #00253F;
    text-align: center;
    font-size: 1.5rem;
    padding: .5rem;
    border-radius: 1.25rem 1.25rem 0 0;
}

.benefits .benefits-table th,
.benefits .benefits-table td {
    padding: .5rem 0;
}

.benefits .benefits-cnt {
    padding: 1.5rem 2rem;
    background-color: var(--wht-gray);
    border-radius: 0 0 1.25rem 1.25rem;
    border: 2px solid #00253F;
}

@media screen and (max-width: 767px) {
    .benefits .benefits-cnt {
        padding: 1rem 1rem;
    }
}

.benefits .benefits-cnt>.txt {
    border-bottom: 2px dotted var(--main-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.benefits .l-ttl, .benefits .r-ttl {
    font-size: 1.2rem;
}

.benefits .benefits-cnt .benefits-table th {
    width: 10%;
    min-width: 5em;
}