@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Zen Kaku Gothic New", sans-serif;
    --font-en: "Special Elite", system-ui;
    --color-white: #ffffff;
    --color-black: #101010;
    --inner-width: 1200px;
    --inner-outer-width: calc(min(50vw, 1920px / 2) - min(var(--inner-width) / 0.88, min(100vw, 1920px)) * 0.44);
    --header-height: 100px;
}
@media (max-width: 1280px) {
    :root {
        --header-height: 80px;
    }
}
@media (max-width: 768px) {
    :root {
        --inner-outer-width: calc(50vw - min(var(--inner-width) / 0.88, 100vw) * 0.46);
        --header-height: 80px;
    }
}

.font-jp {
    font-family: var(--font-jp);
}

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: 1.8rem;
    line-height: 1.94;
    color: var(--color-white);
    background-color: #334632;
    font-weight: 500;
    font-family: var(--font-jp);
}
@media (max-width: 1440px) {
    html body {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    html body {
        font-size: 1.5rem;
    }
}

a {
    color: inherit;
    text-decoration: none;
    /*
    transition: opacity 0.2s ease-in;
    */
}
a:hover {
    text-decoration: none;
    /*
    opacity: 0.7;
    */
}

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

::selection {
    background: #a2ce9f;
    color: #fff;
}

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

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

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

.inner {
    width: min(100%, var(--inner-width) / 0.88);
    margin: 0 auto;
    padding: 0 min(6%, (var(--inner-width) / 0.88 - var(--inner-width)) / 2);
}
@media (max-width: 768px) {
    .inner {
        padding: 0 4%;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

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

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

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    visibility: hidden;
    display: block;
    width: 40px;
    height: 24px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: fixed;
    right: 30px;
    top: 28px;
    z-index: 200;
    padding-block-end: 0;
    padding-block-start: 0;
}
.menu-trigger span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--color-white);
    position: absolute;
    left: calc(50% - 15px);
    transition-property: top, left, transform, background-color;
    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: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: 1000px) {
    .menu-trigger {
        visibility: visible;
    }
}
@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: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
}
@media (max-width: 1440px) {
    header {
        font-size: 1.7rem;
        padding: 0 30px;
    }
}
header .header__logo {
    max-width: 178px;
}
@media (max-width: 1440px) {
    header .header__logo {
        max-width: 120px;
    }
}
@media (max-width: 768px) {
    header .header__logo {
        max-width: 93px;
    }
}
header .header__menu {
    display: flex;
    gap: 40px;
}
@media (max-width: 1440px) {
    header .header__menu {
        gap: 20px;
    }
}
@media (max-width: 1000px) {
    header .header__menu > a {
        display: none;
    }
}
header .header__menu .header__sns {
    display: flex;
    gap: 20px;
}
@media (max-width: 1000px) {
    header .header__menu .header__sns {
        padding-right: 60px;
        gap: 15px;
    }
}
header .header__menu .header__sns img {
    width: 38px;
}
@media (max-width: 768px) {
    header .header__menu .header__sns img {
        width: 28px;
    }
}

