@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');

:root {
    --color-pink: #ec6d81;
    --color-light-yellow: #fff9b1;
    --color-light-green: #b1dbc2;
    --color-gray: #7a6b6d;
}

/*------------------------------
base
------------------------------*/
html {
    overflow-x: hidden;
    overflow-y: scroll;
}
body {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    line-height: 1.6;
    font-size: 16px;
    color: #231815;
    font-family: "Zen Maru Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    position: relative;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    word-break: normal;
    font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
}

p,
table th,
table td {
    word-break: normal;
    overflow-wrap: break-word;
}

sup {
    font-size: 0.7em;
}

a {
    transition: opacity 0.2s, color 0.2s, background 0.2s;
}
.btn a, a.btn {
    color: var(--color-gray);
    background: var(--color-light-green);
}
.btn a:hover, a.btn:hover {
    background: #7bdfa3;
}
.btn2 a, a.btn2 {
    color: var(--color-gray);
    background: url("../img/bg_menu.png") no-repeat center center / contain;
}
.btn2 a:hover, a.btn2:hover {
    /* background: #ffbe3f; */
    opacity: .7;
}
.btn a.disabled {
    pointer-events: none;
    background: #ddd;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.clearfix {
    display: block;
}

.font_g {
    font-family: "Noto Sans JP", sans-serif;
}
.font_e {
    font-family: "Zen Maru Gothic", serif;
    font-size: 110%;
}

.indent_1 {
    padding-left: 1em;
    text-indent: -1em;
}
.indent_2 {
    padding-left: 2em;
    text-indent: -2em;
}
.indent_3 {
    padding-left: 3em;
    text-indent: -3em;
}
.indent_7 {
    padding-left: 7em;
    text-indent: -7em;
}

.align_c { text-align: center !important; }
.align_l { text-align: left !important; }
.align_r { text-align: right!important; }

.main {
    position: relative;
}

.ib { display: inline-block; }

.mt1em { margin-top: 1em !important; }

.c_pink { color: var(--color-pink); }

@media screen and (max-width: 767px) {
    .btn2 a, a.btn2 {
        background: url("../img/bg_menu_sp.png") no-repeat center center / contain;
    }
}
/*------------------------------
none
------------------------------*/
.sp { display: none; }
@media screen and (max-width: 767px) {
    .pc { display: none; }
    .sp { display: block; }
}


/*------------------------------
TEL無効
------------------------------*/
a[href^="tel:"] {
    text-decoration: none !important;
}
@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}


/*------------------------------
ローディング
------------------------------*/
#loading {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
    background-color: #fff;
	opacity: 1;
	transition: opacity .5s;
	transition-delay: 0;
	z-index: 99;
}
#loading.loaded {
	opacity: 0;
	pointer-events: none;
}
#loading.transitionend {
	display: none;
}


/*------------------------------
背景
------------------------------*/
body {
    background: url("../img/bg.png") repeat top center;
}
.wrapper {
    position: relative;
}
main {
    width: 100%;
    position: relative;
}
.inner {
    width: 900px;
    max-width: 64%;
    margin: 0 auto;
}
.inner_l {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
}
.main_cont {
    position: relative;
}
.main_cont .inner {
    max-width: 80%;
    position: relative;
    z-index: 2;
}
.main_cont .cont_inner {
    width: 1200px;
    max-width: 80%;
    margin: 0 auto;
    background-color: #fff;
    position: relative;
}
.main_cont .cont_inner::before,
.main_cont .cont_inner::after {
    content: "";
    width: 15px;
    height: 100%;
    background: url("../img/bg_box_side_wh.png") repeat-y top left / 100% auto;
    position: absolute;
    top: 0;
}
.main_cont .cont_inner::before {
    left: -14px;
    transform: scale(-1, 1);
}
.main_cont .cont_inner::after {
    right: -14px;
}
@media screen and (max-width: 767px) {
    .wrapper::after {
        max-width: 94%;
    }
    .inner {
        max-width: 82%;
    }
    .main_cont .inner {
        max-width: 90%;
    }
    .main_cont .cont_inner {
        max-width: 86%;
    }
    .main_cont .cont_inner::before,
    .main_cont .cont_inner::after {
        width: 7px;
    }
    .main_cont .cont_inner::before {
        left: -7px;
    }
    .main_cont .cont_inner::after {
        right: -7px;
    }
}

