@charset 'utf-8';

:root {
    --main-color: #C0F100;
    --sub-color1: #F3C6B9;
    --sub-color2: #ECD635;
    --bace-color: #fff;
    --text-gray: #888;
    --fontsize-S: 12px;
    --fontsize-M: 22px;
    --sp-bottom: 64px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============ font ==============*/

/* .darumadrop-one-regular {
  font-family: "Darumadrop One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
  .shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
  .zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 300～900;
  font-style: normal;
}
*/

h2 {
    font-size: 2rem;
    margin-bottom: var(--sp-bottom);
}

p,
span {
    font-size: 1.2rem;
}

@media screen and (max-width:767px) {
    h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    p,
    span {
        font-size: 1rem;
    }

    p {
        text-align: left;
    }

    /*======max-width:767px======*/
}

/* ================ Common ================ */
a {
    transition: ease-in-out .3s;
    text-decoration: none;
    color: #111111;
    cursor: pointer;
}

a:hover {
    opacity: .75;
}

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

body {
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.75;
}

p {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

li {
    list-style: none;
}

.btn_outline {
    margin-right: auto;
    margin-left: auto;
    position: relative;
    display: block;
    width: 100%;
    max-width: 200px;
    height: 48px;
    padding: 3px 12px;
    text-align: center;
    overflow-wrap: anywhere;
    background: -moz-linear-gradient(-45deg, #F7CFC3FF, #F4DB3CFF);
    background: -webkit-linear-gradient(-45deg, #F7CFC3FF, #F4DB3CFF);
    background: linear-gradient(135deg, #F7CFC3FF, #F4DB3CFF);
    border-radius: 9px;
}

.btn_outline_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--bace-color);
    border-radius: 6px;
}

.btn_outline:hover {
    opacity: 1;
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
    box-shadow: 7px 7px 10px -10px #777777;
}

.fadeIn {
    opacity: 0;
    transition: 0.7s;
}

.fadeIn.is-show {
    opacity: 1;
}

.fadeIn_up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.7s;
}

.fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

/* =============== loading =============== */
.loading {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1.0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20000;
}

.loading img {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
}

.loading small {
    display: block;
    width: 40px;
    position: absolute;
    top: 58%;
    left: 50%;
    margin-top: -20px;
    margin-left: -25px;
    color: #75db00;
    font-size: 16px;
}

/* =============== header =============== */
.site-header {
    background-color: var(--base-color);
    height: 81px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
}

.site-header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
}

.site-header-logo {
    margin-left: 16px;
    padding: 2px;
    height: 40px;
    width: auto;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
}

.site-header-nav ul {
    display: flex;
    margin-right: -16px;
}

.site-header-nav p {
    display: none;
}

.site-header-nav img {
    height: 100px;
    width: auto;
}

.site-header-nav .nav-sp {
    display: none;
}

.site-header-nav li.position-middle {
    margin-left: -20px;
    width: 133px;
}

.site-header-nav li.position-right {
    margin-left: -40px;
    width: 153px;
}

/* nav-sp */

.site-header-nav ul li a {
    text-decoration: none;
    font-size: .9rem;
    color: #000;
    position: relative;
}

.site-header-nav ul li a p {
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2rem;
}

.site-header-navbtn {
    display: none;
    position: fixed;
    top: 8px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    z-index: 1;
    cursor: pointer;
}

.site-header-navbtn span,
.site-header-navbtn::before,
.site-header-navbtn::after {
    width: 30px;
    height: 3px;
    background-color: #888;
    position: absolute;
    top: 50%;
    left: 5px;
    transition: transform .4s;
    border-radius: 3px;
}

.site-header-navbtn::before,
.site-header-navbtn::after {
    content: '';
}

.site-header-navbtn::before {
    transform: translateY(-8px);
}

.site-header-navbtn::after {
    transform: translateY(8px);
}

body.is-nav-open .site-header-navbtn span {
    transform: scaleX(0);
}

body.is-nav-open .site-header-navbtn::before {
    transform: translateY(0) rotate(45deg);
}

body.is-nav-open .site-header-navbtn::after {
    transform: translateY(0) rotate(-45deg);
}

@media screen and (max-width: 767px) {
    .site-header {
        height: 54px;
    }

    .site-header-container {
        padding-top: 0px;
    }

    .site-header-logo {
        margin-left: 2px;
    }

    .site-header-navbtn {
        display: block;
    }

    .site-header-nav {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: var(--main-color);
        opacity: 0.85;
        transform: translateX(-100%);
        transition: transform .6s;
    }

    .site-header-nav .nav-sp {
        display: block;
    }

    body.is-nav-open .site-header-nav {
        transform: translateX(0);
    }

    .site-header-nav p {
        display: block;
    }

    .site-header-nav ul li a img {
        display: none !important;
    }

    .site-header-nav ul {
        height: 100%;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .site-header-nav ul li a p {
        text-align: center;
    }

    .site-header-nav li.position-middle {
        margin-left: 0;
        width: auto;
    }

    .site-header-nav li.position-right {
        margin-left: 0;
        width: auto;
    }

    .site-header-nav ul li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1.5em;
    }

    .site-header-nav ul li a {
        font-size: 1.5rem;
    }
}

/* =============== footer =============== */

.site-footer {
    margin-top: -64px;
    width: 100%;
    background-image: url(../img/footer_bg.jpg);
    background-size: cover;
    z-index: -1;
    position: relative;
}

.site-footer::before {
    content: "";
    display: block;
    position: absolute;
    width: 350px;
    height: 80px;
    background-image: url(../img/deco_footer.png);
    background-repeat: no-repeat;
    background-size: 100%;
    top: -60px;
    left: 10%;
}

.site-footer-container {
    margin: auto;
    width: 240px;
    display: block;
    padding-top: 80px;
}

.site-footer-container img {
    max-width: 100%;
    height: auto;
}

.site-footer-copyright {
    display: block;
    font-size: .8rem;
    color: var(--text-gray);
    text-align: center;
}

@media screen and (max-width:980px) {
    .site-footer::before {
        width: 250px;
        height: 50px;
        top: -40px;
        left: 10%;
    }

    /*======max-width:980px======*/
}

@media screen and (max-width:767px) {
    .site-footer {
        margin-top: 0;
        width: 100%;
        background-image: url(../img/footer_bg.jpg);
    }

    .site-footer::before {
        display: none;
    }

    .site-footer-container {
        max-width: 100%;
        padding-top: 42px;
    }

    .site-footer-container img {
        width: 60%;
        max-width: 240px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    .site-footer-container small {
        width: 60%;
        max-width: 240px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    /*======max-width:767px======*/
}

/* =============== mv ================ */

.mv {
    height: 950px;
    padding-bottom: 240px;
}

.mv-copy {
    position: absolute;
    display: block;
    left: 10vw;
    top: 550px;
    font-family: "Darumadrop One", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2rem;
    z-index: 1;
    transition-delay: 1.2s;
}

.mv-slick {
    transition-delay: 0.7s;
}

.mv-slick .slick-item img {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5rem;
    height: 600px;
    position: relative;
}

/* ===dotsを丸くカスタマイズ=== */
.dots-wrap {
    display: flex;
    justify-content: center;
}

.dots-wrap li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #d6d6d6;
    border-radius: 50%;
    cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: var(--main-color);
}

.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

/* ==== mv-clover ==== */
.mv-clover-right {
    position: absolute;
    display: block;
    width: 50vw;
    height: auto;
    right: 0;
    top: 300px;
    z-index: 1;
    transition-delay: 0.9s;
}

.mv-clover-left {
    position: absolute;
    display: block;
    width: 40vw;
    height: auto;
    left: 0;
    top: 650px;
    transition-delay: 1s
}

.mv-bg {
    height: auto;
    background-image: url(../img/top_bg.png);
    background-repeat: no-repeat;
    background-size: 100vw;
    background-position: center 450px;
    z-index: -1;
}

@media screen and (min-width:1400px) {
    .mv {
        height: 1100px;
        padding-bottom: 320px;
    }

    .mv-slick .slick-item img {
        height: auto;
        width: 75%;
        max-width: 1200px;
    }

    /*======min-width:1350px======*/
}

@media screen and (max-width:980px) {
    .mv-slick .slick-item img {
        height: 450px;
    }

    .mv-copy {
        left: 10vw;
        top: 350px;
    }

    .mv-clover-right {
        top: 230px;
    }

    .mv-clover-left {
        top: 450px;
    }

    .mv-bg {
        height: 700px;
        background-position: center 350px;
    }

    /*======max-width:980px======*/
}

@media screen and (max-width:767px) {
    .mv {
        height: 100vh;
    }

    .mv-slick .slick-item img {
        height: 80vh;
        width: auto;
        object-fit: cover;
    }

    .mv-slick .slick-item img.item-1 {
        object-position: 43% center;
    }

    .mv-slick .slick-item img.item-3 {
        object-position: 65% center;
    }

    .mv-slick .slick-item img.item-4 {
        object-position: 70% center;
    }

    .mv-slick .slick-item img.item-5 {
        object-position: 75% center;
    }

    .mv-copy {
        position: initial;
        margin: 0;
        font-size: 1.7rem;
        margin-left: 1rem;
    }

    .mv-clover-right,
    .mv-clover-left {
        position: initial;
    }

    .mv-deco {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .mv-clover-right {
        align-items: flex-start;
        margin-top: -10rem;
        margin-bottom: 10rem;
    }

    .mv-clover-right,
    .mv-clover-left {
        max-width: 100%;
        height: auto;
    }

    .mv-bg {
        height: auto;
        padding-bottom: 64px;
        background-image: none;
        z-index: -2;
    }

    /*======max-width:767px======*/
}

@media screen and (max-width:368px) {
    .mv-bg {
        background-image: none;
    }

    .mv-clover-left {
        margin-bottom: 1rem;
    }

    /*======max-width:368px======*/
}

/* =============== concept ================= */

.wrap {
    max-width: 1180px;
    margin: 0 auto;
}

#concept .concept-container {
    margin-top: -2rem;
    text-align: center;
    position: relative;
}

#concept h2 {
    font-size: 1.5rem;
}

#concept .concept-text {
    position: relative;
}