.nav {
    display: none;
}
@media (max-width: 1000px) {
    .nav {
        display: flex;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        background: #334632;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        z-index: 140;
        padding-top: 70px;
    }
    .nav.loaded {
        transition-duration: 0.8s;
        transition-delay: 0.4s;
    }
    .nav .wrapper .btn__wrapper {
        width: 100%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav .wrapper .btn__wrapper .nav__sp__logo {
        display: block;
        width: min(100%, 200px);
    }
    .nav .wrapper .nav__menu {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: calc(100% - 40px - 20px);
    }
    .nav .wrapper .nav__menu > a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 20px 0;
        border-bottom: 1px solid var(--color-black);
    }
}
.nav.active {
    transform: translateX(0);
    transition-delay: 0s;
}
.nav.active .wrapper {
    transition-delay: 0.8s;
    opacity: 1;
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .footer__logo {
    display: block;
    margin: 0 auto;
    max-width: 236px;
}
footer .footer__stduio__name {
    font-size: 2.5rem;
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.h2__container {
    text-align: center;
}
.h2__container .h2__en {
    color: #F4A980;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.2em;
    font-family: var(--font-en);
}
@media (max-width: 1440px) {
    .h2__container .h2__en {
        font-size: 2.6rem;
    }
}
@media (max-width: 768px) {
    .h2__container .h2__en {
        font-size: 2rem;
    }
}
.h2__container h2 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.46;
}
@media (max-width: 1440px) {
    .h2__container h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .h2__container h2 {
        font-size: 2.4rem;
    }
}

.h3__wh {
    font-size: 2.5rem;
    color: #3B2E22;
    display: flex;
    align-items: center;
    margin: 0 auto;
    background: #fff;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 50px;
    border-radius: 25px;
    padding: 0 20px;
    line-height: 1.44;
}
@media (max-width: 1440px) {
    .h3__wh {
        font-size: 2.1rem;
        min-height: 46px;
        border-radius: 23px;
    }
}
@media (max-width: 768px) {
    .h3__wh {
        font-size: 1.6rem;
        min-height: 40px;
        border-radius: 20px;
        padding: 0 15px;
    }
}

.following__cta {
    position: fixed;
    width: 240px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    right: 40px;
    bottom: 40px;
    color: #3B2E22;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.7rem;
    line-height: 1;
    z-index: 100;
    cursor: pointer;
}
@media (max-width: 768px) {
    .following__cta {
        display: none;
    }
}
.following__cta .cta__1 {
    margin-top: 10px;
    width: 113px;
}
.following__cta .cta__2 {
    margin-top: 13px;
    width: 33px;
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
main {
    padding-top: 120px;
}
@media (max-width: 144px) {
    main {
        padding-top: 100px;
    }
}
@media (max-width: 768px) {
    main {
        padding-top: 80px;
    }
}

.mv {
    width: calc(100% - 100px);
    margin: 0 auto;
    max-width: 1820px;
}
@media (max-width: 1000px) {
    .mv {
        width: calc(100% - 60px);
    }
}
.mv .swiper {
    padding-bottom: 60px;
}
@media (max-width: 768px) {
    .mv .swiper {
        padding-bottom: 30px;
        padding-bottom: unset;
    }
}
.mv .swiper .swiper-slide {
    border-radius: 50px;
}
@media (max-width: 1440px) {
    .mv .swiper .swiper-slide {
        border-radius: 25px;
    }
}
@media (max-width: 768px) {
    .mv .swiper .swiper-slide {
        border-radius: 10px;
    }
}
.mv .swiper .swiper-slide img {
    border-radius: inherit;
}
@media (max-width: 768px) {
    .mv .swiper .swiper-slide img {
        aspect-ratio: 340/560;
        -o-object-fit: cover;
           object-fit: cover;
    }
}
.mv .swiper .swiper-pagination-bullets {
    height: 11px;
    bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
@media (max-width: 768px) {
    .mv .swiper .swiper-pagination-bullets {
        height: 6px;
        gap: 10px;
        bottom: 5px;
        display: none;
    }
}
.mv .swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: unset;
    background: #fff;
    opacity: unset;
    width: 11px;
    height: 11px;
}
@media (max-width: 768px) {
    .mv .swiper .swiper-pagination-bullets .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }
}
.mv .swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #F4A980;
}
.mv .swiper .mv__txt {
    position: absolute;
    left: 0px;
    bottom: 100px;
    font-weight: 700;
    font-size: 6.9rem;
    text-shadow: 0px 3px 20px rgba(0, 0, 0, 0.25);
    z-index: 1;
    line-height: 1.23;
}
@media (max-width: 1440px) {
    .mv .swiper .mv__txt {
        font-size: 4.8rem;
        bottom: 80px;
    }
}
@media (max-width: 768px) {
    .mv .swiper .mv__txt {
        font-size: 3.6rem;
        bottom: 15px;
        left: unset;
        right: 0;
    }
}
.mv .swiper .mv__txt img {
    max-width: 516px;
    width: 27vw;
    margin-bottom: -5vw;
}
@media (max-width: 768px) {
    .mv .swiper .mv__txt img {
        width: 240px;
        position: relative;
        right: 100px;
        margin-bottom: -40px;
    }
}
.mv .swiper .mv__txt p {
    padding-left: 2em;
}
@media (max-width: 768px) {
    .mv .swiper .mv__txt p {
        padding-left: unset;
    }
}

