@charset "UTF-8";
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
    margin: 0;
    padding: 0;
    font-size: inherit;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    width: 100%;
    vertical-align: bottom;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

a {
    background-color: transparent;
    color: inherit;
    display: block;
}
a:hover {
    text-decoration: none;
    color: inherit;
}

a:active,
a:hover {
    outline-width: 0;
}

b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

button,
input,
select {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
* {
    margin: 0;
    padding: 0;
    line-height: 2;
    font-weight: 400;
    font-family: "Zen Kaku Gothic New", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 2;
    font-weight: 400;
    font-family: "Zen Kaku Gothic New", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
    color: #3f312d;
}

body {
    font-size: clamp(1.6rem, 2.4vw, 1.8rem);
    color: #3f312d;
    background-image: url(../img/cmn/bg.jpg);
    background-size: 100%;
    position: relative;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/cmn/bg_texture.jpg);
    background-size: 15%;
    background-position: center;
    background-repeat: repeat;
    mix-blend-mode: multiply;
}
body.-noscroll {
    overflow: hidden;
}

main {
    overflow-x: clip;
    position: relative;
    z-index: 10;
}

[type=button],
[type=reset],
[type=submit],
a,
a img,
button {
    transition: 0.5s;
}

::-moz-selection {
    color: #fff;
    background-color: #ed72aa;
}

::selection {
    color: #fff;
    background-color: #ed72aa;
}

.scroll {
    visibility: hidden;
}

/*==================================================================================================
	ヘッダー
==================================================================================================*/
.hd {
    position: fixed;
    width: 100%;
    z-index: 110;
}
.hd_inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    width: calc(100% - 2em);
    margin: 1em auto 0;
    padding: 0 0;
    background-color: transparent;
    transition: background-color 0.3s ease;
    border-radius: min(5vw, 10px);
}
.hd_inner.-active {
    background-color: #fff;
}
@media (max-width: 840px) {
    .hd_inner {
        width: 100%;
        margin: 0 auto;
        border-radius: 0 0 min(5vw, 10px) min(5vw, 10px);
        background-color: #fff;
    }
}
.hd_logo {
    margin-left: min(5%, 1em);
}
.hd_logo a {
    padding: 1em 0;
}
@media (max-width: 840px) {
    .hd_logo a {
        padding: 0.75em 0;
    }
}
.hd_logo a img {
    width: 150px;
    transition: none;
}
@media (max-width: 540px) {
    .hd_logo a img {
        width: 22.5vw;
    }
}
.hd_logo a:hover {
    opacity: 0.8;
}
.hd_content {
    display: flex;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    gap: 0 1.5em;
}
@media (max-width: 1280px) {
    .hd_content {
        margin-right: min(5%, 1em);
    }
}
@media (max-width: 540px) {
    .hd_content {
        gap: 0 0.75em;
    }
}
.hd_nav {
    display: flex;
    align-items: center;
    margin-right: 2em;
}
@media (max-width: 1280px) {
    .hd_nav {
        display: none;
    }
}
.hd_nav .nav_list {
    display: flex;
    gap: 0 2em;
}
.hd_nav .nav_item {
    position: relative;
}
.hd_nav .nav_link {
    display: flex;
    align-items: center;
    padding: 1.25em 0;
    position: relative;
    transition: 0.5s color;
}
.hd_nav .nav_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1em;
    width: 100%;
    height: 2px;
    background: #ed72aa;
    border-radius: 5px;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.hd_nav .nav_link:hover {
    color: #ed72aa;
}
.hd_nav .nav_link:hover::before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.hd_nav .nav_link.-pulldown::after {
    content: "";
    width: 0.65em;
    height: 0.65em;
    -webkit-mask-image: url(../img/cmn/icon_pulldown.svg);
    mask-image: url(../img/cmn/icon_pulldown.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: #ff7ca1;
    transition: translate 0.5s;
    margin-left: 0.5em;
}
.hd_nav .nav_link.-pulldown:hover::after {
    translate: 0 0.25em;
}
.hd_nav .nav_link span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}
.hd_nav .nav_pulldown .pulldown_list {
    position: absolute;
    top: 70px;
    left: 50%;
    translate: -50% 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #ffe3ea;
    border-radius: min(5vw, 10px);
    padding: 1em 1.5em;
    display: none;
    white-space: nowrap;
}
.hd_nav .nav_pulldown .pulldown_list::before {
    content: "";
    position: absolute;
    top: -0.75em;
    left: 50%;
    translate: -50% 0;
    width: 1.5em;
    height: 1.5em;
    background-color: #ffe3ea;
    border-radius: 50px;
}
.hd_nav .nav_pulldown .pulldown_item {
    position: relative;
    margin-bottom: 1em;
}
.hd_nav .nav_pulldown .pulldown_item:last-child {
    margin-bottom: 0;
}
.hd_nav .nav_pulldown .pulldown_link {
    line-height: 1.45;
    position: relative;
    padding-left: 1em;
}
.hd_nav .nav_pulldown .pulldown_link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.5em;
    height: 0.5em;
    background-color: #ed72aa;
    border-radius: 5px;
}
.hd_nav .nav_pulldown .pulldown_link:hover {
    color: #ed72aa;
}
.hd_nav .nav_pulldown .pulldown_link span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}
.hd_contact {
    position: relative;
    padding: 0.5em 1.5em 0.5em 2.5em;
    background: #ffc5e4;
    background: linear-gradient(90deg, rgb(255, 197, 228) 0%, rgb(255, 229, 211) 100%);
    border-radius: min(5vw, 5px);
    border: 0.1em solid #3f312d;
    transition: none;
}
@media (max-width: 540px) {
    .hd_contact {
        font-size: 2.5vw;
    }
}
.hd_contact::before {
    content: "";
    position: absolute;
    top: 52.5%;
    translate: 0 -50%;
    left: 1em;
    width: 1em;
    height: 1em;
    background-color: #3f312d;
    -webkit-mask-image: url(../img/cmn/icon_mail.svg);
    mask-image: url(../img/cmn/icon_mail.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: 10;
}
.hd_contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ed72aa;
    opacity: 0;
    transition: opacity 0.5s;
    mix-blend-mode: multiply;
}
.hd_contact span {
    position: relative;
    z-index: 10;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}
