@font-face {
    font-family: 'FOT-TsukuMinPro-D';
    src: url('../fonts/FOT-TsukuMinPro-D.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FuturaCyrillicBook';
    src: url('../fonts/FuturaCyrillicBook.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
    /* line-height: 1.15; */
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}




/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    height: 100%;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    margin: 0;
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
    height: 100%;
    position: relative;
    color: #333;
    font-size: 16px;
    overflow-x: hidden;
    line-height: 1.5;
    font-family: "zen-kaku-gothic-new", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.mouse-stalker {
    pointer-events: none;
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background: #bb9099;
    border-radius: 50%;
    transform: translate(0, 0);
    transition: transform 0.2s;
    transition-timing-function: ease-out;
    z-index: 999;
}

.mouse-stalker-large {
    pointer-events: none;
    position: fixed;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: #7e636959;
    border-radius: 50%;
    transform: translate(0, 0);
    transition: all 0.3s ease-out;
    z-index: 999;
}

.mouse-stalker-large.is_active {
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: #be85902f;
    transition: all 0.3s ease-out;
}


img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
    vertical-align: bottom;
    user-drag: none;
    /* ドラッグ禁止 */
    user-select: none;
    /* 選択禁止 */
    -webkit-user-drag: none;
    /* Webkitブラウザ（ChromeやSafari）向け */
    -webkit-user-select: none;
    -moz-user-select: none;
    /* Firefox向け */
    -ms-user-select: none;
    /* IE向け */
    pointer-events: none;
    /* 右クリックや長押し禁止 */
}



a {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    opacity: 1;
    transition: opacity .5s ease;
}

@media (any-hover: hover) {
    a:hover {
        opacity: 0.5;
    }
}

li {
    list-style: none;
}

.sp {
    display: none !important;
}

.flex-item {
    display: flex;
}

.rl-text {
    writing-mode: vertical-rl;
}

p,
.side-title,
.school-access-section li,
.single-news-section .news-content {
    margin: 0;
    font-family: "zen-kaku-gothic-new", sans-serif;
    font-weight: 500;
    font-style: normal;
}

nav,
.menu,
.concept-section h2,
.contact-section h2,
.section-title,
.more-btn,
.profile-name,
.school-name,
h5,
h4,
.date,
.media-text,
.media-title,
.news-text,
.news-title,
.footer-text,
.footer-nav,
.copy-right {
    font-family: "FOT-TsukuMinPro-D", sans-serif;
    font-weight: 300;
    font-style: normal;
}

span.pink-title,
.text-concept {
    font-family: "FuturaCyrillicBook", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #FFF6F8;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

input {
    font-size: 16px;
}

.no-scroll {
    overflow: hidden;
    width: 100%;
    touch-action: none;
    /* スマホでの画面移動無効化（オプション） */
}

.modal {
    display: none;
}

.modal-cookie {
    width: 100vw;
    padding: 30px 60px 30px 30px;
    background-color: #fff;
    border-top: 1px solid #D9A8B2;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
}

/* 表示状態 */
.modal-cookie.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.modal-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
}

.modal-cookie p a {
    color: #D9A8B2;
    border-bottom: 1px solid #D9A8B2;
}

a.cookie-close-btn {
    padding: 10px 30px;
    background-color: #D9A8B2;
    border-radius: 10px;
    border: 1px solid #D9A8B2;
    transition: all .5s ease;
    margin-left: 40px;
    text-wrap: nowrap;
}

@media (any-hover: hover) {
    a.cookie-close-btn:hover {
        background-color: #fff;
        color: #D9A8B2;
        opacity: 1;
    }
}


/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/



.top-header {
    position: absolute;
    top: 38px;
    left: 4vw;
    z-index: 1;
}

@media (any-hover: hover) {
    a.logo:hover {
        opacity: 1;
    }
}

.logo {
    width: 253px;
}

.menu-wrap-pc {
    display: flex;
    color: #3B4043;
    position: absolute;
    bottom: 4%;
    left: 4vw;
    z-index: 1;
}

.menu-wrap-pc li {
    margin-bottom: 42px;
    margin-left: 42px;
    font-size: min(2.61vw, 28px);
    line-height: 1;
}

.menu-wrap-pc li:nth-child(5) {
    margin-bottom: 112px;
}

.menu-wrap-pc li a {
    position: relative;
    color: #3B4043;
    transition: color .5s ease;
}

.main-header a,
.fixed-header a, {
    position: relative;
}

.main-header a .insta-icon,
.fixed-header a .insta-icon {
    transition: opacity .5s ease;
}

.main-header a .insta-icon.hover,
.fixed-header a .insta-icon.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

@media (any-hover: hover) {
    .menu-wrap-pc li a:hover,
    .main-header a:hover {
        opacity: 1;
        color: #D9A8B2;
    }

    .main-header a:hover .insta-icon,
    .fixed-header a:hover .insta-icon {
        opacity: 0;
    }
    .main-header a:hover .insta-icon.hover,
    .fixed-header a:hover .insta-icon.hover {
        opacity: 1;
    }
}


.menu {
    font-size: 24px;
}

.menu::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: #333333;
    margin-left: 24px;
}

