@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Comfortaa", sans-serif;
    --font-zg: "Zen Maru Gothic", sans-serif;
    --color-black: #2B2525;
    --header-height: 90px;
}
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
}

html {
    font-size: 62.5%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 2rem;
    line-height: 2;
    color: var(--color-black);
    background-color: #ffffff;
    font-weight: 500;
    font-family: var(--font-jp);
}
@media (max-width: 1280px) {
    html body {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    html body {
        font-size: 1.6rem;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

.sp {
    display: none;
}
@media (max-width: 768px) {
    .sp {
        display: block;
    }
}

.red {
    color: #C84832;
}

@media (max-width: 768px) {
    .pc768 {
        display: none;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    display: none;
    width: 40px;
    height: 24px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 35px;
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
}
.menu-trigger span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--color-black);
    position: absolute;
    left: calc(50% - 15px);
    transition-duration: 0.6s;
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - 8px);
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + 8px);
}
.menu-trigger span:nth-of-type(3) {
    top: 50%;
}
.menu-trigger.opened span {
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu-trigger.opened span:nth-of-type(1) {
    animation-name: menu-close_01;
}
.menu-trigger.opened span:nth-of-type(2) {
    animation-name: menu-close_02;
}
.menu-trigger.opened span:nth-of-type(3) {
    animation-name: menu-close_03;
}
.menu-trigger.active span {
    background-color: var(--color-black);
}
.menu-trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
.menu-trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
.menu-trigger.active span:nth-of-type(3) {
    animation-name: menu-open_03;
}
@media (max-width: 768px) {
    .menu-trigger {
        top: 23px;
        right: 10px;
    }
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - 8px);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 8px);
        transform: rotate(0deg);
    }
}
@keyframes menu-open_03 {
    0% {
        width: 30px;
        left: calc(50% - 15px);
    }
    66.6666% {
        width: 30px;
        left: calc(50% - 15px);
    }
    70% {
        width: 0;
        left: calc(50% - 0px);
    }
    100% {
        width: 0;
        left: calc(50% - 0px);
    }
}
@keyframes menu-close_03 {
    0% {
        width: 0;
        left: calc(50% - 0px);
    }
    66.6666% {
        width: 30px;
        left: calc(50% - 15px);
    }
    70% {
        width: 30px;
        left: calc(50% - 15px);
    }
    100% {
        width: 30px;
        left: calc(50% - 15px);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + 8px);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 8px);
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    padding: 10px 40px 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
@media (max-width: 1280px) {
    header {
        padding: 10px 20px 10px 30px;
    }
}
@media (max-width: 768px) {
    header {
        padding: 5px 10px 5px 10px;
    }
}
header .header__logo {
    font-size: 2.2rem;
    font-weight: 500;
    max-width: 460px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #CB4545;
}
@media (max-width: 1280px) {
    header .header__logo {
        font-size: 1.7rem;
        gap: 5px;
    }
}
@media (max-width: 768px) {
    header .header__logo {
        font-size: 1.5rem;
    }
}
header .header__logo img {
    width: 60px;
}
@media (max-width: 1280px) {
    header .header__logo img {
        width: 50px;
    }
}
@media (max-width: 768px) {
    header .header__logo img {
        width: 35px;
    }
}
header .header__menu {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.6rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    header .header__menu {
        gap: 10px;
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    header .header__menu {
        display: none;
    }
}
header .header__menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 54px;
    border-radius: 27px;
    color: #fff;
    font-family: var(--font-zg);
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    header .header__menu a {
        width: 170px;
    }
}
header .header__menu a.line {
    background: #328E51;
    border: 1px solid #328E51;
}
header .header__menu a.line:hover {
    background: #fff;
    color: #328E51;
}
header .header__menu a.other {
    background: #C84832;
    border: 1px solid #C84832;
}
header .header__menu a.other:hover {
    background: #fff;
    color: #C84832;
}

