@charset "utf-8";

/* === 基本設定 === */
:root {
  --font-color: #fff; /* 白で定義 */
  --font-family: sans-serif;
}

html, body {
    font-family: aralet-n, sans-serif;
    font-style: normal;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: clamp(1rem, 0.824rem + 0.63vw, 1.2rem);
    overflow-x: auto; /* 📌 横スクロールを確実に有効化 */
    overflow-y: hidden; /* 📌 縦スクロール禁止 */
    white-space: nowrap;
    width: 100vw; /* ビューポートの幅にする */
    height: 100vh; /*ビューポートの高さにする */
    
    background-color: black; /* 背景が消えないように */
    position: relative; /* 修正: `absolute` から `relative` に変更 */

}

/* 背景のアニメーション対象 */
.portfolio__back {
    position: absolute;
    width: 11520px; /* 背景画像の幅 */
    height: 100%; /* 背景画像の高さ */
    background-image: url(images/look_back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
    top: 50%;
    left: 100%;
    transform: translate(-90%, -40%) scale(3.2);
    
    animation: zoom-out 3s ease-in-out forwards;
    z-index: -1000;
}


/* 修正: アニメーションの適用 */
@keyframes zoom-out {
    0% {
        transform: translate(-70%, 50%) scale(3.2);
    }
    100% {
        transform: translate(-15%, -50%) scale(1);
    }
}

/* フェードインアニメーション */
@keyframes fadeIn {
    from {
      opacity: 0; /* 完全に透明 */
    }
    to {
      opacity: 1; /* 完全に表示 */
    }
  }
  
  /* 初期状態を透明に設定 */
  .fade-in {
    animation: fadeIn 1.5s ease-in-out; /* 1.5秒かけてフェードイン */
    animation-fill-mode: forwards; /* フェードイン完了後に状態を維持 */
    background-color: black;
    opacity: 0; /* 初期状態は透明 */
  }
  

/* 📌 11520px の全コンテンツを内包 */
.main-content {
    display: flex;
    width: 11520px; /* 📌 横スクロールを維持する固定幅 vwはだめ*/
    height: auto;
    align-items: flex-start;
    flex-wrap: nowrap;
}

/*ハンバーガーメニュー専用CSS*/
.hamburger{
    width: 40px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}
.hamburger-line{
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--font-color);
    position: relative;
}
.hamburger-line::before{
    content: "";
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--font-color);
    position: absolute;
    top: -10px;
    left: 0;
    transition: 0.3s; /*ゆっくり　「✖️」　になる*/
}

.hamburger-line::after{
    content: "";
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--font-color);
    position: absolute;
    top: 10px;
    left: 0;
    transition: 0.3s; /*ゆっくり　「✖️」　になる*/
}

/*上のhamburger-lineは、「active」がついていない時。下のは「active」 がついた時。クリックしたら、３本線が「✖️」になる*/
.hamburger.active .hamburger-line{
    background: transparent;
}
.hamburger.active .hamburger-line::before{
    top: 0;
    transform: rotate(45deg);
}
.hamburger.active .hamburger-line::after{
    top: 0;
    transform: rotate(-45deg);
}

/* メニュー全体のスタイル（黒枠で統一） */
.sub-menu {
    position: fixed;
    height: 24rem;
    top: 2%;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.7); /* すべてのボタンを黒枠の中に統一 */
    border-radius: 0.2rem;
    padding: 0.7rem;
    z-index: 1000;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
}

.sub-menu.active{
    transform: translateY(0);
}

/* リストのドットを消す */
.sub-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

/* ボタンを統一デザインで設定 */
.sub-menu li {
    margin: 0.5rem 0; /* ボタン間の余白 */
    text-align: center;
}

/* ボタンのリンクデザイン */
.sub-menu a {
    display: block;
    width: 4.5rem; /* ボタンの幅を統一 */
    text-decoration: none;
    font-size: 1rem;
    color: #fff;
    padding: 1rem 0;
    background: transparent; /* 黒枠内に統一されるので透明に */
    border-radius: 0.1rem;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    text-align: center;
}

/* ホバー時のデザイン */
.sub-menu a:hover {
    background: rgba(255, 255, 255, 0.8);
    color: black;
}


/* タイトル（左上に配置） */
header .main-title {
    max-width: 11520px;
    padding-top: clamp(1rem, 0.769rem + 1.03vw, 2rem);
    padding-left: clamp(2rem, 1.538rem + 2.05vw, 4rem);
    padding-bottom: clamp(1rem, 0.769rem + 1.03vw, 2rem);
    display: flex;
    background:linear-gradient(to bottom right, rgba(6, 83, 93, 0.536) 25%, transparent 60%);
    background-size: cover;
    width: 100%;
    height: auto;
    position: relative;
}