.hd_contact:hover::after {
    opacity: 0.5;
}
.hd_tel.-pc {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2em;
}
@media (max-width: 1280px) {
    .hd_tel.-pc {
        margin-right: 0;
    }
}
@media (max-width: 840px) {
    .hd_tel.-pc {
        display: none;
    }
}
.hd_tel.-pc .tel_link {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.45;
    display: flex;
    align-items: baseline;
}
.hd_tel.-pc .tel_link::before {
    content: "tel.";
    font-weight: 600;
    font-size: 0.85em;
    font-family: "Quicksand", sans-serif;
}
.hd_tel.-pc .tel_link span {
    font-weight: 600;
    line-height: inherit;
    font-family: "Quicksand", sans-serif;
}
.hd_tel.-pc .tel_link:hover {
    color: #ed72aa;
}
.hd_tel.-pc .tel_note {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-top: -0.15em;
}
.hd_tel.-sp {
    position: relative;
    padding: 0.5em 1.5em 0.5em 2.5em;
    border-radius: min(5vw, 5px);
    background-color: #3f312d;
    border: 1px solid #3f312d;
    transition: none;
    margin-left: -0.75em;
}
@media (min-width: 841px) {
    .hd_tel.-sp {
        display: none;
    }
}
@media (max-width: 540px) {
    .hd_tel.-sp {
        font-size: 2.5vw;
        margin-left: -0.25em;
    }
}
.hd_tel.-sp::before {
    content: "";
    position: absolute;
    top: 52.5%;
    translate: 0 -50%;
    left: 1em;
    width: 1em;
    height: 1em;
    background-color: #fff;
    -webkit-mask-image: url(../img/cmn/icon_tel.svg);
    mask-image: url(../img/cmn/icon_tel.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: 10;
}
.hd_tel.-sp span {
    position: relative;
    z-index: 10;
    color: #fff;
    font-family: "Zen Maru Gothic", sans-serif;
}
@media (min-width: 1281px) {
    .hd_menu {
        display: none;
    }
}
.hd_menu .menu_btn {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    align-items: center;
    display: flex;
    z-index: 999;
    transition: all 0.5s;
}
@media (max-width: 540px) {
    .hd_menu .menu_btn {
        width: 8vw;
        height: 7vw;
    }
}
.hd_menu .menu_btn span {
    display: inline-block;
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    width: 70%;
    height: 2px;
    border-radius: 5px;
    background-color: #3f312d;
    transition: 0.5s background-color;
}
.hd_menu .menu_btn span:nth-of-type(1) {
    top: 10%;
    transition: all 0.5s;
}
.hd_menu .menu_btn span:nth-of-type(2) {
    top: 32.5%;
    transition: all 0.5s;
}
.hd_menu .menu_btn span:nth-of-type(3) {
    top: 55%;
    transition: all 0.5s;
}
.hd_menu .menu_btn span:nth-of-type(4) {
    top: 65%;
    height: 0;
}
.hd_menu .menu_btn span:nth-of-type(4)::after {
    content: "メニュー";
    color: #3f312d;
    font-weight: 700;
    word-break: normal;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 0.65em;
    white-space: nowrap;
    transition: all 0.5s;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% 0%;
    transition: 0.5s color;
}
.hd_menu .menu_btn:hover span {
    background-color: #ed72aa;
}
.hd_menu .menu_btn.-active span:nth-of-type(1) {
    top: 35%;
    rotate: -30deg;
}
.hd_menu .menu_btn.-active span:nth-of-type(2) {
    opacity: 0;
}
.hd_menu .menu_btn.-active span:nth-of-type(3) {
    top: 35%;
    rotate: 30deg;
}
.hd_menu .menu_btn.-active span:nth-of-type(4)::after {
    content: "閉じる";
}
.hd_menu .menu_bg {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    pointer-events: none;
    background: #ffc5e4;
    background: linear-gradient(90deg, rgb(255, 197, 228) 0%, rgb(255, 229, 211) 100%);
}
.hd_menu .menu_bg.-active {
    opacity: 1;
    pointer-events: auto;
}
.hd_menu .menu_inner {
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100%;
    padding: 115px 1em 0;
}
@media (max-width: 840px) {
    .hd_menu .menu_inner {
        padding: 100px 1em 0;
    }
}
@media (max-width: 540px) {
    .hd_menu .menu_inner {
        padding: 80px 1em 0;
    }
}
.hd_menu .menu_content {
    width: 100%;
    height: calc(100svh - 130px);
    overflow-y: auto;
    background-color: #fff;
    border-radius: min(5vw, 10px);
    padding: calc(clamp(20px, 5vw, 50px) * 0.75) min(5%, 50px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 840px) {
    .hd_menu .menu_content {
        height: calc(100svh - 115px);
    }
}
@media (max-width: 540px) {
    .hd_menu .menu_content {
        height: calc(100svh - 95px);
    }
}
.hd_menu .menu_nav {
    max-width: 700px;
    margin: 0 auto;
}
.hd_menu .menu_nav .nav_item {
    position: relative;
    border-bottom: 1px solid #eae8e8;
}
.hd_menu .menu_nav .nav_link {
    position: relative;
    transition: 0.5s color;
    padding: 1em 0;
}
.hd_menu .menu_nav .nav_link::before {
    content: "";
    position: absolute;
    right: 0.5em;
    top: 50%;
    translate: 0 -50%;
    width: 1.5em;
    height: 1.5em;
    background-image: url(../img/cmn/btn_pink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.5s right;
}
.hd_menu .menu_nav .nav_link:hover {
    color: #ed72aa;
}
.hd_menu .menu_nav .nav_link:hover::before {
    right: 0;
}
.hd_menu .menu_nav .nav_link span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}
.hd_menu .menu_nav .nav_sub {
    background-color: #f4f3f2;
    border-radius: min(5vw, 10px);
    padding: 1em min(5%, 1.5em);
    margin-bottom: 1.5em;
}
.hd_menu .menu_nav .nav_sub .sub_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1.5em;
}
.hd_menu .menu_nav .nav_sub .sub_link {
    padding: 0.125em 0;
    position: relative;
    line-height: 1.45;
}
.hd_menu .menu_nav .nav_sub .sub_link:hover {
    color: #ed72aa;
}
.hd_menu .menu_nav .nav_sub .sub_link span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 0.9em;
}
.hd_menu .menu_contact {
    position: relative;
    padding: 0.5em 1.5em 0.5em 2.5em;
    background: #ffc5e4;
    background: linear-gradient(90deg, rgb(255, 197, 228) 0%, rgb(255, 229, 211) 100%);
    border-radius: min(5vw, 5px);
    border: 0.1em solid #3f312d;
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin: calc(clamp(20px, 5vw, 50px) * 0.75) auto calc(clamp(20px, 5vw, 50px) * 0.35);
}
.hd_menu .menu_contact::before {
    content: "";
    position: absolute;
    top: 52.5%;
    translate: 0 -50%;
    left: 1em;
    width: 1em;
    height: 1em;
    background-color: #3f312d;
    -webkit-mask-image: url(../img/cmn/icon_mail.svg);
    mask-image: url(../img/cmn/icon_mail.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: 10;
}
.hd_menu .menu_contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ed72aa;
    opacity: 0;
    transition: opacity 0.5s;
    mix-blend-mode: multiply;
}
.hd_menu .menu_contact span {
    position: relative;
    z-index: 10;
}
.hd_menu .menu_contact:hover::after {
    opacity: 0.5;
}
.hd_menu .menu_tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2em;
}
@media (max-width: 1280px) {
    .hd_menu .menu_tel {
        margin-right: 0;
    }
}
.hd_menu .menu_tel .tel_link {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.45;
    display: flex;
    align-items: baseline;
}
.hd_menu .menu_tel .tel_link::before {
    content: "tel.";
    font-weight: 600;
    font-size: 0.85em;
    font-family: "Quicksand", sans-serif;
}
.hd_menu .menu_tel .tel_link span {
    font-weight: 600;
    line-height: inherit;
    font-family: "Quicksand", sans-serif;
}
.hd_menu .menu_tel .tel_link:hover {
    color: #ed72aa;
}
.hd_menu .menu_tel .tel_note {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-top: -0.15em;
}

