@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: serif;
}
html{
     scroll-behavior: smooth;
}
img {
    width: 100%;
    vertical-align: bottom;
}
body {
    background-color: #003b73;
}
/* ハンバーガーメニュー */
.ham {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: fixed;
    top: 15px;
    right: 10px;
    z-index: 9999;
    border-radius: 70% 50% 70% 60% / 40% 80% 60% 70%;
    background-color: #003b73;
    padding: 10px;
}
.ham span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    display: block;
    transition: 0.7s;
}
/* click後のスタイル */
.ham.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.ham.active span:nth-child(2) {
    opacity: 0;
}
.ham.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
/* nav */
nav.sp {
    width: 100%;
    height: 120vh;
    background: linear-gradient(
    to bottom,       /* 上から下へ */
    #118fb7 0%,      /* 上は濃い青 */
    #a7d8f0 50%,     /* 中間は少し白寄りに */
    #ffffff 100%     /* 下は白 */
);
    position: fixed;
    top: -10vh;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    opacity: 0;
    transition: 0.7s;
    pointer-events: none;
}
nav.sp ul {
    list-style: none;
}
nav.sp ul a {
    display: block;
    color: #003366;
    padding: 15px 0;
    font-weight: bold;
    font-size: 18px;
    transition: 0.5s;
}
nav.sp ul a:hover{
    opacity: 0.5;
}
nav.sp.active {
    opacity: 1;
    z-index: 9998;
    pointer-events: all;
}
@media (min-width: 768px) {
    .ham {
        display: none;
    }
}
/* ロゴローディング */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 125vh;
    z-index: 99999;
    background-color: #003b73;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}