header h1{
    color: #fdfd93;
    font-size:clamp(1.25rem, 1.019rem + 1.03vw, 2.25rem);
    font-weight: 700;
}

    
/* === 「雨恋::amagoi」のレイアウト（横並びを維持） === */
.amagoi-section {
    display: flex;
    align-items: flex-start;
}

/* amagoi テキストと画像を横並び */
.amagoi-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.subtitle_ama {
    font-weight: 600;   
}


/*.sub_title{
 font-size:clamp(1.125rem, 0.981rem + 0.64vw, 1.75rem); 
 background:radial-gradient(circle, rgba(6, 83, 93, 0.536) 10%, transparent 80%);
 padding:clamp(0.625rem, 0.625rem + 0vw, 0.625rem) ;
 padding-left: clamp(1.25rem, 0.208rem + 2.78vw, 1.875rem);
 padding-right: clamp(1.25rem, 0.208rem + 2.78vw, 1.875rem);
 color: #fdfd93 ;
 font-weight: 600;
 
}*/

.award {
  font-family: var(--font-family);
  font-size: clamp(0.875rem, 0.846rem + 0.13vw, 1rem);
  font-weight: 600;
}

.ex-title{
    color: #ffffd4e5;
    font-size:clamp(1.25rem, 1.163rem + 0.38vw, 1.625rem);
    font-weight: 600;
}

.text_ama {
     font-family: sans-serif;
     font-size: clamp(0.75rem, 0.685rem + 0.29vw, 0.938rem); /* MIN360 MAX450px VIEW MIN360 MAX1400 */
     font-weight: 300;
}

/* amagoi テキスト */
.amagoi-text {
    max-width: 600px;
    max-height: 786px;
    width: clamp(22.5rem, 20.481rem + 8.97vw, 31.25rem);
    height: 100%;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-left: clamp(2.125rem, 1.692rem + 1.92vw, 4rem);
    margin-right: clamp(2.125rem, 1.692rem + 1.92vw, 4rem);
    padding-left:clamp(0.625rem, 0.481rem + 0.64vw, 1.25rem);
    padding-right: clamp(0.625rem, 0.481rem + 0.64vw, 1.25rem);
    background:linear-gradient(to top right, rgba(6, 83, 93, 0.536) 60%, transparent 80%);
}

/* 画像ギャラリー（3行×5列） */
.amagoi-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;   
}

/* 各行 */
.amagoi-row {
    display: flex;
}

/* 画像 */
.amagoi-img img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    /* border: 1px solid #00ff1e; */
    transition: transform 0.2s ease-in-out;
}

.amagoi-img img:hover {
    transform: scale(1.05);
}

/* === 「祭::SAI」のレイアウト（右隣に配置） === */


.sai-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.g-box {
    display: flex;
    
}

/* sai テキスト */
.sai-text {
   max-width: 500px;
    max-height: 786px;
    width: clamp(22.5rem, 20.481rem + 8.97vw, 31.25rem);
    height: 100%;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-left: clamp(2.125rem, 1.692rem + 1.92vw, 4rem);
    margin-right: clamp(2.125rem, 1.692rem + 1.92vw, 4rem);
    padding-left:clamp(0.625rem, 0.481rem + 0.64vw, 1.25rem);
    padding-right: clamp(0.625rem, 0.481rem + 0.64vw, 1.25rem);
    background:linear-gradient(to top right, rgba(6, 83, 93, 0.536) 60%, transparent 80%);
}

.text_sai{
    font-family: sans-serif;
     font-size: clamp(0.75rem, 0.685rem + 0.29vw, 0.938rem); /* MIN360 MAX450px VIEW MIN360 MAX1400 */
     font-weight: 300;
}

.sai-text2 {
   max-width: 500px;
    max-height: 786px;
    width: clamp(22.5rem, 20.481rem + 8.97vw, 31.25rem);
    height: 100%;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
    padding-left:clamp(0.625rem, 0.481rem + 0.64vw, 1.25rem);
    padding-right: clamp(0.625rem, 0.481rem + 0.64vw, 1.25rem);
    background:linear-gradient(to top right, rgba(6, 83, 93, 0.536) 60%, transparent 80%);
}


/* sai 動画（640pxで縮小せずに表示） */
.sai-video {
    flex-shrink: 0;
    width: 600px;
    height: auto;
    position: relative; /* Playボタンを中央配置するための基準 */
}