/*------------------------------
header
------------------------------*/
header {
    width: 100vw;
    width: 100dvw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}
.head_inner {
    width: 1200px;
    max-width: 80%;
    margin: 0 auto;
    position: relative;
}
.head_logo {
    width: 200px;
    max-width: 17%;
}
@media screen and (max-width: 767px) {
    .head_inner {
        max-width: 90%;
    }
    .head_logo {
        width: 124px;
        max-width: 36.8%;
    }
}


/*------------------------------
footer
------------------------------*/
footer {
    color: #514749;
    width: 100vw;
    width: 100dvw;
    padding: 30px 0 130px;
    position: relative;
    background-color: var(--color-light-green);
    z-index: 2;
}
footer::before {
    content: "";
    width: 100%;
    height: 42px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    bottom: calc(100% - 1px);
    background-image: url("../img/bg_footer_top.png");
    position: absolute;
    left: 0;
    z-index: 2;
}
.foot_inner {
    width: 1200px;
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.foot_inner::before {
    content: "";
    width: 140px;
    height: auto;
    aspect-ratio: 140 / 134;
    background: url("../img/foot_deco.png") no-repeat center center / contain;
    mix-blend-mode: hard-light;
    position: absolute;
    top: 40px;
    right: -120px;
    z-index: 3;
}
.foot_ttl {
    width: 600px;
    max-width: 100%;
    height: 65px;
    font-size: 27px;
    letter-spacing: 0.01em;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    position: relative;
}
.foot_ttl p {
    color: #fff;
    position: relative;
    z-index: 2;
}
.foot_ttl::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../img/bg_green_line.png") no-repeat center center / 100% 100%;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.foot_info {
    width: 100%;
    text-align: center;
    font-size: 40px;
    letter-spacing: 0.01em;
    font-weight: bold;
    line-height: 1.3;
    margin: 0.6em 0 1em;
}
.tel {
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    background-color: #fff;
    padding: 0.4em 1.5em;
    border-radius: 8px;
    margin-bottom: 0.5em;
}
.tel_nb {
    font-size: 78px;
    line-height: 1;
    font-weight: bold;
    transform: scaleX(1.2);
}
.tel_time {
    font-size: 18px;
    letter-spacing: 0.01em;
    font-weight: 600;
    margin-top: 1em;
}
.add {
    font-size: 18px;
    font-weight: 600;
    margin-top: 1.2em;
}
.add > span {
    font-size: 0.9em;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
    footer {
    padding: 2.5vw 0 10.83vw;
    }
    footer::before {
    height: 3.5vw;
    }
    .foot_inner::before {
        width: 11.66vw;
        top: 3.33vw;
        right: -10vw;
    }
    .foot_ttl {
    width: 50vw;
    height: 5.41vw;
    font-size: 2.25vw;
    }
    .foot_info {
    font-size: 3.33vw;
    }
    .tel {
    font-size: 1.66vw;
    }
    .tel_nb {
    font-size: 6.5vw;
    }
    .add {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    footer {
        padding: 10px 0 40px;
    }
    footer::before {
        height: 4vw;
        background-image: url("../img/bg_footer_top_sp.png");
    }
    .foot_inner {
        max-width: 86%;
    }
    .foot_ttl {
        width: 245px;
        height: 34px;
        font-size: 14px;
        padding: 0.5em 1.5em;
    }
    .foot_info {
        font-size: 20px;
        text-align: center;
        margin: 0.6em 0 0.6em;
    }
    .tel {
        font-size: 13px;
        padding: 0.3em 0.5em;
        border-radius: 6px;
        margin-bottom: 5px;
    }
    .tel_nb {
        font-size: 35px;
    }
    .tel_time {
        width: 100%;
        font-size: 10px;
        text-align: center;
    }
    .add {
        font-size: 10px;
        text-align: center;
        margin: 0.8em auto 0;
    }
    .add > span {
        display: inline-block;
    }
}


/*------------------------------
メニュー
------------------------------*/
.menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.menu li {
    width: 100%;
}
.menu li a {
    width: 100%;
    height: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    letter-spacing: 0.025em;
    font-weight: bold;
}
.menu li.active a {
    pointer-events: none;
    background: #ffbe3f;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .menu li a {
        font-size: 1.92vw;
        height: 5.58vw;
    }
}
@media screen and (max-width: 767px) {
    .menu {
        gap: 0;
        justify-content: center;
    }
    .menu li {
        width: auto;
    }
    .menu li a {
        width: 120px;
        height: auto;
        aspect-ratio: 120 / 50;
        font-size: 14px;
    }
}


