@charset "UTF-8";
/* common */
:root {
    --primary-white: #F4F4F4;
    --primary-black: #0C0C0C;
    --primary-orange: #E66E3A;
    --primary-ivory: #FBF7EC;
    --primary-yellow: #EAE586;
    --Primary-lightGreen: #B3CD96;
    --Primary-green: #84AD59;
    --Primary-darkGreen: #0E3B1D;
    --Primary-footerBg: #C1AD78;
    --contentPadding: 5.1%;
    --contentPaddingPc: 3%;
    --mainFont: "Zen Maru Gothic", sans-serif;
    --titleFont: "Inter", sans-serif;
}

html {
    font-size: 62.5%;
}

body {
    font-family: var(--mainFont);
    font-weight: 500;
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 1.5px;
    background-color: var(--primary-ivory);
}

.section {
    width: 100%;
    padding: 120px var(--contentPadding) 70px;
    opacity: 0;
    animation: 1s fadeIn 0.5s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

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

.section__topicGroup {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.section__topic {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
}

.container {
    display: flex;
    flex-direction: column;
    position: relative;
}

img {
    width: 100%;
    height: auto;
    pointer-events: none;
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .section {
        padding: 150px var(--contentPaddingPc) 150px;
    }

    .section__topicGroup {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .section__icon {
        width: 50px;
        height: 50px;
    }

    .section__topic {
        font-size: 2.6rem;
        margin-right: 50px;
    }
}

/* =================================
loading
====================================*/
#loading {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    text-align: center;
    transition: 3s;
}


@keyframes load {
    from {opacity: 0;}
    to {opacity: 100;}
}

#loading img {
    display: block;
    margin: 0 auto;
    width: 70px;
    object-fit: contain;
    animation: load 2s ease;
    transition: 2s;
}

#loading p {
    font-family: "Zen Maru Gothic";
    font-size: 12px;
    color: var(--primary-orange);
    letter-spacing: 3px;
    margin-top: 15px;
    transform: translateX(5px);
    animation: load 2s ease;
    transition: 2s;
}


#loading.loaded {
    opacity: 0;
    z-index: -100;
}

#loading img.loaded,
#loading p.loaded{
    opacity: 0;
}

@media screen and (min-width: 769px) {
    #loading img {
        width: 120px;
    }
    
    #loading p {
        font-size: 18px;
        margin-top: 20px;
        transform: translateX(8px);
    }
}

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

.header {
    width: 100%;
    height: 54px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
}

.headerContainer,
.nav__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px var(--contentPadding);
}

.headerContainer {
    background: rgba(251, 247, 236, .85);
    backdrop-filter: blur(5px);
}

.nav__header {
  background-color: var(--primary-ivory);  
}

.header__topic a,
.nav__topic a {
    display: flex;
    gap: 5px;
    align-items: flex-end;
}

.header__topic img,
.nav__topic img {
    display: block;
    width: 40px;
    height: 40px;
}

.header__topic span,
.nav__topic span {
    display: block;
    font-family: var(--titleFont);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.8px;
    width: 100px;
    height: 30px;
    position: relative;
}

.header__topic span::after,
.nav__topic span::after {
    content: 'めいわようちえん';
    position: absolute;
    text-align: center;
    width: 100px;
    font-size: 8px;
    letter-spacing: 1.4px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-155%);
}

.header__btn,
.nav__btn {
    display: block;
    width: 24px;
    height: 24px;
    pointer-events: all;
    cursor: pointer;
}

/* nav 初期表示 */
.nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    top: 0;
    z-index: 100;
    background: rgba(251, 247, 236, 0.80);
    backdrop-filter: blur(4px);
    transform: translateX(100%);
    transition: 0.7s ease;
}

/* ----------------------------- */

.nav.active {
    transform: translateX(0);
    transition: 0.7 ease;
}

.nav__list {
    width: fit-content;
    display: flex;
    flex-direction: column;
    padding: 70px 30px 0 30px;
    align-items: flex-start;
    gap: 10px;
}

.nav__item a {
    display: flex;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0 5px 5px 15px;
    border-bottom: 1px solid var(--primary-lightBlue);
}