/* Playボタンを動画の中央に配置 */
/*.sai-video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 完全な中央配置 */
   /* background: #07f9e159; /* 元の色を維持 */
   /* color: #fff;
    font-size: 1.5rem;
    border: none;
    padding: 10px 20px;
    cursor: pointer; 
    z-index: 10; /* 動画の前面に表示 */
    /*border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
}

/* ホバー時の視覚効果 */
/*.sai-video .play-button:hover {
    background: rgba(70, 255, 224, 0.8);
    transform: translate(-50%, -50%) scale(1.1); /* 少し大きくなる */
/*}


/* 画像ギャラリー（3行×5列） */
.sai-content2 {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.sai-gallery {
    padding-top: clamp(2rem, 1.654rem + 1.54vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sai-gallery2 {
    padding-top: clamp(1rem, 0.5rem + 1vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 10px;

}

/* 各行 */
.sai-row {
    display: flex;
}

/* 画像 */
.sai-img img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    /* border: 1px solid #00ff1e; */
    transition: transform 0.2s ease-in-out;
}

.sai-img img:hover {
    transform: scale(1.05);
}


/* === 「::Nomad.」のレイアウト（横並びを維持） === */
.nomad-section {
    display: flex;
    /* flex-shrink: 0; */
    align-items: flex-start;
   /*  background-color: #fffece9a; */
}

/* nomad テキストと画像を横並び */
.nomad-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* nomad テキスト */
.nomad-text {
    max-width: 650px;
    max-height: 786px;
    width: clamp(22.5rem, 19.038rem + 15.38vw, 37.5rem);
    height: 100%;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-left: clamp(2.125rem, 1.692rem + 1.92vw, 4rem);
    padding-left: clamp(0.938rem, 0.721rem + 0.96vw, 1.875rem);
    padding-right: clamp(0.938rem, 0.721rem + 0.96vw, 1.875rem);
    background:linear-gradient(to top right, rgba(6, 83, 93, 0.536) 60%, transparent 80%);
}

 .text_nomad {
    font-family: sans-serif;
    font-size: clamp(0.75rem, 0.685rem + 0.29vw, 0.938rem); /* MIN360 MAX450px VIEW MIN360 MAX1400 */
    font-weight: 300;
 }

/* 画像ギャラリー（3行×5列） */
.nomad-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 各行 */
.nomad-row {
    display: flex;
}

/* 画像 */
.nomad-img img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    /* border: 1px solid #00ff1e; */
    transition: transform 0.2s ease-in-out;
}

.nomad-img img:hover {
    transform: scale(1.05);
}


/* === 「Eclipse Attire のレイアウト（右隣に配置） === */

.ea-section {
    display: flex;
    /* flex-shrink: 0; */
    align-items: flex-start;
    /* background-color:  #54c4f8; */
}
.ea-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
/* sai テキスト */
.ea-text {
    max-width: 500px;
   max-height: 786px;
    min-height: 600px;
    width: clamp(22.5rem, 20.481rem + 8.97vw, 31.25rem);
    height: 100%;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
     margin-left: clamp(2.125rem, 1.692rem + 1.92vw, 4rem);
    padding-left: clamp(0.938rem, 0.721rem + 0.96vw, 1.875rem);
    padding-right: clamp(0.938rem, 0.721rem + 0.96vw, 1.875rem);
    background:linear-gradient(to top right, rgba(6, 83, 93, 0.536) 60%, transparent 80%);
    
}
.text_ea{
    font-family: sans-serif;
    font-size: clamp(0.75rem, 0.685rem + 0.29vw, 0.938rem); /* MIN360 MAX450px VIEW MIN360 MAX1400 */
    font-weight: 300;
}
.ea-text{
    font-family: sans-serif;
    font-size: clamp(0.75rem, 0.685rem + 0.29vw, 0.938rem); /* MIN360 MAX450px VIEW MIN360 MAX1400 */
    font-weight: 300;
}


/* 画像ギャラリー（3行×5列） */
.ea-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 各行 */
.ea-row {
    display: flex;
}

/* 画像 */
.ea-img img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    /* border: 1px solid #00ff1e; */
    transition: transform 0.2s ease-in-out;
}

.ea-img:hover {
    transform: scale(1.05);
}

/* === Maskのレイアウト（右隣に配置） === */

.mask-section {
    display: flex;
    /* flex-shrink: 0; */
    align-items: flex-start;
    /* background-color:  #e0f7ff; */
}
.mask-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
/* mask テキスト */
.mask-text {
    max-width: 500px;
    max-height: 786px;
    min-height: 600px;
    width: clamp(22.5rem, 20.481rem + 8.97vw, 31.25rem);
    height: 100%;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-left: clamp(2.125rem, 1.692rem + 1.92vw, 4rem);
    padding-left: clamp(0.938rem, 0.721rem + 0.96vw, 1.875rem);
    padding-right: clamp(0.938rem, 0.721rem + 0.96vw, 1.875rem);
    background:linear-gradient(to top right, rgba(6, 83, 93, 0.536) 60%, transparent 80%);
}

.text_mask{
    font-family: sans-serif;
    font-size: clamp(0.75rem, 0.685rem + 0.29vw, 0.938rem); /* MIN360 MAX450px VIEW MIN360 MAX1400 */
    font-weight: 300;
}

/* shika（640pxで縮小せずに表示） */
.mask-shika {
    flex-shrink: 0;
    width: 600px;
    min-width: 600px; /* 📌 これで縮小を防ぐ */
    height: auto;
}

.mask-shika img {
    width: 100%;
    height: auto;
}

/* 画像ギャラリー（3行×5列） */
.mask-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 各行 */
.mask-row {
    display: flex;
}

/* 画像 */
.mask-img img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    /* border: 1px solid #00ff1e; */
    transition: transform 0.2s ease-in-out;
}

