:root {
    --main_color: #EE86A1;
    --second_color: #333333;
    --third_color: #FCEAEE;
    --fourth_color: #4D4D4D;
    --fifth_color: #52B5B0;

    --font_weight_sm: 300;
    --font_weight_md: 400;
    --font_weight_lg: 500;
}

/* 共通 */
body {
    padding: 0;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: var(--font_weight_sm);
    color: var(--fourth_color);
}

h1, h2, h3, h4, h5, div, p, ul, li {
    margin: 0;
    padding: 0;
}
ul, li {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: var(--second_color);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
a:hover {
    color: var(--second_color);
    opacity: 0.7;
}

.section {
    margin-top: 100px;
}
.inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.second_inner {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.splide__pagination {
    bottom: -2.5em;
}
.splide__pagination__page {
    width: 10px;
    height: 10px;
    margin: 3px 5px;
}
.splide__pagination__page.is-active {
    background: var(--main_color);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.anime {
    opacity: 0;
}
.fadeIn{
    -webkit-animation-name:fadeInAnime;
            animation-name:fadeInAnime;
    -webkit-animation-duration:0.5s;
            animation-duration:0.5s;
    -webkit-animation-fill-mode:forwards;
            animation-fill-mode:forwards;
    opacity:0;
}
    
@-webkit-keyframes fadeInAnime{
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
    
@keyframes fadeInAnime{
    from {
    opacity: 0;
    }

    to {
    opacity: 1;
    }
}

/* スクロールを無効にするクラス */
.no-scroll {
    overflow: hidden;
    height: 100%;
}

.txt_br_sp {
    display: none;
}

.btn {
    position: relative;
    display: block;
    background-color: var(--main_color);
    padding: 10px;
    text-align: center;
    width: 350px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    letter-spacing: 0.1rem;
}
.btn::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 30px;
    transform: rotate(-45deg);
    width: 7px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.btn::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 30px;
    transform: rotate(45deg);
    width: 7px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.btn:hover {
    color: #fff;
}
.btn:hover::before {
    background: #fff;
}
.btn:hover::after {
    background: #fff;
}

@media only screen and (max-width: 1024px) {
    body {
        padding-top: 60px;
    }
    .section {
        margin-top: 50px;
    } 
    .inner {
        max-width: 700px;
    }
    .second_inner {
        max-width: 600px;
    }    
}
@media only screen and (max-width: 768px) {
    .inner {
        padding: 0 20px;
    }
    .second_inner {
        padding: 0 20px;
    }
    .splide__pagination {
        bottom: -1.5em;
    }
    .splide__pagination__page {
        width: 8px;
        height: 8px;
        margin: 3px 5px;
    }
    .txt_br_sp {
        display: block;
    }
}

/* hero */
.hero_img_box {
    position: relative;
}
.hero_link_img {
    position: absolute;
    top: 55%;
    left: 9%;
    width: 34vw;
}

/* sub_hero */
.sub_hero {
    width: 100%;
    height: 200px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../img/mv_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
.sub_hero_ttl_img {
    width: 120px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.sub_hero_ttl_img.removal {
    width: 300px;
}
.sub_hero_ttl {
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.2rem;
    font-weight: var(--font_weight_md);
    font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 768px) {
    .sub_hero {
        height: auto;
        padding-top: 25px;
        padding-bottom: 25px;
        margin-bottom: 10px;
    }
    .sub_hero_ttl_img.removal {
        width: 200px;
        margin-bottom: 10px;
    }
    .sub_hero_ttl {
        font-size: 16px;
    }
}

/* campaign */
.campaign {
    margin-top: 100px;
    margin-bottom: 50px;
}
.campaign_box {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.campaign_banner_box {
    width: 48%;
    height: auto;
}
.campaign_link {
    position: relative;
    display: block;
    border: 1px solid var(--second_color);
    padding: 10px;
    text-align: center;
    width: 350px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    letter-spacing: 0.1rem;
}
.campaign_link::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 30px;
    transform: rotate(-45deg);
    width: 7px;
    height: 1px;
    background: var(--second_color);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.campaign_link::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 30px;
    transform: rotate(45deg);
    width: 7px;
    height: 1px;
    background: var(--second_color);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.campaign_link:hover {
    color: #fff;
    background-color: var(--main_color);
    border: 1px solid var(--main_color);
}
.campaign_link:hover::before {
    background: #fff;
}
.campaign_link:hover::after {
    background: #fff;
}

@media only screen and (max-width: 768px) {
    .campaign {
        margin-top: 50px;
        margin-bottom: 30px;
    }
    .campaign_box {
        margin-bottom: 30px;
        display: block;
    }
    .campaign_banner_box {
        display: block;
        width: 100%;
        height: auto;
    }
    .campaign_banner_box:first-child {
        margin-bottom: 30px;
    }
    .campaign_link {
        width: 80%;
        font-size: 14px;
    }
    .campaign_link::before {
        top: 22px;
        right: 20px;
    }
    .campaign_link::after {
        top: 18px;
        right: 20px;
    }
}

/* explanation */
.explanation {
    width: 100%;
    height: 380px;
    background-image: url(../img/explanation.webp);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}
.explanation_txt {
    width: 55%;
    height: auto;
    padding-top: 130px;
    margin-left: 70px;
    letter-spacing: 0.15rem;
    line-height: 34px;
}

@media screen and (min-width:1024px) and ( max-width:1240px) {
    .explanation_txt {
        width: 50%;
        letter-spacing: 0.07rem;
    }
}
@media only screen and (max-width: 768px) {
    .explanation {
        height: 480px;
        background-position: bottom;
    }
    .explanation_txt {
        width: 100%;
        padding-top: 30px;
        margin-left: 0;
        line-height: 30px;
        font-size: 14px;
    }
}

/* reason */
.reason {
    margin-bottom: 50px;
}
.reason_ttl_box {
    position: relative;
    background-color: var(--main_color);
    text-align: center;
    padding: 40px 0;
}
.reason_ttl_box:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 20px solid transparent;
    border-top: 20px solid var(--main_color);
}
.reason_ttl {
    font-weight: var(--font_weight_sm);
    font-size: 25px;
    color: #fff;
    letter-spacing: 0.1rem;
    margin-bottom: 20px;
}
.reason_ttl_img {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
}
.reason_box {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.reason_item {
    width: 45%;
    margin-bottom: 50px;
}
.reason_img {
    margin-bottom: 30px;
}
.reason_txt {
    letter-spacing: 0.08rem;
    margin-left: 18px;
}

@media only screen and (max-width: 768px) {
    .reason_ttl_box {
        padding: 20px 0;
    }
    .reason_ttl_box:before {
        border: 10px solid transparent;
        border-top: 10px solid var(--main_color);
    }
    .reason_ttl {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .reason_ttl_img {
        width: 200px;
    }
    .reason_box {
        margin-top: 50px;
        display: block;
    }
    .reason_item {
        width: 100%;
        margin-bottom: 50px;
    }
    .reason_img {
        margin-bottom: 20px;
    }
    .reason_txt {
        margin-left: 0px;
        font-size: 14px;
    }
}

/* menu */
.menu {
    background-color: var(--third_color);
    padding-top: 50px;
    padding-bottom: 50px;
}

.menu_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}
.menu_item {
    position: relative;
    width: 47%;
    height: 250px;
    padding-top: 50px;
    background-color: var(--main_color);
    margin-bottom: 50px;
}
.menu_item_ttl {
    font-size: 38px;
    text-align: center;
    line-height: 44px;
    letter-spacing: 0.06rem;
    color: #fff;
}
.menu_item_link {
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 250px;
    text-align: center;
    padding: 10px 0;
    background-color: #fff;
    color: var(--main_color);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
}
.menu_item_link::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 50px;
    transform: rotate(-45deg);
    width: 7px;
    height: 1px;
    background: var(--main_color);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.menu_item_link::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 50px;
    transform: rotate(45deg);
    width: 7px;
    height: 1px;
    background: var(--main_color);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
@media only screen and (max-width: 768px) {
    .menu_box {
        display: block;
    }
    .menu_item {
        width: 100%;
        height: 200px;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .menu_item_ttl {
        font-size: 24px;
    }
}

.booking_link_box {
    margin-top: 50px;
}
.booking_link_box.about {
    margin-bottom: 100px;
}
.booking_link {
    position: relative;
    display: block;
    width: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--main_color);
    padding: 15px 0;
    color: #fff;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.1rem;
}
.booking_link::before {
    content: '';
    position: absolute;
    top: 34px;
    right: 50px;
    transform: rotate(-45deg);
    width: 10px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.booking_link::after {
    content: '';
    position: absolute;
    top: 27px;
    right: 50px;
    transform: rotate(45deg);
    width: 10px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.booking_link:hover {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .booking_link_box.about {
        margin-bottom: 50px;
    }
    .booking_link {
        font-size: 16px;
    }
    .booking_link::before {
        top: 31px;
        right: 60px;
    }
    .booking_link::after {
        top: 25px;
        right: 60px;
    }
}

/* access */
.access {
    margin-top: 100px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--main_color);
}
.access.no_border {
    border: none;
}
.access_ttl_img {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.access_map_box {
    margin-top: 50px;
    margin-bottom: 50px;
}
.access_txt {
    letter-spacing: 0.01rem;
}
.access_txt p {
    margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
    .access {
        margin-top: 50px;
    }
    .access_ttl_img {
        width: 250px;
    }
    .access_txt {
        font-size: 14px;
    }
}

/* banner */
.banner {
    margin-top: 50px;
    margin-bottom: 100px;
}
.banner_box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner_link {
    display: block;
    width: 45%;
}
.banner_link:first-child {
    margin-right: 50px;
}

@media only screen and (max-width: 768px) {
    .banner_box {
        display: block;
    }
    .banner_link {
        width: 100%;
    }
    .banner_link:first-child {
        margin-right: 0px;
        margin-bottom: 30px;
    }
}

/* message */
.message {
    margin-top: 50px;
}
.message_ttl_img {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.message_box {
    position: relative;
    display: flex;
    padding: 40px 60px 10px;
    background: #fff; /* 内側の背景色 */
    color: #333;
    z-index: 1;
    overflow: hidden;
}

.message_box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg, #FFD0E2, #FFD0E2, #fff, #FFD0E2, #FFD0E2);
    z-index: -1;
}

.message_box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    margin: 10px;
    z-index: 1;
}

.message_txt_box {
    position: relative;
    z-index: 2;
    width: 65%;
    padding-bottom: 30px;
    line-height: 32px;
    font-size: 15px;
}
.message_txt {
    letter-spacing: 0.07rem;
}
.message_txt:first-child {
    margin-bottom: 20px;
}
.message_txt_lg {
    font-size: 27px;
    font-weight: var(--font_weight_lg);
    margin-bottom: 10px;
}
.message_img {
    position: relative;
    z-index: 2;
    width: 35%;
}

@media only screen and (max-width: 1024px) {
    .message_ttl_img {
        width: 220px;
    }
    .message_box {
        display: block;
        padding: 40px 20px 10px;
    }
    .message_txt_box {
        width: 100%;
    }
    .message_img {
        width: 100%;
    }
}

/* company */
.company {
    margin-top: 100px;
}
.company_ttl_box {
    margin-bottom: 30px;
}
.company_ttl_img {
    width: 280px;
    margin-left: auto;
    margin-right: auto;
}
.company_box table {
    width: 100%;
    border-collapse: collapse; /* セルの境界線をまとめる */
}
.company_box th,.company_box td {
    padding: 20px 50px;
    text-align: center;
    border: 1px solid #999999;
    font-weight: var(--font_weight_lg);
    letter-spacing: 0.07rem;
}
@media only screen and (max-width: 1024px) {
    .company {
        margin-top: 50px;
    }
    .company_ttl_img {
        width: 220px;
    }
    .company_box th {
        min-width: 90px;
    }
    .company_box th, td {
        padding: 15px 10px;
    }
}


/* staff */
.staff {
    margin-top: 100px;
}
.staff_box {
    margin-top: 30px;
    padding: 0 30px;
}
.staff_item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 80px;
}
.staff_img {
    width: 25%;
    height: auto;
}
.staff_img img {
    -o-object-fit: contain;
       object-fit: contain;
}
.staff_info_box {
    width: 70%;
    font-weight: var(--font_weight_lg);
    letter-spacing: 0.07rem;
}
.staff_name_box {
    display: flex;
    margin-bottom: 30px;
    padding-left: 20px;
}
.staff_name {
    font-size: 27px;
    font-weight: var(--font_weight_lg);
    margin-right: 30px;
}
.staff_name_img {
    width: 204px;
}
.skill_txt {
    font-weight: var(--font_weight_lg);
    border-bottom: 3px dotted var(--main_color);
    padding-left: 20px;
    padding-bottom: 10px;
}
.skill_txt p {
    margin-bottom: 10px;
}
.staff_txt {
    padding-left: 20px;
    padding-top: 20px;
    line-height: 27px;
    font-weight: var(--font_weight_sm);
}

@media only screen and (max-width: 1024px) {
    .staff {
        margin-top: 0;
    }
    .staff_item {
        display: block;
        padding: 0;
        margin-bottom: 50px;
    }
    .staff_img {
        width: 100%;
        margin-bottom: 30px;
    }
    .staff_info_box {
        width: 100%;
    }
    .staff_name_box {
        display: block;
        padding-left: 00px;
    }
    .staff_name {
        margin-bottom: 10px;
    }
    .staff_name_img {
        width: 180px;
    }
    .skill_txt {
        padding-left: 0;
    }
    .skill_txt p {
        margin-bottom: 20px;
    }
    .staff_txt {
        padding-left: 0;padding-top: 30px;
    }
}


/* removal_part */
.removal_part_ttl {
    text-align: center;
}
.removal_part_ttl p {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.05rem;
}
.removal_part_ttl p::before {
    position: absolute;
    top: 30px;
    left: -70px;
    content: '';
    width: 46px;
    height: 3px;
    transform: rotate(49deg);
    -webkit-transform: rotate(49deg);
    -moz-transform: rotate(49deg);
    -ms-transform: rotate(49deg);
    -o-transform: rotate(49deg);
    background-color: var(--second_color);
}
.removal_part_ttl p::after {
    position: absolute;
    top: 30px;
    right: -50px;
    content: '';
    width: 46px;
    height: 3px;
    transform: rotate(130deg);
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    background-color: var(--second_color);
}
.removal_part_box {
    margin-top: 70px;
    padding: 0 70px;
}
.removal_part_subttl {
    margin-bottom: 30px;
}
.removal_part_subttl h2 {
    font-size: 26px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.05rem;
    color: var(--main_color);
}

@media only screen and (max-width: 768px) {
    .removal_part_ttl p {
        font-size: 14px;
    }
    .removal_part_ttl p::before {
        top: 30px;
        left: -30px;
        width: 26px;
    }
    .removal_part_ttl p::after {
        top: 30px;
        right: -30px;
        width: 26px;
    }
    .removal_part_box {
        margin-top: 30px;
        padding: 0;
    }
    .removal_part_subttl h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.removal_ttl_box {
    padding-left: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main_color);
}
.removal_ttl {
    font-size: 26px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.01rem;
    color: var(--main_color);
}
.removal_box {
    padding-top: 30px;
    padding-left: 30px;
    margin-bottom: 50px;
}
.removal_info {
    margin-bottom: 30px;
}
.removal_info:last-child {
    margin-bottom: 0;
}
.removal_subttl {
    font-size: 26px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.05rem;
    margin-bottom: 10px;
    color: var(--main_color);
}
.removal_txt {
    letter-spacing: 0.08rem;
    font-size: 18px;
}
.removal_img {
    margin-bottom: 10px;
}
.removal_link_box {
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .removal_ttl_box {
        padding-left: 0;
    }
    .removal_ttl {
        font-size: 18px;
    }
    .removal_box {
        padding-left: 0;
        padding-top: 20px;
        margin-bottom: 30px;
    }
    .removal_subttl {
        font-size: 16px;
    }
    .removal_txt {
        font-size: 14px;
    }
}

/* facial */
.facial_ttl_box {
    padding-left: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main_color);
}
.facial_ttl {
    font-size: 26px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.01rem;
}
.facial_box {
    padding-top: 30px;
    padding-left: 30px;
    margin-bottom: 50px;
}
.facial_info {
    position: relative;
    margin-bottom: 30px;
}
.facial_info:last-child {
    margin-bottom: 0;
}
.facial_subttl {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.05rem;
    margin-bottom: 30px;
    color: var(--main_color);
}
.facial_subttl.beauty {
    margin-top: 30px;
}
.facial_txt {
    position: relative;
    z-index: 2;
    width: 60%;
    letter-spacing: 0.08rem;
    line-height: 30px;
}
.facial_txt.beauty {
    width: 52%;
}
.facial_img {
    position: absolute;
    right: calc(-1*(100vw - 1000px) / 2);
    width: 573px;
    height: auto;
    margin-bottom: 10px;
}
.facial_img.beauty {
    top: -20px;
}
@media only screen and (max-width: 1024px) {
    .facial_img {
        position: absolute;
        right: calc(-1*(100vw - 700px) / 2);
        width: 573px;
        height: auto;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 768px) {
    .facial_ttl_box {
        padding-left: 0;
    }
    .facial_ttl {
        font-size: 18px;
    }
    .facial_box {
        padding-left: 0;
        padding-top: 20px;
        margin-bottom: 30px;
    }
    .facial_subttl {
        font-size: 16px;
    }
    .facial_txt {
        font-size: 14px;
        width: 100%;
    }
    .facial_img {
        position: unset;
        width: 100%;
    }
    .facial_subttl.beauty {
        margin-top: 0px;
    }
    .facial_txt.beauty {
        width: 100%;
    }
}

/* worries */
.worries_part_ttl {
    text-align: center;
}
.worries_part_ttl p {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.05rem;
}
.worries_part_ttl p::before {
    position: absolute;
    top: 20px;
    left: -70px;
    content: '';
    width: 46px;
    height: 3px;
    transform: rotate(56deg);
    -webkit-transform: rotate(56deg);
    -moz-transform: rotate(56deg);
    -ms-transform: rotate(56deg);
    -o-transform: rotate(56deg);
    background-color: var(--second_color);
}
.worries_part_ttl p::after {
    position: absolute;
    top: 20px;
    right: -50px;
    content: '';
    width: 46px;
    height: 3px;
    transform: rotate(123deg);
    -webkit-transform: rotate(123deg);
    -moz-transform: rotate(123deg);
    -ms-transform: rotate(123deg);
    -o-transform: rotate(123deg);
    background-color: var(--second_color);
}

.worries_box {
    background-color: var(--third_color);
    padding: 50px 0;
    margin-top: 40px;
}
.worries_info {
    display: flex;
    justify-content: space-between;
}
.worries_item {
    width: 23%;
    height: auto;
}
.worries_ttl_box {
    width: 80%;
    height: 0;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80%;
    /*正方形の比率を維持*/background-color: #fff;
    /*背景色*/border: 1px solid var(--main_color);
    position: relative;
    /*内部要素の位置を基準に*/
    margin-bottom: 20px;
    border-radius: 300px;
    -webkit-border-radius: 300px;
    -moz-border-radius: 300px;
    -ms-border-radius: 300px;
    -o-border-radius: 300px;
}
.worries_ttl_box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*中央に配置*/width: 100%;
    color: var(--main_color);
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.09rem;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.worries_txt {
    letter-spacing: 0.08rem;
}

@media only screen and (max-width: 768px) {
    .worries_part_ttl p {
        font-size: 16px;
    }
    .worries_part_ttl p::before {
        top: 12px;
        left: -30px;
        width: 26px;
    }
    .worries_part_ttl p::after {
        top: 12px;
        right: -30px;
        width: 26px;
    }
    .worries_box {
        padding: 30px 0;
        margin-top: 20px;
    }
    .worries_info {
        display: block;
    }
    .worries_item {
        width: 100%;
        margin-bottom: 30px;
    }
    .worries_item:last-child {
        margin-bottom: 0px;
    }
    .worries_ttl_box {
        width: 50%;
        padding-bottom: 50%;
    }
    .worries_ttl_box p {
        font-size: 20px;
    }
    .worries_txt {
        font-size: 14px;
    }
}

/* customers_voice */
.customers_voice_txt_box {
    padding-bottom: 20px;
    border-bottom: 3px dotted var(--fifth_color);
}
.customers_voice_ttl {
    font-size: 29px;
    text-align: center;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.11rem;
    color: var(--fifth_color);
    margin-bottom: 30px;
}
.customers_voice_txt {
    font-size: 22px;
    letter-spacing: 0.08rem;
    text-align: center;
}
.customers_voice_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 30px;
}
.customers_voice_item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32%;
    height: 90px;
    background-color: var(--fifth_color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-bottom: 20px;
}
.customers_voice_item_txt {
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.03rem;
    padding: 20px;
    color: #fff;
}

@media screen and (min-width:769px) and ( max-width:1024px) {
    .customers_voice_item_txt {
        font-size: 13px;
    }
}

@media only screen and (max-width: 768px) {
    .customers_voice_ttl {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .customers_voice_txt {
        font-size: 16px;
    }
    .customers_voice_info {
        display: block;
    }
    .customers_voice_item {
        width: 100%;
    }
}

/* massage */
.massage_box {
    background-color: var(--third_color);
    padding: 50px 0;
    margin-top: 40px;
}
.massage_info {
    display: flex;
    justify-content: space-between;
}
.massage_item {
    width: 32%;
    height: auto;
}

@media only screen and (max-width: 768px) {
    .massage_box {
        padding: 30px 0;
        margin-top: 20px;
    }
    .massage_info {
        display: block;
    }
    .massage_item {
        width: 100%;
        margin-bottom: 30px;
    }
    .massage_item:last-child {
        margin-bottom: 00px;
    }
}

/* mask */
.mask {
    margin-bottom: 100px;
}
.mask_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.mask_img {
    width: 42%;
}
.mask_txt_box {
    width: 55%;
}
.mask_ttl {
    color: var(--main_color);
    font-weight: var(--font_weight_md);
    font-size: 27px;
    letter-spacing: 0.09rem;
    margin-bottom: 30px;
}
.mask_txt {
    font-size: 18px;
    letter-spacing: 0.06rem;
    line-height: 30px;
}
.mask_img2 {
    display: none;
}

@media only screen and (max-width: 768px) {
    .mask {
        margin-bottom: 70px;
    }
    .mask_box {
        display: block;
    }
    .mask_img {
        display: none;
    }
    .mask_txt_box {
        width: 100%;
    }
    .mask_ttl {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .mask_txt {
        font-size: 14px;
    }
    .mask_img2 {
        display: block;
        margin-bottom: 20px;
    }
}

/* body */
.body_ttl_box {
    color: var(--fourth_color);
    padding-left: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main_color);
}
.body_ttl {
    font-size: 26px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.01rem;
}
.body_box {
    padding-top: 30px;
    margin-bottom: 100px;
}
.body_info {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}
.body_info:last-child {
    margin-bottom: 0;
}
.body_subttl {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.05rem;
    margin-bottom: 30px;
    color: var(--main_color);
}
.body_txt {
    position: relative;
    z-index: 2;
    width: 60%;
    letter-spacing: 0.08rem;
    line-height: 30px;
}
.body_img {
    position: absolute;
    right: calc(-1*(100vw - 1000px) / 2);
    width: 573px;
    height: auto;
    margin-bottom: 10px;
}
.body_caution_box {
    width: 60%;
    border-top: 3px dotted var(--main_color);
    margin-top: 50px;
    padding-top: 30px;
    padding-left: 30px;
}
.body_caution_txt {
    letter-spacing: 0.08rem;
}
.body_caution_txt p:first-child {
    margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
    .body_img {
        position: absolute;
        right: calc(-1*(100vw - 700px) / 2);
        width: 573px;
        height: auto;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 768px) {
    .body_ttl_box {
        padding-left: 0;
    }
    .body_ttl {
        font-size: 18px;
    }
    .body_box {
        padding-left: 0;
        padding-top: 20px;
        margin-bottom: 50px;
    }
    .body_info {
        padding-left: 0;
    }
    .body_subttl {
        font-size: 16px;
    }
    .body_txt {
        font-size: 14px;
        width: 100%;
    }
    .body_img {
        position: unset;
        width: 100%;
    }
    .body_caution_box {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .body_caution_txt {
        font-size: 14px;
    }
}

/* 料金 */
.price_table {
    width: 100%;
    border-collapse: collapse; /* セルの境界線をまとめる */
}
.price_table tr:nth-child(even) {
    background-color: var(--third_color);
}
.price_table thead tr {
    background-color: var(--main_color);
}
.price_table thead tr th {
    color: #fff;
    font-weight: var(--font_weight_lg);
    font-size: 25px;
    letter-spacing: 0.04rem;
    text-align: center;
    height: auto;
    padding: 10px 0;
}
.price_table th {
    width: 60%;
}
.price_table td {
    text-align: center;
}
.price_table th,.price_table td {
    height: 100px;
    padding: 10px 20px;
    border: 1px solid #999999;
    font-weight: var(--font_weight_lg);
    letter-spacing: 0.01rem;
    font-size: 18px;
    font-weight: var(--font_weight_md);
}
.price_table span {
    display: block;
}
.price_caution {
    font-size: 13px;
    font-weight: var(--font_weight_md);
    text-align: right;
    margin-top: 10px;
    margin-bottom: 30px;
}
.price_table_txt_sm {
    font-size: 15px;
}
.tbody_head th, .tbody_head td {
    height: 50px;
    text-align: center;
}
.tbody_head th {
    width: 40%;
}
.tbody_tr th {
    width: 40%;
}

@media only screen and (max-width: 768px) {
    .price_table_box {
        overflow: scroll;
    }
    .price_table thead tr th {
        font-size: 18px;
    }
    .price_table th, .price_table td {
        font-size: 14px;
    }
    .tbody_tr th {
        min-width: 200px;
    }
}

/* frow */
.frow_img {
    margin-top: 50px;
    margin-bottom: 50px;
}
.frow_img_sp {
    display: none;
}
@media only screen and (max-width: 768px) {
    .frow_img {
        display: none;
    }
    .frow_img_sp {
        display: block;
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

/* Q&A */
.qanda_ttl_img {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.qanda_box {
    background-color: var(--third_color);
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 50px;
}
.qanda_content_ttl {
    font-size: 32px;
    color: var(--main_color);
    letter-spacing: 0.08rem;
    font-weight: var(--font_weight_md);
    margin-bottom: 20px;
}
.qanda_content_ttl.second {
    margin-top: 50px;
}
.qanda_content_box {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.question_box {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 3px dotted var(--second_color);
}
.question_icon, .answer_icon {
    width: 34px;
    min-width: 34px;
    margin-right: 50px;
}
.question_ttl {
    font-size: 22px;
    letter-spacing: 0.08rem;
    color: var(--fifth_color);
    font-weight: var(--font_weight_md);
}
.answer_box {
    display: flex;
    align-items: start;
    padding-top: 20px;
}
.answer_ttl {
    font-size: 18px;
    letter-spacing: 0.08rem;
    color: var(--second_color);
}

@media only screen and (max-width: 768px) {
    .qanda_ttl_img {
        width: 200px;
    }
    .qanda_box {
        padding-top: 30px;
        padding-bottom: 30px;
        margin-top: 30px;
    }
    .qanda_content_ttl {
        font-size: 24px;
    }
    .question_box {
        display: block;
    }
    .answer_box {
        display: block;
    }
    .question_icon, .answer_icon {
        width: 20px;
        min-width: 20px;
        margin-bottom: 10px;
        margin-right: 0px;
    }
    .question_ttl {
        font-size: 16px;
    }
    .answer_ttl {
        font-size: 14px;
    }
}

/* contact */
.contact {
    margin-bottom: 100px;
}
.contact_txt p:first-child {
    font-weight: var(--font_weight_md);
    letter-spacing: 0.01rem;
    font-size: 18px;
    margin-bottom: 30px;
}
.contact_txt p {
    font-weight: var(--font_weight_md);
    font-size: 26px;
}
.contact_txt p:last-child {
    font-weight: var(--font_weight_md);
    font-size: 18px;
}

.contact_box {
    margin-top: 30px;
}
.contact_table {
    width: 100%;
    border-collapse: collapse; /* セルの境界線をまとめる */
}
.contact_table th,.contact_table td {
    padding: 20px;
    border: 1px solid #999999;
    font-weight: var(--font_weight_lg);
    letter-spacing: 0.07rem;
}
.contact_table th {
    background-color: #E6E6E6;
    padding: 20px 0px  20px 40px;
    width: 30%;
}
.contact_table label {
    font-size: 18px;
    font-weight: var(--font_weight_lg);
    letter-spacing: 0.04rem;
}
.contact_table span {
    font-size: 13px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.01rem;
    margin-left: 30px;
}
input {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
}
textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
}
/* チェックボックス01 */
input[type=checkbox] {
    display: none;
}
.checkbox_wrap {
    display: flex;
}
.contact_type {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.contact_type::before {
    background: #fff;
    border: 1px solid #231815;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.contact_type::after {
    border-right: 3px solid var(--main_color);
    border-bottom: 3px solid var(--main_color);
    content: '';
    display: block;
    height: 9px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 56%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .contact_type::after {
    opacity: 1;
}

.form_btn {
    margin-top: 30px;
    text-align: center;
}
.send_btn {
    position: relative;
    color: #fff;
    text-decoration: none;
    background-color: var(--fourth_color);
    padding: 10px 35px;
    margin-right: 20px;
    border: none;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.send_btn::before {
    content: '';
    position: absolute;
    top: 22px;
    right: 10px;
    transform: rotate(-45deg);
    width: 7px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.send_btn::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 10px;
    transform: rotate(45deg);
    width: 7px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.send_btn:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 768px) {
    .contact {
        margin-bottom: 50px;
    }
    .contact_txt p:first-child {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .contact_txt p {
        font-size: 20px;
    }
    .contact_txt p:last-child {
        font-size: 16px;
    }

    .checkbox_wrap {
        flex-wrap: wrap;
    }
    .contact_table th, .contact_table td {
        padding: 10px;
    }
    .contact_table th {
        padding: 10px;
        width: 40%;
    }
    .contact_table label {
        font-size: 14px;
    }
    .contact_table span {
        margin-left: 0;
        display: block;
    }
    .contact_type {
        padding: 10px 0px 10px 30px;
    }
}



/* privacy policy */
.privacy_policy {
    margin-bottom: 100px;
}
.term_box h2 {
    font-size: 20px;
    color: var(--second_color);
    font-weight: var(--font_weight_md);
    margin-bottom: 10px;
}

.term_box h3 {
    font-size: 18px;
    color: var(--second_color);
    font-weight: var(--font_weight_md);
    margin-top: 20px;
    margin-bottom: 5px;
}

.term_box p {
    font-size: 16px;
    font-weight: var(--font_weight_md);
    margin-bottom: 15px;
}

.term_box p br {
    margin-bottom: 10px;
}

.privacy_policy_box h2 {
    font-size: 20px;
    color: var(--second_color);
    margin-bottom: 10px;
    font-weight: var(--font_weight_md);
}

.privacy_policy_box h3 {
    font-size: 14px;
    color: var(--second_color);
    font-weight: var(--font_weight_md);
    margin-top: 20px;
    margin-bottom: 5px;
}

.privacy_policy_box p {
    font-size: 14px;
    font-weight: var(--font_weight_md);
    margin-bottom: 15px;
}

.privacy_policy_box p br {
    margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
    .privacy_policy {
        margin-bottom: 50px;
    }
}

/* sitemap */
.sitemap {
    margin-bottom: 100px;
}
.sitemap_ttl {
    font-size: 20px;
    font-weight: var(--font_weight_md);
    margin-bottom: 30px;
}
.sitemap_box {
    width: 70%;
    margin-bottom: 50px;
}
.sitemap_subttl {
    display: block;
    font-size: 16px;
    font-weight: var(--font_weight_md);
    border-bottom: 1px solid var(--main_color);
    padding-left: 20px;
    padding-bottom: 10px;
}
.sitemap_link_box {
    padding-top: 10px;
    padding-left: 20px;
}
.sitemap_link {
    position: relative;
    font-size: 14px;
    display: inline-block;
    padding-left: 20px;
    margin-right: 40px;
}
.sitemap_link::before {
    content: '';
    position: absolute;
    top: 13px;
    left: 5px;
    transform: rotate(-45deg);
    width: 7px;
    height: 1px;
    background: var(--main_color);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.sitemap_link::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 5px;
    transform: rotate(45deg);
    width: 7px;
    height: 1px;
    background: var(--main_color);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
@media only screen and (max-width: 768px) {
    .sitemap {
        margin-bottom: 50px;
    }
    .sitemap_box {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* school */
.school .body_ttl {
    letter-spacing: 0.08rem;
}
.school_box {
    padding-top: 30px;
    margin-bottom: 50px;
}
.school_info {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.school_info:first-child {
    margin-bottom: 20px;
}
.school_info_img {
    width: 40%;
}
.school_info_img img {
    -o-object-fit: contain;
       object-fit: contain;
}
.school_info_img_sm {
    width: 25%;
    margin-left: auto;
    margin-right: auto;
}
.school_info_txt_box {
    width: 58%;
}
.school_info_txt_box.add_border {
    padding-bottom: 20px;
    border-bottom: 3px dotted var(--main_color);
}
.school_info_ttl {
    font-size: 27px;
    letter-spacing: 0.09rem;
    font-weight: var(--font_weight_md);
    color: var(--main_color);
    margin-bottom: 10px;
}
.school_info_txt {
    letter-spacing: 0.08rem;
    line-height: 26px;
}

.school_txt {
    letter-spacing: 0.08rem;
    padding: 0 30px;
}

.school_recommend_box {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 40px 60px;
    background: #fff; /* 内側の背景色 */
    color: #333;
    z-index: 1;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 50px;
}

.school_recommend_box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg, #FFD0E2, #FFD0E2, #fff, #FFD0E2, #FFD0E2);
    z-index: -1;
}

.school_recommend_box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    margin: 10px;
    z-index: 1;
}

.school_recommend_ttl {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: 30px;
}
.school_recommend_ttl p {
    position: relative;
    display: inline-block;
    font-size: 29px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.09rem;
}
.school_recommend_ttl p::before {
    position: absolute;
    top: 20px;
    left: -70px;
    content: '';
    width: 46px;
    height: 3px;
    transform: rotate(56deg);
    -webkit-transform: rotate(56deg);
    -moz-transform: rotate(56deg);
    -ms-transform: rotate(56deg);
    -o-transform: rotate(56deg);
    background-color: var(--second_color);
}
.school_recommend_ttl p::after {
    position: absolute;
    top: 20px;
    right: -50px;
    content: '';
    width: 46px;
    height: 3px;
    transform: rotate(123deg);
    -webkit-transform: rotate(123deg);
    -moz-transform: rotate(123deg);
    -ms-transform: rotate(123deg);
    -o-transform: rotate(123deg);
    background-color: var(--second_color);
}

.school_recommend_txt_box {
    position: relative;
    z-index: 3;
    display: flex;
    margin-bottom: 10px;
    padding: 0 12%;
}
.school_recommend_txt_img {
    width: 34px;
}
.school_recommend_txt_img img {
    -o-object-fit: contain;
       object-fit: contain;
}
.school_recommend_txt {
    font-size: 22px;
    font-weight: var(--font_weight_lg);
    margin-left: 5px;
}

.school_course_box {
    margin-bottom: 40px;
    border: 1px solid #b3b3b3;
}
.school_course_ttl_box {
    padding: 10px 0;
    text-align: center;
    background-color: var(--main_color);
}
.school_course_ttl {
    color: #fff;
    font-size: 25px;
    letter-spacing: 0.04rem;
    font-weight: var(--font_weight_lg);
}
.school_course_info_box {
    display: flex;
    height: 80px;
    align-items: center;
}
.school_course_info {
    width: 44%;
    padding: 0px 30px;
}
.school_course_info:nth-of-type(2) {
    width: 12%;
    height: 100%;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E6E6E6;
}
.school_course_info_txt_sm {
    font-size: 13px;
}

.school_sub_info_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.school_sub_info {
    width: 48%;
}
.school_sub_info_ttl {
    font-size: 20px;
    font-weight: var(--font_weight_lg);
    color: var(--fourth_color);
    letter-spacing: 0.15rem;
    padding-bottom: 5px;
    padding-left: 20px;
    border-bottom: 1px solid var(--fourth_color);
}
.school_sub_info_txt_box {
    padding-top: 5px;
    padding-left: 20px;
    letter-spacing: 0.01rem;
    font-weight: var(--font_weight_md);
}
.school_caution {
    padding-left: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    font-weight: var(--font_weight_md);
    letter-spacing: 0.01rem;
    line-height: 29px;
}
.school_link_box {
    margin-bottom: 100px;
}

@media screen and (min-width:769px) and ( max-width:1024px) {
    .school_recommend_box {
        padding: 30px;
    }
    .school_recommend_txt_box {
        padding: 0 5%;
        align-items: center;
    }
    .school_recommend_txt_img {
        min-width: 34px;
    }
    .school_recommend_txt {
        font-size: 16px;
    }
    .school_course_info {
        font-size: 14px;
        padding: 0px 10px;
    }
    .school_course_info:nth-of-type(2) {
        padding: 0px 10px;
    }
}
@media only screen and (max-width: 768px) {
    .school_box {
        padding-top: 20px;
        margin-bottom: 30px;
    }
    .school_info {
        display: block;
    }
    .school_info_img {
        width: 100%;
        margin-bottom: 20px;
    }
    .school_info_img_sm {
        width: 50%;
        margin-bottom: 20px;
    }
    .school_info_ttl {
        font-size: 20px;
    }
    .school_info_txt_box {
        width: 100%;
    }
    .school_info_txt {
        font-size: 14px;
        line-height: 20px;
    }
    .school_txt {
        padding: 0;
    }
    .school_recommend_box {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    .school_recommend_ttl p {
        font-size: 16px;
    }
    .school_recommend_ttl p::before {
        top: 14px;
        left: -30px;
        content: '';
        width: 24px;
        height: 2px;
    }
    .school_recommend_ttl p::after {
        top: 14px;
        right: -30px;
        content: '';
        width: 24px;
        height: 2px;
    }
    .school_recommend_txt_box {
        padding: 0;
        align-items: center;
    }
    .school_recommend_txt {
        font-size: 12px;
    }
    .school_recommend_txt_img {
        width: 25px;
        min-width: 25px;
    }
    .school_course_box {
        margin-bottom: 30px;
    }
    .school_course_ttl {
        font-size: 18px;
    }
    .school_course_info_box {
        flex-wrap: wrap;
        height: 100%;
        font-size: 14px;
    }
    .school_course_info {
        width: 100%;
        padding: 10px 20px;
    }
    .school_course_info:nth-of-type(2) {
        width: 100%;
        padding: 5px 0;
    }
    .school_course_info_txt_sm {
        font-size: 10px;
    }
    .school_sub_info_box {
        display: block;
        margin-bottom: 0;
    }
    .school_sub_info {
        width: 100%;
        margin-bottom: 30px;
    }
    .school_sub_info_ttl {
        font-size: 18px;
        padding-left: 0px;
    }
    .school_sub_info_txt_box {
        font-size: 14px;
        padding-left: 0px;
    }

    .school_caution {
        font-size: 14px;
        margin-top: 30px;
        margin-bottom: 30px;
        line-height: 20px;
        padding-left: 0px;
    }
    .school_link_box {
        margin-bottom: 50px;
    }
}