#concept .concept-text p {
    width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--sp-bottom);
}

#concept .concept-text p::after {
    content: "";
    display: block;
    position: absolute;
    width: 120px;
    height: 110px;
    background-image: url(../img/concept_deco.png);
    background-repeat: no-repeat;
    right: 0;
    top: 35%;
    z-index: 3;
}

#concept .contant-item-righttop {
    position: absolute;
    top: -70px;
    right: 0;
    max-width: 320px;
    height: auto;
}

#concept .contant-item-left {
    position: absolute;
    top: 35%;
    left: 0;
    max-width: 265px;
    height: auto;
}

#concept .contant-item-rightbottom {
    position: absolute;
    top: 88%;
    right: 36px;
    max-width: 275px;
    height: auto;
}

#concept .concept-clover {
    display: block;
    width: 40vw;
    height: auto;
}

#concept .concept-bg {
    height: 100%;
    background-image: url(../img/concept_bg.png);
    background-repeat: no-repeat;
    background-size: 100vw;
    background-position: center 95%;
    z-index: -1;
    padding-bottom: 80px;
}

@media screen and (max-width:980px) {
    #concept .concept-container {
        display: flex;
        flex-direction: column;
    }

    #concept .contant-item-righttop,
    #concept .contant-item-left,
    #concept .contant-item-rightbottom {
        position: initial;
    }

    /*======max-width:980px======*/
}

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

    #concept h2 {
        font-size: 1.2rem;
    }

    #concept .concept-container {
        flex-direction: column;
        margin-top: -0.5rem;
    }

    #concept .concept-text h2 {
        margin-top: 40px;
        margin-bottom: var(--sp-bottom);
    }

    #concept .concept-text p {
        width: 90%;
    }

    #concept .concept-text p::after {
        right: 0;
        top: 100%;
    }

    #concept .concept-img {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #concept .concept-bg {
        background-position: center 40%;
        z-index: -1;
        padding-bottom: 3rem;
    }

    #concept .concept-clover {
        width: 15rem;
        height: auto;
    }

    /*======max-width:767px======*/
}