.mask-img img:hover {
    transform: scale(1.05);
}


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

/* ポップアップ全体の設定 */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 1000;
}
 

/* 非表示時のスタイル */
.popup.hidden {
    display: none;
}
  
/* 画像ポップアップ */
.popup img {
    max-width: 600px;
    width: 100%;
   height: auto;
    position: block;
}


/* 画像とボタンをまとめる親要素に relative */
.popup-inner {
  position: relative;
  max-width: 85%;
  max-height: 85%;
}

/*Closeボタン */
.popup button {
    display: block flow-root;
    font-size: clamp(0.375rem, 0.288rem + 0.38vw, 0.75rem);
    color: #fff;
    position: absolute;
    top: clamp(0.25rem, 0.207rem + 0.19vw, 0.438rem);
    right: clamp(0.25rem, 0.207rem + 0.19vw, 0.438rem);
    background: #07f9e122; /* 元の色を維持 */
    border: none;
    padding: clamp(0.313rem, 0.24rem + 0.32vw, 0.625rem); /* 見た目のボタンの大きさを維持 */
    cursor: pointer;
    z-index: 1100; /* ポップアップ内の他の要素の上に配置 */
  }
  
  /* 見えないボタン判定エリア　*/
  .popup button::before {
    content: '';
    position: absolute;
    top: -20px; /* 上方向に20px広げる */
    left: -20px; /* 左方向に20px広げる */
    width: calc(100% + 60px); /* 横幅を40px広げる */
    height: calc(100% + 60px); /* 縦幅を40px広げる */
    background-color: transparent; /* 透明にする */
    cursor: pointer; /* カーソルをポインタに設定 */
    z-index: -1; /* 見た目には影響しないように配置 */
  }
 /* ここまで　画像クリック拡大　closeで閉じる */ 

 /* ボタンのスタイル */
#scroll-right {
    position: fixed;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 500;
    pointer-events: auto;
    display: inline-block; /* SVGのスタイル適用を確実にする */
}

/* SVG の fill を明示的に設定 */
#scroll-right svg {
    width: clamp(3.75rem, 3.173rem + 2.56vw, 6.25rem);
    height: auto;
    fill: #fff; /* 初期状態は白 */
    transition: fill 0.3s ease;
}

/* ホバー時に色を変更 */
#scroll-right:hover svg path {
    fill: #00bcd4 !important; /* ホバー時の色を確実に適用 */
}

/* back矢印*/
#scroll-left {
    position: fixed;
    right: 5%;
    top: 55%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 500;
    pointer-events: auto;
    display: inline-block; /* SVGのスタイル適用を確実にする */
}

/* SVG の fill を明示的に設定 */
#scroll-left svg {
    width: clamp(3.75rem, 3.173rem + 2.56vw, 6.25rem);
    height: auto;
    fill: #fff; /* 初期状態は白 */
    transition: fill 0.3s ease;
}

/* ホバー時に色を変更 */
#scroll-left:hover svg path {
    fill: #00bcd4 !important; /* ホバー時の色を確実に適用 */
}


/* ==幅４３１px 以上 767px=== */