.main-header {
    position: fixed;
    z-index: 998;
    padding: 30px 2.5% 40px;
    width: 100%;
    display: none;
    background: linear-gradient(to bottom, #ffffffd7, #ffffffb2 20%, #ffffff00);
}

.header-flex-box {
    display: flex;
    top: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-header a {
    color: #3B4043;
    transition: color .5s ease;
    position: relative;
}

.main-header .logo {
    width: min(20.86vw, 253px);
}

.main-header nav ul {
    font-size: min(2.09vw, 18px);
    gap: 36px;
}

.bg-movie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    object-fit: cover;
    z-index: -1;
}

.bg-image {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    object-fit: cover;
    z-index: -1;
}

/*--------------------------------------------------------------
# key-visual
--------------------------------------------------------------*/
main {
    overflow-x: hidden;
}

.kv-section {
    height: 100svh;
    width: 100vw;
    position: relative;
    background: #D29EAA;
}

.kv-img {
    height: 93svh;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.kv-img::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #471818;
    opacity: 0.3;
}

.address-wrap {
    height: 7svh;
    background-color: #D29EAA;
    color: #fff;
    text-wrap: nowrap;
    align-content: center;
    padding: 15px 25px 15px 15px;
}

.address-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}

.address {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.address-content .sns-wrap a:first-child {
    margin-right: 15px;
}

/*--------------------------------------------------------------
# concept-slider
--------------------------------------------------------------*/
.concept-section {
    position: relative;
    padding-top: 31.25vw;
    margin-bottom: 11vw;
}

.slider-area {
    position: relative;
}

.concept-content {
    z-index: 1;
    color: #fff;
    text-align: center;
}

.text-concept {
    width: 250px;
    padding-bottom: 16px;
    border-bottom: 1px solid #fff;
    margin: 0 auto;
    font-size: 16px;
}

.concept-content .text-concept {
    filter: drop-shadow(0 0 5px #333);
}

.concept-content h2 {
    font-size: min(3.39vw, 65px);
    margin-top: 30px;
    filter: drop-shadow(0 0 5px #333);
}

.concept-section .slider-wrapper {
    position: absolute;
    top: 50%;
    /* 初期位置（後で調整可） */
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    /* ← 上下に動くために必要 */
    z-index: -1;
}

.slider {
    width: 100%;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    display: block;
    width: 100%;
    height: auto;
}

.concept-logo {
    margin-top: 31.25vw;
}

.logo-slider .slide {
    margin-right: 2%;
}

.concept-logo img {
    opacity: 0.6;
}



/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
.about-section {
    position: relative;
    margin-bottom: 150px;
}

.top .wrapper {
    width: min(62.5vw, 1200px);
    margin: 0 auto;
}

.img-position {
    object-fit: cover;
}

.about-01 {
    text-align: right;
}

.about_01-img {
    margin-right: -10%;
    width: 52%;
}

.flex-about-img {
    display: flex;
    gap: 50px;
    margin-top: 80px;
    margin-left: -10vw;
}

.about_05-img {
    margin-top: -24%;
    margin-bottom: 24%;
    width: 16%;
}

.about_06-img {
    margin-top: -12%;
    margin-bottom: 12%;
    width: 16%;
}

.about_07-img {
    width: 16%;
}

.about-02 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
}

.about-content {
    display: flex;
    align-items: stretch;
    width: min(42vw, 647px);
    padding: 250px 0 112px;
}

.about_02-img-wrap {
    text-align: right;
    width: 46%;
}

.about_02-img {
    margin-top: -10%;
    margin-right: -30%;
    border-radius: 10px;
}

.about-03 {
    text-align: right;
    margin-right: -10%;
}

.about_08-img {
    width: 35%;
}

.side-title {
    font-weight: bold;
}

span.pink-title {
    color: #D9A8B2;
    margin-bottom: 1em;
    letter-spacing: 0.05em;
    font-size: min(2.09vw, 18px);
    font-weight: 700;
}

.pink-title::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: min(7.29vw, 140px);
    background-color: #333;
    margin-bottom: 0.5em;
}

.text-content {
    margin-left: min(4.34vw, 45px);
    position: relative;
}

.section-title {
    font-size: min(2.61vw, 32px);
    font-weight: 600;
    margin-bottom: 3rem;
}

.section-text {
    line-height: 3;
    text-align: justify;
}

.btn-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 20%;
}