@media screen and (max-width:368px) {
    #concept .concept-container {
        margin-top: 1rem;
    }

    #concept .concept-text p::after {
        display: none;
    }

    #concept .contant-item-righttop {
        max-width: 100%;
    }

    #concept .contant-item-left {
        max-width: 90%;
    }

    #concept .contant-item-rightbottom {
        max-width: 80%;
    }

    /*======max-width:368px======*/
}

/* ============ schedule ============= */
#schedule h2 {
    margin-top: 24px;
    text-align: center;
}

#schedule .schedule-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-around;
}

#schedule .schedule-img {
    width: 55%;
    position: relative;
    transition-delay: 0.7s;
}

#schedule .schedule-img img {
    max-width: 100%;
    height: auto;
}

#schedule .schedule-img::before {
    content: "";
    display: block;
    position: absolute;
    width: 60px;
    height: 90px;
    background-image: url(../img/deco_03.png);
    background-repeat: no-repeat;
    background-size: 100%;
    top: 55px;
    right: 16px;
    transform: rotate(15deg);
}

#schedule .schedule-img::after {
    content: "";
    display: block;
    position: absolute;
    width: 70px;
    height: 70px;
    background-image: url(../img/deco_04.png);
    background-repeat: no-repeat;
    background-size: 90%;
    bottom: 20px;
    left: 32px;
    transform: rotate(-15deg);
}