/*==================================================================================================
	フッター
==================================================================================================*/
.ft {
    position: relative;
    z-index: 10;
    overflow-x: clip;
}
.ft_contact {
    background-image: url(../img/cmn/contact_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: calc(clamp(20px, 5vw, 50px) * 1.25) 5% calc(clamp(20px, 5vw, 50px) * 1.25 + 100px);
}
@media (max-width: 840px) {
    .ft_contact {
        padding: calc(clamp(20px, 5vw, 50px) * 1.25) 5% calc(clamp(20px, 5vw, 50px) * 1.25 + 60px);
    }
}
.ft_contact .contact_inner {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: min(5vw, 30px);
    padding: clamp(20px, 5vw, 50px) min(5%, 50px);
}
.ft_contact .contact_secttl {
    position: relative;
}
.ft_contact .contact_secttl .en {
    font-size: clamp(5.6rem, 10vw, 10rem);
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    color: rgba(237, 114, 170, 0.1);
    text-align: center;
    line-height: 1.45;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
.ft_contact .contact_secttl .ja {
    font-size: calc(clamp(3.2rem, 4vw, 4.2rem) * 0.85);
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #3f312d;
    text-align: center;
    line-height: 1.45;
    margin-bottom: 1.5em;
}
.ft_contact .contact_content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 5vw, 50px) 3.5%;
    max-width: 840px;
    margin: 0 auto;
}
.ft_contact .contact_unit {
    width: 48.25%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 840px) {
    .ft_contact .contact_unit {
        width: 100%;
    }
}
.ft_contact .contact_ttl {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.45;
    margin-bottom: 1em;
}
.ft_contact .contact_btn {
    position: relative;
    padding: 0.5em 1.5em 0.5em 2.5em;
    background: #ffc5e4;
    background: linear-gradient(90deg, rgb(255, 197, 228) 0%, rgb(255, 229, 211) 100%);
    border-radius: min(5vw, 5px);
    border: 0.1em solid #3f312d;
    transition: none;
    font-size: calc(clamp(2rem, 3.2vw, 2.6rem) * 0.85);
    width: 100%;
    max-width: 300px;
    text-align: center;
}
.ft_contact .contact_btn::before {
    content: "";
    position: absolute;
    top: 52.5%;
    translate: 0 -50%;
    left: 1em;
    width: 1em;
    height: 1em;
    background-color: #3f312d;
    -webkit-mask-image: url(../img/cmn/icon_mail.svg);
    mask-image: url(../img/cmn/icon_mail.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: 10;
}
.ft_contact .contact_btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ed72aa;
    opacity: 0;
    transition: opacity 0.5s;
    mix-blend-mode: multiply;
}
.ft_contact .contact_btn span {
    position: relative;
    z-index: 10;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}
.ft_contact .contact_btn:hover::after {
    opacity: 0.5;
}
.ft_contact .contact_tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2em;
}
@media (max-width: 1280px) {
    .ft_contact .contact_tel {
        margin-right: 0;
    }
}
.ft_contact .contact_tel .tel_link {
    font-size: calc(clamp(2rem, 3.2vw, 2.6rem) * 1.45);
    line-height: 1.45;
    display: flex;
    align-items: baseline;
}
.ft_contact .contact_tel .tel_link::before {
    content: "tel.";
    font-weight: 600;
    font-size: 0.85em;
    font-family: "Quicksand", sans-serif;
}
.ft_contact .contact_tel .tel_link span {
    font-weight: 600;
    line-height: inherit;
    font-family: "Quicksand", sans-serif;
}
.ft_contact .contact_tel .tel_link:hover {
    color: #ed72aa;
}
.ft_contact .contact_tel .tel_note {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-top: -0.15em;
}
.ft_bottom {
    background-color: #fff;
    position: relative;
    padding: clamp(20px, 5vw, 50px) min(5%, 50px);
}
.ft_bottom::before {
    content: "";
    position: absolute;
    top: -98.5px;
    left: 0;
    width: calc(100vw + 1920px);
    height: 100px;
    background-image: url(../img/cmn/wave_01.png);
    background-size: 1920px 100px;
    background-repeat: repeat-x;
    -webkit-animation: wave-move 30s linear infinite;
    animation: wave-move 30s linear infinite;
}
@media (max-width: 840px) {
    .ft_bottom::before {
        top: -58.5px;
        height: 60px;
        background-size: 840px 60px;
        -webkit-animation: wave-move-sp 60s linear infinite;
        animation: wave-move-sp 60s linear infinite;
    }
}
.ft_bottom::after {
    content: "";
    position: absolute;
    top: -98.5px;
    left: 0;
    width: calc(100vw + 1920px);
    height: 100px;
    background-image: url(../img/cmn/wave_02.png);
    background-size: 1920px 100px;
    background-repeat: repeat-x;
    -webkit-animation: wave-move 60s linear infinite;
    animation: wave-move 60s linear infinite;
}
@media (max-width: 840px) {
    .ft_bottom::after {
        top: -58.5px;
        height: 60px;
        background-size: 840px 60px;
        -webkit-animation: wave-move-sp 80s linear infinite;
        animation: wave-move-sp 80s linear infinite;
    }
}
.ft_content {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1280px) {
    .ft_content {
        flex-direction: column;
        gap: clamp(20px, 5vw, 50px) 0;
    }
}
@media (max-width: 1280px) {
    .ft_info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.ft_logo {
    width: 240px;
    transition: opacity 0.5s;
}
@media (max-width: 1280px) {
    .ft_logo {
        width: min(70%, 360px);
    }
}
.ft_logo:hover {
    opacity: 0.8;
}
.ft_address {
    margin-top: 1.5em;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .ft_address {
        text-align: center;
    }
}
.ft_nav.-pc {
    display: flex;
    gap: 0 min(5%, 50px);
    white-space: nowrap;
    justify-content: flex-end;
    width: 60%;
}
@media (max-width: 1280px) {
    .ft_nav.-pc {
        display: none;
    }
}
.ft_nav.-pc .nav_list {
    display: flex;
    flex-direction: column;
    gap: 1.5em 0;
}
.ft_nav.-pc .nav_item {
    position: relative;
}
.ft_nav.-pc .nav_link {
    position: relative;
    display: inline-block;
}
.ft_nav.-pc .nav_link::before {
    content: "";
    position: absolute;
    left: 0.05em;
    bottom: -0.25em;
    width: 100%;
    height: 2px;
    background: #ed72aa;
    border-radius: 5px;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.ft_nav.-pc .nav_link:hover {
    color: #ed72aa;
}
.ft_nav.-pc .nav_link:hover::before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.ft_nav.-pc .nav_link span {
    font-size: 1.15em;
    font-weight: 500;
}
.ft_nav.-pc .nav_sub {
    margin-top: 0.5em;
}
.ft_nav.-pc .nav_sub .sub_list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 0.5em 0;
}
.ft_nav.-pc .nav_sub .sub_item {
    position: relative;
}
.ft_nav.-pc .nav_sub .sub_link {
    line-height: 1.45;
    position: relative;
    padding-left: 1.35em;
}
.ft_nav.-pc .nav_sub .sub_link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.85em;
    height: 1px;
    background-color: rgba(63, 49, 45, 0.5);
}
.ft_nav.-pc .nav_sub .sub_link:hover span {
    color: #ed72aa;
}
.ft_nav.-pc .nav_sub .sub_link span {
    transition: 0.5s color;
    color: rgba(63, 49, 45, 0.8);
}
.ft_nav.-sp {
    max-width: 840px;
    margin: 0 auto;
}
@media (min-width: 1281px) {
    .ft_nav.-sp {
        display: none;
    }
}
.ft_nav.-sp .nav_item {
    position: relative;
    border-bottom: 1px solid #eae8e8;
}
.ft_nav.-sp .nav_link {
    position: relative;
    transition: 0.5s color;
    padding: 1em 0;
}
.ft_nav.-sp .nav_link::before {
    content: "";
    position: absolute;
    right: 0.5em;
    top: 50%;
    translate: 0 -50%;
    width: 1.5em;
    height: 1.5em;
    background-image: url(../img/cmn/btn_pink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.5s right;
}
.ft_nav.-sp .nav_link:hover {
    color: #ed72aa;
}
.ft_nav.-sp .nav_link:hover::before {
    right: 0;
}
.ft_nav.-sp .nav_link span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}
.ft_nav.-sp .nav_sub {
    background-color: #f4f3f2;
    border-radius: min(5vw, 10px);
    padding: 1em min(5%, 1.5em);
    margin-bottom: 1.5em;
}
.ft_nav.-sp .nav_sub .sub_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1.5em;
}
.ft_nav.-sp .nav_sub .sub_link {
    padding: 0.125em 0;
    position: relative;
    line-height: 1.45;
}
.ft_nav.-sp .nav_sub .sub_link:hover {
    color: #ed72aa;
}
.ft_nav.-sp .nav_sub .sub_link span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 0.9em;
}
.ft_copy {
    margin-top: clamp(20px, 5vw, 50px);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    text-align: center;
    font-weight: 400;
    display: block;
}