.point .border {
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
    box-shadow: inset 0 0.4em 0px 0.1em #334632, inset 0 0 0 1em #A34917;
    border-radius: 1em;
}
.point .point__container {
    display: flex;
    gap: 45px;
}
@media (max-width: 1440px) {
    .point .point__container {
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .point .point__container {
        flex-direction: column;
        row-gap: 60px;
    }
}
.point .point__container > div {
    position: relative;
    width: calc((100% - 90px) / 3);
}
@media (max-width: 1440px) {
    .point .point__container > div {
        width: calc((100% - 50px) / 3);
    }
}
@media (max-width: 768px) {
    .point .point__container > div {
        width: 100%;
    }
}
.point .point__container > div .num {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #E8CD5B;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    line-height: 1;
    padding-bottom: 10px;
    transform: translate(-30%, -50%);
}
.point .point__container > div .num.gr {
    background: #A2CE9E;
}
.point .point__container > div .num.rd {
    background: #F4A980;
}
@media (max-width: 1440px) {
    .point .point__container > div .num {
        width: 60px;
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .point .point__container > div .num {
        width: 50px;
        font-size: 3.2rem;
        transform: translate(-10px, -50%);
    }
}
.point .point__container > div img {
    border-radius: 10px;
}
@media (max-width: 768px) {
    .point .point__container > div img {
        border-radius: 5px;
    }
}
.point .point__container > div h4 {
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 2.6rem;
    text-align: center;
    line-height: 1.42;
}
@media (max-width: 1440px) {
    .point .point__container > div h4 {
        margin-top: 25px;
        margin-bottom: 20px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .point .point__container > div h4 {
        margin-top: 15px;
        margin-bottom: 10px;
        font-size: 1.8rem;
    }
}
.point .point__container > div p {
    line-height: 1.44;
}
.point .txt {
    line-height: 2.78;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .point .txt {
        line-height: 2;
    }
}
.point .h2__solution {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    gap: 27px;
    align-items: center;
}
@media (max-width: 1440px) {
    .point .h2__solution {
        gap: 22px;
    }
}
@media (max-width: 768px) {
    .point .h2__solution {
        gap: 15px;
    }
}
.point .h2__solution::before, .point .h2__solution::after {
    content: "";
    display: block;
    width: 44px;
    aspect-ratio: 44/70;
    background: url(../img/solution_left.webp) center/contain no-repeat;
}
@media (max-width: 1440px) {
    .point .h2__solution::before, .point .h2__solution::after {
        width: 35px;
    }
}
@media (max-width: 768px) {
    .point .h2__solution::before, .point .h2__solution::after {
        width: 25px;
    }
}
.point .h2__solution::after {
    background: url(../img/solution_right.webp) center/contain no-repeat;
}
.point .point__bg__1 {
    position: relative;
}
.point .point__bg__1::before {
    content: "";
    position: absolute;
    top: 67%;
    left: 10%;
    aspect-ratio: 218/127;
    width: 11%;
    background: url(../img/point_bg_1.webp) center/contain no-repeat;
    z-index: -1;
}
@media (max-width: 768px) {
    .point .point__bg__1::before {
        top: 50%;
        left: 3%;
        width: 90px;
    }
}
.point .point__bg__1::after {
    content: "";
    position: absolute;
    top: 67%;
    right: 8%;
    aspect-ratio: 135/165;
    width: 7%;
    background: url(../img/point_bg_2.webp) center/contain no-repeat;
    z-index: -1;
}
@media (max-width: 768px) {
    .point .point__bg__1::after {
        top: 50%;
        right: 3%;
        width: 70px;
    }
}
.point .point__bg__2 {
    position: relative;
}
.point .point__bg__2::before {
    content: "";
    position: absolute;
    bottom: 1%;
    left: 3%;
    aspect-ratio: 126/82;
    width: 6.6%;
    background: url(../img/point_bg_3.webp) center/contain no-repeat;
    z-index: -1;
}
@media (max-width: 768px) {
    .point .point__bg__2::before {
        bottom: unset;
        top: 27%;
        left: unset;
        right: 4%;
        width: 60px;
    }
}
.point .point__bg__2::after {
    content: "";
    position: absolute;
    bottom: 12%;
    right: 3%;
    aspect-ratio: 200/159;
    width: 10%;
    background: url(../img/point_bg_4.webp) center/contain no-repeat;
    z-index: -1;
}
@media (max-width: 768px) {
    .point .point__bg__2::after {
        bottom: 0%;
        right: 4%;
        width: 80px;
    }
}
.point .point__bg__3 {
    position: relative;
}
.point .point__bg__3::before {
    content: "";
    position: absolute;
    bottom: 33%;
    left: 10%;
    aspect-ratio: 246/148;
    width: 12.8%;
    background: url(../img/point_bg_5.webp) center/contain no-repeat;
    z-index: -1;
}
@media (max-width: 768px) {
    .point .point__bg__3::before {
        bottom: unset;
        top: 1%;
        left: 3%;
        width: 90px;
    }
}
.point .point__bg__3::after {
    content: "";
    position: absolute;
    bottom: 40%;
    right: 10%;
    aspect-ratio: 185/109;
    width: 9.6%;
    background: url(../img/point_bg_6.webp) center/contain no-repeat;
    z-index: -1;
}
@media (max-width: 768px) {
    .point .point__bg__3::after {
        bottom: 1%;
        right: 4%;
        width: 70px;
    }
}

.learn .learn__container__1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
    line-height: 1.44;
}
@media (max-width: 1440px) {
    .learn .learn__container__1 {
        max-width: 580px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .learn .learn__container__1 {
        gap: 30px 10px;
    }
}
.learn .learn__container__1 > div {
    width: calc((100% - 120px) / 4);
}
@media (max-width: 1440px) {
    .learn .learn__container__1 > div {
        width: min(270px, (100% - 40px) / 2);
    }
}
@media (max-width: 768px) {
    .learn .learn__container__1 > div {
        width: calc((100% - 10px) / 2);
    }
}
.learn .learn__container__1 > div img {
    max-width: 210px;
    margin: 0 auto;
}
.learn .learn__container__1 > div h4 {
    font-size: 2.6rem;
    margin: 20px auto;
}
@media (max-width: 1440px) {
    .learn .learn__container__1 > div h4 {
        font-size: 2.2rem;
        margin: 15px auto;
    }
}
@media (max-width: 768px) {
    .learn .learn__container__1 > div h4 {
        font-size: 1.9rem;
    }
}
.learn .learn__container__2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.44;
    gap: 75px;
}
@media (max-width: 1440px) {
    .learn .learn__container__2 {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .learn .learn__container__2 {
        gap: 30px 10px;
    }
}
.learn .learn__container__2 > div {
    width: calc((100% - 150px) / 3);
}
@media (max-width: 1440px) {
    .learn .learn__container__2 > div {
        width: calc((100% - 40px) / 3);
    }
}
@media (max-width: 768px) {
    .learn .learn__container__2 > div {
        width: calc((100% - 10px) / 2);
    }
}
.learn .learn__container__2 > div img {
    max-width: 210px;
    margin: 0 auto;
}
.learn .learn__container__2 > div h4 {
    font-size: 2.6rem;
    margin: 10px auto 20px;
}
@media (max-width: 1440px) {
    .learn .learn__container__2 > div h4 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .learn .learn__container__2 > div h4 {
        font-size: 1.9rem;
    }
}
.learn .learn__bg__1 {
    position: relative;
}
.learn .learn__bg__1::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 8%;
    aspect-ratio: 216/258;
    width: 11%;
    background: url(../img/learn_bg_1.webp) center/contain no-repeat;
    z-index: -1;
}
@media (max-width: 768px) {
    .learn .learn__bg__1::before {
        top: 5%;
        left: 4%;
        width: 90px;
    }
}
.learn .learn__bg__1::after {
    content: "";
    position: absolute;
    top: 34%;
    right: 10%;
    aspect-ratio: 81/213;
    width: 4.2%;
    background: url(../img/learn_bg_2.webp) center/contain no-repeat;
    z-index: -1;
}
@media (max-width: 768px) {
    .learn .learn__bg__1::after {
        top: 5%;
        right: 4%;
        width: 40px;
    }
}
.learn .learn__bg__2 {
    position: relative;
}
.learn .learn__bg__2::before {
    content: "";
    position: absolute;
    top: 46%;
    left: 10%;
    aspect-ratio: 227/121;
    width: 11.8%;
    background: url(../img/learn_bg_3.webp) center/contain no-repeat;
    z-index: -1;
}
@media (max-width: 768px) {
    .learn .learn__bg__2::before {
        top: 5%;
        left: 4%;
        width: 90px;
    }
}
.learn .learn__bg__2::after {
    content: "";
    position: absolute;
    top: 0;
    right: 12%;
    aspect-ratio: 210/193;
    width: 10.9%;
    background: url(../img/learn_bg_4.webp) center/contain no-repeat;
    z-index: -1;
}
@media (max-width: 768px) {
    .learn .learn__bg__2::after {
        top: 7%;
        right: 4%;
        width: 80px;
    }
}

.slider .swiper-wrapper {
    transition-timing-function: linear;
}

.greeting .txt {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 2.22;
}
.greeting .greeting__wrapper {
    position: relative;
    padding: 0 35px;
}
.greeting .greeting__wrapper .border__top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8.5px;
    background: url(../img/border.webp) left top/auto 100% repeat;
}
.greeting .greeting__wrapper .border__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8.5px;
    background: url(../img/border.webp) left top/auto 100% repeat;
}
.greeting .greeting__wrapper .border__left {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 0;
    width: 8.5px;
    background: url(../img/border_vertical.webp) left top/100% auto repeat;
}
.greeting .greeting__wrapper .border__right {
    position: absolute;
    top: 6px;
    bottom: 6px;
    right: 0;
    width: 8.5px;
    background: url(../img/border_vertical.webp) left top/100% auto repeat;
}