.nav {
    display: none;
}
@media (max-width: 768px) {
    .nav {
        display: flex;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        color: #000;
        background: #fff;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        z-index: 999;
        padding-top: 70px;
    }
    .nav.ts0 {
        transition-duration: 0s;
        transition-delay: 0s;
    }
    .nav .nav__menu {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: calc(100% - 40px - 20px);
        gap: 20px;
    }
    .nav .nav__menu a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 240px;
        height: 54px;
        border-radius: 27px;
        color: #fff;
        font-family: var(--font-zg);
        transition: all 0.2s;
    }
}
@media (max-width: 768px) and (max-width: 1280px) {
    .nav .nav__menu a {
        width: 170px;
    }
}
@media (max-width: 768px) {
    .nav .nav__menu a.line {
        background: #328E51;
        border: 1px solid #328E51;
    }
    .nav .nav__menu a.line:hover {
        background: #fff;
        color: #328E51;
    }
    .nav .nav__menu a.other {
        background: #C84832;
        border: 1px solid #C84832;
    }
    .nav .nav__menu a.other:hover {
        background: #fff;
        color: #C84832;
    }
}
.nav.active {
    transform: translateX(0);
    transition-delay: 0s;
}
.nav.active .wrapper {
    transition-delay: 0.8s;
    opacity: 1;
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    background: #C84832;
    color: #fff;
    text-align: center;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 500;
}
@media (max-width: 768px) {
    footer {
        font-size: 1.2rem;
        margin-bottom: 80px;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
main {
    margin-top: var(--header-height);
    background: url(../img/bg.webp) top center/cover no-repeat, #FDF7F4;
}

.mv .inner {
    width: 76%;
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
}
@media (max-width: 1280px) {
    .mv .inner {
        width: 85%;
    }
}
@media (max-width: 768px) {
    .mv .inner {
        width: 90%;
        flex-direction: column-reverse;
        align-items: center;
        row-gap: 30px;
    }
}
.mv .inner .txt {
    width: 50%;
    min-width: 420px;
}
@media (max-width: 768px) {
    .mv .inner .txt {
        width: unset;
        min-width: unset;
    }
}
.mv h1 {
    font-family: var(--font-zg);
    color: #C84832;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .mv h1 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .mv h1 {
        font-size: 2.4rem;
    }
}
.mv .bg__wh {
    background: #fff;
    color: #CB4545;
    border-radius: 10px;
    padding: 5px 15px;
    width: -moz-fit-content;
    width: fit-content;
    font-family: var(--font-zg);
    font-size: 2.2rem;
    line-height: 1.6;
}
@media (max-width: 1280px) {
    .mv .bg__wh {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .mv .bg__wh {
        font-size: 1.6rem;
    }
}

.section__wrapper {
    padding: 0 15px;
}

.line__box {
    background: #FFFDF5;
    border: 2px solid #E87653;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
}
@media (max-width: 768px) {
    .line__box {
        border-radius: 15px;
    }
}
.line__box .line__logo {
    width: 50px;
    margin: 0 auto;
}
.line__box h2 {
    font-size: 3.6rem;
    font-weight: 700;
    color: #C84832;
    font-family: var(--font-zg);
}
@media (max-width: 1280px) {
    .line__box h2 {
        font-size: 2.6rem;
    }
}
@media (max-width: 768px) {
    .line__box h2 {
        font-size: 2rem;
    }
}
.line__box .h2__en {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-en);
    color: #C84832;
}
@media (max-width: 768px) {
    .line__box .h2__en {
        font-size: 1.4rem;
    }
}
.line__box .qr {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 10px;
    border: 2px solid #E87653;
}
.line__box .btn__friend {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #328E51;
    color: #fff;
    width: min(360px, 100%);
    height: 70px;
    border-radius: 35px;
    margin: 0 auto;
    font-size: 2.4rem;
    font-weight: 700;
    font-family: var(--font-zg);
    position: relative;
    border: 1px solid #328E51;
    transition: all 0.2s;
}
@media (max-width: 768px) {
    .line__box .btn__friend {
        width: min(280px, 100%);
        height: 60px;
        border-radius: 30px;
        font-size: 2rem;
    }
}
.line__box .btn__friend::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 22px;
    aspect-ratio: 22/7;
    background: url(../img/arrow.svg) center/contain no-repeat;
    transition: inherit;
}
.line__box .btn__friend:hover {
    background: #fff;
    color: #328E51;
}
.line__box .btn__friend:hover::before {
    background: url(../img/arrow_gr.svg) center/contain no-repeat;
}