/*------------------------------
タイトル
------------------------------*/
.cont_ttl_1 {
    width: 100%;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 0.025em;
    font-weight: bold;
    background: url("../img/cont_ttl_bg.png") repeat top right;
    color: #fff;
    text-align: center;
    padding: 0.4em;
    margin-bottom: 25px;
}
.cont_ttl_2 {
    color: var(--color-gray);
    font-size: 25px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    margin-bottom: 30px;
}
.cont_ttl_2 > span {
    display: inline-block;
    padding: 20px 0;
    letter-spacing: 0.125em;
    padding-left: 0.125em;
    position: relative;
    background: url("../img/title_line.svg") no-repeat top center / 216px 3px,
                url("../img/title_line.svg") no-repeat bottom center / 216px 3px;
}
.cont_ttl_2 > span.small {
    font-size: 0.8em;
    padding: 0.75em 0;
}
.cont_ttl_2.cont_ttl_2_sm > span {
    width: 215px;
    max-width: 100%;
}
.cont_ttl_3 {
    color: var(--color-gray);
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 0.5em;
}
.cont_ttl_4 {
    color: var(--color-gray);
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    margin-bottom: 1.5em;
    padding: 1em 0;
    letter-spacing: 0.125em;
    padding-left: 0.125em;
    background: url("../img/title_line_l.svg") no-repeat top center / 1094px 3px,
                url("../img/title_line_l.svg") no-repeat bottom center / 1094px 3px;
}
.box_txt {
    font-size: 25px;
    font-weight: bold;
    color: var(--color-pink);
    letter-spacing: 0.11em;
    text-align: center;
    padding: 0.2em 0.5em;
    background-color: #fff9b1;
    margin-bottom: 1em;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .cont_ttl_1 {
        font-size: max(1.92vw, 19px);
    }
}
@media screen and (max-width: 767px) {
    .cont_ttl_1 {
        font-size: 16px;
        line-height: 1.5;
        padding: 0.25em 1em;
        margin-bottom: 0.5em;
        background: url("../img/cont_ttl_bg_sp.png") repeat top right;
    }
    .cont_ttl_2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .cont_ttl_2 > span {
        padding: 0.75em 1em;
    }
    .cont_ttl_2.cont_ttl_2_sm > span {
        width: 140px;
    }
    .cont_ttl_2 > span.small {
        font-size: 0.7em;
        padding: 0.6em 0;
    }
    .cont_ttl_2.cont_ttl_2_sm > span.small {
        width: 100%;
        background-repeat: repeat-x;
        background-size: 200px 3px;
    }
    .cont_ttl_3 {
        font-size: 16px;
    }
    .cont_ttl_4 {
        font-size: 15px;
        padding: 0.5em 0;
        margin-bottom: 0.8em;
    }
    .box_txt {
        font-size: 16px;
        margin-bottom: 0.5em;
    }
}