.information .information__logo {
    max-width: 259px;
    margin: 0 auto;
}
.information .information__table {
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    line-height: 1.44;
}
.information .information__table > tbody > tr {
    background-image: radial-gradient(circle, #ffffff 1.5px, transparent 1.5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 12px 3px;
}
.information .information__table > tbody > tr > th, .information .information__table > tbody > tr > td {
    padding: 40px 0;
}
@media (max-width: 1440px) {
    .information .information__table > tbody > tr > th, .information .information__table > tbody > tr > td {
        padding: 25px 0;
    }
}
@media (max-width: 768px) {
    .information .information__table > tbody > tr > th, .information .information__table > tbody > tr > td {
        padding: 15px 0;
    }
}
.information .information__table > tbody > tr > th {
    white-space: nowrap;
    padding-right: 55px;
    text-align: center;
}
@media (max-width: 1440px) {
    .information .information__table > tbody > tr > th {
        padding-right: 40px;
    }
}
@media (max-width: 768px) {
    .information .information__table > tbody > tr > th {
        padding-right: 15px;
    }
}
.information .information__table > tbody > tr > td {
    width: 100%;
}
@media (max-width: 768px) {
    .information .information__table > tbody > tr > td tr {
        display: flex;
        flex-direction: column;
    }
}
.information .information__table > tbody > tr > td th {
    padding-right: 25px;
}
@media (max-width: 768px) {
    .information .information__table > tbody > tr > td th {
        padding-right: 15px;
        padding-bottom: 15px;
    }
}
.information .information__table > tbody > tr > td td {
    padding-right: 15px;
}
@media (max-width: 768px) {
    .information .information__table > tbody > tr > td td {
        padding-right: 10px;
    }
}
.information .information__table > tbody > tr > td td:last-child {
    text-align: right;
    padding-right: unset;
}
.information .information__table .sm {
    font-size: 0.8em;
}
.information .sns__header {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3B2E22;
    background: #fff;
    width: 110px;
    height: 40px;
    border-radius: 20px;
    margin: 0 auto;
}
@media (max-width: 1440px) {
    .information .sns__header {
        width: 90px;
        height: 36px;
        border-radius: 18px;
    }
}
.information .sns__container {
    display: flex;
    justify-content: center;
    gap: 40px;
}
@media (max-width: 1440px) {
    .information .sns__container {
        gap: 30px;
    }
}
.information .sns__container a {
    display: block;
    width: 58px;
}
@media (max-width: 1440px) {
    .information .sns__container a {
        width: 45px;
    }
}
.information h3.font40 {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
}
@media (max-width: 1440px) {
    .information h3.font40 {
        font-size: 3.2rem;
    }
}
@media (max-width: 768px) {
    .information h3.font40 {
        font-size: 2.4rem;
    }
}
.information .timetable {
    width: min(100%, 530px);
    margin: 0 auto;
    line-height: 1.44;
}
.information .timetable th {
    white-space: nowrap;
    padding-right: 20px;
}
@media (max-width: 768px) {
    .information .timetable th {
        padding-right: 10px;
    }
}
.information .timetable td {
    width: 100%;
}
.information .notice__list {
    width: min(1070px, 100%);
    margin: 0 auto;
    line-height: 2.22;
}
@media (max-width: 768px) {
    .information .notice__list {
        line-height: 1.9;
    }
}
.information .notice__list li {
    position: relative;
    padding-left: 1em;
}
.information .notice__list li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
.information .information__bg__1 {
    position: relative;
}
.information .information__bg__1::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: 14%;
    top: 9%;
    width: 7.9%;
    aspect-ratio: 152/126;
    background: url(../img/information_bg_1.webp) center/contain no-repeat;
}
@media (max-width: 768px) {
    .information .information__bg__1::before {
        top: -1%;
        width: 70px;
        right: 4%;
    }
}
.information .information__bg__1::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 14%;
    top: 27%;
    width: 12.7%;
    aspect-ratio: 244/209;
    background: url(../img/information_bg_2.webp) center/contain no-repeat;
}
@media (max-width: 768px) {
    .information .information__bg__1::after {
        left: 4%;
        top: 2%;
        width: 90px;
    }
}
.information .information__bg__2 {
    position: relative;
}
.information .information__bg__2::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: 14%;
    top: -26%;
    width: 12.9%;
    aspect-ratio: 247/157;
    background: url(../img/information_bg_3.webp) center/contain no-repeat;
}
@media (max-width: 768px) {
    .information .information__bg__2::before {
        top: 0;
        width: 90px;
        right: 4%;
    }
}
.information .information__bg__2::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 15%;
    bottom: -7%;
    width: 11.5%;
    aspect-ratio: 221/173;
    background: url(../img/information_bg_4.webp) center/contain no-repeat;
}
@media (max-width: 768px) {
    .information .information__bg__2::after {
        left: 4%;
        bottom: 5%;
        width: 90px;
    }
}