#schedule .schedule-text {
    text-align: center;
    width: 43%;
}

#schedule .schedule-text p {
    width: 85%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 68px;
}

.schedule-bg {
    position: relative;
    padding-bottom: 80px;
    height: 100%;
    background-image: url(../img/schedule_bg.png);
    background-repeat: no-repeat;
    background-size: 100vw;
    background-position: center 15%;
    z-index: -1;
}

.schedule-clover-right {
    display: block;
    width: 40vw;
    height: auto;
    right: 0;
    bottom: 18%;
    z-index: 1;
    margin-right: 0;
    margin-left: auto;
    margin-top: -60px;
}

.schedule-clover-left {
    position: absolute;
    display: block;
    width: 40vw;
    height: auto;
    left: 0;
    bottom: -25%;
}

@media screen and (max-width:980px) {
    #schedule h2 {
        margin-top: 64px;
        margin-bottom: var(--sp-bottom);
    }

    #schedule .schedule-container {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-around;
        margin-bottom: var(--sp-bottom);
    }

    #schedule .schedule-img {
        width: 70%;
        margin: 0 auto;
        text-align: center;
    }

    #schedule .schedule-img img {
        max-width: 500px;
    }

    #schedule .schedule-img::before {
        width: 2.62rem;
        height: 3.92rem;
        top: 4rem;
        right: 3.5rem;
    }

    #schedule .schedule-img::after {
        width: 4rem;
        height: 4rem;
        bottom: 1.25rem;
        left: 5rem;
    }

    #schedule .schedule-text {
        width: 95%;
        margin-bottom: var(--sp-bottom);
    }

    #schedule .schedule-text p {
        width: 80%;
        padding-bottom: var(--sp-bottom);
    }

    /*======max-width:980px======*/
}

@media screen and (max-width:767px) {
    #schedule h2 {
        margin-top: var(--sp-bottom);
        text-align: center;
        font-size: 1.5rem;
    }

    #schedule .schedule-text p {
        max-width: 100%;
        width: 90%;
    }

    #schedule .schedule-img {
        width: 80%;
        max-width: 500px;
        transition-delay: 0s;
    }

    #schedule .schedule-img img {
        max-width: 100%;
        text-align: center;
    }

    #schedule .schedule-img::before {
        width: 2rem;
        height: 3rem;
        top: 1rem;
        right: 1.5rem;
    }

    #schedule .schedule-img::after {
        width: 2rem;
        height: 2rem;
        bottom: 1rem;
        left: 1rem;
    }

    .schedule-bg {
        padding: 0;
    }

    .schedule-clover-right {
        margin-top: 0;
    }

    .schedule-clover-left {
        position: static;
        margin-top: -24px;
    }

    /*======max-width:767px======*/
}