/*==================================================================================================
	共通
==================================================================================================*/
.cmn {
    margin: calc(clamp(20px, 5vw, 50px) * 3) auto;
    padding: 0 5%;
    position: relative;
}
@media (max-width: 540px) {
    .cmn {
        margin: calc(clamp(20px, 5vw, 50px) * 2) auto;
    }
}
.cmn.-wave {
    margin: calc(clamp(20px, 5vw, 50px) * 3 + 100px) auto;
}
@media (max-width: 840px) {
    .cmn.-wave {
        margin: calc(clamp(20px, 5vw, 50px) * 2 + 60px) auto;
    }
}
.cmn_inner {
    margin: 0 auto;
    position: relative;
}
.cmn_inner.-xxl {
    max-width: 1600px;
}
.cmn_inner.-xl {
    max-width: 1280px;
}
.cmn_inner.-lg {
    max-width: 1024px;
}
.cmn_inner.-md {
    max-width: 840px;
}
.cmn_inner.-sm {
    max-width: 700px;
}
.cmn_inner.-xs {
    max-width: 540px;
}
.cmn_pagehead {
    position: relative;
    z-index: 15;
}
.cmn_pagehead_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
@media (max-width: 840px) {
    .cmn_pagehead_inner {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding-bottom: 4.5em;
    }
}
.cmn_pagehead_ttl {
    position: absolute;
    margin: 0 min(5%, 50px);
    top: 50%;
    left: 0;
    translate: 0 -50%;
}
@media (max-width: 840px) {
    .cmn_pagehead_ttl {
        position: relative;
        translate: 0 0;
        top: auto;
        left: auto;
    }
}
.cmn_pagehead_ttl .en {
    font-family: "Quicksand", sans-serif;
    color: #fff;
    font-size: calc(clamp(3.2rem, 4vw, 4.2rem) * 3);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
}
@media (max-width: 840px) {
    .cmn_pagehead_ttl .en {
        margin-top: -0.5em;
    }
}
@media (max-width: 540px) {
    .cmn_pagehead_ttl .en {
        font-size: 13.5vw;
    }
}
.cmn_pagehead_ttl .ja {
    font-size: clamp(3.2rem, 4vw, 4.2rem);
    font-family: "Zen Maru Gothic", sans-serif;
    color: #3f312d;
    line-height: 1.45;
    font-weight: 500;
    margin-top: 0.25em;
}
.cmn_pagehead_ttl .sub {
    font-family: "Zen Maru Gothic", sans-serif;
    color: #3f312d;
    line-height: 1.45;
    font-weight: 500;
    margin-top: 0.25em;
    margin-left: 0.25em;
}
.cmn_pagehead_img {
    width: 70%;
    margin-left: auto;
}
@media (max-width: 840px) {
    .cmn_pagehead_img {
        width: 85%;
    }
}
.cmn_pagehead_img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    height: 520px;
    border-radius: 0 0 0 min(5vw, 80px);
}
@media (max-width: 840px) {
    .cmn_pagehead_img img {
        height: 60vw;
    }
}
.cmn_pagehead_breadcrumb {
    position: absolute;
    bottom: 1em;
    right: 1em;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 80px;
}
@media (max-width: 840px) {
    .cmn_pagehead_breadcrumb {
        bottom: 0em;
    }
}
.cmn_pagehead_breadcrumb .breadcrumb_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 2em;
    padding: 0.5em 1em;
}
.cmn_pagehead_breadcrumb .breadcrumb_item {
    position: relative;
}
.cmn_pagehead_breadcrumb .breadcrumb_item:not(:first-child)::before {
    font-family: "icomoon";
    content: "\f0142";
    position: absolute;
    top: 52.5%;
    left: -1.5em;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #ed72aa;
}
.cmn_pagehead_breadcrumb .breadcrumb_link {
    line-height: 1.45;
}
.cmn_pagehead_breadcrumb .breadcrumb_link span {
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: inherit;
}
.cmn_secttl {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto calc(clamp(20px, 5vw, 50px) * 0.75);
    position: relative;
}
@media (max-width: 840px) {
    .cmn_secttl {
        margin: 0 auto calc(clamp(20px, 5vw, 50px) * 1.25);
    }
}
.cmn_secttl.-normal .en {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-family: "Quicksand", sans-serif;
    color: #ed72aa;
    font-weight: 500;
    position: relative;
    padding-left: 0.75em;
    line-height: 1.45;
    text-align: center;
    margin-bottom: 0.25em;
}
.cmn_secttl.-normal .en::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.85em;
    height: 0.85em;
    background-color: #ed72aa;
    border-radius: 50px;
}
.cmn_secttl.-normal .en::before {
    width: 0.45em;
    height: 0.45em;
}
.cmn_secttl.-normal .sub {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    color: #ed72aa;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    margin-bottom: 0.25em;
}
.cmn_secttl.-normal .ja,
.cmn_secttl.-normal .main {
    font-size: clamp(3.2rem, 4vw, 4.2rem);
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.45;
    text-align: center;
    font-weight: 500;
}
.cmn_secttl.-impact .en {
    font-family: "Quicksand", sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: calc(clamp(3.2rem, 4vw, 4.2rem) * 3);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.05em;
}
@media (max-width: 540px) {
    .cmn_secttl.-impact .en {
        font-size: 13.5vw;
    }
}
.cmn_secttl.-impact .ja {
    font-size: clamp(3.2rem, 4vw, 4.2rem);
    font-family: "Zen Maru Gothic", sans-serif;
    color: #3f312d;
    line-height: 1.45;
    font-weight: 700;
    text-align: center;
    margin-top: -1em;
}
.cmn_secttl.-line::before, .cmn_secttl.-line::after {
    content: "";
    position: absolute;
    font-size: clamp(3.2rem, 4vw, 4.2rem);
    bottom: 0;
    width: 1em;
    height: 1em;
    background-image: url(../img/cmn/secttl_line.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.cmn_secttl.-line::before {
    left: 0;
}
.cmn_secttl.-line::after {
    right: 0;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
.cmn_secttl.-line .ja {
    font-size: clamp(3.2rem, 4vw, 4.2rem);
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.45;
    text-align: center;
    font-weight: 500;
    padding: 0 1.25em;
}
.cmn_secttl.-line .ja .pink {
    font-family: inherit;
    font-weight: 500;
    font-size: inherit;
    line-height: inherit;
    color: #ed72aa;
}
.cmn_underline {
    font-family: inherit;
    font-weight: 500;
    font-size: inherit;
    line-height: inherit;
    background: linear-gradient(transparent 60%, rgba(255, 232, 136, 0.75) 60%);
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.cmn_base_list {
    display: flex;
    flex-direction: column;
    gap: calc(clamp(20px, 5vw, 50px) * 0.5) 0;
}
.cmn_base_item {
    background-color: #fff;
    padding: calc(clamp(20px, 5vw, 50px) * 0.75) calc(min(5%, 50px) * 0.75);
    border-radius: min(5vw, 20px);
    display: flex;
    flex-wrap: wrap;
    gap: calc(clamp(20px, 5vw, 50px) * 0.75) 0;
}
@media (max-width: 840px) {
    .cmn_base_item {
        padding: clamp(20px, 5vw, 50px) min(5%, 50px);
    }
}
.cmn_base_img {
    width: 35%;
}
@media (max-width: 840px) {
    .cmn_base_img {
        width: 100%;
    }
}
.cmn_base_img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    aspect-ratio: 4/3;
    border-radius: min(5vw, 20px);
}
.cmn_base_info {
    padding-left: 5%;
    width: 65%;
}
@media (max-width: 840px) {
    .cmn_base_info {
        width: 100%;
        padding-left: 0;
    }
}
.cmn_base_ttl {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1.45;
    display: block;
    margin-bottom: 0.25em;
}
.cmn_base_contact {
    margin-top: 1em;
}
.cmn_base_contact .contact_ttl {
    font-weight: 500;
    position: relative;
    padding-left: 1.25em;
}
.cmn_base_contact .contact_ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.85em;
    height: 0.85em;
    background-color: #ed72aa;
    border-radius: 50px;
}
.cmn_base_contact .contact_tel + .contact_ttl {
    margin-top: 0.5em;
}
.cmn_base_btns {
    margin-top: 1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5em 0;
    width: 90%;
}
@media (max-width: 540px) {
    .cmn_base_btns {
        width: 100%;
    }
}
.cmn_base_btn.-more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.5em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    border: 0.1em solid #3f312d;
    border-radius: min(5vw, 5px);
    text-align: center;
    transition: background-color 0.5s;
}
@media (max-width: 540px) {
    .cmn_base_btn.-more {
        width: 100%;
    }
}
.cmn_base_btn.-more span {
    position: relative;
    z-index: 10;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1.35;
}
.cmn_base_btn.-more::before {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
}
.cmn_base_btn.-more {
    padding: 1em 3em 1em 1.5em;
    background-color: rgba(237, 114, 170, 0.15);
}
.cmn_base_btn.-more::before {
    right: 1em;
    top: 50%;
    translate: 0 -50%;
    background-image: url(../img/cmn/btn_pink.svg);
    transition: right 0.5s;
}
.cmn_base_btn.-more:hover {
    background-color: rgba(237, 114, 170, 0.35);
}
.cmn_base_btn.-more:hover::before {
    right: 0.5em;
}
.cmn_base_btn.-more {
    width: 48.5%;
}
@media (max-width: 540px) {
    .cmn_base_btn.-more {
        width: 100%;
    }
}
.cmn_base_btn.-map {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.5em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    border: 0.1em solid #3f312d;
    border-radius: min(5vw, 5px);
    text-align: center;
    transition: background-color 0.5s;
}
@media (max-width: 540px) {
    .cmn_base_btn.-map {
        width: 100%;
    }
}
.cmn_base_btn.-map span {
    position: relative;
    z-index: 10;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1.35;
}
.cmn_base_btn.-map::before {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
}
.cmn_base_btn.-map {
    padding: 1em 1.5em;
    background: rgb(255, 197, 228);
    background: linear-gradient(90deg, rgb(255, 197, 228) 0%, rgb(255, 229, 211) 100%);
}
.cmn_base_btn.-map::before {
    position: static;
    background-image: url(../img/cmn/icon_map.svg);
}
.cmn_base_btn.-map::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ed72aa;
    opacity: 0;
    transition: opacity 0.5s;
    mix-blend-mode: multiply;
}
.cmn_base_btn.-map:hover::after {
    opacity: 0.5;
}
.cmn_base_btn.-map {
    width: 48.5%;
    color: #fff;
    background: #ed72aa;
}
@media (max-width: 540px) {
    .cmn_base_btn.-map {
        width: 100%;
    }
}
.cmn_base_btn.-map::after {
    display: none;
}
.cmn_base_btn.-map:hover {
    background: #e7458f;
}
.cmn_point_content {
    position: relative;
}
.cmn_point_list {
    display: flex;
    flex-wrap: wrap;
    gap: calc(clamp(20px, 5vw, 50px) * 0.75) 2.5%;
}
@media (max-width: 1024px) {
    .cmn_point_list {
        gap: calc(clamp(20px, 5vw, 50px) * 1.75) 5%;
    }
}
.cmn_point_item {
    width: 31.6666666667%;
}
@media (max-width: 1024px) {
    .cmn_point_item {
        width: 47.5%;
    }
}
@media (max-width: 540px) {
    .cmn_point_item {
        width: 100%;
    }
}
.cmn_point_img {
    position: relative;
}
.cmn_point_img img {
    aspect-ratio: 4/3;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: min(5vw, 20px);
}
.cmn_point_num {
    position: absolute;
    top: 0;
    right: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: #fff;
    font-family: "Quicksand", sans-serif;
    color: #ed72aa;
    font-size: clamp(3.2rem, 4vw, 4.2rem);
    font-weight: 700;
    padding: 0.25em 0.15em;
    border-radius: 0 0 min(5vw, 10px) min(5vw, 10px);
}
.cmn_point_ttl {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 500;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.6;
    margin: 0.75em 0 0.5em;
    text-align: center;
}
.cmn_point_illust {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
}
@media (max-width: 540px) {
    .cmn_point_illust {
        display: none;
    }
}
.cmn_news_list, .cmn_diary_list {
    background-color: #fff;
    padding: calc(clamp(20px, 5vw, 50px) * 0.75) min(5%, 50px);
    border-radius: min(5vw, 20px);
}
.cmn_news_item, .cmn_diary_item {
    border-bottom: 1px solid #ccc;
}
.cmn_news_item:last-child, .cmn_diary_item:last-child {
    border-bottom: none;
}
.cmn_news_link, .cmn_diary_link {
    padding: min(1.5em, 3vw) 4em min(1.5em, 3vw) min(1em, 2.5%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.cmn_news_link::after, .cmn_diary_link::after {
    content: "";
    position: absolute;
    right: 1em;
    top: 50%;
    translate: 0 -50%;
    width: 1em;
    height: 1em;
    background-color: #ed72aa;
    -webkit-mask-image: url(../img/cmn/icon_arrow.svg);
    mask-image: url(../img/cmn/icon_arrow.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: 0.5s right;
}
.cmn_news_link:hover::after, .cmn_diary_link:hover::after {
    right: 0.5em;
}
.cmn_news_link:hover .cmn_news_ttl, .cmn_diary_link:hover .cmn_news_ttl {
    color: #ed72aa;
}
.cmn_news_date, .cmn_diary_date {
    width: 100px;
    font-family: "Quicksand", sans-serif;
    color: #918684;
}
@media (max-width: 540px) {
    .cmn_news_date, .cmn_diary_date {
        width: 100%;
    }
}
.cmn_news_ttl, .cmn_diary_ttl {
    width: calc(100% - 100px);
    padding-left: 1em;
    line-height: 1.45;
    transition: 0.5s color;
}
@media (max-width: 540px) {
    .cmn_news_ttl, .cmn_diary_ttl {
        width: 100%;
        padding-left: 0;
        padding-top: 0.5em;
    }
}
.cmn_about_inner {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 5vw, 50px) 0;
}
.cmn_about_management {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(clamp(20px, 5vw, 50px) * 1.25);
    gap: calc(clamp(20px, 5vw, 50px) * 0.75) 5%;
}
@media (max-width: 840px) {
    .cmn_about_management {
        flex-direction: column-reverse;
    }
}
.cmn_about_management .management_txt {
    width: 65%;
}
@media (max-width: 840px) {
    .cmn_about_management .management_txt {
        width: 100%;
    }
}
.cmn_about_management .management_name {
    display: block;
    text-align: right;
    margin-top: 1em;
}
.cmn_about_management .management_img {
    width: 30%;
}
@media (max-width: 840px) {
    .cmn_about_management .management_img {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
    }
}
.cmn_about_management .management_img img {
    aspect-ratio: 4/3;
    border-radius: min(5vw, 20px);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.cmn_about_head {
    text-align: center;
}
.cmn_about_gallery {
    max-width: 1024px;
    margin: 0 auto;
}
.cmn_about_gallery .gallery_main .main_list {
    aspect-ratio: 16/9;
}
.cmn_about_gallery .gallery_main .main_item img {
    height: 100%;
    border-radius: min(5vw, 20px);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.cmn_about_gallery .gallery_thumb {
    margin-top: calc(clamp(20px, 5vw, 50px) * 0.5);
}
.cmn_about_gallery .gallery_thumb .thumb_list {
    display: flex;
    flex-wrap: wrap;
    gap: 1em 1.5%;
    margin-left: 0;
}
.cmn_about_gallery .gallery_thumb .thumb_item {
    width: 18.8%;
    padding: 0 0;
}
@media (max-width: 840px) {
    .cmn_about_gallery .gallery_thumb .thumb_item {
        width: 32.3333333333%;
    }
}
.cmn_about_gallery .gallery_thumb .thumb_item a img {
    aspect-ratio: 4 / 3;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    -o-object-position: center;
    object-position: center;
    border-radius: min(5vw, 10px);
}
.cmn_about_gallery .gallery_thumb .thumb_item a::after {
    background-image: none;
    border-radius: min(5vw, 10px);
    background-color: rgba(56, 64, 76, 0.5);
    transition: background-color 0.5s, opacity 0.5s;
}
.cmn_about_name {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1.45;
    display: block;
    text-align: center;
    margin-bottom: 0.25em;
    font-weight: 700;
    font-family: "Zen Kaku Gothic New", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
}
.cmn_about_address {
    text-align: center;
}
.cmn_about_service {
    margin: calc(clamp(20px, 5vw, 50px) * 0.5) auto;
    max-width: 1024px;
}
.cmn_about_service .service_list {
    display: flex;
    flex-wrap: wrap;
    gap: calc(clamp(20px, 5vw, 50px) * 0.35) 3.5%;
}
.cmn_about_service .service_item {
    width: 48.25%;
    background-color: #fff;
    padding: calc(clamp(20px, 5vw, 50px) * 0.5) min(5%, 50px);
    border-radius: min(5vw, 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 840px) {
    .cmn_about_service .service_item {
        width: 100%;
        padding: calc(clamp(20px, 5vw, 50px) * 0.75) min(5%, 50px);
    }
}
.cmn_about_service .service_ttl {
    font-weight: 700;
    position: relative;
    padding-left: 1.25em;
    font-size: 1.15em;
    line-height: 1.45;
    margin-bottom: 0.5em;
}
.cmn_about_service .service_ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.85em;
    height: 0.85em;
    background-color: #ed72aa;
    border-radius: 50px;
}
.cmn_about_service .service_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.5em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    border: 0.1em solid #3f312d;
    border-radius: min(5vw, 5px);
    text-align: center;
    transition: background-color 0.5s;
}
@media (max-width: 540px) {
    .cmn_about_service .service_btn {
        width: 100%;
    }
}
.cmn_about_service .service_btn span {
    position: relative;
    z-index: 10;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1.35;
}
.cmn_about_service .service_btn::before {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
}
.cmn_about_service .service_btn {
    padding: 1em 3em 1em 1.5em;
    background-color: rgba(237, 114, 170, 0.15);
}
.cmn_about_service .service_btn::before {
    right: 1em;
    top: 50%;
    translate: 0 -50%;
    background-image: url(../img/cmn/btn_pink.svg);
    transition: right 0.5s;
}
.cmn_about_service .service_btn:hover {
    background-color: rgba(237, 114, 170, 0.35);
}
.cmn_about_service .service_btn:hover::before {
    right: 0.5em;
}
.cmn_about_service .service_btn {
    width: 260px;
    margin: 1em auto 0;
}
.cmn_about_service .service_btn::before {
    transition: top 0.5s;
    rotate: 90deg;
}
.cmn_about_service .service_btn:hover::before {
    right: 1em;
    top: 60%;
}
.cmn_about_contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.5em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    border: 0.1em solid #3f312d;
    border-radius: min(5vw, 5px);
    text-align: center;
    transition: background-color 0.5s;
}
@media (max-width: 540px) {
    .cmn_about_contact {
        width: 100%;
    }
}
.cmn_about_contact span {
    position: relative;
    z-index: 10;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1.35;
}
.cmn_about_contact::before {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
}
.cmn_about_contact {
    padding: 1em 1.5em;
    background: rgb(255, 197, 228);
    background: linear-gradient(90deg, rgb(255, 197, 228) 0%, rgb(255, 229, 211) 100%);
}
.cmn_about_contact::before {
    position: static;
    background-image: url(../img/cmn/icon_mail.svg);
}
.cmn_about_contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ed72aa;
    opacity: 0;
    transition: opacity 0.5s;
    mix-blend-mode: multiply;
}
.cmn_about_contact:hover::after {
    opacity: 0.5;
}
.cmn_about_contact {
    font-size: calc(clamp(2rem, 3.2vw, 2.6rem) * 0.85);
    margin: 2em auto 0;
}
.cmn_about_map {
    max-width: 1024px;
    width: 100%;
    margin: calc(clamp(20px, 5vw, 50px) * 0.5) auto 0;
}
.cmn_about_map iframe {
    width: 100%;
    border-radius: min(5vw, 20px);
    aspect-ratio: 16/9;
}
.cmn_capacity_info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 1em;
    margin: calc(clamp(20px, 5vw, 50px) * 0.5) auto;
}
.cmn_capacity_info .info_term {
    background-color: #ed72aa;
    color: #fff;
    padding: 0.15em 1em;
    border-radius: min(5vw, 5px);
    font-weight: 500;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.45;
}
.cmn_capacity_info .info_desc {
    font-size: 1.25em;
    display: flex;
    align-items: baseline;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}
