@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 15px;
    font-family: "Shippori Mincho", serif;
}
:root{
    --base-color: #252525;
    --main-color: #fff;
    --acce-color: #00711a;
}
body{
    width: 100%;
    overflow-x: hidden !important;
    touch-action: pan-y;
}
video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

/*ロード画面は追って作り直す。削除確認？*/
/*ロード画面*/
.load_1st{
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: var(--base-color);
    opacity: 1;
    transition: opacity 1.5s;
    z-index: 5;
}
.load_title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.moved_h1Title{
    top: 35%;
    transition: all 1s;
}
.load_title h3{
    color: var(--main-color);
    font-size: 1.6rem;
}
.load_title h1{
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--main-color);
    transition: 2s;
    opacity: 0;
    animation: title_anime 2s forwards;
}
@keyframes title_anime{
    0% {
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.now_loading{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: visible;
    opacity: 1;
    transition: all 0.5s;
}
.now_loading .flex{
    display: flex;
    align-items: center;
    text-align: center;
}
.now_loading .flex p{
    margin-left: 20px;
    font-size: 1.4rem;
    color: var(--main-color);
}
.square-move-2 {
    --size: 34px;
    --color: var(--acce-color);
    --animation-timing-function: linear;
    --animation-duration: 2s;
    position: relative;
    width: var(--size);
    height: var(--size);
}
.square-move-2::before,
.square-move-2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    background-color: var(--color);
}
.square-move-2::before {
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    animation: var(--animation-timing-function) var(--animation-duration) infinite square-move-2-animation-before;
}
.square-move-2::after {
    right: 0;
    bottom: 0;
    transform: translate(0%, 0%);
    animation: var(--animation-timing-function) var(--animation-duration) infinite square-move-2-animation-after;
}
@keyframes square-move-2-animation-before {
    0% {
        transform: translate(0%, 0%);
    }

    25% {
        transform: translate(100%, 0%);
    }

    50% {
        transform: translate(100%, 100%);
    }

    75% {
        transform: translate(0%, 100%);
    }

    100% {
        transform: translate(0%, 0%);
    }
}
@keyframes square-move-2-animation-after {
    0% {
        transform: translate(0%, 0%);
    }

    25% {
        transform: translate(-100%, 0%);
    }

    50% {
        transform: translate(-100%, -100%);
    }

    75% {
        transform: translate(0%, -100%);
    }

    100% {
        transform: translate(0%, 0%);
    }
}
.Done{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--main-color);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s all;
}
.Done p{
    font-size: 1.4rem;
}
.Enter{
    width: 400px;
    height: 65px;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: space-between;
    visibility: hidden;
    opacity: 0;
    opacity: "";
    transition: 0.7s all ease-in; 
}
.Enter a{
    text-decoration: none;
    color: var(--main-color);
    display: block;
}
.enterButton_audio{
    position: relative;
    width: 190px;
    height: 65px;
}
.enterButton_mute{
    position: relative;
    width: 190px;
    height: 65px;
}
.eq_anime{
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.line-7-vertical {
    --size: 40px;
    --stroke-width: calc(var(--size) / 8); /* 7本なので幅を調整 */
    --color: var(--acce-color);
    --animation-timing-function: linear;
    --animation-duration: 1.6s;
    position: relative;
    width: 100px;
    height: var(--size);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.line-7-vertical span {
    width: 2px;
    height: 100%;
    background-color: var(--color);
    animation: var(--animation-timing-function) var(--animation-duration) infinite line-7-vertical-animation;
}
/* 各線のアニメーション開始タイミングをずらす */
.line-7-vertical span:nth-child(1) { animation-delay: 0s; }
.line-7-vertical span:nth-child(2) { animation-delay: 0.2s; }
.line-7-vertical span:nth-child(3) { animation-delay: 0.4s; }
.line-7-vertical span:nth-child(4) { animation-delay: 0.6s; }
.line-7-vertical span:nth-child(5) { animation-delay: 0.8s; }
.line-7-vertical span:nth-child(6) { animation-delay: 1s; }
.line-7-vertical span:nth-child(7) { animation-delay: 1.2s; }
@keyframes line-7-vertical-animation {
    0% { transform: scaleY(1); }
    50% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}
.enterButton_audio p{
    position: absolute;
    display: block;
    width: 190px;
    height: 65px;
    line-height: 60px;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--main-color);
    text-align: center;
    cursor: pointer;
}
.enterButton_mute p{
    position: absolute;
    display: block;
    width: 190px;
    height: 65px;
    line-height: 60px;
    font-size: 24px;
    text-decoration: none;
    background-color: var(--base-color);
    color: var(--main-color);
    text-align: center;
    cursor: pointer;
}
.enterButton_audio .hoverAnime div{
    transition: all 0.6s;
}
.enterButton_audio .hoverAnime div:nth-child(1){
    width: 3px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--acce-color);
}
.enterButton_audio .hoverAnime div:nth-child(2){
    width: 20px;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--acce-color);
}
.enterButton_audio .hoverAnime div:nth-child(3){
    width: 3px;
    height: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--acce-color);
}
.enterButton_audio .hoverAnime div:nth-child(4){
    width: 20px;
    height: 3px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--acce-color);
}
.enterButton_audio:hover .hoverAnime div:nth-child(1),
.enterButton_audio:hover .hoverAnime div:nth-child(3){
    width: 3px;
    height: 100%;
}
.enterButton_audio:hover .hoverAnime div:nth-child(2),
.enterButton_audio:hover .hoverAnime div:nth-child(4){
    width: 100%;
    height: 3px;
}
.enterButton_mute .hoverAnime div{
    transition: all 0.6s;
}
.enterButton_mute .hoverAnime div:nth-child(1){
    width: 3px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--main-color);
}
.enterButton_mute .hoverAnime div:nth-child(2){
    width: 20px;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--main-color);
}
.enterButton_mute .hoverAnime div:nth-child(3){
    width: 3px;
    height: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--main-color);
}
.enterButton_mute .hoverAnime div:nth-child(4){
    width: 20px;
    height: 3px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--main-color);
}
.enterButton_mute:hover .hoverAnime div:nth-child(1),
.enterButton_mute:hover .hoverAnime div:nth-child(3){
    width: 3px;
    height: 100%;
}
.enterButton_mute:hover .hoverAnime div:nth-child(2),
.enterButton_mute:hover .hoverAnime div:nth-child(4){
    width: 100%;
    height: 3px;
}
.notice_area{
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s all ease-in;
    transition-delay: 0.7s;
}
.notice_area p{
    color: var(--main-color);
}

.load_2nd{
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: aqua;
    z-index: 4;
    opacity: 1;
    transition: all 1.5s;
}
.L2_video{
    width: 100%;
    height: 100%;
    background-color: var(--base-color);
    position: relative;
}
.L2_video div{
    width: 80%;
    aspect-ratio: 16/9;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.load_2nd div video{
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.skip_but{
    width: 100px;
    height: 55px;
    text-align: center;
    border: 3px solid transparent; /* 初期は透明 */
    transition: all 0.4s;
    margin: 0;
    position: absolute;
    bottom: 55px;
    right: 55px;
    cursor: pointer;
}
.skip_but .hoverAnime div{
    transition: all 0.4s;
}
.skip_but .hoverAnime div:nth-child(1){
    width: 2px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--main-color);
}
.skip_but .hoverAnime div:nth-child(2){
    width: 15px;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--main-color);
}
.skip_but .hoverAnime div:nth-child(3){
    width: 2px;
    height: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--main-color);
}
.skip_but .hoverAnime div:nth-child(4){
    width: 15px;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--main-color);
}
.skip_but:hover .hoverAnime div:nth-child(1),
.skip_but:hover .hoverAnime div:nth-child(3){
    width: 2px;
    height: 100%;
}
.skip_but:hover .hoverAnime div:nth-child(2),
.skip_but:hover .hoverAnime div:nth-child(4){
    width: 100%;
    height: 2px;
}
.skip_but .skip_butBravo{
    height: 55px;
    display: flex;
}
.skip_but .skip_butBravo p{
    position: absolute;
    top: 49%;
    left: 40%;
    transform: translate(-50%, -50%);
    color: var(--main-color);
}
.skip_but .skip_butBravo .triangle {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 12px solid var(--main-color);
    border-right: 0;
}
@media screen and (max-width: 1025px) {
    .load_title h1{
        font-size: 3.6rem;
        white-space: nowrap;
    }
    .load_title{
        top: 50%;
    }
    .moved_h1Title{
        top: 35%;
        transition: all 1s;
    }
    .now_loading{
        top: 60%;
    }
    .Done{
        top: 60%;
    }
    .Enter{
        top: 50%;
    }
    .notice_area{
        top: 65%;
    }
    .L2_video div{
        width: 100%;
    }
    .skip_but{
        bottom: 70px;
        right: 70px;
    }
}
@media screen and (max-width: 480px) {
    .load_title h3{
        font-size: clamp(0.8rem, -0.4rem + 6vw, 1.4rem);
    }
    .load_title h1{
        font-size: clamp(2.2rem, 0.2rem + 10vw, 3.2rem);
        font-weight: 700;
    }
    .now_loading .flex p{
        font-size: clamp(0.9rem, 0.3rem + 3vw, 1.2rem);
        white-space: nowrap;
    }
    .Done p{
        font-size: clamp(0.9rem, 0.3rem + 3vw, 1.2rem);
    }
    .Enter{
        width: 300px;
        height: 55px;
    }
    .enterButton_audio{
        width: 145px;
        height: 55px;
    }
    .line-7-vertical{
        --size: 35px;
        width: 80px;
    }
    .enterButton_audio p{
        width: 145px;
        height: 55px;
        line-height: 49px;
        font-size: 1.4rem;
    }
    .enterButton_mu{
        width: 145px;
        height: 55px;
    }
    .enterButton_mute p{
        width: 145px;
        height: 55px;
        line-height: 49px;
        font-size: 1.4rem;
    }
    .notice_area{
        top: 67%;
    }
    .notice_area p{
        font-size: clamp(0.9rem, 0.3rem + 3vw, 1.2rem);
        white-space: nowrap;
    }
    .skip_but{
        right: 15px;
        bottom: 70px;
    }
}
@media screen and (min-width: 481px){
    @media screen and (max-height: 770px){
        .moved_h1Title{
            top: 33%;
        }
    }
    .nowarp_br{
        display: none;
    }
}