@media screen and (max-width:368px) {
    #schedule .schedule-img img {
        max-width: 100%;
    }

    #schedule .schedule-img::before,
    #schedule .schedule-img::after {
        display: none;
    }

    /*======max-width:368px======*/
}

/* ============ admission ============= */
#admission h2 {
    margin-top: 32px;
    text-align: center;
}

#admission .ad-container {
    margin-top: var(--sp-bottom);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    height: 740px;
}

#admission .ad-container .ad-img {
    width: 55%;
    position: relative;
    margin: 0 0 0 auto;
    position: relative;
}

#admission .ad-container .ad-img::before {
    content: "";
    display: block;
    position: absolute;
    width: 73px;
    height: 73px;
    background-image: url(../img/deco_05.png);
    background-repeat: no-repeat;
    background-size: 100%;
    transform: rotate(-25deg);
    right: 0;
    top: 15%;
}

#admission .ad-container .ad-img::after {
    content: "";
    display: block;
    position: absolute;
    width: 95px;
    height: 60px;
    background-image: url(../img/deco_06.png);
    background-repeat: no-repeat;
    background-size: 100%;
    transform: scaleX(-1) rotate(15deg);
    left: 0;
    bottom: 0;
}

#admission .ad-img-top {
    width: 600px;
    display: block;
    transition-delay: 0.7s;
}

#admission .ad-img-left {
    position: absolute;
    display: block;
    width: 350px;
    height: auto;
    left: -20px;
    bottom: -58%;
    transition-delay: 0.3s;
}

#admission .ad-img-bottom {
    position: absolute;
    width: 280px;
    height: auto;
    display: block;
    bottom: -63%;
    left: 58%;
    transition-delay: 0.3s;
}

#admission .ad-text {
    text-align: center;
    width: 38%;
    margin-top: 100px;
}

#admission .ad-text p {
    width: 85%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: var(--sp-bottom);
}

#admission .ad-text a:hover {
    opacity: 1;
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
    box-shadow: 7px 7px 10px -10px #777777;
}

#admission .ad-clover {
    display: block;
    width: 40vw;
    height: auto;
    margin-top: -88px;
    padding-top: 120px;
}

#admission .admission-bg {
    height: 100%;
    background-image: url(../img/concept_bg.png);
    background-repeat: no-repeat;
    background-size: 100vw;
    background-position: center 100%;
    z-index: -1;
    position: relative;
}