.cmn_capacity_info .info_desc .mintxt {
    font-size: 0.75em;
}
.cmn_capacity_figure {
    position: relative;
    max-width: 840px;
    margin: 0 auto;
}
.cmn_capacity_illust {
    position: absolute;
    left: 0;
    top: 15.5%;
    width: 33%;
}
.cmn_concept_content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: calc(clamp(20px, 5vw, 50px) * 0.75) 5%;
}
.cmn_concept_unit {
    width: 50%;
}
@media (max-width: 840px) {
    .cmn_concept_unit {
        width: 90%;
    }
}
@media (max-width: 540px) {
    .cmn_concept_unit {
        width: 100%;
    }
}
.cmn_concept_copy {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1.8;
    display: block;
    margin-bottom: 1em;
}
.cmn_concept_note {
    display: block;
    font-size: 0.9em;
    margin-top: 0.5em;
}
.cmn_concept_img {
    width: 45%;
    position: relative;
}
@media (max-width: 840px) {
    .cmn_concept_img {
        width: 80%;
        margin-left: auto;
    }
}
@media (max-width: 540px) {
    .cmn_concept_img {
        width: 100%;
    }
}
.cmn_concept_img::before {
    content: "";
    position: absolute;
    bottom: -1.5em;
    right: -1.5em;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: min(5vw, 20px);
    background: #ffc5e4;
    background: linear-gradient(90deg, rgb(255, 197, 228) 0%, rgb(255, 229, 211) 100%);
    opacity: 0.5;
}
.cmn_concept_img img {
    border-radius: min(5vw, 20px);
    position: relative;
    z-index: 10;
}
.cmn_concept_illust {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 40%;
}
.cmn_concept_figure {
    width: 840px;
    max-width: 80%;
    margin: calc(clamp(20px, 5vw, 50px) * 1.5) auto 0;
    position: relative;
}
.cmn_concept_figure .figure_illust {
    position: absolute;
    left: 0;
    top: 15.5%;
    width: 33%;
}
.cmn_concept_figure .figure_note {
    display: block;
    text-align: center;
    margin-top: 0.5em;
}
.cmn_outline_list {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: calc(clamp(20px, 5vw, 50px) * 0.5) min(5%, 50px);
    border-radius: min(5vw, 20px);
}
.cmn_outline_item {
    display: flex;
    position: relative;
    border-bottom: 1px solid #d1c3c7;
    padding: 1.25em min(2.5%, 1em);
}
@media (max-width: 840px) {
    .cmn_outline_item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1em min(2.5%, 1em);
    }
}
.cmn_outline_item:last-child {
    border-bottom: none;
}
.cmn_outline_term {
    white-space: nowrap;
    flex: 0 0 150px;
    font-weight: 500;
}
@media (max-width: 840px) {
    .cmn_outline_term {
        flex: 0 0 100%;
    }
}
.cmn_outline_desc {
    flex: 1;
    min-width: 0;
    padding-left: 1em;
}
@media (max-width: 840px) {
    .cmn_outline_desc {
        flex: 0 0 100%;
    }
}
.cmn_price_content:not(:last-of-type) {
    margin-bottom: calc(clamp(20px, 5vw, 50px) * 1.25);
}
.cmn_price_ttl {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1.45;
    display: block;
}
.cmn_price_ttl {
    position: relative;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 0.75em;
    padding-left: 1em;
    font-size: calc(clamp(2rem, 3.2vw, 2.6rem) * 1.15);
}
.cmn_price_ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.85em;
    height: 0.85em;
    background-color: #ed72aa;
    border-radius: 50px;
}
.cmn_price_ttl::before {
    width: 0.65em;
    height: 0.65em;
}
.cmn_price_note {
    display: block;
    text-align: center;
    margin-top: 1em;
}
.cmn_price_case {
    padding: calc(clamp(20px, 5vw, 50px) * 0.5) min(5%, 50px);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: min(5vw, 20px);
}
.cmn_price_case:first-of-type {
    margin-bottom: 0.75em;
}
@media (max-width: 840px) {
    .cmn_price_case {
        padding: clamp(20px, 5vw, 50px) min(5%, 50px);
    }
}
.cmn_price_case .case_ttl {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1.45;
    display: block;
}
.cmn_price_case .case_ttl {
    font-family: "Zen Kaku Gothic New", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
    font-size: 1.25em;
    margin-bottom: 0.5em;
    color: #ed72aa;
}
.cmn_morning_inner {
    background-color: #fefcfb;
    padding: clamp(20px, 5vw, 50px) min(5%, 50px);
    border-radius: min(5vw, 20px);
}
.cmn_morning_inner::before {
    content: "";
    position: absolute;
    top: calc(clamp(20px, 5vw, 50px) * -1);
    left: 50%;
    translate: -50% 0;
    width: calc(clamp(20px, 5vw, 50px) * 2);
    height: calc(clamp(20px, 5vw, 50px) * 2);
    background-image: url(../img/dayservice/mark_sun.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
@media (max-width: 540px) {
    .cmn_morning_inner::before {
        width: calc(clamp(20px, 5vw, 50px) * 3);
        height: calc(clamp(20px, 5vw, 50px) * 3);
        top: calc(clamp(20px, 5vw, 50px) * -1.5);
    }
}
.cmn_morning_secttl {
    margin-bottom: calc(clamp(20px, 5vw, 50px) * 0.75);
}
@media (max-width: 540px) {
    .cmn_morning_secttl {
        padding-top: calc(clamp(20px, 5vw, 50px) * 0.5);
    }
}
.cmn_morning_secttl .sub {
    font-family: "Zen Maru Gothic", sans-serif;
    color: #ea8f73;
}
.cmn_morning_secttl .main {
    font-size: calc(clamp(3.2rem, 4vw, 4.2rem) * 0.85);
}
.cmn_morning_content {
    background-color: rgba(255, 205, 143, 0.3);
    padding: clamp(20px, 5vw, 50px) min(5%, 50px);
    border-radius: min(5vw, 20px);
    display: flex;
    flex-wrap: wrap;
    gap: calc(clamp(20px, 5vw, 50px) * 0.75) 5%;
}
.cmn_morning_figure {
    width: 35%;
}
@media (max-width: 840px) {
    .cmn_morning_figure {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
}
.cmn_morning_unit {
    width: 60%;
}
@media (max-width: 840px) {
    .cmn_morning_unit {
        width: 100%;
    }
}
.cmn_morning_copy {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1.6;
    display: block;
}
.cmn_morning_copy {
    font-size: 1.25em;
    margin-bottom: 0.5em;
}
.cmn_flow_content {
    position: relative;
}
.cmn_flow_first, .cmn_flow_last {
    display: block;
    background-color: rgba(237, 114, 170, 0.3);
    font-weight: 500;
    text-align: center;
    border-radius: min(5vw, 10px);
    padding: 1em min(1em, 2.5%);
    font-size: 1.15em;
}
.cmn_flow_morning {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #f9eee1;
    padding: 1em min(1em, 2.5%);
    border-radius: min(5vw, 10px);
    font-size: 1.15em;
    margin-top: 1em;
}
@media (max-width: 840px) {
    .cmn_flow_morning {
        flex-direction: column;
        align-items: flex-start;
    }
}
.cmn_flow_morning::before {
    content: "";
    position: absolute;
    left: calc(min(1em, 2.5%) * 1.235);
    bottom: -2em;
    width: 0.15em;
    height: 100%;
    border-right: 0.15em dotted #d8d4d5;
}
.cmn_flow_morning .morning_term {
    white-space: nowrap;
    flex: 0 0 120px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
    position: relative;
    padding-left: 3em;
    z-index: 5;
    translate: 0 0.1em;
}
@media (max-width: 840px) {
    .cmn_flow_morning .morning_term {
        flex: 0 0 100%;
    }
}
.cmn_flow_morning .morning_term::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.85em;
    height: 0.85em;
    background-color: #ed72aa;
    border-radius: 50px;
}
.cmn_flow_morning .morning_term::before {
    top: 50%;
    background-color: #ffba57;
}
.cmn_flow_morning .morning_desc {
    flex: 1;
    min-width: 0;
    padding-left: 1em;
    font-weight: 500;
    position: relative;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0 0.5em;
}
.cmn_flow_morning .morning_desc::before {
    content: "";
    display: block;
    width: 1.25em;
    height: 1.25em;
    background-image: url(../img/dayservice/icon_sun.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 840px) {
    .cmn_flow_morning .morning_desc {
        flex: 0 0 100%;
        padding-left: 3em;
    }
}
.cmn_flow_list {
    display: flex;
    flex-direction: column;
    font-size: 1.15em;
    margin: 0.5em min(1em, 2.5%) 0.75em;
}
.cmn_flow_item {
    display: flex;
    align-items: center;
    position: relative;
}
@media (max-width: 840px) {
    .cmn_flow_item {
        flex-direction: column;
        align-items: flex-start;
    }
}
.cmn_flow_item::before {
    content: "";
    position: absolute;
    left: 0.35em;
    bottom: -1.75em;
    width: 0.15em;
    height: 100%;
    background-color: #d8d4d5;
}
.cmn_flow_item:last-child::before {
    display: none;
}
.cmn_flow_item:last-child .flow_desc::before {
    display: none;
}
.cmn_flow_term {
    white-space: nowrap;
    flex: 0 0 120px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
    position: relative;
    padding-left: 3em;
    z-index: 5;
    translate: 0 0.1em;
}
@media (max-width: 840px) {
    .cmn_flow_term {
        flex: 0 0 100%;
        padding-top: 0.5em;
    }
}
.cmn_flow_term::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.85em;
    height: 0.85em;
    background-color: #ed72aa;
    border-radius: 50px;
}
@media (max-width: 840px) {
    .cmn_flow_term::before {
        top: calc(52.5% + 0.175em);
    }
}
.cmn_flow_desc {
    flex: 1;
    min-width: 0;
    padding-left: 1em;
    font-weight: 500;
    line-height: 1.6;
    padding: 1em 0 1em 1em;
    position: relative;
}
@media (max-width: 840px) {
    .cmn_flow_desc {
        width: 100%;
        flex: 0 0 100%;
        padding: 0em 0 1em 3em;
    }
}
.cmn_flow_desc::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: 0;
    width: calc(100% + 80px);
    height: 1px;
    background-color: #d8d4d5;
}
@media (max-width: 840px) {
    .cmn_flow_desc::before {
        left: 3em;
        width: calc(100% - 3em);
    }
}
.cmn_flow_desc .mintxt {
    font-size: 0.85em;
}
.cmn_flow_illust {
    position: absolute;
    top: -5%;
    right: 0;
    width: 25%;
}
@media (max-width: 840px) {
    .cmn_flow_illust {
        display: none;
    }
}
.cmn_contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: rgb(255, 197, 228);
    background: linear-gradient(90deg, rgb(255, 197, 228) 0%, rgb(255, 229, 211) 100%);
    margin: calc(clamp(20px, 5vw, 50px) * 1.5) auto 0;
    max-width: 840px;
    padding: calc(clamp(20px, 5vw, 50px) * 0.75) min(5%, 50px);
    gap: calc(clamp(20px, 5vw, 50px) * 0.5) calc(min(5%, 50px) * 1.5);
    border-radius: min(5vw, 20px);
}
.cmn_contact.-white {
    background: #fff;
}
.cmn_contact_copy {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    line-height: 1.45;
    display: block;
}
.cmn_contact_copy {
    font-weight: 700;
    text-align: center;
}
.cmn_contact_tel {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cmn_contact_tel .tel_link {
    font-size: calc(clamp(2rem, 3.2vw, 2.6rem) * 1.45);
    display: flex;
    align-items: baseline;
    line-height: 1.2;
}
.cmn_contact_tel .tel_link::before {
    content: "tel.";
    font-weight: 600;
    font-size: 0.85em;
    font-family: "Quicksand", sans-serif;
}
.cmn_contact_tel .tel_link span {
    font-weight: 600;
    line-height: inherit;
    font-family: "Quicksand", sans-serif;
}
.cmn_contact_tel .tel_link:hover {
    color: #ed72aa;
}
.cmn_contact_tel .tel_note {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-top: 0.15em;
}
.cmn_wave.-top {
    position: relative;
}
.cmn_wave.-top::before {
    content: "";
    position: absolute;
    top: -98.5px;
    left: 50%;
    translate: -50% 0;
    width: calc(200vw + 1920px);
    height: 100px;
    background-image: url(../img/cmn/wave_top_01.png);
    background-size: 1920px 100px;
    background-repeat: repeat-x;
    -webkit-animation: wave-move 30s linear infinite;
    animation: wave-move 30s linear infinite;
}
@media (max-width: 840px) {
    .cmn_wave.-top::before {
        top: -58.5px;
        height: 60px;
        background-size: 840px 60px;
        -webkit-animation: wave-move-sp 60s linear infinite;
        animation: wave-move-sp 60s linear infinite;
    }
}
.cmn_wave.-top::after {
    content: "";
    position: absolute;
    top: -98.5px;
    left: 0;
    width: calc(200vw + 1920px);
    height: 100px;
    background-image: url(../img/cmn/wave_top_02.png);
    background-size: 1920px 100px;
    background-repeat: repeat-x;
    -webkit-animation: wave-move 60s linear infinite;
    animation: wave-move 60s linear infinite;
}
@media (max-width: 840px) {
    .cmn_wave.-top::after {
        top: -58.5px;
        height: 60px;
        background-size: 840px 60px;
        -webkit-animation: wave-move-sp 80s linear infinite;
        animation: wave-move-sp 80s linear infinite;
    }
}
.cmn_wave.-bottom {
    position: relative;
}
.cmn_wave.-bottom::before {
    content: "";
    position: absolute;
    bottom: -98.5px;
    left: 50%;
    translate: -50% 0;
    width: calc(200vw + 1920px);
    height: 100px;
    background-image: url(../img/cmn/wave_bottom_01.png);
    background-size: 1920px 100px;
    background-repeat: repeat-x;
    -webkit-animation: wave-move 30s linear infinite;
    animation: wave-move 30s linear infinite;
}
@media (max-width: 840px) {
    .cmn_wave.-bottom::before {
        bottom: -58.5px;
        height: 60px;
        background-size: 840px 60px;
        -webkit-animation: wave-move-sp 60s linear infinite;
        animation: wave-move-sp 60s linear infinite;
    }
}
.cmn_wave.-bottom::after {
    content: "";
    position: absolute;
    bottom: -98.5px;
    left: 0;
    width: calc(200vw + 1920px);
    height: 100px;
    background-image: url(../img/cmn/wave_bottom_02.png);
    background-size: 1920px 100px;
    background-repeat: repeat-x;
    -webkit-animation: wave-move 60s linear infinite;
    animation: wave-move 60s linear infinite;
}
@media (max-width: 840px) {
    .cmn_wave.-bottom::after {
        bottom: -58.5px;
        height: 60px;
        background-size: 840px 60px;
        -webkit-animation: wave-move-sp 80s linear infinite;
        animation: wave-move-sp 80s linear infinite;
    }
}
.cmn_pagenation {
    padding: 30px 0 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5em 1.5em;
}
.cmn_pagenation .page-numbers {
    display: inline-block;
    display: flex;
    font-size: 1.15em;
    font-family: "Quicksand", sans-serif;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}
.cmn_pagenation .page-numbers.current {
    color: #ed72aa;
}
.cmn_pagenation .page-numbers.dots {
    pointer-events: none;
}
.cmn_pagenation .page-numbers:hover {
    color: #ed72aa;
}
.cmn_pagenation .prev,
.cmn_pagenation .next {
    width: 1.5em;
    height: 1.5em;
    position: relative;
}
.cmn_pagenation .prev::before,
.cmn_pagenation .next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 50%;
    height: 50%;
    background-color: #fff;
    background-color: #ed72aa;
    -webkit-mask-image: url(../img/cmn/icon_arrow.svg);
    mask-image: url(../img/cmn/icon_arrow.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: 10;
    transition: background-color 0.5s, left 0.5s;
}
.cmn_pagenation .prev::before {
    rotate: 180deg;
}
.cmn_pagenation .prev:hover::before {
    left: 40%;
}
.cmn_pagenation .next:hover::before {
    left: 60%;
}

@-webkit-keyframes wave-move {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-1920px);
        transform: translateX(-1920px);
    }
}

@keyframes wave-move {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-1920px);
        transform: translateX(-1920px);
    }
}
@-webkit-keyframes wave-move-sp {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-840px);
        transform: translateX(-840px);
    }
}
@keyframes wave-move-sp {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-840px);
        transform: translateX(-840px);
    }
}