@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

/* ページ共通始まり */
body {
    background-color: #FAEC82;
}

/* ページ共通終わり */

/* ヘッダー始まり */

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-image: url(../images/kv-pc.png);
}

h1 {
    width: 200px;
    height: 200px;
    background-color: yellow;
    border-radius: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.box1 {
    display: none;
    position: absolute;
    top: -50px;
    left: 250px;
    width: 180px;
    height: 200px;
    background-color: yellow;
    border-radius: 90%;
}

h1 .papa-mark {
    display: block;
    width: 70%;
}

h1 .papa-mark img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* 固定しているナビ部分 */
nav {
    position: fixed;
    z-index: 100;
    right: 0;
    top: 20px;
    width: 25vw;
    background-color: yellow;
    border-top-left-radius: 20px;
}

.main-ul1 {
    display: none;
}

nav .main-ul .main-li {
    text-align: center;
}

nav .main-ul .main-li .main-a {
    display: block;
    width: 100%;
    font-size: 4vw;
    font-weight: bold;
    color: #1E22B0;
    line-height: 3;
    margin: auto;
}

/* ナビのサブメニュー */
.sub-ul {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: 0.5s;
}

.sub-ul .sub-li a {
    display: block;
    display: flex;
    align-items: center;
    font-size: 3vw;
    font-weight: 900;
    color: #1E22B0;
    line-height: 3;
}

.sub-ul .sub-li a:hover {
    background-color: #FAEC82;
}

/* プルダウン部分 */
.pull {
    position: relative;
    overflow: hidden;
}

.pull:hover {
    overflow: visible;
}

.pull:hover .sub-ul {
    opacity: 1;
    transition: 0.5s;
}

.pull:hover .sub-ul li {
    background-color: yellow;
}

.pull:hover .sub-ul .sub-li a {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 3;
    margin: auto;
}


/* ヘッダーの文章 */

.first-view {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 7em;
    margin-left: auto;
    margin-right: auto;
    font-size: 10vw;
    font-weight: 900;
    text-align: center;
    text-shadow: 4px 0px 3px rgba(248, 232, 3, 0.8);
    animation: scal-anime 2s;
    animation-delay: 3s;
}
@keyframes scal-anime {
    40% {
        transform: scale(1.2,1.2);
    }
    60% {
        transform: scale(1,1);
    }
}

.itemWrap:nth-of-type(1) {
    color: transparent;
    animation: TextAnime1 6s forwards;
}
@keyframes TextAnime1 {
    8% {
        color: #202020;
    }
    100% {
        color: #202020;
    }
}

.itemWrap:nth-of-type(2) {
    color: transparent;
    animation: TextAnime2 6s forwards;
}
@keyframes TextAnime2 {
    16% {
        color: #202020;
    }
    100% {
        color: #202020;
    }
}

.itemWrap:nth-of-type(3) {
    color: transparent;
    animation: TextAnime3 6s forwards;
}
@keyframes TextAnime3 {
    24% {
        color: #202020;
    }
    100% {
        color: #202020;
    }
}

.itemWrap:nth-of-type(4) {
    color: transparent;
    animation: TextAnime4 6s forwards;
}
@keyframes TextAnime4 {
    32% {
        color: #202020;
    }
    100% {
        color: #202020;
    }
}

.itemWrap:nth-of-type(5) {
    color: transparent;
    animation: TextAnime5 6s forwards;
}
@keyframes TextAnime5 {
    40% {
        color: #202020;
    }
    100% {
        color: #202020;
    }
}

.itemWrap:nth-of-type(6) {
    color: transparent;
    animation: TextAnime6 6s forwards;
}
@keyframes TextAnime6 {
    48% {
        color: #202020;
    }
    100% {
        color: #202020;
    }
}

.itemWrap:nth-of-type(7) {
    color: transparent;
    animation: TextAnime7 6s forwards;
}
@keyframes TextAnime7 {
    56% {
        color: #202020;
    }
    100% {
        color: #202020;
    }
}

.itemWrap:nth-of-type(8) {
    color: transparent;
    animation: TextAnime8 6s forwards;
}
@keyframes TextAnime8 {
    64% {
        color: #202020;
    }
    100% {
        color: #202020;
    }
}

.itemWrap:nth-of-type(9) {
    color: transparent;
    animation: TextAnime9 6s forwards;
}
@keyframes TextAnime9 {
    72% {
        color: #202020;
    }
    100% {
        color: #202020;
    }
}

.itemWrap:nth-of-type(10) {
    color: transparent;
    animation: TextAnime10 6s forwards;
}
@keyframes TextAnime10 {
    80% {
        color: #202020;
    }
    100% {
        color: #202020;
    }
}

.itemWrap:nth-of-type(11) {
    color: transparent;
    animation: TextAnime11 6s forwards;
}
@keyframes TextAnime11 {
    88% {
        color: #202020;
    }
    100% {
        color: #202020;
    }
}

/* ヘッダー終わり */


/* スライドショー始まり */

.slide-section {
    width: 100%;
    padding-top: 15%;
    padding-bottom: 10%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    background-color: #1E22B0;
}
.slide {
    position: relative;
    overflow: hidden;
    width: 80%;
    height: 45vh;
    margin: auto;
}

.slide2 {
    display: none;
    position: relative;
    top: 22vh;
    overflow: hidden;
    width: 20%;
    height: 58vh;
    margin: auto;
}
.slide3 {
    display: none;
    position: relative;
    z-index: -100;
    top: 22vh;
    overflow: hidden;
    width: 20%;
    height: 58vh;
    margin: auto;
}
 
 /*=== スライドのアニメーションを時間差で開始する ========= */

.slide-img1 {
    display: block;
    position: absolute;
    width: inherit;
    height: inherit;
    left: 100%;
    animation: slideanime 15s infinite;
    width: 100%;
    animation-delay: 0s;
 }
.slide-img2 {
    display: block;
    position: absolute;
    width: inherit;
    height: inherit;
    left: 100%;
    animation: slideanime 15s infinite;
    width: 100%;
    animation-delay: 3s;
 }
.slide-img3 {
    display: block;
    position: absolute;
    width: inherit;
    height: inherit;
    left: 100%;
    animation: slideanime 15s infinite;
    width: 100%;
    animation-delay: 6s;
 }
.slide-img4 {
    display: block;
    position: absolute;
    width: inherit;
    height: inherit;
    left: 100%;
    animation: slideanime 15s infinite;
    width: 100%;
    animation-delay: 9s;
 }
.slide-img5 {
    display: block;
    position: absolute;
    width: inherit;
    height: inherit;
    left: 100%;
    animation: slideanime 15s infinite;
    width: 100%;
    animation-delay: 12s;
 }

 /*=== スライドのアニメーション ========================= */

@keyframes slideanime {
    0% {
        left: 100%;
    }
    2% {
        left: 0;
    }
    18% {
        left: 0;
    }
    20% {
        left: -100%;
    }
    100% {
        left: -100%;
    }
}
/* スライドショー終わり */


/* アバウト部分のはじめ */
.about {
    padding-top: 10%;
        height: 70vh;
    background-attachment: fixed;
    background-image: url(../images/kv\ \(1\).png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}

.textblock {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3%;
    
}


h2 {
    margin: 0% auto;
    width: 50vw;
    font-size: 10vw;
    font-weight: bold;
    color: #1E22B0;
    text-align: center;
}

.textblock-sub {
    width: 45vw;
    font-size: 2.8vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #1E22B0;
}

.about-text {
    width: 98%;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3%;
    font-size: 2.8vw;
}


.more-button p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8em;
    font-size: 2.8vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1em;
    line-height: 1.6;
    background-color: #1E22B0;
    color: white;
}

.more-button p:hover {
opacity: 0.8;
}

.more-button p::after {
    margin-left: 5%;
    margin-top: 4%;
    content: url(../images/arrow-yellow.svg);
}

/* アバウト部分の終わり */

/* ラインナップ始まり */

.lineup-back {
    padding-top: 5%;
    background-image: url(../images/bg-info-top.png),url(../images/bg-info-bottom.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom center,top center;
}

.lineup-text {
    width: 13em;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
    font-size: 3vw;
    text-align: center;
}

figcaption {
    margin-top: 2%;
    font-size: 5vw;
    color: #1E22B0;
    font-weight: 600;
}
figcaption:hover {
    opacity: 0.5;
}

figure {
    margin-top: 15%;
}

.figure-wrap {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5%;
}

.img-box1 {
    display: block;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}
.img-wrap1 {
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
}
.img-wrap1 img {
    width: 100%;
    vertical-align: bottom;
}
.img-wrap1:hover img {
    transform: scale(1.1,1.1);
    transition: 1s;
}

.img-box2 {
    display: block;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}
.img-wrap2 {
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
}
.img-wrap2 img {
    width: 100%;
    vertical-align: bottom;
}
.img-wrap2:hover img {
    transform: scale(1.1,1.1);
    transition: 1s;
}

.img-box3 {
    display: block;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}
.img-wrap3 {
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
}
.img-wrap3 img {
    width: 100%;
    vertical-align: bottom;
}
.img-wrap3:hover img {
    transform: scale(1.1,1.1);
    transition: 1s;
}

.img-box4 {
    display: block;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}
.img-wrap4 {
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
}
.img-wrap4 img {
    width: 100%;
    vertical-align: bottom;
}
.img-wrap4:hover img {
    transform: scale(1.1,1.1);
    transition: 1s;
}

.img-box5 {
    display: block;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}
.img-wrap5 {
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
}
.img-wrap5 img {
    width: 100%;
    vertical-align: bottom;
}
.img-wrap5:hover img {
    transform: scale(1.1,1.1);
    transition: 1s;
}

.img-box6 {
    display: block;
    width: fit-content;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
}

/* ラインナップ終わり */


/* ニュース始まり */

.news-flex {
    background-color: white;
    width: 90%;
    margin: 10% auto;
    padding-bottom: 2%;
    border-radius: 50px;
}

.news-ul {
    margin-top: 5%;
}

.news-ul li {
    width: 90%;
    margin: 0% auto 3%;
}

.news-ul li a {
    display: block;
    color: #1E22B0;
}

.news-tag {
    display: flex;
    align-items: center;
    width: 80%;
    margin-left: 5%;
    font-size: 2.2vw;
}
.news-tag p {
    background-color: #FAEB34;
    color: #1E22B0;
    border-radius: 9999px;
    font-size: 3.5vw;
    line-height: 1em;
    width: fit-content;
    padding: 2%;
    margin-right: 5%;
}
.news-tag time {
    font-size: 2.5vw;
}

.news-bottan {
    display: flex;
    margin-top: 2%;
    line-height: 1.6;
    width: 100%;
    border-bottom: 1px solid #1E22B0;
    position: relative;
}
.news-p {
    font-size: 3vw;
    font-weight: bolder;
}

.news-bottan::before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 0%;
    height: 0.2vw;
    background-color: #1E22B0;
    transition: 1s;
}
.news-bottan:hover::before {
    width: 100%;
    transition: 1s;
}

.news-p {
    width: fit-content;
    margin-left: 5%;
}

.tag {
    display: none;
    width: 5%;
    margin-left: auto;
    font-size: 1.3vw;
}

.news-flex .more-button p {
    margin-top: 10%;
}

/* ニュース終わり */


/* フッターの始まり */

.footer-top p {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 10%;
    background-image: url(../images/lineup-shou-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 90%;
    transition: 1s;
}

.footer-top p:hover {
    background-image: url(../images/lineup-shou-1.png);
    transition: 1s;
}

.footer-top p a {
    display: block;
    line-height: 3;
    text-align: center;
    color: #FAEB34;
    font-size: 3vw;
    font-weight: 500;
}

.footer-top p a:hover {
    color: #1E22B0;
}

.foot-sns {
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 5% auto;
}

.foot-sns li {
    width: 25%;
}
.foot-sns li:hover {
    transform: rotate(360deg);
    transition: 2s;
}

.foot-sns li a {
    width: 100%;
}


.foot-sns li a .sns-wrap i {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 12vw;
    color: #1E22B0;
    line-height: 3;
}

.footer-container {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 5% auto;
}

.footer-logobox {
    width: 30%;
    display: block;
}
.footer-logobox img {
    width: 100%;
}

.footer-logobox .copy {
    color: #1E22B0;
    text-align: center;
    font-size: 1.5vw;
}

.footer-container ul {
    display: flex;
    width: 75%;
}

.foot-nav {
    width: 35%;
    margin-left: 3%;
    margin-bottom: auto;
    font-weight: 900;
}

.foot-nav li a:hover, .foot-sub li a:hover{
    opacity: 0.5;
}

.fnav-li a {
    display: block;
    display: flex;
    align-items: center;
    font-size: 1.8vw;
    color: #1E22B0;
    line-height: 2;
}
.fnav-li a img {
    margin-right: 5%;
}
.fnav-li a .english {
    color: #1E22B0;

}
.fnav-li a .japan {
    color: #1E22B0;
    font-size: 0.8vw;
    margin-left: 5%;
}

.footer-container ul {
    align-items: center;

}
.footer-container ul .footer-sub1 {
    width: 35%;
}
.footer-container ul .footer-sub1 li {
    width: 100%;
}

.footer-container .footer-sub1 li a {
    display: block;
    line-height: 2;
    width: 100%;
    font-size: 1.8vw;
    font-weight: 600;
    color: #1E22B0;
}

.footer-container .footer-sub1 li a:hover {
    opacity: 0.5;
}

/* フッターの終わり */