.loading__logo {
    opacity: 0;
    animation: logo_fade 2s 0.5s forwards;
    width: 290px;
}
@keyframes logo_fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    60% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
    }
}
@media (min-width: 768px) {
    .loading {
        height: 100vh;
    }
}
/* hero */
.hero {
    position: relative;
    width: 100%;
    height: 110vh;
    overflow: hidden;
}
.img1,
.img2,
.img3 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    animation: anime 15s 0s infinite;
    z-index: 0;
    opacity: 0;
    transform: scale(1);
    transition: transform 0.1s linear;
}
.img1 {
    background-image: url(../img/penginn.jpg);
    background-position: 80% bottom;
    animation-delay: 0s;
}
.img2 {
    background-image: url(../img/kame.jpg);
    background-position: 38% center;
    animation-delay: 5s;
}
.img3 {
    background-image: url(../img/tinanago.jpg);
    background-position: 60% center;
    animation-delay: 10s;
}
.hero-position {
    height: 123vh;
}
@keyframes anime {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60% {
        opacity: 0;
        transform: scale(1.2);
        z-index: 10;
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}
@media (min-width: 768px) {
    .hero {
        height: 100vh;
    }
    .img1 {
        background-position: 42% center;
    }
}
/* 波 */
.wave-section {
    z-index: 100;
    position: relative;
    top: -100px;
    transform: scaleY(2); /* 波を2倍に */
    transform-origin: bottom;
}

@media (min-width: 768px) {
    .wave-section {
        display: none;
    }
}

/* heroインフォメーション */
.top-information {
    color: #fff;
    width: 85%;
    margin: 0 auto;
    position: relative;
    top: -32%;
    z-index: 101;
}
.top-flex {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: end;
}
.date-item {
    width: 40%;
}
.top-information .day {
    font-size: 2.5rem;
    font-weight: bold;
    border-bottom: 1px solid #fff;
    width: fit-content;
}
.top-information .day span {
    font-size: 1.2rem;
}
.top-information .title {
    margin: 15px 0 10px;
}
.top-information .top-time {
    font-size: 1.3rem;
    font-weight: bold;
}
.top-information .parking {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-information .parking .status {
    background: #57e2b2;
    color: #004b8a;
    font-weight: bold;
    border-radius: 8px;
    padding: 5px 10px;
}
.visitor-status {
    color: #003b73;
    width: 60%;
    border-radius: 8px;
}
.visitor-inner {
    background: #fff;
    border-radius: 10px;
    padding: 10px 10px;
}
p.label {
    color: #118fb7;
    padding-bottom: 10px;
}
p.note {
    text-align: center;
    padding: 20px 0;
}
@media (min-width: 768px) {
    .top-information {
        width: 30%;
        top: -300px;
        right: -500px;
        background-color: rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 20px 30px 10px;
        color: #003b73;
    }
    .top-information .day {
        border-bottom: 1px solid #003b73;
    }
    .visitor-status {
        width: 60%;
    }
    p.note {
        padding: 20px 0 10px;
    }
    .top-flex {
        justify-content: center;
    }
}
/* header */
header {
    width: 95%;
    margin: 0 auto;
    padding: 5px 0;
}
header img {
    width: 60%;
}
@media (min-width: 768px) {
    header {
        display: none;
    }
}
/* pc-hero */
.pc-hero {
    display: none;
}
@media (min-width: 768px) {
    .hero-position {
        position: relative;
        margin-bottom: 80px;
    }
    .hero-position img {
        display: block;
        position: absolute;
        width: 25%;
        top: 3%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 102;
    }
    .hero-position {
        position: relative;
    }
    .hero-position img {
        display: block;
        position: absolute;
        width: 25%;
        top: 3%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 102;
    }
}
/* pc-nav */
.pc-nav {
    display: none;
}
@media (min-width: 768px) {
    .pc-nav {
        display: block;
        z-index: 103;
        margin: 0 auto 100px;
        padding: 40px 0 10px;
        width: 100%;
        border-bottom: 1px solid #ccc;
        position: sticky;
        top: 0;
        background-color: #003b73;
        animation-name: anime;
        animation-duration: 0.3s;
    }
    .pc-nav ul {
        display: flex;
        justify-content: space-between;
        width: 80%;
        margin: 0 auto;
        padding: 0 50px 20px;
    }
    .pc-nav li a {
       display: block;
    color: #fff; /* 普段は白 */
    background: linear-gradient(to right, #c1b858 50%, #000 50%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    transition: background-position 0.3s, color 0.3s;
    }
    .pc-nav li a:hover{
         color: transparent;
             background-position: 0 100%;
        }
    .hero-position {
        height: 100vh;
    }
}
/* main */
h2 {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 50px 0 30px;
    color: #f8f0e5;
    font-size: 30px;
    overflow: hidden;
}
.information h2::before {
    content: "INFORMATION";
    position: absolute;
    /*上下中央寄せ*/
    top: 55%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #f8f0e559;
    font-size: 4rem;
    z-index: -1;
}
.pickup h2::before {
    content: "PICKUP";
    position: absolute;
    /*上下中央寄せ*/
    top: 62%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #3574af7e;
    font-size: 5rem;
    z-index: -1;
}
.event h2::before {
    content: "EVENT";
    position: absolute;
    /*上下中央寄せ*/
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #f8f0e559;
    font-size: 5rem;
    z-index: -1;
}
.sns h2::before {
    content: "SNS";
    position: absolute;
    /*上下中央寄せ*/
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #3574af7e;
    font-size: 5rem;
    z-index: -1;
}
.access h2::before {
    content: "ACCESS";
    position: absolute;
    /*上下中央寄せ*/
    top: 55%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #3574af7e;
    font-size: 5rem;
    z-index: -1;
}
/* information */
.infor-wrap {
    width: 95%;
    margin: 0 auto;
}
img.map {
    animation: shake-up 3s infinite ease-in-out;
    filter: drop-shadow(5px 5px 5px #aaa);
}

@keyframes shake-up {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}
.info-position {
    position: relative;
}
.kannai-btn a {
    display: block;
    background-color: #fff;
    color: #003b73;
    width: 35vh;
    height: 9vh;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 50px;
    font-weight: bold;
    letter-spacing: 0.3em;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    filter: drop-shadow(5px 5px 5px #aaa);
    transition: 0.5s;
}
.kannai-btn a:hover{
    background-color: #CBF1F5;
}
.kannai-btn .fa-solid.fa-chevron-right{
    color: #003b73;
}

.information ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0 30px;
}
.information li {
    width: 45%;
}
.information li a {
    display: block;
    background-color: #fff;
    color: #003b73;
    font-weight: bold;
    font-size: large;
    text-align: center;
    margin-bottom: 10px;
    padding: 10px 0 10px;
    transition: 0.7s;
}
.information li a:hover{
    background-color: #CBF1F5;
}
.information ul li img {
    display: block;
    width: 80px; /* 希望のサイズに調整可能 */
    height: 80px; /*調整可能 */
    object-fit: contain; /* アスペクト比を保持 */
    margin-right: 10px; /* 画像とテキストの間隔 */
    margin: 5px auto;
}
@media (min-width: 768px) {
    .information-img {
        width: 50%;
        margin: 20px auto 30px;
        position: relative;
    }
    .information ul {
        width: 60%;
        margin: 0 auto 50px;
    }
    .information li {
        height: 20%;
        max-width: 500px;
    }
    .information h2::before {
        font-size: 5rem;
    }
    .kannai-btn a {
        position: absolute;
        top: 60%;
        right: 22%;
        width: 25vh;
        height: 25vh;
        border-radius: 50%;
        margin: 10px auto 50px;
        font-weight: bold;
        letter-spacing: 0.3em;
        background-color: #CBF1F5;
          transition: transform 0.7s;
    }
    .kannai-btn a:hover{
        transform: scale(1.1);
    }
}
/* pickup*/
.pickup-pc{
    display: none;
}
.pickup {
    margin-bottom: 100px;
    margin-top: 0;
    background: linear-gradient(
        to bottom,
        #e3f2ff 0%,
        #0066a2 60%,
        #003b73 100%
    );
}
.pickup h2 {
    padding-top: 80px;
    color: #003b73;
}

.pickup h3 {
    color: #fff;
    text-align: center;
    padding-bottom: 30px;
    font-size: 23px;
}
.pickup-item {
    margin: 80px 0 0;
    position: relative;
}

.pickup h4 {
    color: #fff;
    position: relative;
    margin: 5px 0 20px 10%;
    width: 70%;
    font-size: 20px;
}
.pickup p.description {
    color: #ccc;
    position: relative;
    margin-left: 10%;
    width: 80%;
    line-height: 1.7;
}
.pickup-position {
    position: relative;
    width: 100%;
    height: 400px; /* 固定の高さを設定 */
}
.pickup-position img.main-img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 200px;
    object-fit: cover;
    z-index: 2;
}
.pickup-position img.sub-img {
    display: block;
    position: absolute;
    top: 55%;
    left: 10%;
    object-fit: cover;
    width: 70%;
}
.pickup-flex .pickup-item:first-child p.description{
    color: #FFF;
}
/* スクロールダウン */
.scroll {
    writing-mode: vertical-rl;
    position: absolute;
    font-size: 20px;
    top: 0;
    left: 8%;
    color: #c1bb77;
}
.scroll::after {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: #c1bb77;
    right: 50%;
    bottom: -115px;
    /* transform : translateX(-50%); */
    width: 1px;
    height: 100px;
    animation: scroll 3s infinite;
}
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 999; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: 0.5s; /* フェード開始を0.5秒遅らせる */
}
@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}
@media (min-width: 768px) {
 .pickup{
    display: none;
 }
 .pickup-pc{
    display: block;
 }
 .pickup-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 85%;
  margin: 0 auto 200px;
 height: 190vh; /* ← 縦スクロールが発生するだけの高さを確保 */
  padding-top: 100px;
}
.pickup-item{
    width: 40%;
}
.pickup-item.setumei{
    position: sticky;
    top: 0;
    padding: 200px 50px 180px;
    color: #fff;
    line-height: 3;
    font-size: 20px;
    font-family: serif;
}
.pickup-item.img{
    position: relative;
    height: 100vh;
    padding-top: 500px;
}
.pickup-item img.main-img {
    position: absolute;
    width: 500px;
    height: 350px;
    object-fit: cover;
    right: 0;
}
.pickup-item img.sub-img {
    position: absolute;
    width: 350px;
    height: 250px;
    object-fit: cover;
    top: 120%;
    left: -30%;
}
.pickup-pc {
    margin-bottom: 100px;
    margin-top: 0;
    background: linear-gradient(
        to bottom,
        #e3f2ff 0%,
        #0066a2 60%,
        #003b73 100%
    );
}
.pickup-pc h2 {
    padding-top: 80px;
    color: #003b73;
}

.pickup-pc h3 {
    color: #fff;
    text-align: center;
    padding-bottom: 30px;
    font-size: 23px;
}
h2 {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 50px 0 30px;
    color: #f8f0e5;
    font-size: 30px;
    overflow: hidden;
}
.pickup-pc h2::before {
    content: "PICKUP";
    position: absolute;
    /*上下中央寄せ*/
    top: 62%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #3574af7e;
    font-size: 5rem;
    z-index: -1;
}
.pickup-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 85%;
  margin: 0 auto 200px;
  min-height: 150vh;
}
.pickup-flex:first-of-type h3,
.pickup-flex:first-of-type h4,
.pickup-flex:first-of-type .pickup-item.setumei p.description:not(.scroll p)  {
    color: #003366;
}
.scroll { 
    top: 8%;
    left: 5%;
}
.pickup-flex h4{
    text-align: center;
}
.pickup-flex .pickup-item.setumei p.description:not(.scroll p){
    padding-left: 30px;
}
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 999; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}
}
/* event */
.event h3 {
    text-align: center;
    color: #fff;
    font-size: 20px;
    width: fit-content;
    margin: 20px auto 50px;
}
.heading-21 {
    position: relative;
    padding: 0.5em 0.5em 0.4em;
    border-bottom: 3px solid #fff;
}
.heading-21::before,
.heading-21::after {
    position: absolute;
    left: 30px;
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
}
.heading-21::before {
    background-color: #fff;
}