.more-btn {
    background-color: #D9A8B2;
    font-weight: 600;
    text-align: center;
    padding: 0.5em 2em;
    border-radius: 999px;
    border: 1px solid #D9A8B2;
    transition: all .5s ease;
}

@media (any-hover: hover) {
    .more-btn:hover {
        background-color: #fff;
        color: #D9A8B2;
        opacity: 1;
    }

    .more-btn:hover span::after {
        border-top: 2px solid #D9A8B2;
        border-right: 2px solid #D9A8B2;
        translate: 0 10%;
    }
}


.about-content .more-btn {
    position: absolute;
    bottom: 0;
    right: 0;
}

.more-btn span::after {
    content: "";
    position: relative;
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
    right: -1em;
    translate: -50% 10%;
    transition: all .5s ease;
}

/* .about_02-img {
    translate: 44% -16%;
    width: 47%;
}

.about_03-img {
    width: min(32.45vw, 623px);
    aspect-ratio: 4 / 3;
    translate: -32%;
}

.about_04-img {
    width: min(34.43vw, 661px);
    aspect-ratio: 16 / 9;
    translate: 42% 43.5%;
} */



/*--------------------------------------------------------------
# school
--------------------------------------------------------------*/
.school-section {
    position: relative;
    margin-bottom: 300px;
}

.school-01 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.school_01-img {
    width: min(33.54vw, 644px);
    aspect-ratio: 1 / 1;
    margin-left: -30%;
    margin-top: -32%;
}

.school-content {
    display: flex;
    width: min(39vw, 647px);
    padding-bottom: 10%;
}

.school-content .more-btn {
    position: absolute;
    bottom: 5%;
    right: 0;
}

/* .school_02-img-wrap {
    text-align: right;
    translate: 21% -33%;
}

.school_02-img {
    width: min(40.05vw, 769px);
    aspect-ratio: 8 / 5;
} */

.flex-school-img {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    width: 100vw;
    translate: -18.75vw;
    margin-top: 80px;
}

.school_03-img {
    margin-left: 10%;
    width: 47%;
}

.school_04-img {
    margin-left: -20%;
    margin-bottom: -20%;
    width: 32%;
}

.school_05-img {
    margin-top: 28%;
    margin-right: 8%;
    width: 28%;
    border-radius: 10px;
}






/*--------------------------------------------------------------
# gallery
--------------------------------------------------------------*/
.gallery-section {
    background-color: #FFF6F8;
    padding: 115px 0;
    text-align: center;
}

.gallery-section .pink-title {
    display: block;
    margin-bottom: 1.125rem;
}

.gallery-section .pink-title::before {
    display: none;
}

.gallery-section .section-title {
    display: block;
}

.gallery-section ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 2%;
    margin: 73px 0 48px;
}

.gallery-content {
    width: 32%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 24px;
}

.gallery-content a {
    width: 100%;
    height: 100%;
}

.gallery-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





/*--------------------------------------------------------------
# media
--------------------------------------------------------------*/
.media-section {
    padding: 115px 0;
    position: relative;
    background-color: #fff;
}

