/* contact btn */
.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.contact-btn a {
    background: var(--main-theme-color);
    border-radius: 10px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.8);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 25px 15px;
    position: relative;
    width: 35%;
}
.contact-btn .btn1 {
    margin-right: 35px;
}
.contact-btn.w a {
    background: #fff;
}
.contact-btn a::after {
    background: url(../images/icon-triangel.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 25px;
    top: 0;
    bottom: 0;
    width: 21px;
}
@media screen and (max-width: 1268px) {
    .contact-btn a {
        width: 45%;
    }
}
@media screen and (max-width: 968px) {
    .contact-btn a {
        border-radius: 15px;
        font-size: 24px;
        padding: 25px 10px;
    }
}
@media screen and (max-width: 768px) {
    .contact-btn a {
        font-size: 18px;
        width: 100%;
    }
    .contact-btn .btn1 {
        margin-right: 0;
        margin-bottom: 25px;
    }
}

.mv {
    background: url(../images/mv.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    height: 720px;
    position: relative;
    width: 100%;
}
.mv.aus {
    background-image: url(../images/aus/mv.jpg);
}
.mv.can {
    background-image: url(../images/can/mv.jpg);
}
.mv.abroad-language {
    background-image: url(../images/mv-abroad-language.jpg);
}
.mv.abroad-short {
    background-image: url(../images/mv-abroad-short.jpg);
}
.mv.working-holiday {
    background-image: url(../images/mv-working-holiday.jpg);
}
.mv-inner {
    height: 100%;
    margin: 0 auto;
    padding: 75px 0;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 92%;
    max-width: var(--main-column);
}

.mv-text {
    margin: 0 0 0 auto;
    text-align: right;
    width: 100%;
}
.float-text {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    left: 0;
    bottom: 5%;
}
.bg-text {
    background: var(--gradient);
    background: var(--gradient);
    color: #fff;
    font-size: 90px;
    font-weight: 900;
    letter-spacing: 5px;
    line-height: 1.2em;
    margin: 0 0 25px auto;
    padding: 1px 10px 4px;
    max-width: max-content;
}
.mv-text h1 {
    display: inline-block;
    background: var(--gradient);
    font-size: 150px;
    font-weight: 900;
    line-height: 1em;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: right;
}
.mv-text span {
    display: block;
    font-size: 47px;
    font-weight: 900;
    line-height: 1em;
}
.mv-text .ft-line {
    background: none;
    color: var(--gradient-c);
    text-shadow:1px 1px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,-1px -1px 0 #fff;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
}
.mv-text span::after {
    background: url(../images/border-o.png) no-repeat;
    background-size: cover;
    background-position: center;
    content: "";
    display: block;
    height: 14px;
    margin: 15px 0 25px;
    width: 100%;
}
.mv-text .outline-text {
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    margin: 10px 0 0;
    text-shadow:1px 1px 0 #ce231b,-1px 1px 0 #ce231b,1px -1px 0 #ce231b,-1px -1px 0 #ce231b;
}
.mv-image {
    margin: 15px 0 0 auto;
    position: absolute;
    right: 0;
    bottom: 5%;
    max-width: 600px;
}
@media screen and (max-width: 1268px) {
    .mv-inner {
        padding: 75px 0;
    }
    .float-text {
        font-size: 24px;
    }
    .bg-text {
        font-size: 75px;
    }
    .mv-text h1 {
        font-size: 125px;
    }
    .mv-text span {
        font-size: 40px;
    }
    .mv-text .outline-text {
        font-size: 32px;
    }
    .mv-image {
        max-width: 400px;
    }
}
@media screen and (max-width: 968px) {
    .mv-inner {
        padding: 135px 0 0;
    }
    .float-text {
        font-size: 21px;
    }
    .bg-text {
        font-size: 55px;
    }
    .mv-text h1 {
        font-size: 90px;
    }
    .mv-text span {
        font-size: 32px;
    }
    .mv-text .outline-text {
        font-size: 24px;
    }
    .mv-image {
        position: static;
        max-width: 400px;
    }
}
@media screen and (max-width: 568px) {
    .mv {
        background-position: 35%;
        height: 650px;
    }
    .mv-inner {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding: 50px 0 100px;
    }
    .float-text {
        font-size: 14px;
    }
    .bg-text {
        font-size: 32px;
    }
    .mv-text h1 {
        font-size: 65px;
    }
    .mv-text span {
        font-size: 18px;
    }
    .mv-text .outline-text {
        font-size: 18px;
    }
    .mv-image {
        max-width: 280px;
    }
}

/* about */
.about {
    background: url(../images/bg-gradient.png) no-repeat;
    background-position: top;
    background-size: cover;
    border-top: 10px solid var(--gradient-c);
    border-image: var(--gradient);
    border-image-slice: 1;
    padding: 50px 0;
}
.about-inner {
    margin: 0 auto;
    width: 92%;
    max-width: var(--sub-column);
}
.about-head {
    margin: 0 0 65px;
    text-align: center;
}
.about-head h2 {
    color: #000;
    display: inline-block;
    font-size: 34px;
    font-weight: bold;
}
.about-head h2::after {
    background: url(../images/border.png) no-repeat;
    background-size: cover;
    background-position: center;
    content: "";
    display: block;
    height: 14px;
    margin: 10px 0 25px;
    width: 100%;
}
.about-head h2 span {
    color: var(--main-theme-color);
    font-size: 34px;
    font-weight: 900;
}
.about-head p {
    color: #231815;
    font-size: 20px;
    font-weight: 400;
    line-height: 2em;
    text-align: left;
}

.about-point {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 0 50px;
}
.about-point__item {
    text-align: center;
    width: 30%;
}
.about-point__image {
    height: 170px;
    margin: 0 0 15px;
}
.about-point__image img {
    display: block;
    height: 170px;
    object-fit: contain;
    width: 100%;
}
.about-point__text h3 {
    color: var(--main-theme-color);
    font-size: 38px;
    font-weight: bold;
}
.about-point__text p {
    color: #333;
    font-size: 26px;
    font-weight: 500;
}

.about-kinds {
    margin: 0 0 45px;
}
.about-kinds__head {
    background: url(../images/kinds-ttl.png) no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 190px;
    margin: 0 auto 60px;
    text-align: center;
    width: 846px;
}
.about-kinds__head h3 {
    color: #000;
    font-size: 38px;
    font-weight: bold;
    position: relative;
    bottom: 23px;
}
.about-kinds__cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.about-kinds__cards.ba::before {
    order: 1;
}
.about-kinds__cards.ba::before,
.about-kinds__cards.ba::after {
    content: "";
    display: block;
    margin: 20px 15px 0;
    width: 30%;
}
.about-kinds__cards li {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    margin: 20px 15px 0;
    padding: 10px;
    width: 30%;
}
.about-kinds__cards li:nth-child(-n+3) {
    margin-top: 0;
}
.about-kinds__text h4 {
    background: var(--gradient-c);
    background: var(--gradient);
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
    padding: 6px 0;
    text-align: center;
    width: 100%;
}
.about-kinds__text p,
.about-kinds__text a p {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8em;
}

@media screen and (max-width: 1268px) {
    .about-head {
        margin: 0 0 55px;
    }
    .about-head h2 {
        font-size: 34px;
    }
    .about-head h2::after {
        height: 14px;
        margin: 10px 0 20px;
    }
    .about-head h2 span {
        font-size: 34px;
    }
    .about-head p {
        font-size: 24px;
    }
    .about-point__image {
        height: 120px;
    }
    .about-point__image img {
        height: 120px;
    }
    .about-point__text h3 {
        font-size: 32px;
    }
    .about-point__text p {
        font-size: 24px;
    }
    .about-kinds__head {
        height: 130px;
        margin: 0 auto 40px;
        width: 561px;
    }
    .about-kinds__head h3 {
        font-size: 32px;
        bottom: 15px;
    }
    .about-kinds__cards.ba::before,
    .about-kinds__cards.ba::after {
        margin: 20px 10px 0;
    }
    .about-kinds__cards li {
        margin: 20px 10px 0;
        padding: 8px;
    }
    .about-kinds__text h4 {
        font-size: 23px;
    }
    .about-kinds__text p {
        font-size: 16px;
    }
}
@media screen and (max-width: 968px) {
    .about-head {
        margin: 0 0 45px;
    }
    .about-head h2 {
        font-size: 26px;
    }
    .about-head h2 span {
        font-size: 26px;
    }
    .about-head p {
        font-size: 18px;
    }
    .about-point__image {
        height: 100px;
    }
    .about-point__image img {
        height: 100px;
    }
    .about-point__text h3 {
        font-size: 26px;
    }
    .about-point__text p {
        font-size: 21px;
    }
    .about-kinds__head {
        height: 100px;
        width: 431px;
    }
    .about-kinds__head h3 {
        font-size: 24px;
        bottom: 13px;
    }
    .about-kinds__cards.ba::before,
    .about-kinds__cards.ba::after {
        display: none;
    }
    .about-kinds__cards li {
        width: 45%;
    }
    .about-kinds__cards li:nth-child(-n+3) {
        margin-top: 20px;
    }
    .about-kinds__cards li:nth-child(-n+2) {
        margin-top: 0;
    }
    .about-kinds__text h4 {
        font-size: 21px;
    }
    .about-kinds__text p {
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
    .about-head {
        margin: 0 0 35px;
    }
    .about-head h2 {
        font-size: 21px;
    }
    .about-head h2 br {
        display: none;
    }
    .about-head h2 span {
        font-size: 21px;
    }
    .about-head p {
        font-size: 16px;
    }
    .about-point__item {
        width: 32%;
    }
    .about-point__image {
        height: 80px;
    }
    .about-point__image img {
        height: 80px;
    }
    .about-point__text h3 {
        font-size: 24px;
    }
    .about-point__text p {
        font-size: 16px;
    }
    .about-kinds__head {
        height: 74px;
        width: 320px;
    }
    .about-kinds__head h3 {
        font-size: 19px;
        bottom: 11px;
    }
    .about-kinds__cards {
        justify-content: space-between;
    }
    .about-kinds__cards li {
        margin-left: 0;
        margin-right: 0;
        width: 48%;
    }
    .about-kinds__text h4 {
        font-size: 18px;
    }
}
@media screen and (max-width: 568px) {
    .about-point__item {
        margin-top: 25px;
        width: 100%;
    }
    .about-point__item:first-child {
        margin-top: 0;
    }
    .about-kinds__cards li {
        width: 100%;
    }
    .about-kinds__cards li:nth-child(-n+2) {
        margin-top: 20px;
    }
    .about-kinds__cards li:first-child {
        margin-top: 0;
    }
}

/* area */
.area {
    padding: 0 0 85px;
}
.area-head {
    background: url(../images/area-ttl.png) no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 355px;
    margin: 0 0 45px;
    position: relative;
    text-align: center;
    z-index: 1;
}
.area-head h2 {
    color: #fff;
    display: inline-block;
    font-size: 52px;
    font-weight: bold;
    position: relative;
    top: 65px;
}
.area-head h2 span {
    font-size: 60px;
    font-weight: 900;
}
.area-head h2::after {
    background: url(../images/border-w.png) no-repeat;
    background-size: cover;
    background-position: center;
    content: "";
    display: block;
    height: 14px;
    margin: 10px 0 25px;
    width: 100%;
}
.area-body {
    margin: 0 auto;
    width: 92%;
    max-width: var(--sub-column);
}
.area.bg .area-body {
    background: url(../images/area-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 10vw 0 10vw;
    margin: -8vw auto;
    position: relative;
    width: 100%;
    max-width: 100%;
    z-index: 0;
}

.area-item:not(:last-child) {
    margin: 0 0 45px;
}
.area-item__head {
    margin: 0 0 35px;
    position: relative;
    text-align: center;
}
.area-item__head::after {
    background: url(../images/border-r.png) repeat-x;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    top: 32%;
    width: 100%;
    z-index: -1;
}
.area-item__head h3 {
    background: #fff;
    display: inline-block;
    font-size: 72px;
    font-weight: 900;
    padding: 0 15px;
}
.area-item__head h3::before {
    background: url(../images/icon-pin.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 55px;
    margin-right: 20px;
    width: 38px;
}
.area-item__head p {
    font-size: 36px;
    font-weight: bold;
}
.area-item__flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 0 45px;
}
.area-item__image,
.area-item__point {
    width: 49.5%;
}
.area-point__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.area-point__item:not(:last-child) {
    margin: 0 0 15px;
}
.area-point__image {
    width: 35%;
}
.area-point__text {
    width: calc(65% - 15px);
}
.point-ttl {
    color: var(--main-theme-color);
    font-size: 38px;
    font-style: italic;
    font-weight: bold;
    line-height: 1em;
    margin: 0 0 15px;
}
.point-ttl span {
    font-size: 56px;
    margin-left: 10px;
}
.point-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8em;
}

.area-description {
    text-align: center;
}
.area-description h4 {
    display: inline-block;
    font-size: 34px;
    font-weight: bold;
}
.area-description h4::after {
    background: url(../images/border.png) no-repeat;
    background-size: cover;
    background-position: center;
    content: "";
    display: block;
    height: 14px;
    margin: 10px 0 25px;
    width: 100%;
}
.area-description p {
    font-size: 18px;
    font-weight: 400;
    line-height: 2em;
    text-align: left;
}
@media screen and (max-width: 1268px) {
    .area-head h2 {
        font-size: 38px;
        top: 65px;
    }
    .area-head h2 span {
        font-size: 48px;
    }
    .area-item__head h3 {
        font-size: 52px;
        padding: 0 15px;
    }
    .area-item__head h3::before {
        height: 38px;
        margin-right: 15px;
        width: 26px;
    }
    .area-item__head p {
        font-size: 28px;
    }
    .area-item__flex {
        margin: 0 0 35px;
    }
    .area-point__image {
        width: 30%;
    }
    .area-point__text {
        width: calc(70% - 10px);
    }
    .point-ttl {
        font-size: 32px;
    }
    .point-ttl span {
        font-size: 42px;
    }
    .point-text {
        font-size: 16px;
    }
    .area-description h4 {
        font-size: 42px;
    }
    .area-description p {
        font-size: 21px;
    }
}
@media screen and (max-width: 968px) {
    .area-item__head h3 {
        font-size: 38px;
    }
    .area-item__head h3::before {
        height: 30px;
        margin-right: 5px;
        width: 21px;
    }
    .area-item__head p {
        font-size: 21px;
    }
    .area-item__image,
    .area-item__point {
        width: 100%;
    }
    .area-item__point {
        margin-top: 25px;
    }
    .area-point__image {
        width: 30%;
    }
    .area-point__text {
        width: calc(70% - 10px);
    }
    .point-ttl {
        font-size: 28px;
        margin: 0 0 5px;
    }
    .point-ttl span {
        font-size: 38px;
    }
    .point-text {
        font-size: 16px;
    }
    .area-description h4 {
        font-size: 32px;
    }
    .area-description p {
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .area-head {
        height: 245px;
    }
    .area-head h2 {
        font-size: 24px;
        top: 65px;
    }
    .area-head h2 span {
        font-size: 28px;
    }
    .area.bg .area-body {
        padding: 20vw 0 10vw;
        margin: -15vw auto;
    }
    .point-ttl {
        font-size: 21px;
    }
    .point-ttl span {
        font-size: 26px;
        margin-left: 5px;
    }
    .point-text {
        font-size: 14px;
    }
    .area-description h4 {
        font-size: 26px;
    }
    .area-description p {
        font-size: 16px;
    }
}
@media screen and (max-width: 568px) {
    .area-item__head h3 {
        font-size: 28px;
    }
    .area-item__head h3::before {
        height: 23px;
        width: 16px;
    }
    .area-item__head p {
        font-size: 16px;
    }
}

/* recommend */
.recommend {
    background: #fcf7f2;
    padding: 80px 0;
}
.recommend-inner {
    margin: 0 auto;
    width: 92%;
    max-width: var(--sub-column);
}
.recommend-head {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 65px;
    position: relative;
    text-align: center;
}
.recommend-head::after {
    background: url(../images/border-r.png) repeat-x;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 1;
}
.recommend-head h2 {
    background: #fcf7f2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    font-weight: bold;
    padding: 0 15px;
    position: relative;
    max-width: max-content;
    z-index: 2;
}
.recommend-head h2 .rec {
    display: none;
}
.recommend-head h2::before {
    background: url(../images/icon-school.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 70px;
    margin-right: 10px;
    width: 57px;
}

.recommend-tab {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 0 0 65px;
}
.recommend-tab__head {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.recommend-tab__btn {
    background: #f2f2f2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    width: 24%;
}
.recommend-tab__btn:not(:last-child) {
    margin-right: 1%;
}
.recommend-tab__btn.active {
    background: var(--main-theme-color);
}
.recommend-tab__image {
    width: 25%;
}
.recommend-tab__text {
    width: calc(75% - 15px);
}
.recommend-tab__text span {
    color: var(--main-theme-color);
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.recommend-tab__text p {
    color: var(--main-theme-color);
    font-size: 16px;
    font-weight: bold;
}
.recommend-tab__btn.active .recommend-tab__text span,
.recommend-tab__btn.active .recommend-tab__text p {
    color: #fff;
}
.recommend-tab__panel {
    display: none;
}
.recommend-tab__panel.active {
    display: block;
}
.panel-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 55px 35px;
}
.panel-image {
    width: 450px;
}

.panel-slide {
    position: relative;
}
.panel-slide .swiper-slide {
    height: 250px;
}
.panel-slide .swiper-slide img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}
.panel-images__slide {
    margin: 0 0 25px;
    overflow: hidden;
}
.panel-images__slide .swiper-button-next:after,
.panel-images__slide .swiper-rtl .swiper-button-prev:after {
    background: url(../images/icon-arrow2-r.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 30px;
    width: 30px;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -12px;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: -12px;
}
.panel-images__slide .swiper-button-prev:after,
.panel-images__slide .swiper-rtl .swiper-button-next:after {
    background: url(../images/icon-arrow2-l.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 30px;
    width: 30px;
}

.panel-data__ttl {
    background: var(--main-theme-color);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 10px;
    padding: 5px 10px;
}
.panel-data__txt {
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
}

.panel-text {
    width: calc(100% - 475px);
}
.panel-text h4 {
    border-left: 10px solid var(--main-theme-color);
    color: var(--main-theme-color);
    font-size: 30px;
    margin: 0 0 15px;
    padding: 3px 0 3px 10px;
}
.panel-text h4 span {
    display: block;
    font-size: 20px;
    line-height: 1em;
}
.panel-comment {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.8em;
}
.panel-point {
    margin: 25px 0 25px;
}
.panel-point__ttl {
    background: var(--main-theme-color);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 15px;
    padding: 5px 10px;
}
.panel-point__list li {
    color: #231815;
    font-size: 16px;
    font-weight: 400;
}
.panel-point__list li::before {
    background: #231815;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 15px;
    margin-right: 10px;
    width: 15px;
}
.panel-point__list li:not(:last-child) {
    margin: 0 0 15px;
}
.panel-tag {
    width: 80%;
}
.panel-tag .tag {
    background: #f2f2f2;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0 0;
    padding: 8px 30px;
    text-align: center;
}
.panel-tag .tag:not(:last-child) {
    margin-right: 20px;
}
@media screen and (max-width: 1268px) {
    .recommend {
        padding: 60px 0;
    }
    .recommend-head {
        margin: 0 0 50px;
    }
    .recommend-head h2 {
        font-size: 42px;
        padding: 0 10px;
    }
    .recommend-head h2::before {
        height: 45px;
        margin-right: 5px;
        width: 37px;
    }
    
    .recommend-tab {
        margin: 0 0 45px;
    }
    .recommend-tab__btn {
        padding: 8px;
    }
    .recommend-tab__image {
        width: 20%;
    }
    .recommend-tab__text {
        width: calc(80% - 10px);
    }
    .recommend-tab__text span {
        font-size: 14px;
    }
    .recommend-tab__text p {
        font-size: 16px;
    }
    
    .panel-flex {
        padding: 45px 25px;
    }
    .panel-image {
        width: 400px;
    }
    .panel-data__ttl {
        font-size: 24px;
    }
    .panel-data__txt {
        font-size: 18px;
    }
    
    .panel-text {
        width: calc(100% - 425px);
    }
    .panel-text h4 {
        font-size: 32px;
    }
    .panel-text h4 span {
        font-size: 18px;
    }
    .panel-comment {
        font-size: 26px;
    }
    .panel-point {
        margin: 20px 0 80px;
    }
    .panel-point__ttl {
        font-size: 24px;
    }
    .panel-point__list li {
        font-size: 18px;
    }
    .panel-point__list li:not(:last-child) {
        margin: 0 0 10px;
    }
    .panel-tag {
        width: 80%;
    }
    .panel-tag .tag {
        font-size: 18px;
        margin: 15px 0 0;
        padding: 8px 25px;
    }
    .panel-tag .tag:not(:last-child) {
        margin-right: 15px;
    }
}
@media screen and (max-width: 968px) {
    .recommend {
        padding: 60px 0;
    }
    .recommend-head {
        margin: 0 0 40px;
    }
    .recommend-head h2 {
        font-size: 32px;
    }
    .recommend-head h2::before {
        height: 38px;
        width: 31px;
    }
    
    .recommend-tab {
        margin: 0 0 45px;
    }
    .recommend-tab__head {
        justify-content: space-between;
    }
    .recommend-tab__btn:not(:last-child) {
        margin-right: 0;
    }
    .recommend-tab__btn {
        margin: 0 0 1%;
        padding: 8px;
        width: 49%;
    }
    .recommend-tab__image {
        width: 20%;
    }
    .recommend-tab__text {
        width: calc(80% - 10px);
    }
    .recommend-tab__text span {
        font-size: 14px;
    }
    .recommend-tab__text p {
        font-size: 16px;
    }
    .recommend-tab__text p br {
        display: none;
    }
    
    .panel-flex {
        padding: 45px 25px;
    }
    .panel-image {
        margin: 0 0 25px;
        width: 100%;
    }
    .panel-text {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .recommend-head h2 {
        font-size: 26px;
    }
    .recommend-head h2::before {
        height: 30px;
        width: 31px;
    }
    .panel-flex {
        padding: 35px 15px;
    }
    .panel-data__ttl {
        font-size: 21px;
    }
    .panel-data__txt {
        font-size: 14px;
    }
    .panel-text h4 {
        font-size: 26px;
    }
    .panel-text h4 span {
        font-size: 14px;
    }
    .panel-comment {
        font-size: 16px;
    }
    .panel-point {
        margin: 20px 0 60px;
    }
    .panel-point__ttl {
        font-size: 21px;
    }
    .panel-point__list li {
        font-size: 14px;
    }
    .panel-point__list li:not(:last-child) {
        margin: 0 0 8px;
    }
    .panel-tag {
        width: 100%;
    }
    .panel-tag .tag {
        font-size: 14px;
        margin: 10px 0 0;
        padding: 8px 20px;
    }
    .panel-tag .tag:not(:last-child) {
        margin-right: 10px;
    }
}
@media screen and (max-width: 568px) {
    .recommend-head h2 .rec {
        display: block;
    }
    .recommend-tab__text {
        width: 100%;
    }
    .recommend-tab__image {
        display: none;
    }
}

/* voice */
.voice {
    background: #fcf7f2;
    padding-bottom: 80px;
}
.voice.bg-blue {
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(222,238,251,1) 100%);
}
.voice-head {
    background: url(../images/voice-ttl.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
    width: 100%;
}
.voice-head__inner {
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: var(--sub-column);
}
.voice-head__inner::before,
.voice-head__inner::after {
    background: url(../images/border2-w.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    height: 4px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc((100% - 800px) / 2);
}
.voice-head__inner::before {
    left: 0;
}
.voice-head__inner::after {
    right: 0;
}
.voice-head h2 {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 44px;
    font-weight: bold;
    margin: 0 auto;
    width: 800px;
}
.voice-head h2::before {
    background: url(../images/icon-voice.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 70px;
    margin-right: 10px;
    width: 57px;
}
.voice-head h2 .vo {
    display: none;
}


.voice-slide {
    margin: 0 auto;
    opacity: 0;
    padding: 100px 0;
    position: relative;
    width: 92%;
    max-width: var(--sub-column);
}
.voice-slide.swiper-initialized {
    opacity: 1;
}
.voice-items.swiper-wrapper {
    align-items: stretch;
}
.voice-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    height: auto;
    padding: 15px 10px 45px;
    text-align: right;
}
.voice-item__ttl {
    color: var(--main-theme-color);
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 5px;
    text-align: left;
}
.voice-item__name {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}
.voice-item__comment p {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8em;
    text-align: left;
}
.voice-item__comment::before {
    background: url(../images/border-r.png) repeat-x;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 4px;
    margin: 5px 0 15px;
    width: 100%;
    z-index: -1;
}
.read-more {
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.read-more span {
    color: #333;
    display: inline-block;
    font-size: 21px;
    font-weight: 600;
    margin: 10px 0 0;
    padding-right: 30px;
    position: relative;
    text-align: right;
}
.read-more span::after {
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    content: "";
    display: block;
    height: 10px;
    margin: -5px 0 0 -3px;
    position: absolute;
    right: 15px;
    bottom: 0;
    transform: skew(45deg);
    width: 97%;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}
.voice-slide .swiper-pagination-bullet {
    background: none;
    border: 2px solid var(--main-theme-color);
    height: 18px;
    opacity: 1;
    width: 18px;
}
.voice-slide .swiper-pagination-bullet-active {
    background: var(--main-theme-color);
}
.voice-slide .swiper-button-next,
.voice-slide .swiper-button-prev {
    height: auto;
    width: auto;
    bottom: 7px;
    top: inherit;
}
.voice-slide .swiper-button-next:after,
.voice-slide .swiper-rtl .swiper-button-prev:after {
    background: url(../images/icon-arrow-r.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 30px;
    width: 100px;
}
.voice-slide .swiper-button-next,
.voice-slide .swiper-rtl .swiper-button-prev {
    margin: auto;
    right: -15%;
    left: 0;
}
.voice-slide .swiper-button-prev,
.voice-slide .swiper-rtl .swiper-button-next {
    margin: auto;
    left: -15%;
    right: 0;
}
.voice-slide .swiper-button-prev:after,
.voice-slide .swiper-rtl .swiper-button-next:after {
    background: url(../images/icon-arrow-l.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 30px;
    width: 100px;
}
@media screen and (max-width: 1268px) {
    .voice-head {
        height: 450px;
    }
    .voice-head__inner::before,
    .voice-head__inner::after {
        width: calc((100% - 600px) / 2);
    }
    .voice-head h2 {
        font-size: 42px;
        width: 565px;
    }
    .voice-head h2::before {
        height: 38px;
        margin-right: 10px;
        width: 43px;
    }
}
@media screen and (max-width: 968px) {
    .voice {
        padding-bottom: 55px;
    }
    .voice-head__inner::before,
    .voice-head__inner::after {
        width: calc((100% - 465px) / 2);
    }
    .voice-head h2 {
        font-size: 32px;
        width: 445px;
    }
    .voice-slide {
        padding: 80px 0;
    }
    .voice-slide .swiper-button-next,
    .voice-slide .swiper-rtl .swiper-button-prev {
        right: 10%;
        left: inherit;
    }
    .voice-slide .swiper-button-prev,
    .voice-slide .swiper-rtl .swiper-button-next {
        left: 10%;
        right: inherit;
    }
    .voice-slide .swiper-button-next:after,
    .voice-slide .swiper-rtl .swiper-button-prev:after,
    .voice-slide .swiper-button-prev:after,
    .voice-slide .swiper-rtl .swiper-button-next:after {
        width: 40px;
    }
    .voice-item {
        padding: 10px 8px 35px;
    }
    .voice-item__ttl {
        font-size: 24px;
    }
    .voice-item__name {
        font-size: 16px;
    }
    .voice-item__comment {
        font-size: 18px;
    }
    .read-more span {
        font-size: 16px;
        padding-right: 35px;
    }
}
@media screen and (max-width: 768px) {
    .voice {
        padding-bottom: 45px;
    }
    .voice-head__inner::before,
    .voice-head__inner::after {
        width: calc((100% - 330px) / 2);
    }
    .voice-head h2 {
        font-size: 26px;
        text-align: center;
        width: 300px;
    }
    .voice-head h2 .vo {
        display: block;
    }
    .voice-slide {
        padding: 50px 0 80px;
    }
    .voice-item__ttl {
        font-size: 18px;
    }
    .voice-item__name {
        font-size: 14px;
    }
    .voice-item__comment {
        font-size: 14px;
    }
    .read-more span {
        font-size: 14px;
    }
}

/* staff */
.staff {
    padding: 60px 0;
}
.staff-inner {
    margin: 0 auto;
    width: 92%;
    max-width: var(--sub-column);
}
.staff-head {
    margin: 0 0 45px;
    position: relative;
    text-align: center;
}
.staff-head::after {
    background: url(../images/border-r.png) repeat-x;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: -1;
}
.staff-head h2 {
    background: #fff;
    display: inline-block;
    font-size: 34px;
    font-weight: bold;
    padding: 0 15px;
}
.staff-head h2::before {
    background: url(../images/icon-staff.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 43px;
    margin-right: 20px;
    width: 58px;
}

.staff-items {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.staff-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    padding: 10px;
    width: 31%;
}
.staff-item__ttl {
    color: var(--main-theme-color);
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}
.staff-item__ttl::after {
    background: url(../images/border-r.png) repeat-x;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 4px;
    margin: 5px 0 15px;
    width: 100%;
    z-index: -1;
}
.staff-item__comment {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 2em;
}
.page-map {
    margin: 65px 0;
}
@media screen and (max-width: 1568px) {
    .staff-item {
        width: 32%;
    }
    .staff-item__ttl {
        font-size: 20px;
    }
}
@media screen and (max-width: 1268px) {    
    .staff-head h2 {
        font-size: 42px;
    }
    .staff-head h2::before {
        height: 43px;
        margin-right: 15px;
        width: 58px;
    }
    .staff-item {
        padding: 8px;
        width: 32%;
    }
    .staff-item__ttl {
        font-size: 26px;
    }
    .staff-item__comment {
        font-size: 16px;
    }
}
@media screen and (max-width: 968px) {
    .staff-head {
        margin: 0 0 35px;
    }
    .staff-head h2 {
        font-size: 32px;
    }
    .staff-head h2::before {
        height: 32px;
        width: 58px;
    }
    .staff-item {
        padding: 5px;
        width: 32%;
    }
    .staff-item__ttl {
        font-size: 24px;
    }
    .staff-item__comment {
        font-size: 14px;
    }
    .page-map {
        margin: 55px 0;
    }
}
@media screen and (max-width: 768px) {
    .staff {
        padding-bottom: 100px;
    }
    .staff-head h2 {
        font-size: 26px;
    }
    .staff-head h2::before {
        height: 26px;
        width: 33px;
    }
    .staff-item {
        padding: 8px;
        width: 100%;
    }
    .staff-item:not(:last-child) {
        margin: 0 0 25px;
    }
    .staff-item__ttl {
        font-size: 21px;
    }
    .staff-item__comment {
        font-size: 14px;
    }
    .page-map {
        margin: 45px 0;
    }
}

/* support */
.support {
    padding: 0 0 80px;
}
.support-head {
    background: url(../images/support-ttl.png) no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 650px;
    margin: 0 0 100px;
    position: relative;
    text-align: center;
}
.support-head::before {
    background: url(../images/icon-plain.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 225px;
    position: absolute;
    left: 5%;
    bottom: 30%;
    width: 300px;
}
.support-head__inner {
    margin: 0 auto;
    position: relative;
    width: 92%;
    max-width: var(--sub-column);
    z-index: 1;
}
.support-head h2 {
    color: #fff;
    display: inline-block;
    font-size: 42px;
    font-weight: bold;
}
.support-head h2 span {
    font-size: 60px;
    font-weight: bold;
}
.support-head h2::after {
    background: url(../images/border-w.png) no-repeat;
    background-size: cover;
    background-position: center;
    content: "";
    display: block;
    height: 22px;
    margin: 10px 0 25px;
    width: 100%;
}
.support-head .contact-btn {
    margin: 45px auto 0;
    width: 100%;
}
.contact-btn.w a {
    background: #fff;
    box-shadow: 5px 5px 0 rgba(220, 0, 18, 0.8);
    color: var(--main-theme-color);
}
.contact-btn.w a::after {
    background-image: url(../images/icon-triangel-r.svg);
}


.support-contents {
    margin:  0 auto 80px;
    text-align: center;
    width: 92%;
}
.support-contents h3 {
    display: inline-block;
    font-size: 34px;
    font-weight: bold;
}
.support-contents h3 span {
    color: var(--main-theme-color);
}
.support-contents h3::after {
    background: url(../images/border.png) no-repeat;
    background-size: cover;
    background-position: center;
    content: "";
    display: block;
    height: 14px;
    margin: 10px 0 25px;
    width: 100%;
}
.support-contents p {
    color: #231815;
    font-size: 18px;
    line-height: 2em;
    margin: 0 auto;
    text-align: left;
    width: 92%;
    max-width: var(--sub-column);
}

.support-items {
    margin: 0 auto;
    width: 92%;
    max-width: var(--sub-column);
}
.support-item {
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 200px;
}
.support-item:nth-child(1) {
    background-image: url(../images/support1.png);
    background-position: right;
}
.support-item:nth-child(2) {
    background-image: url(../images/support2.png);
    background-position: left;
}
.support-item:nth-child(3) {
    background-image: url(../images/support3.png);
    background-position: right;
}
.support-item:nth-child(even) {
    flex-direction: row-reverse;
}
.support-item:not(:last-child) {
    margin: 0 0 45px;
}
.support-text {
    width: 65%;
}
.support-text h4 {
    color: var(--main-theme-color);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    font-size: 36px;
    font-weight: bold;
}
.support-item:nth-child(even) .support-text h4 {
    justify-content: flex-end;
}
.support-text h4 .num {
    font-size: 125px;
    font-weight: 400;
    font-style: italic;
    margin-right: 25px;
}
.support-text h4::after {
    background: rgb(220,0,19);
    background: linear-gradient(71deg, rgba(220,0,19,1) 0%, rgba(220,0,19,0) 100%);
    content: "";
    display: block;
    height: 10px;
    margin: 0 0 20px;
    width: 100%;
}
.support-item:nth-child(even) .support-text h4::after {
    background: rgb(220,0,19);
    background: linear-gradient(267deg, rgba(220,0,19,1) 0%, rgba(220,0,19,0) 100%);
}
.support-text p {
    font-size: 24px;
    line-height: 2em;
    padding: 0 0 0 35px;
    width: 50%;
}
.support-item:nth-child(even) .support-text p {
    margin: 0 0 0 auto;
    padding: 0 35px 0 0;
}

@media screen and (max-width: 1268px) {
    .support-head {
        height: 650px;
    }
    .support-head::before {
        height: 120px;
        left: 5%;
        bottom: inherit;
        top: 15%;
        width: 221px;
    }
    .support-head h2 {
        font-size: 38px;
    }
    .support-head h2 span {
        font-size: 48px;
    }
    .support-contents {
        margin: 0 auto 60px;
    }
    .support-contents h3 {
        font-size: 42px;
    }
    .support-contents p {
        font-size: 18px;
    }

    .support-item {
        padding-bottom: 200px;
    }
    .support-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    .support-item:not(:last-child) {
        margin: 0 0 35px;
    }
    .support-text {
        width: 85%;
    }
    .support-text h4 {
        font-size: 28px;
    }
    .support-text h4 .num {
        font-size: 95px;
    }
    .support-text p {
        font-size: 18px;
        padding: 0 0 0 25px;
        width: 75%;
    }
    .support-item:nth-child(even) .support-text p {
        padding: 0 25px 0 0;
    }
}
@media screen and (max-width: 968px) {
    .support-contents {
        margin:  0 auto 50px;
    }
    .support-contents h3 {
        font-size: 32px;
    }
    .support-contents p {
        font-size: 16px;
    }
    .support-item {
        background-size: cover;
        padding: 25px;
    }
    .support-item:nth-child(1),
    .support-item:nth-child(2),
    .support-item:nth-child(3) {
        background-position: center;
        background-color: rgba(255,255,255,0.7);
        background-blend-mode: lighten;
    }
    .support-text {
        width: 90%;
    }
    .support-text h4 {
        font-size: 24px;
    }
    .support-text h4 .num {
        font-size: 60px;
    }
    .support-text p {
        font-size: 16px;
        padding: 0 0 0 15px;
        width: 90%;
    }
    .support-item:nth-child(even) .support-text p {
        padding: 0 15px 0 0;
    }
}
@media screen and (max-width: 768px) {
    .support-head {
        height: 515px;
    }
    .support-head::before {
        height: 70px;
        left: 5%;
        bottom: inherit;
        top: -8%;
        width: 132px;
    }
    .support-head h2 {
        font-size: 26px;
    }
    .support-head h2 span {
        font-size: 38px;
    }
    .support-item {
        padding: 20px 15px;
    }
    .support-text {
        width: 100%;
    }
    .support-text h4 {
        font-size: 20px;
    }
    .support-text h4 .num {
        font-size: 40px;
        margin-right: 10px;
    }
    .support-text p {
        font-size: 14px;
        width: 100%;
    }
}
@media screen and (max-width: 568px) {
    .support-head {
        height: 460px;
    }
    .support-head h2 {
        font-size: 21px;
    }
    .support-head h2 span {
        font-size: 28px;
    }
    .support-head .contact-btn {
        margin: 35px auto 0;
    }
    .support-text h4 {
        font-size: 18px;
    }
    .support-text h4 .num {
        font-size: 30px;
    }
}

/* contact */
.contact {
    padding: 0 0 80px;
}
.contact.page {
    background: var(--gradient-c);
    background: var(--gradient);
    padding: 80px 0;
}
.contact-head {
    background: url(../images/contact-ttl.png) no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 355px;
    position: relative;
    text-align: center;
}
.contact.page .contact-head {
    background: none;
    height: auto;
    margin: 0;
}
.contact-head__inner {
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: var(--sub-column);
}
.contact-head__inner::before,
.contact-head__inner::after {
    background: url(../images/border2-w.png) repeat-x;
    background-position: center;
    background-size: contain;
    content: "";
    height: 4px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc((100% - 620px) / 2);
}
.contact-head__inner::before {
    left: 0;
}
.contact-head__inner::after {
    right: 0;
}
.contact-head h2 {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 44px;
    font-weight: bold;
    margin: 0 auto;
    width: 590px;
}
.contact-body {
    margin: 0 auto;
    padding: 100px 0 60px;
    width: 92%;
    max-width: var(--sub-column);
}
.contact.page .contact-body {
    padding: 65px 0;
}
@media screen and (max-width: 1268px) {
    .contact-head {
        height: 355px;
    }
    .contact-head__inner::before,
    .contact-head__inner::after {
        width: calc((100% - 480px) / 2);
    }
    .contact-head h2 {
        font-size: 42px;
        width: 440px;
    }
}
@media screen and (max-width: 768px) {
    .contact-head {
        height: 185px;
    }
    .contact-head__inner::before,
    .contact-head__inner::after {
        width: calc((100% - 300px) / 2);
    }
    .contact-head h2 {
        font-size: 26px;
        width: 270px;
    }
    .contact-body {
        padding: 65px 0;
    }
}

.voice-contact {
    margin: 75px auto 0;
    width: 92%;
    max-width: var(--sub-column);
}

.about-flex {
    margin: 0 0 65px;
}
.about-flex__card {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 0 35px;
    position: relative;
}
.about-flex__card:not(:last-child) {
    margin: 0 0 65px;
}
.about-flex__card:nth-child(even) {
    justify-content: flex-start;
    padding: 35px 0 0;
}
.language .about-flex__card {
    padding: 65px 0 0;
}
.about-card__text {
    background: #fff;
    display: flex;
    justify-content: flex-start;
    padding: 45px;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: left;
    width: 50%;
}
.about-flex__card:nth-child(even) .about-card__text {
    justify-content: flex-end;
    right: 0;
    left: inherit;
    bottom: inherit;
    top: 0;
    text-align: right;
}
.language .about-flex__card .about-card__text {
    top: 0;
    bottom: inherit;
}
.about-text__in {
    width: 90%;
}
.about-text__in h3 {
    margin: 0 0 15px;
}
.about-text__in h3 span {
    background: var(--gradient);
    color: #fff;
    display: inline-block;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 5px;
    line-height: 1.2em;
    padding: 1px 10px 4px;
    width: 100%;
    max-width: max-content;
}
.about-text__in h3 span:not(:last-child) {
    margin: 0 0 8px;
}
.about-text__in p {
    font-size: 16px;
    line-height: 1.8em;
    text-align: left;
}
.about-card__image {
    position: relative;
    width: 55%;
    z-index: 1;
}
@media screen and (max-width: 1199px) {
    .about-text__in {
        width: 85%;
    }
}
@media screen and (max-width: 1099px) {
    .about-text__in {
        width: 95%;
    }
    .about-text__in h3 span {
        font-size: 21px;
    }
    .about-text__in p {
        font-size: 15px;
    }
}
@media screen and (max-width: 968px) {
    .about-card__image {
        width: 45%;
    }
    .about-card__text {
        width: 60%;
    }
}
@media screen and (max-width: 768px) {
    .about-flex {
        margin: 0 0 45px;
    }
    .about-flex__card:not(:last-child) {
        margin: 0 0 45px;
    }
    .about-flex__card {
        flex-direction: column-reverse;
        padding: 0;
    }
    .about-card__image {
        margin: 0 0 15px;
        width: 100%;
    }
    .about-card__text {
        padding: 25px;
        position: static;
        width: 100%;
    }
    .about-text__in {
        width: 100%;
    }
}
@media screen and (max-width: 568px) {
    .about-card__text {
        padding: 15px;
    }
}
@media screen and (max-width: 468px) {
    .about-text__in h3 span {
        font-size: 18px;
    }
    .about-text__in p {
        font-size: 14px;
    }
}


.area-program {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 92%;
    max-width: var(--main-column);
}
.area-program__item {
    margin: 10px 0 0;
    width: 32.5%;
}
.area-program__item:nth-child(-n+3) {
    margin-top: 0;
}
@media screen and (max-width: 968px) {
    .area-program__item {
        margin-top: 15px;
        width: 49%;
    }
    .area-program__item:nth-child(-n+3) {
        margin-top: 15px;
    }
    .area-program__item:nth-child(-n+2) {
        margin-top: 0;
    }
}
@media screen and (max-width: 768px) {
    .area-program__item {
        width: 100%;
    }
    .area-program__item:nth-child(-n+2) {
        margin-top: 15px;
    }
    .area-program__item:first-child {
        margin-top: 0;
    }
}

.area-program__head {
    margin: 0 auto 65px;
    text-align: center;
    width: 50%;
}
.area-program__head::after {
    background: url(../images/border.png) no-repeat;
    background-size: cover;
    background-position: center;
    content: "";
    display: block;
    height: 14px;
    margin: 10px 0 25px;
    width: 100%;
}
.area-program__head h3 {
    display: inline-block;
    font-size: 42px;
}
@media screen and (max-width: 1268px) {
    .area-program__head {
        width: 70%;
    }
}
@media screen and (max-width: 968px) {
    .area-program__head {
        width: 90%;
    }
    .area-program__head {
        margin: 0 auto 55px;
    }
    .area-program__head h3 {
        font-size: 32px;
    }
}
@media screen and (max-width: 768px) {
    .area-program__head {
        margin: 0 auto 45px;
    }
    .area-program__head h3 {
        font-size: 24px;
    }
}