.maincont{
    display: flex;
    width: 100%;
}

/*menu (左端)*/
.menu{
    width: 160px;
    height: 100vh;
    position: fixed;
    transform: translateX(-100%);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    /*border-left: 1px solid #ccc;*/
    /*background-color: rgba(43, 43, 43, 0.7);*/
    z-index: 2;
    justify-content: space-between;
    transition: all 1.5s;
}
.menu.scrolled{
    transform: translateX(0) !important;
}
.menu.scrolled.is-range{
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(0, 0, 0, 0.5);
}
.menu.active{
    border-right: 0.5px solid rgba(0, 0, 0, 0.5);
    border-left: 0.5px solid rgba(0, 0, 0, 0.5);
    transition: all 1.5s;
}
.menu.nav{
    background-color: rgba(0, 0, 0, 0.3);
}
.mainmenu{
    width: calc(100% - 1px);
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.menulogo{
    width: 50%;
    margin: auto;
    margin-top: 30px;
}
.menulogo img{
    width: 100%;
}
.menulogo .flexItem h1{
    display: none;
}
.burger{
    display: none;
}
.menunav{
    width: 100%;
    height: 55px;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: "";
    border-right: 1px solid rgba(255, 255, 255, 0);
    cursor: pointer;
}
.menunav a{
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    transition: color 1.5s;
}
.menunav a .aFlex{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.menunav:hover{
    background-color: rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.5s;
}
.mne{
    font-size: 0.7rem;
    color: #cccccc;
    transition: color 1.5s;
}
.menu.is-range .menunav a,
.menu.is-range .menunav a .mne{
    transition: color 1.5s;
    color: #000;
}
.menu.is-range .menunav:hover{
    background-color: rgba(34, 34, 34, 0.2);
    border-right: 1px solid rgb(34, 34, 34);
    transition: all 0.5s;
}
.mainmenu .onlineBut{
    width: 85%;
    height: 55px;
    margin: auto;
    margin-top: 30px;
    display: block;
    color: #fff;
    transition: all 1.5s;
}
.menu.is-range .mainmenu .onlineBut{
    color: #000;
}
.mainmenu .onlineBut a{
    width: 100%;
    height: 100%;
    display: block;
}
.mainmenu .onlineBut a .item{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainmenu .onlineBut a .item .log{
    width: 12px;
    height: 12px;
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    transition: all 1.5s;
}
.menu.is-range .mainmenu .onlineBut a .item .log{
    background-color: #000;
}
.mainmenu .onlineBut a .item .log .Triangle{
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 6px solid #222222;
    border-right: 0;
    transition: all 1.5s;
}
.menu.is-range .mainmenu .onlineBut a .item .log .Triangle{
    border-left: 6px solid #ffffff;
}
.mainmenu .onlineBut a .item div p:nth-child(1){
    font-size: 1.2rem;
}
.mainmenu .onlineBut a .item div p:nth-child(2){
    font-size: 0.8rem;
}
.mainmenu .onlineBut a .item .hoverAnime div{
    transition: all 0.4s;
    background-color: var(--main-color);
}
.menu.is-range .mainmenu .onlineBut a .item .hoverAnime div{
    background-color: #000;
}
.mainmenu .onlineBut a .item .hoverAnime div:nth-child(1){
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.mainmenu .onlineBut a .item .hoverAnime div:nth-child(2){
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
}
.mainmenu .onlineBut a .item .hoverAnime div:nth-child(3){
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}
.mainmenu .onlineBut a .item .hoverAnime div:nth-child(4){
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.mainmenu .onlineBut:hover a .item .hoverAnime div:nth-child(1),
.mainmenu .onlineBut:hover a .item .hoverAnime div:nth-child(3){
    width: 1px;
    height: 15px;
}
.mainmenu .onlineBut:hover a .item .hoverAnime div:nth-child(2),
.mainmenu .onlineBut:hover a .item .hoverAnime div:nth-child(4){
    width: 15px;
    height: 1px;
}
.sub_menu{
    width: calc(100% - 1px);
    min-height: 15%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.sub_menu .menunav{
    margin-top: 10px;
}
.snslink{
    width: 55%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    margin-top: 10px;
}
.snslink div{
    width: 40%;
    aspect-ratio: 1;
    border-radius: 50%;
}
.snslink a{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
}
.snslink a img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    transition: all 1.3s;
}
.snslink a .snsFFF{
    opacity: 1;
}
.snslink a .snsBLK{
    opacity: 0;
}
.menu.is-range .snslink a .snsFFF{
    opacity: 0;
}
.menu.is-range .snslink a .snsBLK{
    opacity: 1;
}
/*laptop*/
@media screen and (max-width: 1280px){
    .menu_cont{
        position: absolute;
        width: 100%;
        height: calc(100% - 109px);
    }
    .mainmenu{
        display: inline-block;
        min-height: 50%;
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .sub_menu{
        bottom: 20px;
    }
    .sub_menu .menunav{
        margin-top: 0;
    }
    .snslink{
        margin-top: 0;
    }
}
@media screen and (max-height: 700px){
    .menu_cont{
        position: absolute;
        width: 100%;
        height: calc(100% - 109px);
    }
    .mainmenu{
        display: inline-block;
        min-height: 50%;
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .mainmenu .menunav{
        margin-top: 10px;
    }
    .mainmenu .onlineBut{
        margin-top: 15px;
    }
    .sub_menu{
        display: inline-block;
        min-height: 15%;
        max-height: 30%;
        bottom: 20px;
    }
    .sub_menu .menunav{
        margin-top: 0;
    }
    .snslink{
        margin-top: 5px;
    }
}


/*main メイン*/
.main{
    width: 100%;
    animation: loading 2s;
}
@keyframes loading {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.top_area{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
}
.top_area .headItem{
    width: 90%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_area .headItem .headLogo a{
    display: flex;
    align-items: center;
}
.top_area .headItem .headLogo a div{
    height: 80px;
    aspect-ratio: 1/1;
}
.top_area .headItem .headLogo a div img{
    width: 100%;
    height: 100%;
    object-fit: 1/1;
}
.top_area .headItem .headLogo a h1{
    padding-left: 15px;
    font-size: 2.5rem;
    color: #fff;
}
.top_area .headItem .nav{
    display: flex;
    align-items: center;
}
.top_area .headItem .nav .navItem{
    width: 100px;
    height: 45px;
    position: relative;
    margin-left: 10px;
}
.top_area .headItem .nav .navItem a{
    color: #fff;
}
.top_area .headItem .nav .navItem a .textItem{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.top_area .headItem .nav .navItem a .textItem p:nth-child(1){
    font-size: 1.1rem;
    white-space: nowrap;
}
.top_area .headItem .nav .navItem a .textItem p:nth-child(2){
    font-size: 0.8rem;
    white-space: nowrap;
}
.top_area .headItem .nav .navItem a .hoverBorder{
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #fff;
    transition: all 0.4s;
}
.top_area .headItem .nav .navItem:hover a .hoverBorder{
    width: 100%;
}
.top_area .headItem .onlineBut{
    width: 120px;
    height: 55px;
    position: relative;
    margin-left: 20px;
}
.top_area .headItem .onlineBut a{
    width: 100%;
    height: 100%;
    display: block;
    color: #fff;
}
.top_area .headItem .onlineBut a .item{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top_area .headItem .onlineBut a .item .log{
    width: 12px;
    height: 12px;
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
}
.top_area .headItem .onlineBut a .item .log .Triangle{
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 6px solid #222222;
    border-right: 0;
}
.top_area .headItem .onlineBut a .item div:nth-child(1){
    text-align: center;
}
.top_area .headItem .onlineBut a .item div:nth-child(1) p:nth-child(1){
    font-size: 1.1rem;
}
.top_area .headItem .onlineBut a .item div:nth-child(1) p:nth-child(2){
    font-size: 0.8rem;
}
.top_area .headItem .onlineBut a .item .hoverAnime div{
    transition: all 0.4s;
    background-color: var(--main-color);
}
.top_area .headItem .onlineBut a .item .hoverAnime div:nth-child(1){
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.top_area .headItem .onlineBut a .item .hoverAnime div:nth-child(2){
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
}
.top_area .headItem .onlineBut a .item .hoverAnime div:nth-child(3){
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}
.top_area .headItem .onlineBut a .item .hoverAnime div:nth-child(4){
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.top_area .headItem .onlineBut:hover a .item .hoverAnime div:nth-child(1),
.top_area .headItem .onlineBut:hover a .item .hoverAnime div:nth-child(3){
    height: 15px;
}
.top_area .headItem .onlineBut:hover a .item .hoverAnime div:nth-child(2),
.top_area .headItem .onlineBut:hover a .item .hoverAnime div:nth-child(4){
    width: 15px;
}
.top_area .topTitle{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.top_area .topTitle h2{
    font-size: 1.6rem;
    color: #fff;
}
.top_area .topTitle h1{
    font-size: 3.8rem;
    color: #fff;
}
.top_area .scroll_me{
    position: absolute;
    top: 87vh;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.border01{
    display: block;
    width: 1px;
    height: 20vh;
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 90vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.about_area{
    width: 100%;
    height: 185vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    position: relative;
}
.our_concept{
    width: 800px;
    height: 75vh;
    padding-top: 10vh;
    margin: auto;
    position: relative;
}
.our_concept h1,
.our_concept h2{
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-style: normal;
}
.our_concept .ourh2{
    font-size: 2.2rem;
    color: #fff;
    position: absolute;
    top: 20%;
    left: 0;
    transform: translateY(-50%);
}
.ourh2_02, .ourh2_03, .ourh2_04{
    font-size: 3.5rem;
    color: #fff;
}
.ourh2_02{
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
}
.ourh2_03{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ourh2_04{
    position: absolute;
    top: 80%;
    right: 0;
    transform: translateY(-50%);
}
/*
    @media screen and (max-width:1120px) {
        .our_concept{
            width: 690px;
            position: relative;
        }
        .ourh2_02, .ourh2_03, .ourh2_04{
            font-size: 2.6rem;
        }
        .ourh2_03{
            position: absolute;
            top: 60%;
            left: 46%;
            transform: translate(-50%, -50%);
        }
    }
*/
.border02{
    width: 1px;
    height: 20vh;
    background-color: rgba(255, 255, 255, 0.6);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.concept_text{
    width: 550px;
    height: 550px;
    display: flex;
    margin: auto;
    align-items: center;
}
.concept_text p{
    color: #fff;
    font-size: 1.2rem;
    writing-mode: vertical-rl;
    line-height: 2;
    margin: 10px auto;
}
.border03{
    width: 0.1px;
    height: 20vh;
    background-color: rgba(255, 255, 255, 0.6);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.spacer01{
    width: 100%;
    height: 40vh;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.996));
}

.back_container_FFF{
    width: 100%;
    height: auto;
    background-color: #fff;
}

.ourconcept_spacer{
    display: flex;
    height: 20vh;
    align-items: end;
    background-color: #fff;
}
.ourconcept_spacer div{
    margin-left: 160px;
    padding-left: 5px;
}
.ourconcept_spacer div h2{
    font-size: 3.2rem;
    padding-bottom: 5px;
}
.ourconcept_spacer div h3{
    font-size: 1.6rem;
}

/*デベロッパーツール用*/

.pin-spacer{
    overflow-x: hidden !important;
}

.ourservice{
    overflow: hidden;
    background-color: #fff;
    position: relative;
}
.ourservice .scroll_container{
    display: flex;
    width: auto;
    height: auto;
    will-change: transform;
}
.ourservice .scroll_container .scroll_content{
    flex: 0 0 100vw;
    height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #fff;
}

/*our concept heading*/


.ourservice .scroll_content.content01{
    background-color: #00711a;
}
.ourservice .scroll_content .Flex_container{
    display: flex;
    width: calc(100% - 160px);
    height: 100%;
    margin-left: 160px;
}
.ourservice .scroll_content .Flex_container .heading{
    display: flex;
    width: 12%;
    flex-direction: column;
    justify-content: end;
    writing-mode: vertical-lr;
}
.ourservice .scroll_content .Flex_container .heading h2{
    padding-right: 10px;
    font-size: 2.2rem;
}
.ourservice .scroll_content .Flex_container .heading h4{
    font-size: 1.6rem;
    color: var(--acce-color);
}
.ourservice .scroll_content .Flex_container .grid_container{
    width: 88%;
    position: relative;
}

/*concept01*/
.scroll_content.content02 .Flex_container .grid_container{
    display: flex;
    height: 100%;
}
.scroll_content.content02 .Flex_container .grid_container .griditem01{
    width: 55%;
    height: 100%;
    overflow: hidden;
}
.ourservice .scroll_content.content02 .Flex_container .grid_container .gridItem.griditem01 img{
    width: calc(100% + 330px);
}
.scroll_content.content02 .Flex_container .grid_container .griditem02{
    width: 45%;
    height: 100%;
}
.scroll_content.content02 .Flex_container .grid_container h3,
.scroll_content.content02 .Flex_container .grid_container a{
    color: #000;
}
/*concept02*/
.scroll_content.content03 .Flex_container .grid_container{
    display: grid;
    height: 100%;
    grid-template-columns: 1fr 1.4fr;
    grid-template-rows: 1fr 1fr;
}
.scroll_content.content03 .Flex_container .grid_container .griditem02{
    grid-column: 2/3;
    grid-row: 1/3;
}
.scroll_content.content03 .Flex_container .grid_container .gridItem{
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
}

/*concept03*/
.scroll_content.content04 .Flex_container .grid_container{
    display: grid;
    height: 100%;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
}

/*後で消す*/
.scroll_content.content04 .Flex_container .grid_container .gridItem{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.scroll_content.content04 .Flex_container .grid_container .griditem01{
    grid-row: 1/3;
}
.scroll_content.content04 .Flex_container .grid_container .griditem03{
    align-items: start;
}
/*concept04*/
.scroll_content.content05 .Flex_container .grid_container{
    display: flex;
    height: 100%;
}

/*後で消す*/
.scroll_content.content05 .Flex_container .grid_container .gridItem{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.scroll_content.content05 .Flex_container .grid_container .griditem01{
    width: 45%;
    height: 100%;
}
.scroll_content.content05 .Flex_container .grid_container .griditem02{
    width: 55%;
    height: 100%;
}

.ourservice .scroll_content .Flex_container .grid_container .gridItem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ourservice .scroll_content .Flex_container .grid_container .absolute{
    position: absolute;
    bottom: 15%;
    right: 55px;
    transform: translateY(-50%);
    color: #fff;
}
.ourservice .scroll_content.content03 .Flex_container .grid_container .absolute,
.ourservice .scroll_content.content04 .Flex_container .grid_container .absolute{
    bottom: 10%;
}
.scroll_content .Flex_container .grid_container .absolute h3{
    font-size: 2rem;
}
.ourservice .grid_container .absolute .hover_content .bar{
    width: 200px;
    height: 2px;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #888;
}
.ourservice .grid_container .absolute .hover_content .bar::before{
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    transition: all ease-in-out 0.5s;
}
.ourservice .content02 .grid_container .absolute .hover_content .bar::before{
    background-color: #222222;
}
.ourservice .grid_container .absolute .hover_content:hover .bar::before{
    width: 100%;
}
.ourservice .grid_container .absolute .hover_content .link{
    display: flex;
    align-items: center;
}
.ourservice .grid_container .absolute .hover_content a{
    font-size: 1.4rem;
}
.ourservice .grid_container .absolute .hover_content .link div{
    display: flex;
    width: 17px;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    margin-left: 13px;
    border-radius: 50%;
    background-color: #fff;
}
.ourservice .grid_container .absolute .hover_content .link div i{
    font-size: 0.6rem;
    color: var(--acce-color);
}


.spacer02{
    width: 100%;
    height: 15vh;
    background-color: #fff;
}
.button_item01{
    padding-top: 2px;
    width: 200px;
    height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    border-top: solid 1px #004410;
    border-bottom: solid 1px #004410;
    position: relative;
}
.button_item01 a{
    display: block;
    width: 100%;
    height: 100%;
    color: #004410;
    text-decoration: none;
}
.rm_concept{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 10px;
    padding-right: 10px;
}
.rmp_concept{
    font-size: 1.2rem;
}
.ReadMore{
    font-size: 0.8rem;
}
.cilcs{
    width: 15px;
    height: 15px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background-color: #004410;
    display: flex;
    align-items: center;
}
.alufa{
    margin: auto;
    width: 5px;
    height: 5px;
    background-color: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.button_item01:hover{
    background-color: #eaeaea;
}

.other_info{
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.other_info .alfa{
    width: 65%;
    height: 75vh;
    margin: auto;
    display: flex;
}
.other_info .moby_title{
    display: none;
}
.otherinfo_main{
    display: flex;
    width: 80%;
    height: 75vh;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.otherinfoMainItem{
    width: 65%;
    height: 100%;
}
.otherinfo_main .otherinfoMainItem .infoItem{
    width: 100%;
    height: calc(100% / 3);
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 1px solid #747474;
}
.otherinfo_main .otherinfoMainItem .infoItem01{
    border-top: 1px solid #747474;
}
.otherinfo_main .otherinfoMainItem .infoItem div p:nth-child(1){
    font-size: 0.9rem;
}
.otherinfo_main .otherinfoMainItem .infoItem div p:nth-child(2){
    font-size: 1.2rem;
    padding-top: 20px;
}
.otherinfo_main .otherinfoMainItem .infoItem.infoItem02 p .breakPoint_desk{
    display: none;
}@media screen and (max-width:1340px){
    .otherinfo_main .otherinfoMainItem .infoItem.infoItem02 p .breakPoint_desk{
        display: block;
    }
}
.otherinfo_main .otherinfoMainItem .infoItem div p:nth-child(3){
    font-size: 1.2rem;
    padding-top: 10px;
}
.otherinfo_main .otherinfoBut{
    width: 160px;
    height: 65px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    background-color: "";
    border-top: 1px solid #747474;
    border-bottom: 1px solid #747474;
    cursor: pointer;
    transition: all 0.3s;
}
.otherinfo_main .otherinfoBut a{
    display: block;
    width: 100%;
    height: 100%;
}
.otherinfo_main .otherinfoBut .butText{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding-left: 10px;
}
.otherinfo_main .otherinfoBut .butText p:nth-child(1){
    font-size: 1.2rem;
}
.otherinfo_main .otherinfoBut .butText p:nth-child(2){
    font-size: 0.8rem;
}
.otherinfo_main .otherinfoBut:hover{
    background-color: #eaeaea;
}
.otherinfo_title{
    width: 20%;
    height: 75vh;
    position: relative;
    
    color: #000;
    writing-mode: vertical-rl;
    background-color: "";
}
.otherinfo_title div{
    position: absolute;
    top: 0;
    left: 0;
}
.otherinfo_title .en{
    font-size: 3rem;
}
.otherinfo_title .ja{
    font-size: 1.4rem;
}
.other_info .but_space{
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    padding-top: 3.5vh;
    padding-bottom: 3.5vh;
}
.other_info .but_space .but{
    width: 140px;
    height: 70px;
    position: relative;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    transition: all 0.5s;
}
.other_info .but_space .but:hover{
    background-color: #e0e0e0;
}
.other_info .but_space .but a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px;
}
.other_info .but_space .but p.top{
    font-size: 1.3rem;
}
.other_info .but_space .but p.bottom{
    font-size: 0.9rem;
}
.other_info .but_space .but .absolute{
    display: flex;
    width: 15px;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-radius: 50%;
    background-color: #004410;
}
.other_info .but_space .but .absolute .polygon{
    height: 40%;
    aspect-ratio: 1/1;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: #fff;
}

.event{
    width: 100%;
    height: auto;
    background-color: #fff;
    padding-top: 8vh;
    padding-bottom: 8vh;
    padding-block-end: 192px;
    background-color: rgb(235, 235, 235);
}

.event .pin-spacer{
    overflow-x: visible !important;
}

/*新イベント　エレメント*/
.event .Flex_container{
    display: flex;
    width: 70%;
    height: auto;
    margin: auto;
}
.event .event_heading{
    display: flex;
    width: 20%;
    height: 80vh;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.event .event_heading .title{
    writing-mode: vertical-rl;
}
.event .event_heading .title .en{
    font-size: 3rem;
}
.event .event_heading .title .ja{
    font-size: 1.4rem;
}
.event .event_heading .but{
    width: 140px;
    height: 70px;
    margin-bottom: 10px;
    position: relative;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    transition: all 0.5s;
}
.event .event_heading .but:hover{
    background-color: #e0e0e0;
}
.event .event_heading .but a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px;
}
.event .event_heading .but p.top{
    font-size: 1.3rem;
}
.event .event_heading .but p.bottom{
    font-size: 0.9rem;
}
.event .event_heading .but .absolute{
    display: flex;
    width: 15px;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-radius: 50%;
    background-color: #004410;
}
.event .event_heading .but .absolute .polygon{
    height: 40%;
    aspect-ratio: 1/1;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: #fff;
}

.event .event_container{
    width: 80%;
    height: 100%;
    position: relative;
    overflow: visible;
}
.event .event_container .event_item{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 80vh;
    position: absolute;
    inset: 0;
    margin: auto;
    transform-origin: top center; /* 縮小は頭基準 */
    will-change: transform; 
    background-color: #252525;
    box-shadow: 0 0 8px #cbcbcb;
}
.event .event_container .event_item a{
    display: block;
    width: 100%;
    height: 100%;
}
.event .event_container .event_item a .flex{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.event .event_container .event_item .image{
    display: flex;
    width: 100%;
    aspect-ratio: 16/9;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    transition: all 0.6s;
    overflow: hidden;
}
.event .event_container .event_item .image .noImage{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    transition: all 0.6s;
}
.event .event_container .event_item:hover .image .noImage{
    transform: scale(1.2);
}
.event .event_container .event_item .image img{
    transition:  all 0.6s;
}
.event .event_container .event_item:hover .image img{
    transform: scale(1.2);
}
.event .event_container .event_item .image p{
     font-size: 2rem;
}
.event .event_container .event_item .flex article.text{
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    justify-content: space-evenly;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
}
.event .event_container .event_item .flex article.text h2{
    font-size: 1.8rem;
    padding-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.event .event_container .event_item .flex article.text p{
    font-size: 1.2rem;
}
.event .event_container .event_item .flex .bar{
    width: 100%;
    height: 2px;
    position: relative;
    background-color: #555;
}
.event .event_container .event_item .flex .bar::before{
    content: "";
    width: 10%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    transition: all ease-in-out 0.5s;
}
.event .event_container .event_item:hover .flex .bar::before{
    width: 100%;
}
.event .moby_but{
    display: none;
}


/*旧イベント*/
.event_Bravo{
    width: 70%;
    height: 80vh;
    display: flex;
    margin: auto;
}
.event_Charlie01{
    width: 15%;
    height: 80vh;
    background-color: rgb(255, 255, 255);
    position: relative;
}
.event_Echo01{
    width: 100%;
    height: 80%;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
}
.event_Echo01 div .ja{
    font-size: 1.4rem;
}
.event_Echo01 div .en{
    font-size: 3rem;
}
.event_Echo02{
    width: 120px;
    height: 60px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: "";
    border-top: 1px solid #c2c2c2;
    border-bottom: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all 0.3s;
}
.event_Echo02 a{
    display: block;
    width: 100%;
    height: 100%;
}
.event_Echo02 .p{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}
.event_Echo02 .p .mainP{
    font-size: 1.2rem;
}
.event_Echo02 .p .readMore{
    font-size: 0.8rem;
}
.event_Echo02:hover{
    background-color: #eeeeee;
}
.event.mainItem{
    width: 85%;
    height: 100%;
    background-color: "";
}
.event.mainItem .gridArea{
    width: 100%;
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 1fr;
}
.gridArea .eventContent{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 96%;
    min-height: 280px;
    height: 100%;
    padding-bottom: 15px;
    background-color: #222222;
    margin: auto;
}
.gridArea .eventContent .image{
    width: calc(100% - 30px);
    aspect-ratio: 16/9;
    height: auto;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 0;
}
.gridArea .eventContent .image img{
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.gridArea .eventContent .image .noImage{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.gridArea .eventContent .image .noImage p{
    color: #000;
}

.gridArea .eventContent .titleArea{
    width: calc(100% - 30px);
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}
.gridArea .eventContent .titleArea h4{
    font-size: 1.2rem;
    color: #fff;
}
.gridArea .eventContent .titleArea p{
    font-size: 0.9rem;
    color: #fff;
    padding-top: 10px;
}
.gridArea .eventContent .detailBut{
    display: flex;
    width: 90px;
    height: 40px;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
    margin-top: auto;
    margin-bottom: 0;
    background-color: #004410;
    transition: all 0.2s;
}
.gridArea .eventContent .detailBut p{
    color: #fff;
}
.gridArea .eventContent .detailBut:hover{
    background-color: #00360d;
}
.gridArea .eventContent .detailBut a{
    display: block;
    width: 100%;
    height: 100%;
}
.gridArea .eventContent .detailBut a div{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

/*BLK container*/
.back_container_BLK{
    width: 100%;
    height: auto;
    background-color: #222222;
}

/*navigator*/
.navigator_title{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5vh;
}
.navigator_title div{
    text-align: center;
}
.navigator_title h3{
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}
.navigator_title h4{
    font-size: 1.8rem;
    color: #fff;
}

.navigator{
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: space-evenly;
    
    overflow-x: hidden;
    background-color: #222222;
}
.navigator .animation_container{
    display: flex;
    width: calc((55vw * 2) + (4vw * 1));
    margin-left:  calc((100vw - 55vw)/2);
    margin-right: calc((100vw - 55vw)/2);
    gap: 4vw;
    will-change: transform;  
}
.navigator .animation_container .animation_content{
    display: flex;
    width: 55vw;
    height: auto;
    transform-origin: 50% 50%;
    background-color: #fff;
    transform: scale(0.95);
    transition: transform 0.8s ease;
}
.navigator .animation_container .animation_content.is-active{
    transform: scale(1.05);
}
.navigator .animation_container .animation_content .prof_img{
    width: 45%;
    aspect-ratio: 7/9;
}
.navigator .animation_container .animation_content .prof_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.navigator .animation_container .animation_content .intro_text{
    display: flex;
    width: 55%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}
.navigator .animation_container .animation_content .intro_text p{
    font-size: 1rem;
    padding-top: 4px;
}
.navigator .animation_container .animation_content h3{
    font-size: 2.8rem;
    color: #000;
    padding-bottom: 13px;
}

/*news*/
.news_area{
    width: 100%;
    min-height: 100vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
    background-color: #222222;
    display: flex;
    align-items: center;
}
.sec01{
    width: 70%;
    height: auto;
    margin: auto;
    display: flex;
}
.news_title{
    width: 10%;
    height: 80vh;
    color: #fff;
    writing-mode: vertical-rl;
}
.news_title .en{
    font-size: 3rem;
}
.news_title .jp{
    font-size: 1.4rem;
}
.news_main{
    width: 90%;
    height: auto;
    position: relative;
}
.newsItem{
    width: 85%;
    position: relative;
    margin: auto;
}
.newsCont{
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition: all 0.4s;
}
.newsCont a{
    display: block;
    width: 100%;
    height: 100%;
}
.newsCont p,
.newsCont h4{
    color: #fff;
}
.newsData{
    display: flex;
    padding-top: 15px;
    padding-left: 5px;
}
.new_info{
    width: 100px;
    height: 28px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.up_data{
    width: 100px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news_Heading{
    width: 100%;
    height: calc(57px + (2vh * 2));
    display: flex;
    align-items: center;
    padding-left: 5px;
    border-bottom: 1px solid #c2c2c2;
}
.news_Heading h4{
    padding-top: 2vh;
    padding-bottom: 2vh;
    font-size: 1.5rem;
    font-weight: 300;
}
.newsItem .newsCont:hover{
    background-color: rgba(255, 255, 255, 0.2);
}
.newsBut_container{
    display: flex;
    width: 85%;
    justify-content: end;
    padding-top: 7vh;
    margin: auto;
}
.newsBut{
    width: 170px;
    height: 70px;
    position: relative;
    cursor: pointer;
    border-top: 1px solid #c2c2c2;
    border-bottom: 1px solid #c2c2c2;
    transition: all 0.3s;
}
.newsBut a{
    display: block;
    width: 100%;
    height: 100%;
}
.newsBut a .butFlex{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
.newsBut .newsButP{
    padding-left: 10px;
    color: #fff;
}
.newsBut .newsButP .mainP{
    font-size: 1.2rem;
}
.newsBut .newsButP .readMore{
    font-size: 0.8rem;
}
.newsBut .newsButP .cilcs{
    background-color: #000;
}
.newsBut:hover{
    background-color: rgba(255, 255, 255, 0.1);
}

/*footer*/
footer{
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.6);
}
footer .footerItem{
    width: 50%;
}
footer .footerTitle{
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #cccccc;
    color: #fff;
}
footer .footerTitle div{
    padding-left: 30px;
}
footer .footerTitle div img{
    width: 75px;
    aspect-ratio: 1/1;
}
footer .footerTitle div h1{
    font-size: 3rem;
}
.footerMain{
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #fff;
}
.footerMain .leftItem{
    width: 48%;
    height: 100%;
}
.footerMain .rightItem{
    width: 48%;
    height: 100%;
}
.footerMain .leftItem .address{
    width: 100%;
    height: max(calc(27vh - 60px), 150px);
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    border-bottom: 1px solid #cccccc;
}
.footerMain .leftItem .address p{
    padding-left: 5px;
}
.footerMain .leftItem .address a{
    font-size: 1.2rem;
    font-weight: 600;
}
.footerMain .leftItem .address p:nth-child(1){
    font-size: 1rem;
}
.footerMain .leftItem .address h2{
    padding-top: 20px;
    font-size: 1.2rem;
}
.footerMain .leftItem .address p:nth-child(3){
    padding-top: 10px;
}
.footerMain .leftItem .address p:nth-child(3):hover{
    color: #c2c2c2;
}
.footerMain .leftItem .contact{
    width: 100%;
    height: max(calc(27vh - 60px), 150px);
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    border-bottom: 1px solid #cccccc;
}
.footerMain .leftItem .contact .linkArea .linkBut{
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerMain .leftItem .contact .linkArea .linkBut .LinkTriangle{
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 6px solid #313131;
    border-right: 0;
}
.footerMain .leftItem .contact p:nth-child(1){
    font-size: 1rem;
    padding-left: 5px;
}
.footerMain .leftItem .contact .linkArea{
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}
.footerMain .leftItem .contact a:nth-child(2){
    margin-top: 20px;
    width: 220px;
    display: block;
}
.footerMain .leftItem .contact a:nth-child(2) .linkArea{
    width: 100%;
    justify-content: space-between;
}
.footerMain .leftItem .contact a:nth-child(3),
.footerMain .leftItem .contact a:nth-child(4){
    width: 60%;
    display: block;
}
.footerMain .leftItem .contact a:nth-child(3) .linkArea,
.footerMain .leftItem .contact a:nth-child(4) .linkArea{
    width: 100%;
    justify-content: space-between;
}
.footerMain .leftItem .contact a .linkArea p{
    font-size: 1.2rem;
    font-weight: 600;
}
.footerMain .leftItem .contact .linkArea:hover p{
    color: #c2c2c2;
}
.footerMain .leftItem .contact .linkArea:hover .linkBut{
    background-color: #bdbdbd;
}
.footerMain .rightItem .SNS{
    width: 100%;
    height: max(calc(27vh - 60px), 150px);
    display: flex;
    justify-content: right;
    align-items: center;
    border-bottom: 1px solid #cccccc;
}
.footerMain .rightItem .SNS .snsItem div:nth-child(1){
    display: flex;
    justify-content: right;
    font-size: 1rem;
    padding-right: 5px;
}
.footerMain .rightItem .SNS .snsItem .iconItem{
    display: flex;
    width: 120px;
    justify-content: space-between;
    padding-top: 20px;
    padding-right: 5px;
}
.footerMain .rightItem .SNS .snsItem .iconItem .snsIcon{
    width: 50px;
    aspect-ratio: 1/1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 40%;
    position: relative;
    transition: all 0.3s;
}
.footerMain .rightItem .SNS .snsItem .iconItem .snsIcon:hover{
    background-color: rgba(255, 255, 255, 0.2);
}
.footerMain .rightItem .SNS .snsItem .iconItem .snsIcon a{
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 40%;
}
.footerMain .rightItem .SNS .snsItem .iconItem .snsIcon img{
    width: 60%;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.footerMain .rightItem .onlineLink{
    width: 100%;
    height: max(calc(27vh - 60px), 150px);
    display: flex;
    justify-content: right;
    align-items: center;
    border-bottom: 1px solid #cccccc;
}
.footerMain .rightItem .onlineLink p{
    justify-content: right;
}
.footerMain .rightItem .onlineLink .linkItem .titleArea{
    display: flex;
    justify-content: right;
    align-items: center;
    padding-right: 5px;
}
.footerMain .rightItem .onlineLink a{
    width: 210px;
    display: block;
    padding-right: 5px;
}
.footerMain .rightItem .onlineLink .linkArea{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.footerMain .rightItem .onlineLink .linkArea p{
    font-size: 1.2rem;
    font-weight: 600;
}
.footerMain .rightItem .onlineLink .linkArea .linkBut{
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerMain .rightItem .onlineLink .linkArea  .linkBut .LinkTriangle{
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 6px solid #313131;
    border-right: 0;
}
.footerMain .rightItem .onlineLink .linkArea:hover p{
    color: #c2c2c2;
}
.footerMain .rightItem .onlineLink .linkArea:hover .linkBut{
    background-color: #bdbdbd;
}
footer .rights{
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .rights div{
    display: flex;
}
footer .rights div a{
    color: #fff;
    font-size: 0.9rem;
}
footer .rights div a:nth-child(2){
    margin-left: 30px;
}
footer .rights div p{
    color: #c2c2c2;
    font-size: 0.9rem;
    padding-left: 30px;
}

/*other_link (右端)*/
.other_link{
    display: none;/*確認？？*/
    width: 80px;
    height: 100vh;
    position: fixed;
    right: 0;
    z-index: 2;
    background-color: #000;
    text-align: center;
}
.other_link a{
    color: #fff;
    text-decoration: none;
}
.olp{
    height: 180px;
    writing-mode: vertical-rl;
    margin: auto;
}
.other_link_border{
    width: 1px;
    height: calc(100vh - 270px);
    margin: auto;
    background-color: #fff;
}
.olep{
    height: 90px;
    writing-mode: vertical-rl;
    margin: auto;
}

@-moz-document url-prefix(){
    .border01, .border02, .border03{
        width: 1px;
    }
}

@media screen and (max-width:1025px) {
    body{
        overflow-x: hidden;
        width: 100%;
        
    }
    .maincont{
        display: block; 
        width: 100%;
    }
    .menu{
        display: flex;
        width: 100vw;
        height: 7vh;
        transform: translateX(0) !important;
        justify-content: center;
        align-items: center;
        border-left: none;
        border-right: none;
        background-color: rgba(0, 0, 0, 0.25);
        /*background-image: linear-gradient(180deg, rgba(37, 37, 37, 0.25), rgba(37, 37, 37, 0.5));*/
    }
    .menu.active{
        border-left: none;
        border-right: none;
    }
    .menu.nav{
        background-color: rgba(0, 0, 0, 0.25);
    }
    .burger{
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        left: 20px;
        z-index: 5;
    }
    .burGer_div{
        height: 100%;
        display: flex;
        align-items: center;
        z-index: 3;
    }
    .burger .burgerMenu{
        position: relative;
        background-color: "";
        cursor: pointer;
    }
    .burger .burgerMenu .burgerBorder,
    .burger .burgerMenu .burgerBorder2{
        width: 40px;
        height: 2px;
        margin: 10px;
        background-color: #004410;
        transition: all 0.3s;
    }
    .burger .burgerMenu .opened{
        position: relative;
        transform: rotate(43deg) translate(4px, 5px);
    }
    .burger .burgerMenu .opened2{
        position: relative;
        transform: rotate(-43deg) translate(4px, -5px);
    }
    .menulogo{
        display: flex;
        width: 50%;
        height: 100%;
        margin: 0;
    }
    .menulogo a{
        display: block;
        width: 100%;
        height: 100%;
    }
    .menulogo a .flexItem{
        display: flex;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
    }
    .menulogo a .flexItem img{
        aspect-ratio: 1 / 1;
        width: auto;
        height: 85%;
        object-fit: cover;
    }
    .menulogo a .flexItem h1{
        display: flex;
        padding-left: 10px;
        font-size: 1.6rem;
        white-space: nowrap;
        color: var(--main-color);
    }
    .menu_cont{
        display: flex;
        height: 100vh;
        width: 100vw;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        top: 0;
        right: 0;
        transform: translateX(110%);
        background-color: var(--base-color);
        transition: all 0.6s;
        z-index: 2;
    }
    .menu_cont.menuOpen{
        transform: translateX(0) !important;
    }
    .mainmenu{
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }
    .mainmenu p{
        font-size: clamp(1rem, 0.636rem + 1.82vw, 1.8rem);
    }
    .mainmenu .menunav{
        width: 400px;
        height: auto;
        margin-top: 0;
        margin-bottom: 10px;
    }
    .mainmenu .menunav a{
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .mainmenu .menunav:hover{
        border: none;
    }
    .menunav.scrolled a,
    .menunav.scrolled a .mne{
        color: var(--main-color);
    }
    .mainmenu .onlineBut{
        width: 400px;
        height: 80px;
    }
    .mainmenu .onlineBut.scrolled{
        color: var(--main-color);
    }
    .mainmenu .onlineBut a .item div:nth-child(1){
        text-align: center;
    }
    .mainmenu .onlineBut a .item div p:nth-child(1){
        font-size: clamp(1rem, 0.636rem + 1.82vw, 1.8rem);
    }
    .mainmenu .onlineBut a .item div p:nth-child(2){
        font-size: clamp(1rem, 0.773rem + 1.13vw, 1.5rem);
    }
    .mainmenu .onlineBut.scrolled a .item .hoverAnime div{
        background-color: #fff;
    }
    .mainmenu .onlineBut.scrolled a .item .log {
        background-color: #fff;
    }
    .mainmenu .onlineBut.scrolled a .item .log .Triangle{
            border-left: 6px solid #000;
    }
    .sub_menu{
        display: flex;
        width: 100%;
        min-height: auto;
        height: auto;
        flex-direction: column;
        align-items: center;
        position: relative;
        bottom: 0;
    }
    .sub_menu p{
        font-size: clamp(1rem, 0.636rem + 1.82vw, 1.8rem);
    }
    .sub_menu .menunav{
        width: 400px;
        height: auto;
        margin-bottom: 10px;
    }
    .sub_menu .menunav:hover{
        border: none;
    }
    .sub_menu .menunav a{
        width: auto;
        height: auto;
        padding-top: 13px;
        padding-bottom: 13px;
    }
    .sub_menu .menunav a .aFlex{
        height: auto;
    }
    .sub_menu .snslink{
        width: 130px;
    }
    .sub_menu .snslink div{
        width: auto;
        height: auto;
    }
    .sub_menu .snslink div a{
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center ;
        align-items: center;
    }
    .sub_menu .snslink div a img{
        width: 92%;
        height: 92%;
    }
    .sub_menu .snslink div a .fab{
        font-size: 3.4rem;
        color: #fff;
    }
    .maincont .main{
        height: 100%;
        /*overflow-x: hidden;*/
    }
    .top_area .headItem{
        display: none;
    }
    .top_area .topTitle h2{
        font-size: clamp(1.3rem, -0.194rem + 3.11vw, 1.8rem);
    }
    .top_area .topTitle h1{
        font-size: clamp(2.8rem, -0.786rem + 7.47vw, 4rem);
        white-space: nowrap
    }
    .our_concept{
        width: 80%;
    }
    .our_concept .ourh2_02, .ourh2_03, .ourh2_04{
        font-size: clamp(1.7rem, 0.536rem + 5.41vw, 4rem);
        white-space: nowrap
    }
    .border01, .border02, .border03{
        display: block;
        background-color: #fff;
    }

    /*ourconcept_spacer*/
    .ourconcept_spacer div{
        margin-left: 0;
    }
    .ourconcept_spacer div h2{
        font-size: 3.2rem;
        padding-bottom: 5px;
    }
    .ourconcept_spacer div h3{
        font-size: 1.6rem;
    }

    /*ourservice*/
    .ourservice .scroll_container .scroll_content{
        padding-top: 10vh;
        padding-bottom: 3vh;
    }
    .ourservice .scroll_content .Flex_container{
        width: 100%;
        margin-left: 0;
    }

    .scroll_content.content02 .Flex_container .grid_container{
        flex-direction: column;
    }
    .scroll_content.content02 .Flex_container .grid_container .griditem01{
        width: 100%;
        height: 55%;
    }
    .scroll_content.content02 .Flex_container .grid_container .griditem02{
        width: 100%;
        height: 45%;
    }
    .ourservice .scroll_content .Flex_container .grid_container .absolute{
        right: 25px;
    }

    .scroll_content.content03 .Flex_container .grid_container{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1.2fr;
    }
    .scroll_content.content03 .Flex_container .grid_container .griditem02{
        grid-column: 1/3;
        grid-row: 2/3;
    }

    .scroll_content.content04 .Flex_container .grid_container{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.2fr 1fr;
    }
    .scroll_content.content04 .Flex_container .grid_container .griditem01{
        grid-column: 1/3;
        grid-row: 1/2;
    }

    .scroll_content.content05 .Flex_container .grid_container{
        flex-direction: column;
    }
    .scroll_content.content05 .Flex_container .grid_container .griditem01{
        width: 100%;
        height: 45%;
    }
    .scroll_content.content05 .Flex_container .grid_container .griditem02{
        width: 100%;
        height: 55%;
    }


    .other_info{
        align-items: center;
        padding-top: 10vh;
    }
    .other_info .alfa{
        width: max(80%, 691px);
    }
    .other_info .moby_title{
        display: flex;
        width: 20%;
        flex-direction: column-reverse;
        justify-content: center;
        writing-mode: vertical-lr;
    }
    .other_info .moby_title p.ja{
        font-size: clamp(1.2rem, 1.099rem + 0.47vw, 1.4rem);
    }
    .other_info .moby_title p.en{
        font-size: 3rem;
    }
    .other_info .otherinfo_main .otherinfoMainItem{
        width: 90%;
    }
    .other_info .otherinfo_title{
        display: none;
    }
    .other_info .but_space .but{
        width: 200px;
    }

    
    /*event*/
    .event{
        padding-top: 7vh;
        padding-bottom: 0;
        padding-block-end: 0;
    }
    .event .Flex_container{
        display: block;
        width: 100%;
        height: auto ;
    }
    .event .event_heading{
        width: 90%;
        height: auto;
        align-items: start;
        padding-top: 25px;
        padding-bottom: 25px;
        margin: auto;
    }
    .event .event_heading .title{
        writing-mode: horizontal-tb;
    }
    .event .event_heading .but{
        display: none;
    }
    .event .event_container{
        height: calc((80vh * 0.8) + 128px);
        width: 100%;
    }
    .event .event_container .event_item{
        height: calc(80vh * 0.8);
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .event .moby_but{
        display: flex;
        width: 100%;
        height: auto;
        justify-content: center;
        padding-top: 3.5vh;
        padding-bottom: 3.5vh;
    }
    .event .moby_but .but{
        width: 200px;
        height: 70px;
        position: relative;
        border-top: 1px solid #999;
        border-bottom: 1px solid #999;
        transition: all 0.5s;
    }
    .event .moby_but .but:hover{
        background-color: #e0e0e0;
    }
    .event .moby_but .but a{
        display: block;
        width: 100%;
        height: 100%;
        padding: 15px;
    }
    .event .moby_but .but p.top{
        font-size: 1.3rem;
    }
    .event .moby_but .but p.bottom{
        font-size: 0.9rem;
    }
    .event .moby_but .but .absolute{
        display: flex;
        width: 15px;
        aspect-ratio: 1/1;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 15px;
        right: 15px;
        border-radius: 50%;
        background-color: #004410;
    }
    .event .moby_but .but .absolute .polygon{
        height: 40%;
        aspect-ratio: 1/1;
        clip-path: polygon(0 0, 0% 100%, 100% 50%);
        background-color: #fff;
    }

    /*navigator*/
    .navigator{
        padding-top: 7vh;
        justify-content: center;
        max-height: 100vh;
        height: 100vh;
        gap: 5vh;
    }
    .navigator .animation_container{
        width: calc((57vw * 2) + (4vw * 1));
        margin-left:  calc((100vw - 57vw)/2);
        margin-right: calc((100vw - 57vw)/2);
    }
    .navigator .animation_container .animation_content{
        width: 60vw;
        flex-direction: column;
    }
    .navigator .animation_container .animation_content .prof_img{
        display: block;
        width: 100%;
        aspect-ratio: 9/8;
    }
    .navigator .animation_container .animation_content .prof_img img{
        display: block;
        aspect-ratio: 9/8;
    }
    .navigator .animation_container .animation_content .intro_text{
        display: block;
        width: 100%;
        padding: 20px;
    }
    .navigator .animation_container .animation_content h3{
        font-size: clamp(1.5rem, 0.842rem + 3.06vw, 2.8rem);
    }

    .news_area .sec01{
        width: max(85%, 691px);
    }
    .news_area .sec01 .news_title{
        width: auto;
    }
    .news_area .newsCont{
        height: 15vh;
    }
    footer .footerItem{
        width: 85%;
    }
    footer .footerItem .footerTitle{
        justify-content: center;
    }
    footer .footerItem .footerTitle div:nth-child(1){
        padding-left: 0;
    }

    /*消す*/
    .other_link{
        position: fixed;
        top: 0;
        left: 51%;
        transform: translateX(-50%);
        width: 40%;
        height: calc(7vh - 1px);
        background-color: transparent;
        opacity: 1;
        transition: all 0.8s;
        visibility: visible;
    }
    .other_link a{
        display: block;
        height: 100%;
    }
    .olp, .olep{
        height: auto;
        writing-mode: horizontal-tb;
    }
    .other_link .other_link_border{
        display: none;
    }
    @media screen and (max-width:480px){
        body{
            width: 100vw;
        }
        .maincont{
            overflow-x: hidden;
        }

        .burger{
            left: 2vw;
        }
        .menulogo{
            width: auto;
        }
        .mainmenu .menunav{
            width: 300px;
        }
        .mainmenu .onlineBut{
            width: 300px;
            height: 70px;
        }

        .our_concept{
            width: 90%;
        }
        .our_concept .ourh2{
            font-size: clamp(1.5rem, 0.235rem + 5.88vw, 2rem);
        }
        .concept_text{
            width: 100%;
            height: auto;
        }
        .concept_text p{
            padding-top: 10vh;
            padding-bottom: 10vh;
            font-size: clamp(0.8rem, 0.041rem + 3.53vw, 1.1rem);
        }

        .ourconcept_spacer div h2{
            font-size: 2.6rem;
        }
        .ourconcept_spacer div h3{
            font-size: 1.3rem;
        }

        /*ourservice*/
        .ourservice .scroll_container{
            width: calc((100vw * 4) + (5vw * 3));
            gap: 5vw;
        }
        .ourservice .scroll_content .Flex_container{
            position: relative;
        }
        .ourservice .scroll_content .Flex_container .heading{
            flex: 0 0 53px;
            width: auto;
        }
        .ourservice .scroll_content .Flex_container .heading h4{
            font-size: 1.3rem;
        }
        .ourservice .scroll_content .Flex_container .heading h2{
            font-size: 1.8rem;
            padding-right: 0;
        }
        .ourservice .scroll_content .Flex_container .grid_container{
            flex: 1;
            width: auto;
        }
        .ourservice .scroll_content.content01{
            padding-left: 0;
        }
        .ourservice .scroll_content.content05{
            padding-right: 0;
        }
        .ourservice .scroll_content.content01 h2{
            font-size: 3rem;
        }.ourservice .scroll_content.content01 h3{
            font-size: 1.3rem;
        }
        .ourservice .scroll_content.content03 .Flex_container .grid_container{
            grid-template-rows: 1fr 1.5fr;
        }
        .ourservice .scroll_content.content04 .Flex_container .grid_container{
            grid-template-rows: 1.5fr 1fr;
        }
        .ourservice .scroll_content .Flex_container .grid_container .absolute{
            right: 3px;
        }
        .scroll_content .Flex_container .grid_container .absolute h3{
            font-size: clamp(1.2rem, 0.188rem + 4.71vw, 1.6rem);
            white-space: nowrap;
        }
        .ourservice .grid_container .absolute .hover_content a{
            font-size: clamp(1rem, 0.494rem + 2.35vw, 1.2rem);
            white-space: nowrap;
        }

        /*other concept*/
        .other_info .alfa{
            display: flex;
            width: 90%;
        }
        .other_info .moby_title p.en{
            font-size: clamp(2rem, 1.241rem + 3.53vw, 2.3rem);
        }
        .other_info .otherinfo_main .otherinfoMainItem{
            width: 100%;
        }
        .otherinfo_main .otherinfoMainItem .infoItem{
            padding-left: 10px;
            padding-right: 10px;
        }
        .otherinfo_main .otherinfoMainItem .infoItem div p:nth-child(2),
        .otherinfo_main .otherinfoMainItem .infoItem div p:nth-child(3){
            font-size: 1rem;
        }

        .event .event_heading .title .ja{
            font-size: clamp(1.2rem, 0.694rem + 2.35vw, 1.4rem);
        }
        .event .event_heading .title .en{
            font-size: clamp(2.1rem, 0.835rem + 5.88vw, 2.6rem);
        }
        .event .event_container{
            height: calc((80vh * 0.62) + 128px);
        }
        .event .event_container .event_item{
            height: calc(80vh * 0.62);
        }
        .event .event_container .event_item .flex article.text{
            padding-left: 6vw;
            padding-right: 6vw;
        }
        .event .event_container .event_item .flex article.text h2{
            font-size: clamp(1.3rem, 0.541rem + 3.53vw, 1.6rem);
        }
        .event .event_container .event_item .flex article.text p{
            font-size: clamp(1rem, 0.494rem + 2.35vw, 1.2rem);
        }

        /*navigator*/
        .navigator{
            padding-top: 7vh;
            justify-content: center;
            gap: 6vh;
        }
        .navigator h3{
            font-size: 2.5rem;
        }
        .navigator h4{
            font-size: 1.4rem;
        }
        .navigator .animation_container{
            width: calc((70vw * 2) + (4vw * 1));
            margin-left:  calc((100vw - 70vw)/2);
            margin-right: calc((100vw - 70vw)/2);
        }
        .navigator .animation_container .animation_content{
            width: 70vw;
        }
        .navigator .animation_container .animation_content .prof_img{
            aspect-ratio: 1/1;
        }
        .navigator .animation_container .animation_content .prof_img img{
            aspect-ratio: 1/1;
        }
        .navigator .animation_container .animation_content .intro_text{
            padding: 12px;
        }
        .navigator .animation_container .animation_content .intro_text h3{
            padding-bottom: 10px;
        }
        .navigator .animation_container .animation_content .intro_text p{
            font-size: 0.85rem;
        }

        .news_area{
            height: auto;
            min-height: 100vh;
            padding-top: 10vh;
            padding-bottom: 3vh;
        }
        .news_area .sec01{
            width: 100%;
            flex-direction: column;
            height: auto;
            margin: 0;
        }
        .news_area .sec01 .news_title{
            width: 90%;
            height: auto;
            margin: auto;
            writing-mode: horizontal-tb;
        }
        .news_area .sec01 .news_title .jp{
            font-size: clamp(1.2rem, 0.694rem + 2.35vw, 1.4rem);
        }
        .news_area .sec01 .news_title .en{
            font-size: clamp(2.1rem, 0.835rem + 5.88vw, 2.6rem);
        }
        .news_area .sec01 .news_main{
            height: auto;
            margin: auto;
        }
        .news_area .sec01 .newsItem{
            width: 100%;
            margin: 0;
        }
        .news_area .newsCont{
            height: auto;
        }
        .news_area .news_Heading h4{
            font-size: clamp(1rem, 0.241rem + 3.53vw, 1.3rem);
        }
        .news_area .new_info p,
        .news_area .up_data p{
            font-size: clamp(0.85rem, 0.471rem + 1.76vw, 1rem);
        }

        /*footer*/
        footer{
            min-height: 100vh;
            height: auto;
            justify-content: space-between;
            padding-top: 7vh;
            padding-bottom: 3vh;
        }
        footer .footerItem{
            width: 90%;
        }
        footer .footerItem .footerTitle{
            height: auto;
            padding-top: 10px;
            padding-bottom: 10px;
        }
        footer .footerItem .footerTitle div h1{
            font-size: clamp(1.7rem, -0.324rem + 9.41vw, 2.5rem);
        }
        footer .footerItem .footerMain{
            flex-direction: column;
        }
        footer .footerItem .footerMain .leftItem,
        footer .footerItem .footerMain .rightItem{
            width: 100%;
            height: auto;
        }
        footer .footerItem .footerMain .rightItem{
            display: flex;
            flex-direction: column-reverse;
        }
        footer .footerItem .footerMain .leftItem .address,
        footer .footerItem .footerMain .leftItem .contact,
        footer .footerItem .footerMain .rightItem .SNS,
        footer .footerItem .footerMain .rightItem .onlineLink{
            height: 140px;
            padding-top: 2vh;
            padding-bottom: 2vh;
        }
        footer .footerItem .footerMain .rightItem .SNS{
            justify-content: center;
        }
        footer .footerItem .footerMain .rightItem .onlineLink{
            justify-content: start;
        }
        .footerMain .leftItem .address p:nth-child(1),
        .footerMain .leftItem .contact p:nth-child(1),
        .footerMain .rightItem .SNS p:nth-child(1),
        .footerMain .rightItem .onlineLink p:nth-child(1){
            font-size: 0.9rem;
        }
        .footerMain .leftItem .address p:nth-child(2)
        .footerMain .leftItem .address h2,
        .footerMain .leftItem .address a,
        .footerMain .leftItem .contact a .linkArea p,
        .footerMain .rightItem .onlineLink .linkArea p{
            font-size: 1rem;
        }
        .footerMain .leftItem .address p:nth-child(3),
        .footerMain .leftItem .contact a:nth-child(3),
        .footerMain .leftItem .contact a:nth-child(4){
            padding-top: 7px;
        }
        .footerMain .leftItem .contact a:nth-child(3),
        .footerMain .leftItem .contact a:nth-child(4){
            width: 105px;
        }
        .footerMain .leftItem .contact a:nth-child(2){
            width: 180px;
            padding-top: 20px;
            margin: 0;
        }
        .footerMain .leftItem .contact .linkArea{
            margin: 0;
        }

        .footerMain .rightItem .SNS .snsItem{
            width: 100%;
        }
        .footerMain .rightItem .SNS .snsItem div:nth-child(1){
            justify-content: start;
        }
        .footerMain .rightItem .SNS .snsItem div:nth-child(1),
        .footerMain .rightItem .SNS .snsItem .iconItem{
            padding-right: 0;
        }
        .footerMain .rightItem .SNS .snsItem .iconItem{
            width: 100%;
            justify-content: center;
        }
        .footerMain .rightItem .SNS .snsItem .iconItem .snsIcon{
            margin-left: 10px;
            margin-right: 10px;
        }
        .footerMain .rightItem .onlineLink a{
            width: 185px;
        }
        .footerMain .rightItem .onlineLink .linkItem .titleArea{
            justify-content: start;
        }

        footer .rights{
            position: relative;
            height: auto;
            padding-top: 2vh;
        }
        footer .rights div{
            display: grid;
            grid-template-columns: 1fr 1fr;
            text-align: center;
        }
        footer .rights div a:nth-child(1){
            margin-bottom: 10px;
        }
        footer .rights div a:nth-child(2){
            grid-column: 2/3;
            margin-left: 0;
            margin-bottom: 10px;
        }
        footer .rights div p{
            padding-left: 0;
            grid-column: 1/3;
        }
    }
    @media screen and (max-width:355px){
        .burger{
            left: 1vw;
        }
        .menulogo a .flexItem h1{
            font-size: 1.5rem;
        }

        .our_concept{
            width: 95%;
        }

        .event .event_container .event_item{
            width: 90%;
        }
        .event .event_container .event_item .flex article.text{
            padding-left: 4vw;
            padding-right: 4vw;
        }
    }
}