.heading-21::after {
    bottom: -11px;
    background-color: #003b73;
}
/* main-event */
.main-event {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 30px;
    margin-top: 20px;
    margin-bottom: 100px;
    background-color: #c4dbf2;
    transition: 0.7s;
}
.main-event:hover{
      transform: scale(1.1);
}
.main-event-inner {
    padding: 15px;
}
p.event-calender {
    color: #baad14;
    font-size: large;
    padding-top: 5px;
}
.event h4 {
    color: #003b73;
    font-weight: 500;
    font-size: 1.5em;
    padding: 20px 0;
}
p.event-contents {
    color: #003b73;
}
/* 横スクロール */
.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 16px;
    scroll-padding-left: 16px; /* 左端スナップ余白 */
}
.scroll-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
    overflow: hidden;
    padding-top: 30px;
    transition: 0.5s;
}
.scroll-item:hover{
    opacity: 0.5;
}
.scroll-item:first-child {
    padding-left: 15px;
}
.scroll-item h4 {
    color: #fff;
}
a.scroll-item p.scroll-content {
    color: #ccc;
    width: 95%;
}
.scroll-event-inner {
    padding: 10px;
}
.scroll-item img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    padding-top: 5px;
}
/* 横スクロール促す */
.scroll-yoko {
    position: relative;
}
.event-scrollyoko {
    position: absolute;
    font-size: 20px;
    top: 200%;
    left: 8%;
    transform: translateY(-50%);
    color: #aab7c4;
    display: flex;
    align-items: center;
}
.event-scrollyoko::after {
    content: "";
    display: inline-block;
    position: relative;
    background-color: #aab7c4;
    margin-left: 12px;
    width: 250px;
    height: 1px;
    animation: scroll-line 4s infinite;
}
.allevent-btn a {
    display: block;
    background-color: #fff;
    color: #003b73;
    width: 70%;
    margin: 20px auto 50px;
    padding: 20px;
    text-align: center;
    border-radius: 40px;
    font-size: 18px;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: 0.5s;
}
.allevent-btn a:hover{
    background-color: #91bfe8;
    color: #fff;
}
.main-event-inner {
    background-image: url(../img/snow.png);
    background-size: cover;
    background-attachment: fixed;
    padding-top: 30px;
}
@media (min-width: 768px) {
    .main-event {
        width: 50%;
    }
    .main-event-inner {
        background-image: url(../img/snow.png);
        background-size: cover;
        background-attachment: fixed;
    }
    .main-event img {
        height: 380px;
        object-fit: cover;
        object-position: center bottom;
    }
    .scroll-container {
        width: 100%;
        overflow-x: visible; /* 横スクロール不要 */
        scroll-snap-type: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .scroll-item {
        flex: 0 1 auto;
        width: 30%;
        scroll-snap-align: none;
    }
    .scroll-item img {
        width: 100%;
    }
    .event-scrollyoko {
        display: none;
    }
    .scroll-item:first-child {
        padding-left: 0;
    }
    .allevent-btn a {
        width: 20%;
        padding: 20px;
        text-align: center;
        border-radius: 40px;
        font-size: 18px;
    }
}
@keyframes scroll-line {
    0% {
        transform: scale(0, 1);
        transform-origin: 0 0; /* 左端からスタート */
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0; /* 左端に向かって伸びる */
    }
    50.1% {
        transform: scale(1, 1);
        transform-origin: 100% 0; /* 右端を基準にして今度は縮む準備 */
    }
    100% {
        transform: scale(0, 1);
        transform-origin: 100% 0; /* 右端に向かって縮む */
    }
}
/* shop */
.grid-midashi {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px 0 40px;
    color: #f8f0e5;
    font-size: 27px;
}
.grid-midashi::before {
    content: "SHOP RESTRANT";
    position: absolute;
    /*上下中央寄せ*/
    top: 40%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #f8f0e559;
    font-size: 4.3rem;
    z-index: -1;
    font-weight: 550;
}
.shop a {
    display: block;
    color: #003b73;
    background-color: #fff;
    width: 95%;
    margin: 20px auto;
    padding: 10px 0;
    font-size: 20px;
    transition: 0.5s;
}
.shop a:hover{
     background-color: #91bfe8;
    color: #fff;
}
.fa-solid.fa-chevron-right,
.fa-solid.fa-chevron-right {
    color: #729bc2c1;
}
.fa-solid.fa-chevron-right,
.fa-solid.fa-chevron-right:hover{
    color: #fff;
}
.shop {
    padding-bottom: 100px;
    width: 100%;
    margin: 0 auto;
    height: 65vh;
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 共通5列 */
    grid-template-rows: 200px 300px 200px; /* 共通3行 */
    gap: 10px;
}
.shop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.grid-01 {
    background-color: #ccc;
    grid-column: 3/6;
    grid-row: 1/2;
}
.grid-02 {
    background-color: pink;
    grid-column: 1/3;
    grid-row: 1/2;
}
.grid-03 {
    background-color: rgb(225, 225, 102);
    grid-column: 5/6;
    grid-row: 2/3;
}
.grid-04 {
    grid-column: 2/5;
    grid-row: 2/3;
    text-align: center;
    overflow: hidden;
}
.grid-05 {
    background-color: green;
    grid-column: 1/2;
    grid-row: 2/3;
}
.grid-06 {
    background-color: blue;
    grid-column: 4/6;
    grid-row: 3/4;
}
.grid-07 {
    background-color: purple;
    grid-column: 1/4;
    grid-row: 3/4;
}
.grid-08,
.grid-09 {
    display: none;
}
@media (min-width: 768px) {
    .grid-midashi::before {
        display: none;
    }
    .shop {
        width: 100%;
        margin: 0 auto;
        height: 90vh;
        grid-template-columns: 1fr 0.8fr 1.6fr 0.8fr 1fr;
        grid-template-rows: 200px 300px 230px;
    }
    .shop a {
        width: 40%;
        margin: 25px auto;
        padding: 10px 0;
        font-size: 20px;
    }
    .grid-08,
    .grid-09 {
        display: flex;
    }
    .grid-08 {
        background-color: #baad14;
        grid-column: 2/3;
        grid-row: 2/3;
    }
    .grid-09 {
        grid-column: 4/5;
        grid-row: 2/3;
    }
    .grid-midashi {
        font-size: 40px;
        letter-spacing: 0.2em;
        padding: 5px 0;
    }
}
/* gallary */
.gallary {
    width: 100%;
    overflow: hidden; /* 横スクロール */
    padding: 100px 0 60px;
    background: linear-gradient(
        to bottom,
        #003b73 0%,
        #235b91 25%,
        #4d7fac 50%,
        #a3c6de 75%,
        #ffffff 100%
    );
    margin: 250px 0 0;
}
.slider {
    display: flex;
    width: max-content;
    animation: slide 35s linear infinite;
}
.circle img {
    flex-shrink: 0;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    object-fit: cover;
    animation-name: fuwafuwa;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
.float1 img {
    width: 220px;
    height: 220px;
    animation-duration: 4s;
    animation-delay: 0s;
    border-radius: 36% 64% 54% 46% / 48% 30% 70% 52%;
}
.float2 img {
    width: 180px;
    height: 180px;
    animation-duration: 4.5s;
    animation-delay: 1s;
    margin-top: 130px;
    border-radius: 37% 63% 36% 64% / 67% 61% 39% 33%;
}
.float3 img {
    width: 210px;
    height: 210px;
    animation-duration: 5s;
    animation-delay: 2s;
    border-radius: 48% 52% 40% 60% / 42% 50% 50% 58%;
}
.float4 img {
    width: 170px;
    height: 170px;
    animation-duration: 4.8s;
    animation-delay: 3s;
    margin-top: 130px;
    border-radius: 62% 38% 67% 33% / 31% 50% 50% 69%;
}
@keyframes fuwafuwa {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (min-width: 768px) {
    .gallary {
        padding: 20px 0 70px;
    }
    .slider {
        gap: 15px;
        animation-duration: 50s; /* 少し速く */
    }
    .circle img {
        width: 300px;
        height: 300px;
        animation-duration: 5s;
    }
    .float1 img {
        animation-duration: 4s;
        animation-delay: 0.3s;
    }
    .float2 img {
        width: 250px;
        height: 250px;
        animation-duration: 4.5s;
        animation-delay: 1s;
        margin-top: 150px;
    }
    .float3 img {
        animation-duration: 5s;
        animation-delay: 0.6s;
    }
    .float4 img {
        width: 200px;
        height: 200px;
        animation-duration: 4.8s;
        animation-delay: 0.9s;
        margin-top: 150px;
    }
}
/* sns */
.sns {
    background-color: #fff;
    width: 100%;
}
.sns h2 {
    color: #003b73;
}
.fa-brands.fa-instagram,
.fa-brands.fa-youtube,
.fa-brands.fa-x-twitter,
.fa-brands.fa-tiktok {
    font-size: larger;
    width: 40px;
    height: 40px;
    background-color: #003b73;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.sns-flex {
    display: flex;
    align-items: center;
    gap: 1%;
    margin: 10% auto 5%;
    width: 85%;
}
.sns h3 {
    color: #003b73;
    font-size: 1.2em;
}
.sns span a {
    font-size: 0.7em;
    font-weight: lighter;
    color: #003b73;
    padding-left: 20px;
}
.snsicon-flex {
    display: flex;
    gap: 5%;
    justify-content: center;
    padding: 10%;
}
/* instagram */
.inst-wrap {
    overflow: hidden;
}
.inst-slider {
    display: flex;
}
.slide-item {
    flex: 0 0 auto;
    margin-right: 10px;
}
/* youtube */
.youtube-item img {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 5%;
transition: 0.5s;
}
.youtube-item img:hover{
      transform: scale(1.1);
}
@media (min-width: 768px) {
    .sns h2 {
        padding-top: 50px;
    }
    .youtube-flex {
        display: flex;
    }
    .sns-flex {
        margin: 30px 50px 20px;
    }
    .snsicon-flex {
        padding: 5%;
    }
    .fa-brands.fa-instagram,
    .fa-brands.fa-youtube,
    .fa-brands.fa-x-twitter,
    .fa-brands.fa-tiktok {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }
    .instagram {
        margin-bottom: 50px;
    }
}
/* access */
.access {
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #a3c6de 10%,
        #4d7fac 20%,
        #235b91 30%,
        #003b73 40%,
        #003b73 100%
    );
    color: #fff;
}
.access-inner {
    width: 90%;
    margin: 0 auto;
}
.access h2 {
    color: #003b73;
}
.access-detail-btn a {
    display: block;
    color: #003b73;
    background-color: #fff;
    font-size: 20px;
    width: fit-content;
    border-radius: 30px;
    padding: 15px 20px;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: 0.5s;
}
.access-detail-btn a:hover{
    background-color: #91bfe8;
}
.access-detail {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
    padding-top: 50px;
}
p.time {
    font-size: 25px;
    font-weight: bold;
}
.access-contact-btn a {
    display: block;
    width: 100%;
    background-color: #91bfe8;
    color: #003b73;
    border-radius: 8px;
    margin: 20px auto;
    padding: 20px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: 0.5s;
}
.access-contact-btn a:hover{
    background-color: #fff;
}
.access-contact-btn {
    margin: 40px 0;
}
.adress p {
    font-size: 20px;
    padding: 5px;
}
.adress p:last-of-type {
    padding: 20px 0 30px;
}
@media (min-width: 768px) {
    .access h2 {
        padding-top: 50px;
    }
    .access-flex {
        display: flex;
        justify-content: center;
        gap: 50px;
        padding-top: 50px;
    }
    .access-item {
        width: 30%;
    }
    iframe {
        width: 50%;
        height: 80vh;
    }
}
/* footer */
footer {
    color: #fff;
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 20px;
}
footer a {
    color: #fff;
}
footer ul {
    display: flex;
    padding: 20px 0;
}
footer ul li a {
    display: block;
}
footer li a::after {
    content: "/";
    color: #fff;
    margin: 0.5em;
}
footer li:last-child a::after {
    content: "";
}
footer img {
    width: 50%;
}
@media (min-width: 768px) {
    footer {
        margin-top: 50px;
        text-align: center;
    }
    footer ul {
        width: fit-content;
        margin: 0 auto;
    }
    footer img {
        width: 20%;
    }
}
/* top戻る */
.back-to-top-pc{
    display: none;
}
.back-to-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  display: block;
}
.back-to-top img {
  width: 70px;
  height: 150px;
  transition: 0.5s;
  object-fit: cover;
}
.back-to-top img:hover {
  opacity: 0.7;
}
@media (min-width: 768px){
    .back-to-top-pc{
        display: block;
        position: fixed;
        bottom: 0;
        right: 2%;
        z-index: 1000;
    }
    .back-to-top-pc img {
  width: 70px;
  height: 150px;
  transition: 0.5s;
  object-fit: cover;
}
.back-to-top-pc img:hover{
     opacity: 0.7;
}
    .back-to-top{
        display: none; 
    }


}

