:root {
    --main_color: #E3007F;
    --sub_color: #FFF6F6;
    --color_black: #212121;
    --fw_bold: bold;
    --fw_normal: 300;
}

/* 共通 */
body {
    font-family: "Noto Sans JP", sans-serif;
    color: #212121;
    line-height: unset;
    margin-top: 100px;
}

img {
    width: 100%;
    height: 100%;
}

a {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

.inner {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.glonav_open {
    overflow: hidden;
}

.br_sp {
    display: none;
}

.section_ttl {
    text-align: center;
}

.section_ttl>p {
    font-size: 16px;
    font-weight: var(--fw_bold);
    color: var(--main_color);
}

.section_ttl>h2 {
    font-size: 26px;
    font-weight: var(--fw_bold);
}

@media only screen and (max-width: 1200px) {
    .inner {
        max-width: 1000px;
    }
}

@media only screen and (max-width: 1000px) {
    .inner {
        max-width: 700px;
    }
}

@media only screen and (max-width: 768px) {
    body {
        margin-top: 60px;
    }

    .inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .br_sp {
        display: block;
    }

    .section_ttl>p {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .section_ttl>h2 {
        font-size: 22px;
    }
}


/* overview */
.overview {
    padding-top: 58px;
    padding-bottom: 80px;
}

.overview_box>h2 {
    text-align: center;
    font-weight: var(--fw_bold);
    margin-bottom: 35px;
}

.overview_box>h2>span:first-child {
    display: block;
    font-size: 32px;
    margin-bottom: 11px;
}

.overview_box>h2>span:last-child {
    display: block;
    font-size: 38px;
}

.overview_box>p {
    font-size: 18px;
    text-align: center;
    line-height: 200%;
    font-weight: var(--fw_normal);
}

@media only screen and (max-width: 768px) {
    .overview {
        padding-top: 67px;
        padding-bottom: 60px;
    }

    .overview_box>h2 {
        margin-bottom: 36px;
    }

    .overview_box>h2>span:first-child {
        font-size: 22px;
        margin-bottom: 13px;
    }

    .overview_box>h2>span:last-child {
        font-size: 28px;
        line-height: 150%;
    }

    .overview_box>p {
        font-size: 14px;
    }
}


/* about_us */
.about_us_dl_box {
    max-width: 840px;
    margin-top: 44px;
    margin-left: auto;
    margin-right: auto;
}

.about_us_dl_box>dl {
    display: flex;
}

.about_us_dl_box>dl:nth-child(n+2) {
    margin-top: -1px;
}

.about_us_dl_box>dl>dt {
    display: flex;
    align-items: center;
    width: 18%;
    font-size: 14px;
    line-height: 300%;
    font-weight: var(--fw_bold);
    color: #fff;
    background-color: var(--main_color);
    border: 1px solid #BBB;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 1.4rem;
}

.about_us_dl_box>dl>dd {
    display: flex;
    align-items: center;
    width: 82%;
    font-size: 14px;
    font-weight: var(--fw_normal);
    line-height: 150%;
    border: 1px solid #BBB;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 14px;
    padding-right: 57px;
    margin-left: -1px;
}

.about_us_caution {
    font-size: 12px;
    line-height: 150%;
    font-weight: var(--fw_normal);
    margin-top: 11px;
}

@media only screen and (max-width: 768px) {
    .about_us_dl_box {
        margin-top: 30px;
    }

    .about_us_dl_box>dl>dt {
        width: 30%;
        font-size: 11px;
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 0.7rem;
    }

    .about_us_dl_box>dl>dd {
        width: 70%;
        font-size: 11px;
        font-weight: var(--fw_normal);
        line-height: 150%;
        border: 1px solid #BBB;
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 6px;
        padding-right: 6px;
    }

    .about_us_caution {
        font-size: 11px;
        margin-top: 11px;
    }
}

/* news */
.news {
    padding-top: 80px;
    padding-bottom: 95px;
}

.news_list_box {
    max-width: 500px;
    margin-top: 19px;
    margin-left: auto;
    margin-right: auto;
}

.news_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color_black);
}

.news_info>p {
    color: var(--main_color);
}

.news_info>p:first-child {
    font-size: 18px;
    line-height: 300%;
    font-weight: var(--fw_bold);
}

.news_info>p:last-child {
    font-size: 14px;
    line-height: 300%;
    font-weight: var(--fw_normal);
}

.news_list>li {
    font-size: 14px;
    line-height: 300%;
    font-weight: var(--fw_normal);
}

.news_list>li:nth-child(n+2) {
    border-top: 1px solid #F4F4F4;
}

@media only screen and (max-width: 768px) {
    .news {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .news_list_box {
        margin-top: 30px;
    }
}

/* course */
.course {
    background-color: var(--sub_color);
    padding-top: 95px;
    padding-bottom: 95px;
}

/* course1 */
.course1_box {
    padding: 46px 104px 67px;
    margin-top: 46px;
    border: 1px solid var(--main_color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.course1_box>h3 {
    font-size: 26px;
    font-weight: var(--fw_bold);
    text-align: center;
    color: var(--main_color);
    margin-bottom: 46px;
}

.course1_box>p {
    font-size: 18px;
    line-height: 200%;
    font-weight: var(--fw_normal);
}

/* course2 */
.course2 {
    margin-top: 80px;
}

.course2_info {
    margin-top: 48px;
}

.course2_info>h3 {
    font-size: 24px;
    font-weight: var(--fw_bold);
    text-align: center;
    color: var(--main_color);
}

.course2_info2 {
    margin-top: 83px;
}

.course2_info2>h3 {
    font-size: 24px;
    font-weight: var(--fw_bold);
    text-align: center;
    color: var(--main_color);
}

.course2_info_list {
    display: flex;
    justify-content: space-between;
    gap: 45px;
    margin-top: 47px;
}

.course2_info_list2 {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-top: 79px;
}

.course2_info_card {
    position: relative;
    width: 31%;
    height: 270px;
    padding: 28px 37px 0;
    background-color: #fff;
    border: 1px solid var(--main_color);
}

.course2_info_card_icon {
    position: absolute;
    top: -20px;
    left: -24px;
    width: 60px;
    height: 60px;
    font-size: 14px;
    font-weight: var(--fw_bold);
    color: #fff;
    background-color: #fff;
    border: 1px solid var(--main_color);
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
}

.course2_info_card_icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    content: 'AM';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 14px;
    font-weight: var(--fw_bold);
    color: #fff;
    background-color: var(--main_color);
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.course2_info2 .course2_info_card_icon::before {
    content: 'PM';
}

.course2_info_card>h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    font-size: 18px;
    font-weight: var(--fw_bold);
    text-align: center;
    color: var(--main_color);
    margin-bottom: 17px;
}

.course2_info_card>p {
    font-size: 14px;
    font-weight: var(--fw_normal);
    line-height: 200%;
}

.course2_caution {
    text-align: center;
    margin-top: 46px;
}

.course2_caution>span:first-child {
    display: block;
    font-size: 14px;
    font-weight: var(--fw_bold);
    margin-bottom: 7px;
}

.course2_caution>span:last-child {
    display: block;
    font-size: 14px;
    font-weight: var(--fw_normal);
    line-height: 200%;
}

@media only screen and (min-width: 769px) and (max-width:1000px) {
    .course2_info_card>h4 {
        height: auto;
    }

    .course2_info_card {
        height: auto;
        padding: 30px 20px 30px;
    }
}

@media only screen and (max-width: 768px) {
    .course {
        padding-top: 70px;
        padding-bottom: 70px;
        overflow: hidden;
    }

    /* course1 */
    .course1_box {
        padding: 42px 18px 35px;
        margin-top: 30px;
    }

    .course1_box>h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .course1_box>p {
        font-size: 14px;
        line-height: 200%;
    }

    /* course2 */
    .course2 {
        margin-top: 59px;
    }

    .course2_info {
        margin-top: 30px;
    }

    .course2_info>h3 {
        font-size: 20px;
    }

    .course2_info2 {
        margin-top: 54px;
    }

    .course2_info2>h3 {
        font-size: 20px;
    }

    .course2_info_list {
        display: block;
        gap: 0px;
        margin-top: 40px;
    }

    .course2_info_list2 {
        display: block;
        gap: 0px;
        margin-top: 40px;
    }

    .course2_info_card {
        width: 100%;
        height: 290px;
        padding: 22px 18px 0;
    }

    .course2_info_card:nth-child(n+2) {
        margin-top: 40px;
    }

    .course2_info_card_icon {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 40px;
        height: 40px;
    }

    .course2_info_card_icon::before {
        width: 28.8px;
        height: 28.8px;
        font-size: 11px;
    }

    .course2_info_card>h4 {
        height: 54px;
        line-height: 150%;
        margin-bottom: 18px;
    }

    .course2_caution {
        margin-top: 24px;
    }

    .course2_caution>span:first-child {
        margin-bottom: 11px;
    }
}


/* schedule_box */
.schedule_box {
    position: relative;
    padding-top: 80px;
}

.schedule {
    position: relative;
    z-index: 5;
    padding-top: 48px;
    padding-bottom: 65px;
}

.schedule_circle_bg {
    position: absolute;
    top: 80px;
    left: 50%;
    z-index: 2;
    width: 644px;
    height: 644px;
    background-color: #fff;
    border-radius: 1000px;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    -ms-border-radius: 1000px;
    -o-border-radius: 1000px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.schedule_time_list {
    position: relative;
    width: 392px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 54px;
    margin-left: auto;
    margin-right: auto;
}

.schedule_time_list::after {
    position: absolute;
    top: 0;
    left: 50%;
    content: '';
    width: 4px;
    height: 100%;
    background-color: var(--main_color);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.schedule_time_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schedule_time_item:nth-child(n+2) {
    margin-top: 34px;
}

.schedule_time_box {
    width: 165px;
}

.schedule_time {
    width: 104px;
    font-size: 18px;
    font-weight: var(--fw_bold);
    margin-left: auto;
}

.schedule_time_item_circle {
    width: 20px;
    height: 20px;
    background-color: var(--main_color);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.schedule_txt {
    width: 165px;
    font-size: 18px;
    font-weight: var(--fw_normal);
}

.schedule_link {
    position: relative;
    display: block;
    cursor: pointer;
    width: 467px;
    padding: 12px 30px;
    background-color: var(--main_color);
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    border: none;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.schedule_link>p {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.schedule_link>svg {
    position: absolute;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

@media only screen and (max-width: 768px) {
    .schedule_box {
        padding-top: 60px;
    }

    .schedule {
        padding-top: 42px;
        padding-bottom: 79px;
    }

    .schedule_circle_bg {
        top: 60px;
        width: 594px;
        height: 594px;
    }

    .schedule_time_list {
        width: 313px;
        padding-top: 12px;
        padding-bottom: 12px;
        margin-top: 45px;
    }

    .schedule_time_list::after {
        left: 41.5%;
    }

    .schedule_time_item:nth-child(n+2) {
        margin-top: 24px;
    }

    .schedule_time_box {
        width: 92px;
    }

    .schedule_time {
        width: 92px;
        font-size: 16px;
    }

    .schedule_txt {
        width: 147px;
        font-size: 16px;
    }

    .schedule_link {
        width: 100%;
        padding: 12px 0px;
        margin-top: 60px;
    }

    .schedule_link>p {
        font-size: 18px;
    }

    .schedule_link>svg {
        right: 14px;
    }
}


/* experience */
.experience {
    padding-top: 95px;
    padding-bottom: 95px;
}

.experience_list {
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
}

.experience_item {
    width: 23%;
}

.experience_item>img {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.experience_item>h3 {
    font-size: 18px;
    text-align: center;
    font-weight: var(--fw_bold);
    margin-top: 10px;
    margin-bottom: 10px;
}

.experience_item>p {
    font-size: 14px;
    line-height: 150%;
    font-weight: var(--fw_normal);
}

@media only screen and (max-width: 768px) {
    .experience {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .experience_list {
        display: block;
        margin-top: 30px;
    }

    .experience_item {
        width: 100%;
        padding-left: 24.5px;
        padding-right: 24.5px;
    }

    .experience_item:nth-child(n+2) {
        margin-top: 24px;
    }

    .experience_item>h3 {
        font-size: 18px;
        text-align: center;
        font-weight: var(--fw_bold);
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .experience_item>p {
        font-size: 14px;
        line-height: 150%;
        font-weight: var(--fw_normal);
    }
}

/* price */
.price {
    padding-top: 95px;
    padding-bottom: 95px;
    background-color: var(--sub_color);
}

.price_txt_box {
    margin-top: 9px;
}

.price_txt_box>p:first-child {
    font-size: 34px;
    font-weight: var(--fw_bold);
    text-align: center;
    color: var(--main_color);
    margin-bottom: 13px;
}

.price_txt_box>p:last-child {
    width: 360px;
    font-size: 12px;
    line-height: 150%;
    font-weight: var(--fw_normal);
    margin-left: auto;
    margin-right: auto;
}

.price_list {
    display: flex;
    justify-content: space-between;
    margin-top: 47px;
}

.price_item {
    width: 48.5%;
}

.price_item_ttl {
    font-size: 18px;
    text-align: center;
    font-weight: var(--fw_bold);
    color: var(--main_color);
    background-color: #fff;
    border: 1px solid var(--main_color);
    padding-top: 8px;
    padding-bottom: 8px;
}

.price_item>ul {
    margin-top: 14px;
}

.price_item>ul>li {
    font-size: 14px;
    line-height: 200%;
    font-weight: var(--fw_normal);
}

@media only screen and (max-width: 768px) {
    .price {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .price_txt_box {
        margin-top: 9px;
    }

    .price_txt_box>p:last-child {
        max-width: 335px;
        width: 100%;
        font-size: 11px;
    }

    .price_list {
        display: block;
        margin-top: 30px;
    }

    .price_item {
        width: 100%;
    }

    .price_item:nth-child(n+2) {
        margin-top: 30px;
    }

    .price_item_ttl {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* voice */
.voice {
    padding-top: 95px;
    padding-bottom: 95px;
}

.voice_list {
    display: flex;
    justify-content: space-between;
    margin-top: 130px;
}

.voice_item {
    width: 31%;
    position: relative;
    display: inline-block;
    border: 1px solid var(--main_color);
    border-radius: 8px;
    background-color: #fff;
    font-size: 14px;
    line-height: 150%;
    font-weight: var(--fw_normal);
    padding: 102px 37px 34px;
}

.voice_item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 30px 27.5px 0 27.5px;
    border-color: var(--main_color) transparent transparent;
    translate: -50% 100%;
}

.voice_item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 28.5px 26.1px 0 26.1px;
    border-color: #fff transparent transparent;
    translate: -50% 100%;
}

.voice_img {
    position: absolute;
    top: -101px;
    left: 50%;
    width: 47%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

@media only screen and (min-width: 1001px) and (max-width:1200px) {
    .voice_item {
        padding: 90px 37px 34px;
    }

    .voice_img {
        top: -70px;
    }
}

@media only screen and (min-width: 769px) and (max-width:1000px) {
    .voice_list {
        margin-top: 100px;
    }

    .voice_item {
        padding: 50px 20px 20px;
    }

    .voice_img {
        top: -60px;
    }
}

@media only screen and (max-width: 768px) {
    .voice {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .voice_list {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 130px;
    }

    .voice_item {
        max-width: 335px;
        width: 100%;
        padding: 102px 32px 34px;
        margin-left: auto;
        margin-right: auto;
    }

    .voice_item:nth-child(n+2) {
        margin-top: 158px;
    }

    .voice_img {
        width: 55%;
    }
}


/* recommendation */
.recommendation {
    padding-top: 95px;
    padding-bottom: 95px;
    background-color: var(--sub_color);
}

.recommendation_list {
    display: flex;
    justify-content: space-between;
    margin-top: 46px;
}

.recommendation_list2 {
    display: flex;
    justify-content: center;
    margin-top: 46px;
}

.recommendation_item {
    display: flex;
    justify-content: space-between;
    width: 48%;
}

.recommendation_item_img {
    width: 40%;
}

.recommendation_item_img>img {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -o-object-fit: contain;
    object-fit: contain;
}

.recommendation_item_txt_box {
    width: 56%;
}

.recommendation_item_num {
    display: inline-block;
    font-size: 14px;
    font-weight: var(--fw_bold);
    color: #fff;
    padding: 3px 21px;
    background-color: var(--main_color);
    margin-bottom: 19px;
}

.recommendation_item_ttl {
    font-size: 18px;
    font-weight: var(--fw_bold);
    margin-bottom: 10px;
}

.recommendation_item_txt {
    font-size: 14px;
    font-weight: var(--fw_normal);
    line-height: 150%;
}

@media only screen and (max-width: 768px) {
    .recommendation {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .recommendation_list {
        display: block;
        margin-top: 30px;
    }

    .recommendation_list2 {
        display: block;
        margin-top: 30px;
    }

    .recommendation_item {
        display: block;
        width: 100%;
    }

    .recommendation_item:nth-child(n+2) {
        margin-top: 30px;
    }

    .recommendation_item_img {
        width: 100%;
        padding-left: 50px;
        padding-right: 50px;
    }

    .recommendation_item_txt_box {
        width: 100%;
        margin-top: 23px;
    }

    .recommendation_item_num {
        margin-bottom: 17px;
    }
}

/* attention */
.attention {
    padding-top: 95px;
    padding-bottom: 95px;
}

.attention_txt_box {
    max-width: 840px;
    margin-top: 46px;
    margin-left: auto;
    margin-right: auto;
}

.attention_ttl {
    font-size: 18px;
    font-weight: var(--fw_bold);
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #fff;
    border: 1px solid var(--main_color);
    margin-bottom: 14px;
}

.attention_txt {
    font-size: 16px;
    text-align: center;
    font-weight: var(--fw_normal);
    line-height: 200%;
}

.attention_txt>span {
    font-weight: var(--fw_bold);
}

.attention_caution {
    font-size: 12px;
    font-weight: var(--fw_normal);
    text-align: center;
    line-height: 200%;
    margin-top: 23px;
}

.attention_caution_sp {
    display: none;
}

@media only screen and (max-width: 768px) {
    .attention {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .attention_txt_box {
        margin-top: 30px;
    }

    .attention_txt {
        font-size: 16px;
        text-align: center;
        font-weight: var(--fw_normal);
        line-height: 200%;
    }

    .attention_txt>span {
        font-weight: var(--fw_bold);
    }

    .attention_caution {
        display: none;
    }

    .attention_caution_sp {
        display: block;
        font-size: 12px;
        font-weight: var(--fw_normal);
        text-align: center;
        line-height: 200%;
        margin-top: 24px;
    }
}

/* contact */
.contact {
    padding-top: 95px;
    padding-bottom: 95px;
    background-color: var(--sub_color);
}

.contact_link_wrap {
    margin-top: 44px;
}

.contact_link_box:nth-child(n+2) {
    margin-top: 24px;
}

.contact_link_box .schedule_link {
    margin-top: 0;
}

@media only screen and (max-width: 768px) {
    .contact {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .contact_link_wrap {
        margin-top: 30px;
    }
}

/* faq */
.faq {
    padding-top: 95px;
    padding-bottom: 66px;
}

.faq_list_box {
    max-width: 840px;
    margin-top: 46px;
    margin-left: auto;
    margin-right: auto;
}

.faq_list:nth-child(n+2) {
    margin-top: 46px;
}

.faq_item {
    display: flex;
    align-items: start;
}

.faq_item:nth-child(n+2) {
    margin-top: 23px;
}

.ttl_question {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    width: 44px;
    height: 44px;
    font-size: 24px;
    font-weight: var(--fw_bold);
    color: #fff;
    background-color: var(--main_color);
    padding-bottom: 5px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.ttl_answer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    width: 44px;
    height: 44px;
    font-size: 24px;
    font-weight: var(--fw_bold);
    color: var(--main_color);
    background-color: #fff;
    padding-bottom: 3px;
    border: 1px solid var(--main_color);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.faq_txt {
    font-size: 16px;
    line-height: 200%;
    font-weight: var(--fw_bold);
    padding-top: 6px;
    margin-left: 13px;
}

.faq_link_txt {
    font-size: 16px;
    line-height: 200%;
    font-weight: var(--fw_bold);
    text-align: center;
    margin-top: 42px;
}

.faq_link_txt>a {
    color: var(--main_color);
    text-decoration: underline;
}

@media only screen and (max-width: 768px) {
    .faq {
        padding-top: 70px;
        padding-bottom: 140px;
    }

    .faq_list_box {
        margin-top: 30px;
    }

    .faq_list:nth-child(n+2) {
        margin-top: 30px;
    }

    .faq_item:nth-child(n+2) {
        margin-top: 20px;
    }

    .ttl_question {
        min-width: 34px;
        width: 34px;
        height: 34px;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .ttl_answer {
        min-width: 34px;
        width: 34px;
        height: 34px;
        font-size: 20px;
        padding-bottom: 3px;
    }

    .faq_txt {
        font-size: 14px;
        padding-top: 0px;
        margin-left: 10px;
    }

    .faq_link_txt {
        margin-top: 30px;
    }
}

/* copyright */
.copyright_box {
    padding-top: 39px;
    padding-bottom: 12px;
    border-top: 1px solid var(--main_color);
}

.copyright_box>p {
    font-size: 12px;
    text-align: center;
    font-weight: var(--fw_normal);
}



/* モーダルウィンドウ */
.layer {
    background: rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s linear, visibility .3s linear, z-index .3s linear;
    -webkit-transition: opacity .3s linear, visibility .3s linear, z-index .3s linear;
    -moz-transition: opacity .3s linear, visibility .3s linear, z-index .3s linear;
    -ms-transition: opacity .3s linear, visibility .3s linear, z-index .3s linear;
    -o-transition: opacity .3s linear, visibility .3s linear, z-index .3s linear;
}



.layer.is-open {
    z-index: 999;
    opacity: 1;
    visibility: visible;
}

.layer.is-open .modal {
    opacity: 1;
    visibility: visible;
}

.modal__button-wrap {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
}


.close-button {
    position: relative;
    width: 39px;
    height: 39px;
    background: var(--main_color);
    border-radius: 50%;
    padding: 0;
    border: transparent;
    cursor: pointer;
}

.close-button span {
    width: 25px;
    height: 2px;
    background: #fff;
    display: inline-block;
    position: absolute;
    left: calc(50% - 12px);
    top: 50%;
    border-radius: 20px;
}

.close-button span:nth-child(1) {
    transform: rotate(45deg) translate(-1px, -1px);
}

.close-button span:nth-child(2) {
    transform: rotate(-45deg) translate(1px, -1px);
}



.modal {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: visibility .3s linear, opacity .3s linear;
    -webkit-transition: visibility .3s linear, opacity .3s linear;
    -moz-transition: visibility .3s linear, opacity .3s linear;
    -ms-transition: visibility .3s linear, opacity .3s linear;
    -o-transition: visibility .3s linear, opacity .3s linear;
}


.modal__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 80%;
    display: block;
    background: #fff;
    padding: 50px 8px 20px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 13px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.modal__contents {
    width: 100%;
    height: 100%;
}

.modal__content {
    width: 100%;
    height: 100%;
    padding-top: 15px;
    padding-bottom: 23px;
}

.modal__content img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.modal__button-area {
    max-width: 843px;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (max-width: 768px) {
    .modal {
        width: 90%;
    }

    .modal__inner {
        height: auto;
    }
}