#admission .admission-bg::before {
    content: "";
    display: block;
    position: absolute;
    width: 100px;
    height: 55px;
    background-image: url(../img/deco_07.png);
    background-repeat: no-repeat;
    background-size: 100%;
    right: 25%;
    top: 53%;
}

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

    #admission .ad-container {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-around;
        height: auto;
        margin-bottom: var(--sp-bottom);
    }

    #admission .ad-text {
        width: 95%;
        margin-top: 0;
        margin-bottom: var(--sp-bottom);
    }

    #admission .ad-text p {
        width: 80%;
        margin: 0 auto 64px auto;
        padding-bottom: 0;

    }

    #admission .ad-container .ad-img {
        width: 80%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        margin: 0 auto;
    }

    #admission .ad-container .ad-img::before {
        width: 4rem;
        height: 4rem;
        transform: rotate(-15deg);
        right: 4rem;
        top: 5%;
    }

    #admission .ad-container .ad-img::after {
        width: 6rem;
        height: 3.7rem;
        left: 0;
        bottom: -1rem;
    }

    #admission .ad-container .ad-img .small-img {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        vertical-align: middle;
        margin: 0 auto;
        max-width: 100%;
    }

    #admission .ad-img-top {
        width: 80%;
        max-width: 480px;
        height: auto;
        transition-delay: 0s;
    }

    #admission .ad-img-left {
        position: static;
        max-width: 60%;
        height: auto;
    }

    #admission .ad-img-bottom {
        position: static;
        max-width: 40%;
        height: auto;
        align-self: flex-end;
    }

    #admission .admission-bg::before {
        width: 6rem;
        height: 3.2rem;
    }

    /*======max-width:980px======*/
}

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

    #admission .ad-text p {
        max-width: 100%;
        width: 90%;
    }

    #admission .ad-img {
        max-width: 90%;
        width: 90%;
    }

    #admission .ad-container {
        margin-top: 0;
    }

    #admission .ad-container .ad-img::before {
        width: 2rem;
        height: 2rem;
        transform: rotate(-15deg);
        right: 10%;
        top: 0;
    }

    #admission .ad-container .ad-img::after {
        width: 4rem;
        height: 2.7rem;
        left: 10%;
        bottom: -1rem;
    }

    #admission .ad-container .ad-img .small-img {
        flex-direction: column;
        justify-content: center;
        vertical-align: middle;
        margin: 0 auto;
        max-width: 100%;
        text-align: center;
    }

    #admission .ad-img-top {
        max-width: 100%;
        margin: 0 auto;
    }

    #admission .ad-img-left {
        max-width: 60%;
        height: auto;
        margin: 0 auto;
    }

    #admission .ad-img-bottom {
        max-width: 50%;
        height: auto;
        align-self: initial;
        margin: 0 auto;
    }

    #admission .ad-clover {
        margin-top: 0;
        padding: 1.5rem 0;
    }

    #admission .admission-bg {
        height: 100%;
        background-image: url(../img/concept_bg.png);
        background-repeat: no-repeat;
        background-size: 100vw;
        background-position: center 100%;
        z-index: -1;
    }

    #admission .admission-bg::before {
        width: 4rem;
        height: 2.2rem;
        right: 25%;
        top: 45%;
    }

    /*======max-width:767px======*/
}

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

    #admission .ad-img-left {
        max-width: 80%;
        height: auto;
        margin: 0 auto;
    }

    #admission .ad-img-bottom {
        max-width: 70%;
        height: auto;
        align-self: initial;
        margin: 0 auto;
    }

    #admission .ad-container .ad-img::before,
    #admission .ad-container .ad-img::after {
        display: none;
    }

    #admission .admission-bg {
        background-position: center 50%;
    }

    #admission .admission-bg::before {
        width: 20vw;
        height: 11vw;
        right: 25%;
        top: 35%;
    }

    /*======max-width:368px======*/
}

/* ============== access =============== */
#access h2 {
    margin-top: 24px;
    text-align: center;
}

#access .access-container {
    margin: 32px auto 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-around;
}

#access .access-img {
    display: block;
    text-align: center;
    width: 50%;
    transition-delay: 0.8s;
}

#access .access-img img {
    max-width: 100%;
    height: auto;
}

#access .access-text {
    text-align: center;
    width: 48%;
}

#access .access-text p {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: var(--sp-bottom);
}

#access .access-text a:hover {
    opacity: 1;
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
    box-shadow: 7px 7px 10px -10px #777777;
}

#access .access-bg {
    height: auto;
    margin: 0 0 0 auto;
}

#access .access-bg .access-clover {
    display: block;
    width: 45vw;
    margin-right: 0;
    margin-left: auto;
    margin-top: -100px;
    z-index: 3;
    transition-delay: 0.8s;
}

@media screen and (min-width:1300px) {
    #access .access-bg .access-clover {
        margin-top: -150px;
        max-width: 650px;
    }

    /*======min-width:1300px======*/
}

@media screen and (max-width:980px) {
    #access .access-container {
        margin: 32px auto 120px auto;
    }

    /*======max-width:980px======*/
}

@media screen and (max-width:767px) {
    #access h2 {
        margin-top: 32px;
    }

    #access .access-container {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        margin: 32px auto;
    }

    #access .access-img {
        width: 75%;
        max-width: 300px;
        transition-delay: 0s;
    }

    #access .access-text {
        text-align: center;
        width: 95%;
        margin-bottom: var(--sp-bottom);
    }

    #access .access-text p {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        padding-bottom: var(--sp-bottom);
    }

    #access .access-bg .access-clover {
        margin-top: -64px;
        transition-delay: 0s;
    }

    /*======max-width:767px======*/
}

/* ================= page-top =================== */

.pagetop {
    width: 40px;
    height: 74px;
    position: fixed;
    z-index: 2000;
    right: 30px;
    bottom: 20px;
    cursor: pointer;
}

.pagetop:hover {
    opacity: .9;
}

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