@charset "utf-8";
/* ==========================
common
=========================== */
:root{
    --primary-blown: #710C21;
    --primary-green: #9CC4B2;
    --primary-pink: #F8DCDB;
    --primary-white: #fdfdfd;
    --primary-whiteLow: #ecf5f5;
    --primary-black: #333a3a;
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
}

html{
    font-size: 62.5%;
}

main{
    overflow: hidden;
}

body{
    font-family: "Noto Serif JP",
    "Jacques Francois Shadow",
    "Fleur De Leah",
    sans-serif;
    font-style: normal;
    color: var(--primary-blown);
    background-color: var(--primary-pink);
    line-height: 1.5;
}

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

.btn:hover {
    opacity: 0.5;
}

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

.article{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.article__header{
    background-color: var(--primary-blown);
    border-radius: 0 0 0% 0%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
}

.visual{
    width: 100%;
    height: 540px;
    position: relative;
    overflow: hidden;
}

.slideimg{
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    border-radius: 0 0 60% 90%;
    animation: slideAnime 15s infinite;
}

.slideimg:nth-of-type(1){
    background-image: url(../1x/mainVisual_sp.png);
    animation-delay: 0s;
}
.slideimg:nth-of-type(2){
    background-image: url(../1x/access.png);
    animation-delay: 3s;
}
.slideimg:nth-of-type(3){
    background-image: url(../1x/main3.png);
    animation-delay: 6s;
}
@keyframes slideAnime {
	0%, 90% { opacity: 0; } /* 非表示のタイミング */
	10%, 20% { opacity: 1; } /* 表示されるタイミング */
}

.mainVisual-pc{
    display: none;
}

.mainVisual-sp {
    width: 40%;
    height: auto;
    margin-top: -30px;
    margin-bottom: -100%;
    margin-left: 42%;
    padding-bottom: 30px;
    z-index: 100;
    animation: 1s fadeinvs 0.8s forwards;
	opacity: 0;
}
@keyframes fadeinvs {
	0% {
        margin-top: -60px;
		margin-left: 28%;
  }
	100% {
        margin-top: -30px;
		margin-left: 42%;
		opacity: 1;
  }
}

.scroll{
    margin-right: 0%;
    margin-top: 30%;
}

.scroll2{
    color: var(--primary-pink);
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 1.6rem;
    margin-top: -10px;
    margin-right: auto;
    margin-left: 10%;
    animation: fuwafuwa 3s linear infinite;
}

/* fuwafuwa */
@keyframes fuwafuwa {
    0% { transform: translateY(1px) }
    33.33333% { transform: translateY(8px) }
    66.66667% { transform: translateY(3px) }
    100% { transform: translateY(1px) }
}

.main_rose{
    transform: rotate(5deg);
    width: 85%;
    display: block;
    margin:180px 10% -50%;
    margin-right: auto
}

.poem{
    display: none;
}

@media screen and (min-width: 769px) {

    .header{
        padding: 0px 1.5% 0px;
        margin: 0 auto;
        margin-bottom: 0px;
        display: flex;
        width: 100%;
    }
    .nav{
        width: 384px;
        height: auto;
        padding: 37px 112px 35px 112px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
        background: rgba(248, 220, 219, 0.7);
        position: static;
        transform: translate(0);
        margin-top: 90%;
        position: absolute;
        margin-right: 10%;
        margin-left: 60%;
        border-radius: 50%;
        border: 10px solid rgba(113, 12, 33, 0.50);
        box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
        animation: fuwafuwa 3s linear infinite;
    }

    .article__header{
        background-color: var(--primary-blown);
        border-radius: 0 0 0% 0%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    
    .visual{
        aspect-ratio: 6 / 5;
        width: 100%;
        height: auto;
        position: relative;
        overflow: hidden;       
    }

    .slideimg{
        position: absolute;
        inset: 0;
        opacity: 0;
        background-size: cover;
        background-position: center;
        border-radius: 0 0 60% 100%;
        animation: slideAnime 15s infinite;
    }
    
    .slideimg:nth-of-type(1){
        background-image: url(../1x/mainPC.png);
        animation-delay: 0s;
    }
    .slideimg:nth-of-type(2){
        background-image: url(../1x/access.png);
        animation-delay: 3s;
    }
    .slideimg:nth-of-type(3){
        background-image: url(../1x/main4.png);
        animation-delay: 6s;
    }
    @keyframes slideAnime {
        0%, 90% { opacity: 0; } /* 非表示のタイミング */
        10%, 20% { opacity: 1; } /* 表示されるタイミング */
    }
    
    .mainVisual-pc{
        min-width: 500px;
        display: block;
        width: 45%;
        height: auto;
        margin-top: -60%;
        margin-left: 40%;
        z-index: 100;
        animation: 1.6s fadeinvs 0.8s forwards;
	    opacity: 0;
}

@keyframes fadeinvs {
	0% {
        width: 40%;
        margin-top: -62%;
		margin-left: 43%;
  }
	100% {
        width: 45%;
        margin-top: -60%;
		margin-left: 40%;
		opacity: 1;
  }
    }
    
    .mainVisual-sp {
        display: none;       
    }
    
    .scroll{
        transform: rotate(90deg);
        color: var(--primary-pink);
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 1.6rem;
        margin-right: 30%;
        margin-top: 20%;
    }

    .scroll2{
        color: var(--primary-pink);
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 1.6rem;  
        margin-top: 0px;
        margin-right: auto;
        margin-left: 10%;
    }

    .main_rose{
        transform: rotate(5deg);
        width: 70%;
        display: block;
        margin: 0px 15% -47%;
        margin-right: auto;
        animation: 5s fadeinvs2 1.8s forwards ease-in-out;
	    opacity: 0;
}

@keyframes fadeinvs2 {
	0% {
        width: 65%;
        margin: 100px 5% -52%;
  }
	100% {
        width: 70%;
        margin: 0px 15% -47%;
		opacity: 1;
  }
    }
    
    .poem{
        display: block;
        width: 67%;
        margin-top: -2%;
        margin-bottom: -100px;
        padding-right: 35px;
    }
}

/* --------------------
About
-------------------- */
.section--about{
    width: 100%;
    padding: 160px 4.2% 400px;
    background-image: url(../1x/back5.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mainCaption{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mgr20{
    margin-left: 20px;
}

.mainCaption__txt1{
    font-size: 2.4rem;
    padding-bottom: 60px;
    line-height: 2.4rem;
}

.mainCaption__txt2{
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 70px;
    line-height: 3.6rem;
}

.mainCaption__txt22{
    text-align: center;
    font-size: 1.8rem;
    padding-bottom: 50px;
    margin-bottom: 70px;
    line-height: 3.6rem;
}

.mainCaption__txt2::after{
    content: '';
    display: block;
    width: 160px;
    height: 1px;
    background: var(--primary-blown);
    margin: 0px auto 0px;
    opacity: 0.4;
    position: absolute;
    animation: move-1 3s linear infinite;
}
@keyframes move-1 {
    100% {
        width: 160px;
    }
    0% {
        width: 0px;
    }
}
.mainCaption__txt22::after{
    content: '';
    display: block;
    width: 240px;
    height: 1px;
    background: var(--primary-blown);
    margin: 0px auto 0px;
    opacity: 0.4;
    position: absolute;
    animation: move-2 6s linear infinite;
}
@keyframes move-2 {
    100% {
        width: 0px;
    }
    0% {
        width: 240px;
    }
}

.mainCaption__txt3{
    opacity: 0.8;
    background-color:rgba(181, 144, 144, 0.3);
    border-radius: 3px 3px 3px 3px;
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 120px;
    padding: 40px 3px;
}

.logo2__img{
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    opacity: 0;
}

.logo2__img.animated {
    animation: kurukuru 1.4s ease-out;
    opacity: 1;
}

/* kurukuru */
@keyframes kurukuru {
    0%{
      transform: rotateY(0) translateY(40px);
      opacity: 0;
    }
    100%{
      transform: rotateY(360deg) translateY(0);
      opacity: 1;
    }
  }

@media screen and (min-width: 769px) {
    .spBr{
        display: none;
    }

    .section--about{
        width: 100%;
        padding: 30px 4.2% 500px;
        background-image: url(../1x/back3.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        
    }
    
    .mainCaption{
        display: flex;
        flex-direction: column;
        align-items: center;
        align-self: center;
    }

    .mgr20{  
        margin-left: 10px;
    }
    
    .mainCaption__txt1{
        display: none;
    }
    
    .mainCaption__txt2{
        margin-top: 300px;
        text-align: center;
        font-size: 3.6rem;
        padding-bottom: 50px;
        line-height: 10rem;
        position: relative;
    }

    .mainCaption__txt22{
        text-align: center;
        font-size: 3.6rem;
        padding-bottom: 50px;
        line-height: 10rem;
        position: relative;
    }
    
    .mainCaption__txt2::after{
        content: '';
        display: block;
        width: 280px;
        height: 1px;
        background: var(--primary-blown);
        margin: 0px auto 0px;
        opacity: 0.4;
        position: absolute;
        animation: move-1 3s linear infinite;
	}

	@keyframes move-1 {
		100% {
			width: 280px;
		}
		0% {
			width: 0px;
		}
    }

    .mainCaption__txt22::after{
        content: '';
        display: block;
        width: 440px;
        height: 1px;
        background: var(--primary-blown);
        margin: 0px auto 0px;
        opacity: 0.4;
        position: absolute;
        animation: move-2 6s linear infinite;
	}
	@keyframes move-2 {
		100% {
			width: 0px;
		}
		0% {
			width: 440px;
		}
    }

    .mainCaption__txt3{
        opacity: 1;
        background: 0;
        text-align: center;
        font-size: 2.4rem;
        padding-bottom: 50px;
        margin-bottom: 120px;
    }

    .logo2__img{
        width: 75px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
    }
}

/* --------------------
lead
-------------------- */
.section--lead{
    margin-top: -20%;
    background-color: var(--primary-blown);
    width: 100%;
    height: 170px;
    border-radius: 0 0 0 0 ;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ribbon__deco{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 48px;
}

.ribbon{
    width: 60px;
    height: 34.768px;
    transform: rotate(-0.637deg);
}

.Lead{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.pinklabel{
    height: 180px;
    margin-top: 40px;
    display: flex;
}
@keyframes infinity-scroll-left {from{
    transform: translateX(0);
}
to {
    transform: translateX(-70%);
}
}
.Lead{
    animation: infinity-scroll-left 30s  linear infinite;
}

.rribbon{
    height: 65px;
    margin-top: 40px;
    display: flex;
    padding-bottom: 10px;
}

@media screen and (min-width: 769px) {
    .section--lead{
        margin-top: -200px;
        background-color: var(--primary-blown);
        width: 100%;
        height: 400px;
        border-radius: 0 0 0 0 ;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 0%;
    }
    
    .ribbon{
        width: 109.26px;
        height: 63.313px;
        transform: rotate(-0.637deg);
    }

    .Lead{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    
    .pinklabel{
        height: 300px;
        margin-top: 100px;
        display: flex;
        overflow: hidden;
    }

    .rribbon{
        height: 100px;
        margin-top: 100px;
        display: flex;
        overflow: hidden;
        padding-bottom: 10px;
    }
    
}

/* --------------------
About Us
-------------------- */
.section--aboutus{
    background-color: rgba(var(--primary-pink), 0.3);
    background-image: url(../1x/about_btn.png);
    background-position: center;
    width: 100vh;
    height: 180px;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-flex;
    padding: 36px 82px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--primary-blown);
}

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

.arrowbtn3{
    width: 80px;
    height: auto;
    animation: fuwafuwa 3s linear 1s infinite;
}
/* fuwafuwa */
@keyframes fuwafuwa {
    0% { transform: translateY(1px) }
    33.33333% { transform: translateY(8px) }
    66.66667% { transform: translateY(3px) }
    100% { transform: translateY(1px) }
  }  

.aboutus_txt{
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 4rem;
    text-shadow: 4px 4px 4px rgba(139, 110, 110, 0.9);
}

.section--aboutus:hover{
    opacity: 0.7;
}

@media screen and (min-width: 769px) {
    .section--aboutus{
        background-color: rgba(var(--primary-pink), 0.3);
        background-image: url(../1x/about_btn.png);
        width: 100%;
        height: 400px;
        background-size: cover;
        background-repeat: no-repeat;
        display: inline-flex;
        padding: 36px 82px;
        justify-content: center;
        align-items: center;
    }

    .aboutUs{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
    
    .arrowbtn3{
        width: 140px;
        height: auto;
        animation: fuwafuwa 3s linear infinite;
    }
    
    .aboutus_txt{
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 8rem;
        text-shadow: 6px 6px 6px rgba(139, 110, 110, 0.9);
    }
}

/* --------------------
Flower Items
-------------------- */
.section--floweritems{
    background-image: url(../1x/flower_btn.png);
    background-position: center;
    width: 100vh;
    height: 180px;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-blown);
}

.Floweritems{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.arrowbtn{
    width: 80px;
    height: auto;
}
.floweritems_txt{
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 4rem;
    text-shadow: 4px 4px 4px  rgba(181, 144, 144, 0.9);
}

.section--floweritems:hover{
    opacity: 0.5;
}

@media screen and (min-width: 769px) {
    .section--floweritems{
        background-image: url(../1x/flower_btn.png);
        width: 100%;
        height: 400px;
        background-size: cover;
        background-repeat: no-repeat;
        display: inline-flex;
        padding: 36px 49px;
        justify-content: center;
        align-items: center;
    }

    .Floweritems{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .arrowbtn{
        width: 140px;
        height: auto;
    }
    
    .floweritems_txt{
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 8rem;
        text-shadow: 6px 6px 6px  rgba(181, 144, 144, 0.9);
    }
}

/* --------------------
Salon
-------------------- */
.section--salon{
    width: 100%;
    padding: 100px 4.2px 120px;
    background-color: var(--primary-green);
    border-radius: 0 0 300px 300px;
    background-image: url(../1x/salon_deco.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    border: 1px solid rgba(139, 110, 110, 0.7);
}

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

.salon__title{
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 3.2rem;
    margin-bottom: 40px;
}

.salon__txt{
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 84px;
}

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

.how__title{
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 3.2rem;
    margin-bottom: 40px;
}

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

.way{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    animation: fuwafuwa 3s linear infinite;
}

.way img{
    width: 132px;
    height: 117px;
}

.way.fadeIn:hover{
    opacity: 0.7;
}

.way__txt{
    text-align: center;
    font-size: 1.6rem;
}

.clickmodal{
    margin-top: 50px;
    text-align: center;
    font-size: 1.8rem;
}

.more_btn{
    margin-top: 120px;
    width: 220px;
    height: 54px;
    border-radius: 70px;
    border: 1.5px solid var(--primary-blown);
    background: var(--primary-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
}

.more_btn:hover{
    margin-top: 120px;
    width: 200px;
    height: 54px;
    border-radius: 70px;
    border: 2px solid var(--primary-blown);
    background: thistle;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: 0.4s;
}

.more___txt{
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 1.6rem;
}

.arrowpink{
    width: 35px;
    height: 22px;
}

/* modal非表示 */
.modal1_item{
    z-index: -10;
    opacity: 0;
    transition: 1s;
    width: 0;
    padding: 8px;
    background-color: var(--primary-pink);
    box-shadow: 2px 4px 12px 4px rgba(139, 110, 110, 0.9);

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* modal表示 */
.modal1_item.open{
    display: block;
    z-index: 1200;
    opacity: 1;
    width: 80%;
    max-width: 768px;
}

/* 背景 */
.main::after{
    display: none;
    content: '';
    background-color: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main.open::after{
    display: block;
}

/* 閉じるボタン */
.close1{
    display: none;
    width: 24px;
    height: 24px;
    position: fixed;
    right: 3%;
    top: 16%;
    z-index: 1200;
}

.close1.open{
    display: block;
}

.close1 img{
    width: 100%;
}

@media screen and (min-width: 769px){

    .close1{
        display: none;
        width: 40px;
        height: 40px;
        position: fixed;
        right: 10%;
        top: 3%;
        z-index: 1200;
    }
    
    .close1.open{
        display: block;
    }
    
    .close1 img{
        width: 100%;
    }
}


@media screen and (min-width: 769px) {
    .section--salon{
        width: 100%;
        padding: 160px 6.4px 200px;
        background-color: var(--primary-green);
        border-radius: 0 0 0px 0px;
        background-image: url(../1x/salon_deco\ pc.png);
        background-position: center ;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .salon__contents{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .salon__title{
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 6rem;
        margin-bottom: 100px;
    }
    
    .salon__txt{
        text-align: center;
        font-size: 2.4rem;
        margin-bottom: 120px;
    }
    
    .how__to{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .how__title{
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 4.8rem;
        margin-bottom: 80px;
    }
    
    .threeways{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .way{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    
    .way img{
        width: 251px;
        height: 235px;
    }
    
    .way__txt{
        text-align: center;
        font-size: 3rem;
    }

    .clickmodal{
        margin-top: 100px;
        text-align: center;
        font-size: 2.6rem;
    }
    
    .more_btn{
        margin-top: 200px;
        width: auto;
        height: auto;
        padding: 20px 45px 20px 80px;
        border-radius: 70px;
        border: 2px solid var(--primary-blown);
        background: var(--primary-pink);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }

    .more_btn:hover{
        margin-top: 200px;
        width: auto;
        height: auto;
        padding: 20px 45px 20px 85px;
        border-radius: 70px;
        border: 2px solid var(--primary-blown);
        background: thistle;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        transition: 0.4s;
    }
    
    .more___txt{
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 3rem;
    }

    .more___txt:hover{
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 3rem;
    }
    
    .arrowpink{
        width: 48px;
        height: 30px;
    }
}

/* --------------------
Gallery
-------------------- */
.section--gallery{
    margin-top: 80px;
    display: flex;
    padding: 60px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.gallery__set{
    display: flex;
    margin-bottom: 60px;
    flex-direction: column;
    align-items: flex-start;
}

.gallery__title{
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 3.2rem;
}

.arrowpink{
    width: 17px;
    height: 10.462px;
}

@media screen and (min-width: 769px) {
    .section--gallery{
        max-width: 1280px;
        margin-top: 100px;
        display: inline-flex;
        padding: 80px 0px 120px 0px;
        flex-direction: column;
        align-items: center;
    }
    
    .gallery__contents{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .gallery__set{
        display: flex;
        margin-bottom: 80px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gallery__title{
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 6rem;
    }

    .arrowpink{
        width: 31.5px;
        height: 18px;
    }   
}

/* Access */
.background{
    background: url(../1x/back2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
    margin-top: -320px;
    overflow: hidden;
}

.section--access{
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 430px 0 0px;
}

@media screen and (min-width: 769px) {

    .background{
        background: url(../1x/back2.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding-bottom: 300px;
        margin-top: 200px;
        overflow: hidden;
    }

    .section--access{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 200px 0 0px;
        margin-top: 0%;
    }

    .access__contents{
        background-image: url(../1x/access.png);
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-color: var(--primary-blown);
        border-radius: 140px;
        display: flex;
        padding: 15% 4.2% 14%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 60px;
        max-width: 1000px;
        width: 60%;
    }

    .arrow{
    width: 31.5px;
    height: 18px;
}
}
/* --------------------
AtoN
-------------------- */
.AtoN1{
    width: 50%;
    display: flex;
    margin-right: auto;
    margin-top: 15%;
    margin-left: -12%;
    margin-right: auto;
    animation: 30s linear infinite rotation1;
}

@keyframes rotation1{
    from{
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); 
    }
    to{
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

.AtoN2{
    margin-right: -80px;
    margin-left: auto;
    margin-top: 0%;
    width: 50%;
    display: flex;
    animation: 40s linear infinite rotation1;
}

@media screen and (min-width: 769px) {
    .AtoN1{
        width: 45%;
        display: flex;
        margin-right: auto;
        margin-top: 15%;
        margin-left: -20%;
        margin-right: auto;
    }
    
    .AtoN2{
        margin-right: -100px;
        margin-left: auto;
        margin-top: -20%;
        margin-bottom: 0%;
        width: 40%;
        transform: rotate(90deg);
        display: flex;
    }
}


/* --------------------
News
-------------------- */
.NEWS{
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fuwafuwa 4s linear infinite;
}

.news{
    opacity: 0.9;
    margin-top:-20%;
    z-index: 100;
    display: flex;
    width: 328px;
    padding: 20px 20px 40px 30px;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--primary-blown);
    box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
    background: linear-gradient(0deg, rgba(156, 196, 178, 0.10) 0%, rgba(156, 196, 178, 0.10) 100%), var(--primary-pink);
}

.dotblown{
    display: block;
    padding: 0 4.2%;
    justify-content: center;
    margin: 6px 0 15px;
}

.section__news{
    text-align: center;
    font-family: "Jacques Francois Shadow";
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.news_contents{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.news__topics{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.news__topics time{
    font-size: 1.8rem;
    font-weight: 700;
}

.news__txt{
    font-size: 1.6rem;
}

.news_ur{
    display: block;
    margin-top: -10%;
    margin-right: auto;
    width: 70%;
    animation: fuwafuwa 5s linear infinite;
}

@media screen and (min-width: 769px) {
    .news{
        margin-top: -20%;
        display: flex;
        width: 756px;
        padding: 50px 100px 60px;
        flex-direction: column;
        justify-content: center;
        border-radius: 10px;
        border: 1px solid var(--primary-blown);
        background: linear-gradient(0deg, rgba(156, 196, 178, 0.10) 0%, rgba(156, 196, 178, 0.10) 100%), var(--primary-pink);
    }

    .dotblown{
        display: block;
        padding: 0 4.2%;
        justify-content: center;
        margin: 10px 0 30px;
    }
    
    .section__news{
        text-align: center;
        font-family: "Jacques Francois Shadow";
        font-size: 4.8rem;
        margin-bottom: 40px;
    }
    
    .news_contents{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }
    
    .news__topics{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    
    .news__topics time{
        font-size: 2.2rem;
        font-weight: 700;
    }
    
    .news__txt{
        font-size: 2.4rem;
    }

    .news_ur{
        display: block;
        margin-top: -10%;
        margin-right: auto;
        width: 50%;
    }
}

/* --------------------
bottom deco
-------------------- */
.art{
    margin-top: -150px;
    background: url(../1x/back1.png);
    background-position: 80% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.imgS1{
    display: block;
    width: 60%; 
    margin-left: auto; 
    margin-right: 10%;
    margin-bottom: -20px;
    z-index: 10;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
}
.imgS2{
    display: block;
    width: 54%; 
    margin-right: auto;
    margin-left: 10%;
    z-index: -10;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
}

.dead{
    margin-top: 30px;
    display: block;
    width: 50%;
    margin-left: 12%;
    margin-right: auto;
    opacity: 0.9;
}

.bt_deco4{
    width: 60%;
    margin-top: -40%;
    margin-bottom: 30px;
    margin-left: 40%;
    transform: rotate(5deg);
    animation: fuwafuwa 5s linear infinite;
}

.imgS3{
    display: block;
    margin-right: 12%;
    margin-left: auto;
    width: 66%;
    border-radius: 3px 3px 3px 3px; 
    box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50); 
}

.bt_deco3{
    display: block;
    width: 40%;
    margin-left: auto;
    margin-top: -10%;
    margin-bottom: -1px;
    margin-right: 6.4%;
    z-index: 100;
    animation: 20s linear infinite rotation1;
}

.imgS4{
    display: block;
    width: 50%;
    margin-right: auto;
    margin-left: 10%;
    margin-top: -34%;
    border-radius: 3px 3px 3px 3px;
    z-index: -100;  
    box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
}

.bt_deco6{
    display: block;
    transform: rotateY(180deg);
    width: 60%;
    margin-top: -10%;
    margin-bottom: 30px;
    margin-left: auto;
    animation: fuwafuwa 5s linear infinite;
    opacity: 0.8;
}

.prose{
    display: block;
    width: 70%;
    margin-bottom: -15%;
    margin-right: -3%;
    margin-left: auto;
    z-index: -1000;
    opacity: 0.9;
}
.brose{
    display: block;
    width: 18%;
    margin-bottom: -50%;
    margin-top: -20%;
    margin-right: auto;
    margin-left: 12%;
    z-index: -10;
}

.alive{
    display: block;
    width: 70%;
    margin-right: 8%;
    margin-left: auto;
    opacity: 0.9;
    z-index: 10;
}

.imgS5{
    display: block;
    width: 70%; 
    margin-right: auto;
    border-radius: 3px 3px 3px 3px; 
    box-shadow: 2px 2px 3px 2px rgba(113, 12, 33, 0.50);
}

.bt_deco{
    height: 120px;
    margin: -40px 0 60px;
    animation: infinity-scroll-left 30s  linear infinite;
}

@keyframes infinity-scroll-left {from{
    transform: translateX(0);
}
to {
    transform: translateX(-70%);
}
}

.bt_deco5{
    display: none;
}

@media screen and (min-width: 769px) {
    .imgS1{
        display: block;
        width: 40%; 
        margin-right: 28%;
        margin-bottom: -60px;
        z-index: 10;
        border-radius: 3px 3px 3px 3px;
    }
    .imgS2{
        display: block;
        width: 32%; 
        margin-right: auto;
        margin-left: 58%;
        z-index: 1;
        border-radius: 3px 3px 3px 3px;
    }

    .dead{
        margin-top: -35%;
        display: block;
        width: 32%;
        margin-left: 12%;
        margin-right: auto;
        opacity: 0.8;
    }
    
    .bt_deco4{
        transform: translateY(180deg);
        display: block;
        width: 32%;
        margin-top: -5%;
        margin-bottom: 0px;
        margin-left: 36%;
        margin-right: auto;
        z-index: -10;
        animation: none;
        opacity: 0.7;
    }
    
    .imgS3{
        display: block;
        margin-top: 0%;
        margin-left: 30%;
        margin-right: auto;
        width: 40%;
        border-radius: 3px 3px 3px 3px; 
        z-index: 10; 
    }
    
    .bt_deco3{
        display: none;
    }
    
    .imgS4{
        display: none;
    }
    
    .bt_deco6{
        display: none;
    }

    .prose{
        display: none;
    }

    .brose{
        display: block;
        width: 15%;
        margin-bottom: -10%;
        margin-top: -25%;
        margin-right: auto;
        margin-left: 25%;
        z-index: -10;
    }
    
    .alive{
        display: block;
        width: 35%;
        margin-top: 15%;
        margin-right: 25%;
        margin-left: auto;
        opacity: 0.8;
        z-index: 10;
    }
    
    .imgS5{
        display: none;
    }
    
    .bt_deco{
        height: 300px;
        margin: 220px 0 50px;
        z-index: 100;
        animation: infinity-scroll-left 30s  linear infinite;
    }
    
    .bt_deco5{
        display: none;
    }
}