/*------------------------------
テキスト
------------------------------*/
.txt_em {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
}
.txt_em span {
    display: inline-block;
    text-indent: 0;
}
p + .note {
    margin-top: 0.5em;
}
.outline p + .note {
    margin-top: 30px;
}
.list_style > li {
    line-height: 1.5;
    position: relative;
    padding-left: 1em;
}
.list_style > li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
.indent_1 .list_style > li {
    text-indent: initial;
}
.note > li {
    font-size: 14px;
    line-height: 1.7;
    position: relative;
    padding-left: 1em;
}
.note > li::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}
.indent_1 .note > li {
    text-indent: initial;
}
.note_nb {
    counter-reset: number 0;
}
.note_nb > li {
    font-size: 17px;
    line-height: 1.5;
    position: relative;
    padding-left: 2em;
}
.note_nb > li::before {
    counter-increment: number 1;
    content: "※"counter(number) ;
    position: absolute;
    top: 0;
    left: 0;
}
.list_num > li {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.65;
    position: relative;
    padding-left: 1.8em;
}
.list_num > li:not(:first-child) {
    margin-top: 0.1em;
}
.list_num > li .num {
    width: 1.2em;
    height: 1.2em;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    display: inline-block;
    background-color: var(--color-pink);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.2em;
    position: absolute;
    top: 0.35em;
    left: 0;
}
.list_num > li .num.num_inline {
    position: relative;
    top: 0;
}
.list_num > li .num > span {
    line-height: 1;
    display: inline-block;
    transform: translate(-0.02em, -0.1em);
}
.list_num > li .note li {
    font-weight: normal;
}
.txt_em + .list_num {
    margin-top: 40px;
}
.list_mark > li {
    padding-left: 1em;
    text-indent: -1em;
}
.list_mark > li .mark {
    text-indent: 0;
    color: var(--color-pink);
    display: inline-block;
}
.list_mark > li .small {
    font-size: 0.8em;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .txt_em {
        font-size: max(1.5vw, 16px);
    }

    .outline p + .note {
        margin-top: 2.5vw;
    }

    .note > li {
        font-size: max(1.17vw, 13px);
    }

    .note_nb > li {
    font-size: max(1.17vw, 13px);
    }

    .list_num > li {
        font-size: max(1.5vw, 16px);
    }

    .txt_em + .list_num {
        margin-top: 3.33vw;
    }
}
@media screen and (max-width: 767px) {
    .txt_em {
        font-size: 14px;
        line-height: 1.6;
    }
    .txt_em + .list_num {
        margin-top: 20px;
    }
    .note > li,
    .note_nb > li {
        font-size: 12px;
        line-height: 1.6;
    }
    .list_num > li {
        font-size: 14px;
    }
    .outline p + .note {
        margin-top: 10px;
    }
}