.flow {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 30px;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    --webkit-backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 0 min(65px, 4%);
}
@media (max-width: 768px) {
    .flow {
        border-radius: 15px;
    }
}
.flow h2 {
    color: #C84832;
    font-family: var(--font-zg);
    font-size: 3.6rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .flow h2 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .flow h2 {
        font-size: 2rem;
    }
}
.flow .h2__en {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-en);
    color: #C84832;
}
@media (max-width: 768px) {
    .flow .h2__en {
        font-size: 1.4rem;
    }
}
.flow .line__img {
    max-width: 420px;
    margin: 0 auto;
}
.flow .flow__2 {
    position: relative;
}
.flow .flow__2 .flow__3 {
    position: absolute;
    width: 41%;
    left: -22%;
    bottom: 11%;
}
@media (max-width: 768px) {
    .flow .flow__2 .flow__3 {
        width: 35%;
        left: 0;
    }
}
.flow h3 {
    color: #328E51;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-zg);
}
.flow h3.bl {
    color: #294F96;
}
.flow h3 .sm {
    font-size: 1.6rem;
}
@media (max-width: 1280px) {
    .flow h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .flow h3 {
        font-size: 1.8rem;
    }
}

.list__container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}
@media (max-width: 768px) {
    .list__container {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}
.list__container.gr .box h3 {
    color: #328E51;
    border-bottom: 1px solid #328E51;
}
.list__container.bl .box h3 {
    color: #294F96;
    border-bottom: 1px solid #294F96;
}
.list__container .box {
    width: calc((100% - 20px) / 2);
    background: #FFFDF5;
    padding: 20px 10px;
}
@media (max-width: 768px) {
    .list__container .box {
        width: 100%;
        padding: 15px;
        max-width: 400px;
    }
}
.list__container .box h3 {
    color: #C84832;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    border-bottom: 1px solid #C84832;
    margin-bottom: 25px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.list__container .box h3.mh80 {
    min-height: 90px;
}
@media (max-width: 768px) {
    .list__container .box h3.mh80 {
        min-height: unset;
    }
}
@media (max-width: 1280px) {
    .list__container .box h3 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .list__container .box h3 {
        font-size: 1.7rem;
    }
}
.list__container .box .tel {
    font-size: 3rem;
    font-family: var(--font-en);
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.list__container .box .tel:hover {
    color: #C84832;
}
.list__container .box .tel .dedicated {
    color: #C84832;
    font-size: 1.4rem;
    border: 1px solid #C84832;
    padding: 4px 4px 2px;
}
.list__container .box .tel .sm {
    font-size: 2rem;
}
@media (max-width: 1280px) {
    .list__container .box .tel .sm {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .list__container .box .tel .sm {
        font-size: 1.6rem;
    }
}
@media (max-width: 1280px) {
    .list__container .box .tel {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .list__container .box .tel {
        font-size: 2rem;
    }
}
.list__container .box .time__table {
    margin: 0 auto;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .list__container .box .time__table {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .list__container .box .time__table {
        font-size: 1.6rem;
    }
}
.list__container .box .time__table th {
    text-align: right;
    padding-right: 15px;
}

.menu__floating {
    display: none;
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 10px;
    background: #fff;
    font-weight: 700;
    gap: 20px;
}
.menu__floating a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    color: #fff;
    flex: 1 1;
    transition: all 0.2s;
    height: 60px;
}
.menu__floating a:hover {
    background: #fff;
}
.menu__floating .line {
    background: #328E51;
    border: 1px solid #328E51;
}
.menu__floating .line:hover {
    color: #328E51;
}
.menu__floating .other {
    background: #C84832;
    border: 1px solid #C84832;
}
.menu__floating .other:hover {
    color: #C84832;
}
@media (max-width: 768px) {
    .menu__floating {
        display: flex;
    }
}/*# sourceMappingURL=style.css.map */