@media screen and (min-width: 431px) and (max-width: 1067px) and (max-height:785px){
  .main-content{
    transform: scale(0.7);
    transform-origin: top left;
    /* 逆数補正(幅/高さの%指定)は入れない → 余白が膨らむ原因になるため */
    will-change: transform;
  }


  .popup img {
    max-width: 400px;
    width: 100%;
   height: auto;
    position: block;
}

}
    
  /*Closeボタン */
.popup button {
    display: block;
    color: #fff;
    position: absolute;
    top: clamp(0.188rem, -0.053rem + 0.89vw, 0.375rem);
    right: clamp(0.188rem, -0.053rem + 0.89vw, 0.375rem);
    background: #07f9e122; /* 元の色を維持 */
    border: none;
    padding: clamp(0.188rem, -0.053rem + 0.89vw, 0.375rem); /* 見た目のボタンの大きさを維持 */
    cursor: pointer;
    z-index: 1100; /* ポップアップ内の他の要素の上に配置 */
  }
  
  /* 見えないボタン判定エリア　*/
  .popup button::before {
    content: '';
    position: absolute;
    top: -20px; /* 上方向に20px広げる */
    left: -20px; /* 左方向に20px広げる */
    width: calc(100% + 60px); /* 横幅を40px広げる */
    height: calc(100% + 60px); /* 縦幅を40px広げる */
    background-color: transparent; /* 透明にする */
    cursor: pointer; /* カーソルをポインタに設定 */
    z-index: -1; /* 見た目には影響しないように配置 */
  }
 /* ここまで　画像クリック拡大　closeで閉じる */ 


/* =====スマホ小サイズ（430px以下） ===== */
@media (max-width: 430px) {
    .main-content {
        margin-top: clamp(0.625rem, -24.943rem + 109.09vw, 4.375rem);
    }


    .popup button {
    display: block flow-root;
    color: #fff;
    position: absolute;
    top: clamp(0.125rem, -0.509rem + 2.82vw, 0.25rem);
    right: clamp(0.125rem, -0.509rem + 2.82vw, 0.25rem);
    background: #07f9e122; /* 元の色を維持 */
    border: none;
    padding: clamp(0.125rem, -0.509rem + 2.82vw, 0.25rem); /* 見た目のボタンの大きさを維持 */
    cursor: pointer;
    z-index: 1100; /* ポップアップ内の他の要素の上に配置 */
  }
  
  /* 見えないボタン判定エリア　*/
  .popup button::before {
    content: '';
    position: absolute;
    top: -20px; /* 上方向に20px広げる */
    left: -20px; /* 左方向に20px広げる */
    width: calc(100% + 60px); /* 横幅を40px広げる */
    height: calc(100% + 60px); /* 縦幅を40px広げる */
    background-color: transparent; /* 透明にする */
    cursor: pointer; /* カーソルをポインタに設定 */
    z-index: -1; /* 見た目には影響しないように配置 */
  }
 /* ここまで　画像クリック拡大　closeで閉じる */ 
}


    
    /*Closeボタン */
.popup button {
    display: block flow-root;
    color: #fff;
    position: absolute;
    top: clamp(0.188rem, -0.053rem + 0.89vw, 0.375rem);
    right: clamp(0.188rem, -0.053rem + 0.89vw, 0.375rem);
    background: #07f9e122; /* 元の色を維持 */
    border: none;
    padding: clamp(0.188rem, -0.053rem + 0.89vw, 0.375rem); /* 見た目のボタンの大きさを維持 */
    cursor: pointer;
    z-index: 1100; /* ポップアップ内の他の要素の上に配置 */
  }
  
  /* 見えないボタン判定エリア　*/
  .popup button::before {
    content: '';
    position: absolute;
    top: -20px; /* 上方向に20px広げる */
    left: -20px; /* 左方向に20px広げる */
    width: calc(100% + 60px); /* 横幅を40px広げる */
    height: calc(100% + 60px); /* 縦幅を40px広げる */
    background-color: transparent; /* 透明にする */
    cursor: pointer; /* カーソルをポインタに設定 */
    z-index: -1; /* 見た目には影響しないように配置 */
  }
 /* ここまで　画像クリック拡大　closeで閉じる */ 

.amagoi-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: clamp(0.5rem, -0.016rem + 2.12vw, 1rem);
}
.sai-gallery {
    padding-top: clamp(0.5rem, -0.016rem + 2.12vw, 1rem);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nomad-gallery {
    padding-top: clamp(0.5rem, -0.016rem + 2.12vw, 1rem);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ea-gallery {
    padding-top: clamp(0.5rem, -0.016rem + 2.12vw, 1rem);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mask-gallery {
    padding-top: clamp(0.5rem, -0.016rem + 2.12vw, 1rem);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