.media-section .side-title {
    position: absolute;
    left: 18.75vw;
    transform: translateX(-70px);
}

.media-content-wrap {
    width: 81.25vw;
}

.media-section ul {
    display: flex;
    gap: 20px;
}

.media-content {
    width: 19.27vw;
    margin-bottom: 20px;
}


.media-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.media-text-wrap {
    padding: 2.8rem 10px 0;
}

.media-section .date {
    color: #A1A1A1;
    font-size: min(1.56vw, 15px);
    margin-bottom: 1.9rem;
}

.media-text {
    color: #202020;
    font-weight: bold;
    line-height: 1.5;
}

.media-section .btn-wrap {
    text-align: right;
    padding: 0 2.5%;
}

.media-section .more-btn {
    margin-top: 50px;
}

.media-icon {
    height: 1em;
    vertical-align: baseline;
    margin-left: 10px;
}

/*--------------------------------------------------------------
# news
--------------------------------------------------------------*/
.news-section {
    padding: 115px 0;
    position: relative;
    background-color: #FFF6F8;
}

.news-section .side-title {
    position: absolute;
    left: 18.75vw;
    transform: translate(-70px);
}

.news-content-wrap {
    display: flex;
    justify-content: space-between;
}

.news-section .section-title {
    text-align: center;
}

.news-section ul {
    width: 72%;
}

.news-section ul li {
    border-bottom: 1px solid #C2C2C2;
}

.news-section ul li:first-child {
    border-top: 1px solid #C2C2C2;
}

.news-section ul a {
    color: #333;
    padding: 2.7em;
}

.news-section .date {
    color: #A1A1A1;
    margin-right: 3rem;
}

.news-text {
    line-height: 1.5;
}




/* ページネーション全体 */
.post-pagination-wrapper .pagination {
    font-family: "futura-pt", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 2em 0;
}