.nav__icon {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav__item:last-of-type {
    margin-top: 7.5px;
}

.nav__item:last-of-type .nav__icon {
    height: 25px;
    object-fit: contain;
}

.nav__txt {
    margin-left: 10px;
    line-height: 40px;
}

.nav__item:last-of-type .nav__txt {
    line-height: 25px;
}

.header__linkList {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.header__linkItem {
    display: block;
    padding: 3px 10px;
    background-color: var(--primary-yellow);
    border-radius: 10px;
    font-size: 1.2rem;
}

.recruit--block,
.recruit--block--footer {
    display: none;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 300;
}

.recruit--block.is-open,
.recruit--block--footer.is-open {
    display: block;
}

.recruit--img,
.recruit--img--footer {
    position: absolute;
    width: 100vw;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.recruit--banner {
    display: block;
    position: absolute;
    width: 34%;
    aspect-ratio: 185/62;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-56.5%,460%);
    z-index: 1;
}

.contactZone {
    position: fixed;
    z-index: 150;
    bottom: 10px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.topBackBtn {
    display: none;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 10px;
    letter-spacing: 1px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    text-align: center;
    transition: 1s ease;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}

.btn.active {
    width: 100px;
    height: 100px;
    font-size: 14px;
    transition: 1s ease;
}

.btn--class {
    letter-spacing: 0.5px;
    background-color: var(--Primary-green);
}

.btn--contact{
    flex-direction: column;
    background-color: var(--primary-orange);
    line-height: 1.5;
}

.contact--span {
    display: block;
    font-size: 8px;
    transition: 1s ease;
}

.contact--span.active {
    font-size: 10px;
    transition: 1s ease;
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .header {
        height: 150px;
        position: absolute;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav__header {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .headerContainer {
        width: fit-content;
        height: 150px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 30px;
    }

    .headerContainer {
        background: none;
        backdrop-filter: none;
    }

    .header__topic {
        position: relative;
        width: 170px;
    }

    .header__topic a {
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(-20%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .header__topic img{
        width: 150px;
        height: 150px;
    }

    .header__topic span {
        font-size: 24px;
        letter-spacing: 1.2px;
        width: fit-content;
        height: auto;
    }

    .header__topic span::after {
        content: 'めいわようちえん';
        position: absolute;
        text-align: center;
        width: 100%;
        font-size: 12px;
        letter-spacing: 1.4px;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-155%);
    }

    .nav {
        width: 100%;
        height: fit-content;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        left: auto;
        top: auto;
        z-index: 0;
        background: none;
        backdrop-filter: none;
        transform: translateX(0);
    }
    
    .nav__list {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        align-items: center;
        gap: 1%;
    }

    .nav__item a {
        min-width: 65px;
        flex-direction: column;
        align-items: center;
        font-size: 1rem;
        letter-spacing: 1px;
        padding: 0;
        border-bottom: none;
        transition: 1s ease;
    }

    .nav__item a:hover {
        color: var(--primary-orange);
        transition: 1s ease;
    }

    .nav__item a:hover .nav__icon {
        transform: scale(120%) rotate(15deg);
        transition: 1s ease;
    }

    .nav__icon {
        width: 50px;
        height: 50px;
        transition: 1s ease;
    }

    .nav__item:last-of-type a {
        height: 75px;
        gap: 10px;
        justify-content: flex-end;
        letter-spacing: 0.5px;
    }

    .nav__item:last-of-type .nav__icon {
        height: 30px;
    }

    .nav__item:last-of-type {
        margin-top: 0;
    }

    .nav__txt {
        margin-left: 0;
        line-height: 25px;
    }

    .nav__item:last-of-type .nav__txt {
        line-height: 25px;
    }

    .header__linkList {
        display: none;
    }

    .recruit--img,
    .recruit--img--footer {
        position: absolute;
        width: auto;
        height: 100vh;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

    .recruit--banner {
        width: auto;
        height: 7.8%;
        object-fit: contain;
        top: auto;
        left: 50%;
        bottom: 5%;
        transform: translateX(-56.8%);
    }

    .contactZone {
        bottom: 30px;
        right: 30px;
        gap: 15px;
    }

    .topBackBtn {
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: 30px;
        left: 30px;
        z-index: 150;
        width: 75px;
        height: 75px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 50%;
        color: var(--primary-orange);
        background: var(--primary-yellow);
        transition: 1s ease;
        box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
        scroll-behavior: smooth;
    }

    .topBackBtn:hover {
        transform: scale(120%);
        transition: 1s ease;
    }

    .btn {
        font-size: 15px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        text-align: center;
        transition: 1s ease;
    }

    .btn:hover {
        transform: scale(120%);
        transition: 1s ease;
    }

    .contact--span {
        font-size: 12px;
    }
}

/* pc1024px-- */
@media screen and (min-width: 1024px) {
    .nav__list {
        gap: 20px;
    }
    .nav__item a {
        min-width: 78px;
        font-size: 1.2rem;
    }

    .nav__icon {
        width: 60px;
        height: 60px;
    }

    .nav__item:last-of-type a {
        height: 85px;
        gap: 10px;
        justify-content: flex-end;
        letter-spacing: 0.5px;
    }

    .nav__item:last-of-type .nav__icon {
        height: 35px;
    }
}

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


/* --------------------------------
footer
--------------------------------- */
.footer {
    background-color: var(--Primary-footerBg);
    padding: 70px var(--contentPadding);
    border-radius: 30px 30px 0 0;
    /* overflow: hidden; */
    position: relative;
}

.footer__topic a {
    width: fit-content;
    display: flex;
    align-items: center;
}

.footer__topic img {
    width: 50px;
    object-fit: contain;
}

.footer__topic span {
    display: block;
    font-family: var(--titleFont);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.8px;
    width: 120px;
    height: 30px;
    position: relative;
    margin-top: 10px;
    text-align: center;
    line-height: 1.6;
}

.footer__topic span::after {
    content: 'めいわようちえん';
    position: absolute;
    text-align: center;
    width: 100px;
    font-size: 10px;
    letter-spacing: 1.2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-155%);
}

.footer__container {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.footer__info {
    display: flex;
    flex-direction: column;
}

.info__txt {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 1px;
}

.footer__link {
    margin-top: 30px;
    display: flex;
}

.footer__nav {
    width: 130px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    letter-spacing: 1.2px;
    line-height: 1.5;
    gap: 5px;
}

.footer__linkList {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    gap: 5px;
}

.info-modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(1px);
    display: none;
    align-items: center;
    justify-content: center;
}

.info-modal__inner {
    background: var(--primary-ivory);
    padding: 2rem;
    padding-top: 3rem;
    border-radius: 10px;
    width: 90%;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.modal__item {
    width: fit-content;
    transition: .5s ease;
}

.modal__item:hover {
    color: var(--primary-orange);
    transition: .5s ease;
}

.close-modal {
    margin-top: 20px;
    padding: 3px 15px;
    font-weight: 600;
    color: var(--primary-white);
    background-color: var(--primary-orange);
    transition: .5s ease;
    border-radius: 5px;
}

.close-modal:hover {
    color: var(--primary-orange);
    background-color: var(--primary-white);
    transition: .5s ease;
}

.info-modal.show {
    display: flex; 
}


.footer__contactZone {
    display: flex;
    margin-top: 20px;
    gap: 20px;
    padding-bottom: 70px;
    position: relative;
}

.footer__btn--tel {
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Primary-green);
    width: fit-content;
    padding: 8px 15px;
    border-radius: 5px;
    height: 37px;
    font-size: 14px;
    gap: 3px;
}

.icon--tel {
    width: 15px;
    object-fit: contain;
}

.footer__btn--contact {
    color: var(--primary-white);
    background-color: var(--primary-orange);
    border-radius: 5px;
    padding: 8px 15px;
    height: 37px;
    font-size: 14px;
    width: fit-content;
    position: relative;
}

.arrow {
    position: absolute;
    width: 15px;
    object-fit: contain;
    left: 50%;
    transform: translate(-50%,35px);
}

.preTxt {
    width: 150px;
    text-align: center;
    position: absolute;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--primary-black);
    left: 50%;
    transform: translate(-50%,170%);
}

.footer__ariaB {
    background-color: var(--primary-yellow);
    padding: 40px 20px;
    border-radius: 15px;
}

.bannersA {
    display: flex;
    flex-direction: column;
}

.ariaB__topic {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
}

.ariaB__txt {
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.ariaB__list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.ariaB__item {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dayOfWeek {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 1px;
}

.ariaB__item:first-of-type {
    width: 100%;
}

.exClass {
    object-fit: contain;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.ariaB__item:first-of-type .exClass {
    width: 162px;
}

.ariaB__item:nth-of-type(2) .exClass {
    width: 146px;
}

.ariaB__item:nth-of-type(3) .exClass {
    width: 78px;
}

.bannersB {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bannersB__item {
    display: flex;
    flex-direction: column;
}

.bannersB__item a{
    position: relative;
    width: fit-content;
}

.bannersB__item h4 {
    width: fit-content;
}

.alignment {
    display: block;
    width: 245px;
    object-fit: contain;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin-top: 10px;
}

.alignment__txt {
    position: absolute;
    background: rgba(243, 243, 243, .7);
    backdrop-filter: blur(3px);
    padding: 3px 10px;
    font-size: 1rem;
    right: 0;
    bottom: 0;
}

.copy {
    margin-top: 20px;
    text-align: center;
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .footer {
        padding: 100px var(--contentPaddingPc);
        border-radius: 50px 50px 0 0;
    }

      .footer__topic {
        max-width: 870px;
        margin: 0 auto;
    }

    .footer__topic img {
        width: 75px;
    }

    .footer__topic span {
        font-size: 30px;
        letter-spacing: 1.2px;
        width: 180px;
        height: 45px;
        margin-top: 18px;
    }

    .footer__topic span::after {
        content: 'めいわようちえん';
        position: absolute;
        text-align: center;
        width: 130px;
        font-size: 14px;
        letter-spacing: 1.2px;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-155%);
    }

    .footer__container {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

    .footer__ariaA {
        width: 270px;
        min-width: 270px;
    }

    .footer__info {
        margin-top: 20px;
    } 

    .info__txt {
        font-size: 1.4rem;
    }
    
    .footer__ariaB {
        width: 100%;
        max-width: 550px;
        padding: 20px 15px;
    }

    .bannersA {
        position: relative;
        padding-bottom: 40px;
    }

    .ariaB__txt.A {
        width: 270px;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .dayOfWeek {
        font-size: 1.4rem;
    }

    .ariaB__item:first-of-type {
        width: auto;
    }

    .ariaB__item:first-of-type .exClass {
        width: 140px;
    }

    .ariaB__item:nth-of-type(2) .exClass {
        width: 140px;
    }

    .ariaB__item:nth-of-type(3) .exClass {
        width: 72px;
    }

    .bannersB {
        flex-direction: row;
        margin-top: 25px;
        gap: 20px;
    }

    .bannersB__item {
        position: relative;
        width: 45%;
        max-width: 290px;
        padding-bottom: 30px;
    }

    .bannersB__item a{
        position: relative;
        width: fit-content;
    }

    .bannersB__item h4 {
        width: fit-content;
    }

    .ariaB__txt {
        position: absolute;
        bottom: 0;
    }

    .alignment {
        width: 170px;
        margin-top: 15px;
    }

    .copy {
        margin-top: 5%;
        font-size: 1.2rem;
    }
}

/* pc1024px-- */
@media screen and (min-width: 1024px) {
  
    .footer__ariaB {
        padding: 20px 30px;
    }

    .footer__container {
        gap: 50px;
    }
}

/* ----------------------------------------

top-page

-------------------------------------------*/

.topView {
    display: flex;
    position: relative;
    width: 100%;
    height: 79vh;
    overflow: hidden;
    margin-top: 54px;
}

.top__kv {
    position: absolute;
    z-index: 5;
    height: 100%;
    object-fit: cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    animation: fade 12s infinite;
    opacity: 0;
}

.top__kv:nth-of-type(1) {
    animation-delay: 0s;
}
.top__kv:nth-of-type(2) {
    animation-delay: 4s;
}
.top__kv:nth-of-type(3) {
    animation-delay: 8s;
}

@keyframes fade {
  0%   { opacity: 0; }
  15%   { opacity: 1; }
  35%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

.ccBlock {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(10%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.cc {
    background-color: var(--primary-ivory);
    font-size: 2.4rem;
    padding: 0 15px 1px;
    line-height: 1.5;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--primary-black);
    animation: 1s fontOrange forwards;
}

.cc:nth-of-type(1) {
    animation-delay: 1s;
}
.cc:nth-of-type(2) {
    animation-delay: 1.5s;
}
.cc:nth-of-type(3) {
    animation-delay: 2s;
    border-radius: 0 0 10px 0;
}

@keyframes fontOrange {
    0% { color: var(--primary-black);}
    100% { color: var(--primary-orange);}
}

.ccSubBlock {
    position: absolute;
    top: 20%;
    left: 8%;
    transform: translateY(200px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.ccSub {
    background: rgba(136, 64, 33, 0.2);
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 2px;
    padding: 1px 10px 2px;
    border-radius: 3px;
    font-weight: 600;
    color: var(--primary-white);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    /* box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.25); */
}

.topview__hero {
    display: none;
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .topView {
        position: relative;
        display: flex;
        width: 100%;
        height: 79vh;
        padding: 0;
        margin-top: 150px;
    }

    .topview__imgBlock {
        width: 100%;
        position: relative;
    }

    .top__kv {
        width: 100%;
        right: 0;
        left: auto;
        transform: translateY(-50%);
        border-radius: 50px 0 0 50px;
    }

    .ccBlock {
        width: fit-content;
        padding: 0 30px;
        position: relative;
        margin-top: 170px;
        top: auto;
        left: auto;
        transform: translateX(0);
    }

    .cc {
        width: 170px;
        background: none;
        font-size: 3rem;
        padding: 0 15px 1px;
        line-height: 1.5;
        letter-spacing: 4px;
        font-weight: 600;
    }

    .cc:nth-of-type(3) {
        border-radius: 0;
    }

    .ccSubBlock {
        left: 35px;
        transform: translateY(250px);
    }

    .ccSub {
        background: var(--primary-ivory);
        border-radius: 5px;
        color: var(--primary-orange);
        text-shadow: none;
        backdrop-filter: none;
        gap: 5px;
        /* box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.25); */
    }

    .topview__hero {
        position: absolute;
        display: block;
        width: 100%;
        height: 200px;
        bottom: 0;
        z-index: -2;
    }
}

/* --------------------------------
top-about
--------------------------------- */

.section--about {
    background-color: var(--primary-yellow);
    padding-top: 170px;
    overflow: hidden;
    position: relative;
}

.about__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__txt {
    margin: 0 auto;
    font-feature-settings: 'vert' on;
    writing-mode: vertical-rl;
    line-height: 1.5;
    letter-spacing: 2.5px;
    padding: 50px 0;
}

.about__imgBlock {
    position: relative;
    height: 250px;
    width: 100%;
}

.about__imgBlock img {
    position: absolute;
    width: 270px;
    height: 150px;
    object-fit: cover;
    border-radius: 25px;
}

.about__imgBlock img:nth-of-type(1) {
    top: 0;
    left: 50%;
    transform: translateX(-20%);
}
.about__imgBlock img:nth-of-type(2) {
    bottom: 0;
    right: 50%;
    transform: translateX(20%);
}

.about__bgEnd {
    position: absolute;
    z-index: 5;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
}

.about__hero {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 65px;
    top: -2px;
    margin-bottom: -65px;
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .section--about {
        background-color: var(--primary-yellow);
        padding: 0;
    }

    .about__block {
        position: relative;
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
        padding: 120px 0 150px;
    }

    .section--about .section__topicGroup {
        flex-direction: column;
        width: fit-content;
        position: absolute;
        top: 100px;
        right: 70px;
        gap: 10px;
    }

    .section__topic--about {
        font-feature-settings: 'vert' on;
        writing-mode: vertical-rl;
        margin-right: 0;
    }

    .about__container {
        flex-direction: row-reverse;
        padding-right: 150px;
    }

    .about__txt {
        width: fit-content;
        margin: 0;
        line-height: 2;
        letter-spacing: 2.5px;
        padding: 50px var(--contentPaddingPc);
    }

    .about__imgBlock {
        min-width: 150px;
        max-width: 300px;
        height: 400px;
    }

    .about__imgBlock img {
        width: 180px;
        height: 150px;
    }

    .about__imgBlock img:nth-of-type(1) {
        top: 20%;
        left: 0;
        transform: translateX(10%);
    }
    .about__imgBlock img:nth-of-type(2) {
        bottom: 0;
        right: 0;
        transform: translateX(0);
    }
}

/* pc1024px--- */
@media screen and (min-width:1024px) {
     .about__imgBlock {
        max-width: 700px;
        height: 500px;
    }

    .about__imgBlock img {
        width: 230px;
        height: 190px;
    }
}

/* --------------------------------
top-greeting
--------------------------------- */

.section--greeting {
    background: url(../images/top-greeting.webp);
    background-position: center;
    background-size: cover;
    position: relative;
}

.greeting__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 20px;
    background-color: rgba(243, 243, 243, .7);
    backdrop-filter: blur(4px);
    border-radius: 25px;
}

.greeting__img {
    display: block;
    margin-top: 40px;
    border-radius: 10px;
}

.greeting__txt {
    margin-top: 20px;
    letter-spacing: 1.5px;
    padding: 0 5px;
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .section--greeting {
        padding-top: 200px;
    }

    .greeting__container {
        max-width: 960px;
        margin: 0 auto;
        padding: 70px;
    }

    .greeting__mainBlock {
        margin-top: 30px;
    }

    .greeting__img {
        float: right;
        width: 270px;
        height: fit-content;
        margin-top: 0;
        aspect-ratio: 4/5;
        object-fit: cover;
        margin: 0 10px;
    }

    .greeting__txt {
        font-size: 1.8rem;
        margin-top: 0;
        padding: 0;
        letter-spacing: 1.2px;
        line-height: 1.8;
    }
}

/* --------------------------------
top-daily
--------------------------------- */

.section--daily {
    padding: 120px 0 70px;
}

.btn--inst {
    display: block;
    width: 150px;
    height: 45px;
    background-color: var(--primary-orange);
    color: var(--primary-white);
    border-radius: 10px;
    padding: 9px 15px 12px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 30px;
}

.btn--inst:hover {
    transform: scale(100%);
    opacity: 0.7;
}

.daily__list {
    width: 100%;
    margin-top: 50px;
    padding: 0 var(--contentPadding);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.daily__item {
    width: 48%;
    height: fit-content;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.3);
    background-color: var(--primary-white);
}

.daily__link {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 4;
    overflow: hidden;
}

.daily__media {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    transition: 1s ease;
}

.daily__link:hover .daily__media {
    transform: scale(120%);
    transition: .5s ease;
} 

.daily__caption {
    padding: 7px 10px 0;
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.5;
}

.daily__time {
    padding: 5px 10px 7px;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.5;
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .daily__list {
        margin-top: 70px;
        padding: 0 var(--contentPaddingPc);
        gap: 15px;
    }

    .daily__item {
        border-radius: 15px;
    }

    .daily__caption {
        padding: 10px 15px 0;
        font-size: 1.4rem;
    }

    .daily__time {
        padding: 7px 15px 10px;
        font-size: 1.2rem;
    }
}

/* pc1024px-- */
@media screen and (min-width: 1024px) {
    .daily__list {
        max-width: 1080px;
        margin: 70px auto 0;
    }

    .daily__item {
        width: 31%;
    }
}

/* --------------------------------
top-imgBlock
--------------------------------- */

.imgBlock {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: none;
}

.imgBlock::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 55%;
    background-color: var(--Primary-lightGreen);
    bottom: -10px;
    z-index: -1;
}

.imgBlock__img {
    position: absolute;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    z-index: 5;
}

.imgBlock__img:nth-of-type(1) {
    width: 64vw;
    top: 0;
    left: -20px;
}
.imgBlock__img:nth-of-type(2) {
    width: 56vw;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
}
.imgBlock__img:nth-of-type(3) {
    width: 51vw;
    bottom: 0;
    left: 50%;
    transform: translateX(-70%);
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .imgBlock {
        width: 100%;
        aspect-ratio: 9/5;
    }

    .imgBlock__img:nth-of-type(1) {
        width: 38vw;
        left: -30px;
    }
    .imgBlock__img:nth-of-type(2) {
        width: 39vw;
        top: 50%;
        transform: translateY(-50%);
        right: -20px;
        z-index: 10;
    }
    .imgBlock__img:nth-of-type(3) {
        width: 43vw;
        bottom: 0;
        left: 50%;
        transform: translateX(-55%);
    }
}

/* --------------------------------
top-timeline
--------------------------------- */

.section--timeline {
    position: relative;
    padding-top: 80px;
}

.timeline__hero--green {
    margin-top: -200px;
    width: 100%;
    height: 75%;
    position: absolute;
    z-index: -1;
}

.timeline__hero--yellow {
    bottom: -20px;
    width: 100%;
    height: 20%;
    position: absolute;
    z-index: -1;
}

.nav--timeline {
    display: none;
}

.timeline__list {
    display: flex;
    flex-direction: column;
}

.timelist__item {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.timelist__item:first-of-type {
    margin-top: 0;
}

.timeBlock {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clockImg {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.timeTxt {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 3px;
    color: var(--Primary-darkGreen);
}

.timeTxt.A {
    color: var(--primary-orange);
}

.timelist__img {
    width: 100%;
    aspect-ratio: 5/3;
    object-fit: cover;
    margin-top: 10px;
    border-radius: 10px;
}

.timelist__item:first-of-type .timelist__img{
    object-position: 50% 10%;
}

.timelist__topic {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: var(--primary-orange);
    color: var(--primary-white);
    border-radius: 5px;
    width: fit-content;
    line-height: 1;
}

.meichan.H {
    top: 0;
    right: 5%;
    transform: translateY(-120px);
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .section--timeline {
        display: flex;
        flex-direction: row-reverse;
        gap: 15px;
        justify-content: center;
        align-items: flex-start;
    }

    .timeline__hero--green {
        margin-top: -200px;
        height: 70%;
    }

    .timeline__hero--yellow {
        bottom: -50px;
    }

    .timeline__pcAria {
        position: sticky;
        width: 250px;
        top: 100px;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section__topicGroup--timeline {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section__topic--timeline {
        font-feature-settings: 'vert' on;
        writing-mode: vertical-rl;
        text-orientation: upright;
        margin-right: 0;
    }

    .nav--timeline {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav--timeline__item {
        font-size: 1.2rem;
        transition: .5s ease;
    }

    .nav--timeline__item:hover {
        color: var(--primary-orange);
        transition: .5s ease;
    }

    .timeline__list {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 150px;
    }

    .timelist__item {
        width: 100%;
        padding: 0 10px;
        margin-top: 50px;
    }

    .timeBlock {
        height: fit-content;
    }

    .timeTxt {
        font-size: 24px;
    }

    .timelist__topic {
        font-size: 2rem;
    }
}

/* pc1024px--- */
@media screen and (min-width: 1024px) {
    .timelist__img {
        aspect-ratio: 5/2;
    }
}

/* --------------------------------
top-facility
--------------------------------- */

.section--facility {
    background-color: var(--primary-orange);
    border-radius: 30px;
    padding-top: 70px;
}

.section__topic--facility {
    color: var(--primary-white);
    font-weight: 500;
}

.facility__list {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 20px;
}

.facility__item {
    background: rgba(243, 243, 243, .8);
    border-radius: 10px;
    overflow: hidden;
}

.facility__imgBlock {
    position: relative;
    width: 100%;
    aspect-ratio: 5/3;
}

.facility__img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    aspect-ratio: 5/3;
    object-fit: cover;
    opacity: 0;
    transition: 1s ease;
}

/* 表示中のメイン画像に付けるクラス */
.facility__img.active {
    opacity: 1;
}

/* 初期状態で最初の画像を表示 */
.facility__img:first-of-type {
    opacity: 1;
}

.facility__subImgBlock {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 3px;
    padding: 3px;
}

.facility__subImg {
    width: 60px;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    pointer-events: all;
}

.facility__txtBlock {
    display: flex;
    flex-direction: column;
    padding: 10px 15px 15px 15px;
}

.facility__topic {
    width: 100%;
    padding: 2px 25px 4px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 600;
    border-top: 1.5px solid var(--primary-orange);
    border-bottom: 1.5px solid var(--primary-orange);
}

.facility__txt {
    width: 100%;
    margin-top: 10px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.5;
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .section--facility {
        border-radius: 50px;
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .facility__list {
        width: 100%;
    }

    .facility__item {
        position: relative;
        background: none;
        border-radius: 0;
    }

    .facility__img {
        border-radius: 20px;
    }

    .facility__txtBlock {
        position: absolute;
        z-index: 5;
        width: 70%;
        max-width: 700px;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
        backdrop-filter: blur(3px);
        background-color: rgba(243, 243, 243, .6);
        border-radius: 10px;
    }

    .facility__subImgBlock {
        gap: 5px;
        padding: 5px;
    }

    .facility__subImg {
        width: auto;
        height: 80px;
        object-fit: cover;
        border-radius: 5px;
        cursor: pointer;
        pointer-events: all;
    }

    .facility__topic {
        font-size: 2rem;
    }

    .facility__txt {
        font-size: 1.4rem;
    }
}

/* pc1024px--- */
@media screen and (min-width: 1024px) {
    .facility__imgBlock {
        aspect-ratio: 5/2;
    }

    .facility__img {
        aspect-ratio: 5/2;
    }
}

/* --------------------------------
top-access
--------------------------------- */

.access__map {
    margin-top: 20px;
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 10px;
}

.access__txt {
    font-size: 1.2rem;
    margin-top: 15px;
    line-height: 1.5;
    letter-spacing: 1.5px;
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .access__map {
        margin-top: 40px;
        max-width: 960px;
        border-radius: 20px;
    }

    .access__txt {
        font-size: 1.4rem;
        margin-top: 25px;
    }
}

/* ----------------------------------------

class-page

-------------------------------------------*/

.pageTopContainer {
    margin-top: 54px;
    width: 100%;
    display: flex;
    position: relative;
    padding: 0 var(--contentPadding);
    overflow: hidden;
}

.class__topicBlock {
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.page__topic {
    width: 160px;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 2.4px;
    margin-top: 70px;
}

.class__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.class__navItem {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 1.2rem;
}

.class__nav svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-black);
}

.pageTopImgBlock {
    position: relative;
    width: 100%;
    height: 400px;
}

.pageTopImg {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
}

.pageTopImg:nth-of-type(1) {
    width: 250px;
    aspect-ratio: 1/1;
    z-index: 1;
    left: 0;
    bottom: 0;
}

.pageTopImg:nth-of-type(2) {
    width: 220px;
    aspect-ratio: 1/1;
    z-index: 0;
    left: 50px;
    top: -10px;
}

/* pc768px--- */
@media screen and (min-width: 768px) {
    .pageTopContainer {
        margin-top: 150px;
        padding-left: 50px;
        overflow: hidden;
    }
    
    .page__topic {
        width: 190px;
        font-size: 2.8rem;
        margin-top: 120px;
    }
    
    .class__navItem {
        display: inline-block;
        width: fit-content;
        white-space: nowrap;
        gap: 5px;
        font-size: 1.8rem;
        padding: 3px 10px;
        transition: 0.5s ease;
        border-radius: 10px;
    }

    .class__navItem:hover {
        background-color: var(--primary-orange);
        color: var(--primary-white);
        transition: 0.5s ease;
    }
    
    .class__nav svg {
        width: 22px;
        height: 22px;
        margin-bottom: 5px;
        transition: 0.5s ease;
    }

    .class__navItem:hover svg {
        fill: var(--primary-white);
        transition: 0.5s ease;
    }

    .pageTopImgBlock {
        height: 70vh;
    }
    
    .pageTopImg:nth-of-type(1) {
        width: 60%;
        max-height: 90%;
        left: 50%;
        transform: translateX(-70%);
        bottom: 0;
        z-index: -1;
    }
    
    .pageTopImg:nth-of-type(2) {
        width: 45%;
        max-height: 70%;
        left: auto;
        right: -50px;
        top: 0;
        z-index: -2;
    }
}

/* pc1024px-- */
@media screen and (min-width: 1024px) {
    .pageTopContainer {
        padding-left: 70px;
    }
}

/* pcheight800px-- */
@media screen and (min-height: 800px) and (orientation: landscape) {
    .page__topic {
        margin-top: 180px;
    }
}

/* ipad768px--- */
@media screen and (min-width: 768px) and (orientation: portrait) {
    .pageTopImg:nth-of-type(1) {
        width: auto;
        height: 60%;
        max-height: none;
        left: 50%;
        transform: translateX(-65%);
        bottom: 0;
        z-index: -1;
    }
    
    .pageTopImg:nth-of-type(2) {
        width: auto;
        height: 48%;
        max-height: none;
        left: auto;
        right: -50px;
        top: 0;
        z-index: -2;
    }
}

/* mainBlock */
.class__list {
    display: flex;
    flex-direction: column;
    padding: 0 var(--contentPadding);
    overflow: hidden;
}

.class__item {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.class__topicGroup {
    display: flex;
    align-items: center;
    gap: 3px;
}

.class__icon {
    width: 60px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.class__item__topic {
    font-size: 1.8rem;
    font-weight: 500;
}

.class__itemContainer {
    display: flex;
    flex-direction: column;
}

.class__itemContainer img {
    border-radius: 15px;
}

.class__itemTop {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}

.class__itemTop__img {
    position: relative;
    width: 40%;
    aspect-ratio: 3/5;
    object-fit: cover;
}

.class__txtContainer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.class__itemTop__txt {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.class__itemSecond {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    position: relative;
    width: 100%;
    height: 400px;
}

.class__itemSecond.even {
    align-items: flex-end;
}

.class__itemSecond__img {
    position: absolute;
    object-fit: cover;
}

.class__pointGroup {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 120px;
    margin-left: 30px;
}

.class__point {
    width: fit-content;
    display: inline-block;
    white-space: nowrap;
    color: var(--primary-white);
    background-color: var(--Primary-green);
    padding: 3px 15px;
    border-radius: 10px;
}

.class__point.even {
    background-color: var(--primary-orange);
}

.class__itemThird {
    margin-top: 50px;
    width: 100%;
    height: 400px;
    position: relative;
}

.class__itemThird__img {
    position: absolute;
}

.meichan {
    position: absolute;
    z-index: 5;
    width: 150px;
    object-fit: contain;
    aspect-ratio: 2 / 3;
}

/* class--common 768px-- */
@media screen and (min-width: 768px) {
    .class__list {
        padding: 0 var(--contentPaddingPc);
        align-items: center;
    }

    .class__item {
        max-width: 1080px;
        margin-top: 120px;
        flex-direction: row-reverse;
        align-items: flex-start;
    }

    .class__topicGroup {
        flex-direction: column;
        gap: 3px;
    }

    .class__icon {
        width: 80px;
    }

    .class__item__topic {
        font-size: 2.4rem;
        font-weight: 600;
        font-feature-settings: 'vert' on;
        writing-mode: vertical-rl;
        letter-spacing: 4px;
    }

    .class__itemContainer img {
        border-radius: 20px;
    }

    .class__itemTop {
        display: flex;
        margin-top: 50px;
        gap: 50px;
    }

    .class__itemTop__txt {
        font-size: 1.8rem;
        letter-spacing: 2px;
        padding-right: 30px;
    }

    .class__txtContainer {
        align-items: center;
        justify-content: center;
    }

    .class__itemSecond {
        margin-top: 70px;
        width: 100%;
        height: 700px;
    }

    .class__pointGroup {
        position: absolute;
        bottom: 120px;
        left: 50%;
        transform: translateX(-20px);
        z-index: 10;
        gap: 5px;
        margin-top: auto;
        margin-left: auto;
    }

    .class__point {
        font-size:2.8rem;
        padding: 5px 25px;
    }

    .class__itemThird {
        margin-top: 70px;
        height: 700px;
    }

}
/* pc1024px-- */
@media screen and (min-width: 1024px) {
    .class__itemTop__img {
        max-height: 562px;
        aspect-ratio: 4/5;
    }

    .class__itemTop__txt {
        max-width: 605px;
    }

    .class__itemThird__img:nth-of-type(1) {
        width: auto;
        max-width: 1080px;
    }
}

/* nensho */
.class__itemSecond__img:nth-of-type(1) {
    width: 280px;
    aspect-ratio: 5/2;
    right: -30px;
    top: -20px;
}

.class__itemSecond__img:nth-of-type(2) {
    width: 250px;
    aspect-ratio: 4/3;
    bottom: 0;
    left: 30px;
}


.class__itemThird__img:nth-of-type(1) {
    width: 250px;
    aspect-ratio: 4/5;
    object-fit: cover;
    top: 0;
    right: -40px;
}

.class__itemThird__img:nth-of-type(2) {
    width: 200px;
    aspect-ratio: 1/1;
    object-fit: cover;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.meichan.A {
    top: 0;
    left: 50%;
    transform: translate(-130%,-150px);
}

/* pc768px--- */
@media screen and (min-width: 768px) {
    .class__itemSecond__img:nth-of-type(1) {
        width: 600px;
        right: -150px;
        aspect-ratio: 2 / 1;
        top: -20px;
    }

    .class__itemSecond__img:nth-of-type(2) {
        width: 500px;
        aspect-ratio: 4/3;
        left: -70px;
    }

    .class__itemThird__img:nth-of-type(1) {
        width: 300px;
        aspect-ratio: 3/5;
        right: -70px;
    }

    .class__itemThird__img:nth-of-type(2) {
        width: 450px;
    }
   
}

/* nenchu */

.class__item--nenchu .class__itemSecond {
    height: 600px;
}

.class__item--nenchu .class__pointGroup {
    align-items: flex-end;
}

.class__item--nenchu .class__itemSecond__img:nth-of-type(2) {
    width: 250px;
    aspect-ratio: 4/3;
    top: 50%;
    transform: translateY(-45%);
    left: 0;
}

.class__item--nenchu .class__itemSecond__img:nth-of-type(3) {
    width: 200px;
    aspect-ratio: 3/4;
    bottom: -30px;
    right: -40px;
}

.class__item--nenchu .class__itemThird {
    height: 200px;
}

.class__item--nenchu .class__itemThird__img:nth-of-type(1) {
    height: 200px;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.meichan.B {
    top: 0;
    right: 5%;
    transform: translateY(-180px) rotate(15deg);
}

.meichan.C {
    top: 0;
    left: 0;
    transform: translateY(-170px);
}

@media screen and (min-width: 768px) {
    .class__item--nenchu .class__itemSecond {
        height: 750px;
    }

    .class__item--nenchu .class__pointGroup {
        align-items: flex-start;
        left: 30px;
        top: 50px;
    }

    .class__item--nenchu .class__itemSecond__img:nth-of-type(1) {
        aspect-ratio: 5 / 2;
    }

    .class__item--nenchu .class__itemSecond__img:nth-of-type(2) {
        width: 420px;
        transform: translateY(-35%);
    }

    .class__item--nenchu .class__itemSecond__img:nth-of-type(3) {
        width: 280px;
        bottom: 0;
        right: auto;
        left: 50%;
        transform: translateX(50%);
    }

    .class__item--nenchu .class__itemThird {
        height: 350px;
    }

    .class__item--nenchu .class__itemThird__img:nth-of-type(1) {
        height: 350px;
        width: 94vw;
        object-fit: cover;
        top: 0;
        left: 0;
        transform: translateX(0);
    }
}

/* nencho */

.class__item--nencho .class__itemSecond {
    height: 600px;
}

.class__item--nencho .class__itemSecond__img:nth-of-type(2) {
    width: 250px;
    aspect-ratio: 4/3;
    top: 50%;
    transform: translateY(-45%);
    right: 0;
    left: auto;
}

.class__item--nencho .class__itemSecond__img:nth-of-type(3) {
    width: 150px;
    aspect-ratio: 3/5;
    bottom: 0;
    left: 0;
    right: auto;
    object-position: 70% 50%;
}

.class__item--nencho .class__itemThird {
    height: 200px;
}

.class__item--nencho .class__itemThird__img:nth-of-type(1) {
    width: 100%;
    height: 200px;
    left: 0;
}

.meichan.D {
    bottom: 0;
    left: 50%;
    transform: translate(-50%,30px);
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .class__item--nencho .class__pointGroup {
        align-items: flex-start;
        left: 30px;
        top: 50px;
    }

    .class__item--nencho .class__itemSecond {
        height: 750px;
    }

    .class__item--nencho .class__itemSecond__img:nth-of-type(2) {
        width: 350px;
        aspect-ratio: 1 / 1;
        top: auto;
        transform: translateY(0);
        right: 0;
        bottom: 0;
        left: auto;
    }

    .class__item--nencho .class__itemSecond__img:nth-of-type(3) {
        width: 230px;
        aspect-ratio: 3/5;
        bottom: 60px;
        left: 15px;
    }

    .class__item--nencho .class__itemThird {
        height: 350px;
    }

    .class__item--nencho .class__itemThird__img:nth-of-type(1) {
        height: 350px;
        width: 94vw;
        object-fit: cover;
        top: 0;
        left: 0;
        transform: translateX(0);
    }
}

/* fuji */

.class__item--fuji .class__itemSecond {
    height: 500px;
}

.class__item--fuji .class__pointGroup {
    margin-top: 160px;
}

.class__item--fuji .class__itemSecond__img:nth-of-type(2) {
    width: 180px;
    aspect-ratio: 1/1;
    object-position: 20% 50%;
    top: 40%;
    transform: translateY(-45%);
    right: auto;
    left: 0;
    z-index: -1;
}

.class__item--fuji .class__itemSecond__img:nth-of-type(3) {
    width: 250px;
    aspect-ratio: 3/2;
    bottom: 0;
    left: auto;
    right: 0;
}

.class__item--fuji .class__itemThird {
    height: 200px;
}

.class__item--fuji .class__itemThird__img:nth-of-type(1) {
    width: 100%;
    height: 200px;
    left: 0;
}

.meichan.E {
    top: 0;
    left: 0;
    transform: translateY(-170px);
}

@media screen and (min-width: 768px) {
    .class__item--fuji .class__itemSecond {
        height: 850px;
    }

    .class__item--fuji .class__itemSecond__img:nth-of-type(1) {
        aspect-ratio: 5 / 2;
    }

    .class__item--fuji .class__pointGroup {
        margin-top: 0;
        transform: translateY(-120%);
    }

    .class__item--fuji .class__itemSecond__img:nth-of-type(2) {
        width: 380px;
        top: 50%;
        transform: translateY(-80%);
        z-index: 1;
    }

    .class__item--fuji .class__itemSecond__img:nth-of-type(3) {
        width: 420px;
        left: auto;
        right: 0;
    }

    .class__item--fuji .class__itemThird {
        height: 350px;
    }

    .class__item--fuji .class__itemThird__img:nth-of-type(1) {
        height: 350px;
        width: 94vw;
        object-fit: cover;
        top: 0;
        left: 0;
        transform: translateX(0);
    }
}

/* mishu */

.class__icon.mishu {
    transform: translateY(-10px);
}

.class__item__topic.mishu {
    position: relative;
    padding-bottom: 20px;
}

.class__item__topic__span {
    display: inline-block;
    position: absolute;
    width: fit-content;
    white-space: nowrap;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 1.2rem;
}

.class__item--mishu .class__itemTop__img {
    object-position: 10% 50%;
}

.class__item--mishu .class__itemSecond {
    height: 200px;
}

.class__item--mishu .class__itemSecond__img:nth-of-type(1) {
    width: 280px;
    aspect-ratio: 5/4;
    right: -30px;
    top: -20px;
    z-index: -1;
}

.class__item--mishu .class__pointGroup {
    margin-top: 50px;
    margin-left: 0;
}

.class__item--mishu .class__itemThird {
    height: 200px;
    margin-bottom: 70px;
}

.class__item--mishu .class__itemThird__img:nth-of-type(1) {
    width: 100%;
    height: 200px;
    left: 0;
}

.meichan.F {
    top: 0;
    left: 0;
    transform: translate(20%,-170px);
}

/* pc768px-- */
@media screen and (min-width: 768px) {
    .class__icon.mishu {
        transform: translateY(0px);
    }

    .class__item__topic.mishu {
        position: relative;
        padding-bottom: 0;
    }

    .class__item__topic__span {
        bottom: 0;
        left: 0;
        transform: translate(-20px,50px);
        text-align: center;
        font-size: 1.2rem;
    }

    .class__item--mishu .class__itemSecond {
        height: 400px;
    }

    .class__item--mishu .class__itemSecond__img:nth-of-type(1) {
        width: auto;
        height: 400px;
        aspect-ratio: 5/4;
        right: -80px;
        top: 0;
    }

    .class__item--mishu .class__pointGroup {
        top: 50%;
        right: 50%;
        left: auto;
        transform: translateY(-70%);
        margin-top: 0;
        margin-left: 0;
        align-items: flex-end;
    }

    .class__item--mishu .class__itemThird {
        height: 350px;
        margin-bottom: 120px;
    }

    .class__item--mishu .class__itemThird__img:nth-of-type(1) {
        height: 350px;
        width: 94vw;
        object-fit: cover;
        top: 0;
        left: 0;
        transform: translateX(0);
    }
}

/* ----------------------------------------

contact-page

-------------------------------------------*/
.pageTopContainer--contact {
    padding-bottom: 50px;
}

.meichan.G {
    top: 0;
    left: 10%;
    transform: translateY(-155px);
}