.advisor .advisor__container {
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .advisor .advisor__container {
        flex-direction: column;
        row-gap: 30px;
    }
}
.advisor .advisor__container .img, .advisor .advisor__container .txt {
    width: 50%;
}
@media (max-width: 768px) {
    .advisor .advisor__container .img, .advisor .advisor__container .txt {
        width: 100%;
    }
}
.advisor .advisor__container .img img {
    border-radius: 30px;
}
@media (max-width: 1440px) {
    .advisor .advisor__container .img img {
        border-radius: 20px;
    }
}
@media (max-width: 768px) {
    .advisor .advisor__container .img img {
        border-radius: 10px;
    }
}
.advisor .advisor__container .txt {
    padding-left: 100px;
    line-height: 2.22;
}
@media (max-width: 1440px) {
    .advisor .advisor__container .txt {
        padding-left: 50px;
    }
}
@media (max-width: 768px) {
    .advisor .advisor__container .txt {
        padding-left: unset;
    }
}
.advisor .advisor__container .txt .font26 {
    font-size: 2.6rem;
    line-height: 1.42;
}
@media (max-width: 1440px) {
    .advisor .advisor__container .txt .font26 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .advisor .advisor__container .txt .font26 {
        font-size: 1.8rem;
    }
}

.faq .accordion {
    cursor: pointer;
    max-width: 800px;
    margin: 0 auto;
}
.faq dl {
    display: flex;
    gap: 15px;
    padding: 20px 0;
}
@media (max-width: 768px) {
    .faq dl {
        gap: 10px;
        padding: 10px 0;
    }
}
.faq dl dt {
    white-space: nowrap;
}
.faq dl dd {
    flex: 1 1;
}
.faq dl.border {
    background-image: radial-gradient(circle, #ffffff 1.5px, transparent 1.5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 12px 3px;
}
.faq .faq__bg__1 {
    position: relative;
}
.faq .faq__bg__1::before {
    content: "";
    position: absolute;
    top: 0;
    right: 20%;
    width: 8.4%;
    aspect-ratio: 161/202;
    background: url(../img/faq_bg_1.webp) center/contain no-repeat;
}
@media (max-width: 768px) {
    .faq .faq__bg__1::before {
        right: 4%;
        width: 80px;
    }
}

.contact {
    background: url(../img/contact_bg.webp) center/cover no-repeat;
    text-align: center;
}
.contact .h2__container h2 {
    font-size: 3.5rem;
}
@media (max-width: 1440px) {
    .contact .h2__container h2 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .contact .h2__container h2 {
        font-size: 2.2rem;
    }
}
.contact .font25 {
    font-size: 2.5rem;
    line-height: 1.44;
}
@media (max-width: 1440px) {
    .contact .font25 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .contact .font25 {
        font-size: 1.8rem;
    }
}
.contact .qr__box {
    display: block;
    max-width: 216px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
}
.contact .ig__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    width: 413px;
    height: 81px;
    border-radius: 41px;
    background: #fff;
    margin: 0 auto;
    color: #3B2E22;
    font-size: 2rem;
    line-height: 1.45;
}
@media (max-width: 768px) {
    .contact .ig__link {
        padding: 0 20px;
        width: min(100%, 300px);
        height: 60px;
        border-radius: 30px;
        font-size: 1.6rem;
    }
}
.contact .ig__link img {
    width: 47px;
    aspect-ratio: 1;
}
@media (max-width: 768px) {
    .contact .ig__link img {
        width: 36px;
    }
}
.contact .contact__btn {
    justify-content: center;
    font-size: 2.4rem;
}
@media (max-width: 768px) {
    .contact .contact__btn {
        font-size: 2rem;
    }
}

.header__logo,
.header__sns a,
.information .sns__container a,
footer a {
    transition-duration: 0.3s;
    transition-timing-function: ease;
}
.header__logo:hover,
.header__sns a:hover,
.information .sns__container a:hover,
footer a:hover {
    opacity: 0.5;
}

.header__menu > a {
    position: relative;
}
.header__menu > a::before {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background-color: #F4A980;
    position: absolute;
    left: 0;
    bottom: 0;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}
.header__menu > a:hover::before {
    width: 100%;
}

.following__cta:hover {
    animation: cta_hover 1s ease-in-out 0s infinite normal;
}

@keyframes cta_hover {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
.contact .contact__btn,
.contact .ig__link {
    border: 2px #fff solid;
    transition-duration: 0.3s;
}
.contact .contact__btn:hover,
.contact .ig__link:hover {
    background-color: transparent;
    color: #fff;
}

.contact .qr__box img {
    transition-duration: 0.3s;
    transition-timing-function: ease;
}
.contact .qr__box:hover img {
    opacity: 0.5;
}

.faq dl.border {
    transition-duration: 0.3s;
}
.faq dl.border:hover {
    color: #F4A980;
}/*# sourceMappingURL=style.css.map */