/* 各リンク */
.post-pagination-wrapper .pagination li a,
.post-pagination-wrapper .pagination li span {
    display: inline-block;
    padding: 6px 12px;
    text-decoration: none;
    color: #333;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.post-pagination-wrapper .pagination li a.next,
.post-pagination-wrapper .pagination li a.prev {
    color: #D9A8B2;
    border-radius: 999px;
    padding: 0 0.5em;
    position: relative;
}

.post-pagination-wrapper .pagination li a.next::before,
.post-pagination-wrapper .pagination li a.prev::before {
    content: "";
    height: 1.5em;
    width: 1.5em;
    background: #D9A8B2;
    border-radius: 9999px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.post-pagination-wrapper .pagination li a.next::after,
.post-pagination-wrapper .pagination li a.prev::after {
    content: "";
    height: 0.5em;
    width: 0.5em;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}

.post-pagination-wrapper .pagination li a.next::after {
    transform: translate(-64%, -51%) rotate(-135deg);
}

.post-pagination-wrapper .pagination li a.prev::after {
    transform: translate(-34%, -52%) rotate(45deg);
}

/* 現在のページ（下線付き） */
.post-pagination-wrapper .pagination li.current span {
    border-bottom: 1px solid #D9A8B2;
    font-weight: bold;
}

/* ホバー時 */
@media (any-hover: hover) {
    .post-pagination-wrapper .pagination li a:hover {
        border-bottom: 2px solid #999;
    }
    .post-pagination-wrapper .pagination li a.next:hover,
    .post-pagination-wrapper .pagination li a.prev:hover {
        border-bottom: none !important;
        transform: none;
    }
}



/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
.contact-section {
    background-image: url(../img/TOP/contact-bg.png);
    background-position: center;
    background-size: cover;
    padding: 115px 0;
    position: relative;
}

.contact-content {
    backdrop-filter: blur(30px) brightness(1.2);
    border-radius: 15px;
    color: #fff;
    text-align: center;
    padding: 75px 0;
}

.contact-section h2 {
    font-size: min(2.61vw, 32px);
    margin: 2rem 0;
    font-weight: 400;
}

.contact-section .more-btn {
    width: 100%;
    max-width: 264px;
    margin-top: 32px;
    padding: 1em 2em;
}

.top-btn {
    position: absolute;
    top: 0;
    right: 30px;
    transform: translateY(-38%);
    z-index: 0;
}

.footer-area .top-btn .more-btn {
    padding: 0;
    position: relative;
    background-color: transparent;
    border-radius: 0;
    border: none;
}

.footer-area .top-btn .more-btn::before {
    content: "";
    position: absolute;
    display: block;
    width: 5em;
    height: 5em;
    background-color: #D9A8B2;
    border-radius: 9999px;
    top: 50%;
    left: 50%;
    translate: -50% -58%;
    transition: all .5s ease;
}

.top-btn .more-btn span {
    position: relative;
}

.top-btn .more-btn span::before {
    content: "";
    position: absolute;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(-45deg) translate(0, -150%);
    top: 0;
    left: 60%;
    transition: all .5s ease;
}

@media (any-hover: hover) {
    .top-btn .more-btn:hover::before {
        background: #fff;
    }

    .top-btn .more-btn:hover span::before {
        border-top: 2px solid #D9A8B2;
        border-right: 2px solid #D9A8B2;
    }
}


.top-btn .more-btn span::after {
    display: none;
}


/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.footer-area {
    background-color: #D9A8B2;
    color: #ffffff;
    text-align: center;
    padding: 50px 18.5vw;
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 0;
}

.footer-text {
    font-size: min(1.83vw, 20px);
}

.footer-logo {
    width: 16vw;
    margin: min(3.91vw, 60px) 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 10%;
    font-size: min(1.96vw, 24px);
}

.footer-nav.bottom {
    justify-content: center;
    gap: 30px;
    font-size: min(1.56vw, 14px);
    font-weight: 400;
}

.footer-nav.bottom.sp {
    display: none;
}

.footer-nav a {
    position: relative;
}

.footer-nav a::after {
    content: "";
    height: 1px;
    width: 0;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s ease;
}

@media (any-hover: hover) {
    .footer-nav a:hover {
        opacity: 1;
    }

    .footer-nav a:hover::after {
        width: 100%;
    }
}

.footer-area .sns-wrap {
    gap: 30px;
    margin: 30px 0;
    height: min(2.44vw, 36px);
}

.footer-area .sns-wrap a:first-child {
    margin-right: 20px;
}

.copy-right {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: min(1.56vw, 14px);
}




/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/
.error-404 .wrapper {
    padding: 240px 0 150px;
    text-align: center;
}

.not-found {
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    color: #D9A8B2;
    font-size: 80px;
    letter-spacing: 0.1em;
}

.error-404 p {
    font-size: 20px;
    margin-top: 30px;
}

.error-404 .more-btn {
    margin-top: 100px;
}





/*--------------------------------------------------------------
# observer-animation
--------------------------------------------------------------*/
.fadeIn_up {
    opacity: 0;
}

.is-show {
    animation: titleUp 1s forwards;
}

@keyframes titleUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: none;
        opacity: 1;
    }
}

.top-header .logo.fadeIn_up {
    opacity: 0;
}

.top-header .logo.is-show {
    animation: h1Fade .5s forwards;
    animation-delay: 1s;
}

@keyframes h1Fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.concept-content.is-show {
    animation: conceptUp 2s forwards;
}

@keyframes conceptUp {
    0% {
        opacity: 0;
        transform: translate(0, 80px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

.about-content.is-show,
.school-content.is-show,
.about_05-img.is-show,
.about_06-img.is-show,
.about_07-img.is-show,
.about_08-img.is-show {
    animation: fadeUp 2s forwards;
}

@keyframes fadeUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: none;
        opacity: 1;
    }
}

.about_01-img.is-show,
.about_02-img.is-show,
.school_05-img.is-show {
    animation: fadeIN-right 2s forwards;
}

@keyframes fadeIN-right {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: none;
        opacity: 1;
    }
}

.school_01-img.is-show {
    animation: fadeIN-left 2s forwards;
}

@keyframes fadeIN-left {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: none;
        opacity: 1;
    }
}