/*------------------------------
table
------------------------------*/
.cont_table .col_1 { width: 35%; }
.cont_table .col_2 { width: 25%; }
.cont_table .col_3 { width: 17%; }
.cont_table .col_4 { width: 23%; }
.cont_table span {
    display: inline-block;
}
.cont_table small {
    font-size: 0.5em;
    transform: scaleY(1.6);
    display: inline-block;
    margin: 0 -0.3em;
}
.cont_table thead th,
.cont_table .last {
    text-align: center;
}
.cont_table th,
.cont_table td {
    font-size: 17px;
    border: 1px solid #231815;
    background-color: #fff;
    vertical-align: middle;
}
.cont_table thead th {
    background-color: #fffcdb;
    color: var(--color-gray);
    line-height: 1.3;
    padding: 0.3em;
    font-weight: bold;
}
.cont_table tbody th {
    vertical-align: middle;
    text-align: center;
    padding: 1em 0;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    font-weight: bold;
}
.cont_table tbody th div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_table tbody th p {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    display: inline-block;
    white-space: nowrap;
}
.cont_table tbody tr:nth-child(1) th { background-color: #fbe2dd; }
.cont_table tbody tr:nth-child(2) th { background-color: #cee4f6; }
.cont_table tbody tr:nth-child(4) th { background-color: #e2eaa3; }
.cont_table tbody tr:nth-child(6) th { background-color: #fbe477; }
.cont_table tbody tr:nth-child(7) th { background-color: #bce1de; }
.cont_table tbody tr:nth-child(10) th { background-color: #f6b7aa; }
.cont_table .last {
    font-size: 19px;
    line-height: 1.4;
}
.cont_table td {
    padding: 30px 15px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .cont_table th,
    .cont_table td {
    font-size: max(1.41vw, 15px);
    }
    .cont_table .last {
    font-size: max(1.58vw, 17px);
    }
    .cont_table td {
    padding: 2.5vw 1.25vw;
    }
    .cont_table small {
        transform: scaleY(1);
    }
}
@media screen and (max-width: 767px) {
    .cont_table th,
    .cont_table td {
        font-size: 11px;
        line-height: 1.6;
    }
    .cont_table td {
        padding: 10px 3px;
    }
}


/*------------------------------
SP画面table
------------------------------*/
.cont_list {
    margin-bottom: 55px;
}
.cont_list li:not(:first-child) {
    margin-top: 30px;
}
.cont_list li .ttl {
    width: 100%;
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #6c5d4f;
    padding: 0.4em;
    margin-bottom: 0.8em;
}
.cont_list li:nth-child(1) .ttl { background-color: #fbe2dd; }
.cont_list li:nth-child(2) .ttl { background-color: #cee4f6; }
.cont_list li:nth-child(3) .ttl { background-color: #e2eaa3; }
.cont_list li:nth-child(4) .ttl { background-color: #fbe477; }
.cont_list li:nth-child(5) .ttl { background-color: #bce1de; }
.cont_list li:nth-child(6) .ttl { background-color: #f6b7aa; }

.cont_list li .ttl_s {
    font-size: 15px;
    line-height: 1;
    text-align: center;
    position: relative;
    margin-bottom: 0.8em;
}
.cont_list li .ttl_s::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #595757;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
}
.cont_list li .ttl_s span {
    display: inline-block;
    padding: 0 1em;
    background-color: #fff;
}
.payment + .ttl_s {
    margin-top: 2.5em;
}
.cont_list li .ttl_s small {
    font-size: 0.75em;
    margin-top: 0.8em;
    display: inline-block;
}
.cont_list li .txt {
    font-size: 15px;
}
.cont_list li .payment {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.cont_list li .payment .box {
    font-size: 13px;
    line-height: 1;
    color: #fff;
    background-color: #6c5d4f;
    border-radius: 3px;
    padding: 0.2em 0.5em;
}
.cont_list li .payment p {
    font-size: 17px;
    line-height: 1;
}


/*------------------------------
ページトップ
------------------------------*/
.page_top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #68be99;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    display: block;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
}
.page_top::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    transition: all 0.2s;
}
.page_top.is_show {
    opacity: 0.9;
}
.page_top.is_show:hover {
    opacity: 0.6;
}
@media screen and (max-width: 1200px) {
    .page_top {
        width: 50px;
        height: 50px;
    }
}
@media screen and (max-width: 767px) {
    .page_top {
        width: 35px;
        height: 35px;
        right: 10px;
        bottom: 10px;
    }
    .page_top::before {
        width: 9px;
        height: 9px;
    }
}

/*------------------------------
アコーディオン
------------------------------*/
.acc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.acc_btn {
    width: 100%;
    cursor: pointer;
    position: relative;
}
.acc_btn::before {
    content: '';
    width: 1em;
    height: auto;
    aspect-ratio: 23 / 15;
    background-image: url("../img/arrow_down.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all .5s;
    transition: transform .3s ease-in-out, top .3s ease-in-out;
}
.acc_btn.is_open::before {
    transform: rotate(180deg)
}
.acc_cont {
    display: none;
}


/*------------------------------
print
------------------------------*/
@page {
    size: A4 portrait;
}
@media print {
    * {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    html, body {
        width: 1100px;
        height: auto;
        -webkit-print-color-adjust: exact;
        size: A4 landscape;
        page-break-after: auto;
    }

    body {
        background: #fff !important;
    }

    .cont_table {
        background: #6c5d4f;
        border-collapse: separate !important;
        border-spacing: 1px;
    }

    .wrapper::after,
    #loading {
        display: none !important;
    }
    header,
    footer {
        width: 100% !important;
    }
}