/* .about_01-img.fadeIn_up {
    margin-left: -100px;
    opacity: 0;
}

.about_01-img.is-show {
    animation: fade-01 2s forwards;
}

@keyframes fade-01 {
    0% {
        margin-left: -100px;
        opacity: 0;
    }

    100% {
        margin-left: 0;
        opacity: 1;
    }
}

.about_02-img.fadeIn_up {
    opacity: 0;
    translate: calc(44% + 70px) -16%;
}

.about_02-img.is-show {
    animation: fade-02 2s forwards;
}

@keyframes fade-02 {
    0% {
        translate: calc(44% + 70px) -16%;
        opacity: 0;
    }

    100% {
        translate: 44% -16%;
        opacity: 1;
    }
}

.about_03-img.fadeIn_up {
    translate: calc(-32% - 100px);
    opacity: 0;
}

.about_03-img.is-show {
    opacity: 1;
    animation: fade-03 2s forwards;
}

@keyframes fade-03 {
    0% {
        translate: calc(-32% - 100px);
        opacity: 0;
    }

    100% {
        translate: -32%;
        opacity: 1;
    }
}

.about_04-img.fadeIn_up {
    translate: 42% calc(43.5% - 100px);
    opacity: 0;
}

.about_04-img.is-show {
    opacity: 1;
    animation: fade-04 2s forwards;
}

@keyframes fade-04 {
    0% {
        translate: 42% calc(43.5% - 100px);
        opacity: 0;
    }

    100% {
        translate: 42% 41.5%;
        opacity: 1;
    }
}

.school_01-img.fadeIn_up {
    translate: calc(-20% + 60px) -50%;
    opacity: 0;
    border-radius: 0 100px 0 0;
}

.school_01-img.is-show {
    opacity: 1;
    animation: fade-05 2s forwards;
}

@keyframes fade-05 {
    0% {
        translate: calc(-20% + 60px) -50%;
        opacity: 0;
    }

    100% {
        translate: -20% -50%;
        opacity: 1;
    }
}

.school_02-img-wrap {
    translate: calc(21% + 60px) -33%;
    opacity: 0;
}

.school_02-img-wrap.is-show {
    opacity: 1;
    animation: fade-06 2s forwards;
}

@keyframes fade-06 {
    0% {
        translate: calc(21% + 60px) -33%;
        opacity: 0;
    }

    100% {
        translate: 21% -33%;
        opacity: 1;
    }
} */



@media screen and (max-width:1440px) {


    .wrapper,
    .top .wrapper {
        width: 80%;
    }

    .about-content {
        width: min(50vw, 647px);
        padding-top: 150px;
    }

    .flex-about-img {
        margin-left: -5vw;
    }

    .about_02-img {
        margin-top: -2%;
        margin-right: -13%;
    }

    .school_01-img {
        margin-left: -12%;
        margin-top: -22%;
    }

    .flex-school-img {
        translate: -10vw;
    }




    /* @keyframes fade-02 {
        0% {
            translate: calc(35.25% + 70px) -16%;
            opacity: 0;
        }

        100% {
            translate: 35.25% -16%;
            opacity: 1;
        }
    }

    .about_03-img.fadeIn_up {
        width: min(39.45vw, 623px);
    }

    @keyframes fade-03 {
        0% {
            translate: calc(-23.25% - 100px);
            opacity: 0;
        }

        100% {
            translate: -23.25%;
            opacity: 1;
        }
    }

    .about_04-img.fadeIn_up {
        width: min(41.43vw, 661px);
    }

    @keyframes fade-04 {
        0% {
            translate: 22.25% calc(43.5% - 100px);
            opacity: 0;
        }

        100% {
            translate: 22.25% 43.5%;
            opacity: 1;
        }
    }

    @keyframes fade-05 {
        0% {
            translate: calc(-30.25% - 60px) 6%;
            opacity: 0;
        }

        100% {
            translate: -30.25% 6%;
            opacity: 1;
        }
    }

    @keyframes fade-06 {
        0% {
            translate: calc(9.25% + 60px) 24%;
            opacity: 0;
        }

        100% {
            translate: 9.25% 24%;
            opacity: 1;
        }
    } */

    .media-content-wrap {
        translate: 0.5vw;
        width: 90vw;
    }

    .media-content {
        width: 22.27vw;
    }

    .media-section .side-title,
    .news-section .side-title {
        left: 10vw;
        transform: translateX(-52px);
    }

    .news-section ul {
        width: 68%;
    }

    .news-section ul a {
        padding: 2em;
    }

    .copy-right {
        transform: translate(50%, 150%);
        right: 50%;
    }
}