/* ==========================================================================
   トップページ テストページ専用スタイル（sakaitop-test.php用）
   ========================================================================== */

/* 全体のフォントをShippori Minchoに（このCSSはsakaitop-testページにしか読み込まれないのでbodyに直接指定してOK） */
body{
  font-family:'Shippori Mincho',YakuHanMP,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝",YuMincho,serif !important;
}

.content1 {
  margin: 0 !important;
}

/* footer.php側の左端固定カテゴリリスト（#contents_bottom .productlist）。
   何らかの仕組みでインラインstyle="display:table-cell"が付与されてbaseorisho.css側の
   display:noneが上書きされ、画面左端に表示されてしまっている。!important付きの
   外部スタイルシートはインラインstyle（!important無し）より優先されるため、これで隠せる。 */
.productlist{
  display:none !important;
}

.topmainmenu{
  left: auto !important;
  right: 0 !important;
}

.topmainmenu_bg{
  background-color:transparent !important;
  box-shadow:none !important;
  right: 3%;
}

@media screen and (min-width:1500px){
  .topmainmenu_bg{
    background-color:transparent !important;
    box-shadow:none !important;
    right: 20%;
  }
}

/* 769〜1250pxの範囲だけ.topmainmenu_bg（縦書きメニュー＋ロゴ）がスライダーと被るため非表示にする。
   768px以下はbaseorisho.css側の固定ヘッダーバー表示に任せるのでこの範囲には含めない。 */
@media screen and (min-width:769px) and (max-width:1250px){
  .topmainmenu_bg{
    display:none !important;
  }
}

.toplogo {
  padding-left: 0 !important;
}

@media screen and (max-width: 768px) {

  .topmainmenu {
    height: 70px !important;
    width: 100%;
    overflow: hidden;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
  }

  .toplogo {
    padding-top: 0;
    margin: 0 10px;
    display: table-cell;
    vertical-align: middle;
  }

  .topmainmenu_bg {
    width: 100%;
    height: 100%;
    display: table;
  }

  .topimg img {
    width: 100% !important;
    padding: 0 !important;

  }

  /* baseorisho.css側の.topimg{margin-top:70px}は、SPで.topmainmenuが
     position:fixedの固定バーになる分スライダーを押し下げるための余白。
     .topmainmenu_bgの背景は既に透明にしてあるので、余白を無くしてヘッダーを
     スライダーの上に重ねる形にする。 */
  .topimg {
    margin-top: 25px !important;
  }

  .main {
    padding-top: 0 !important;
  }
}


/* ヘッダーはpages/sakaitop-test.php側に本番と同じ内容をそのまま直書きしている。
   ハンバーガーボタンだけ、PCでも常時表示にする（本番はSPのみ表示）。
   display:flexだけだと横幅いっぱいに伸びて3本線が横並びになってしまうため、
   縦積み・幅固定にしてアイコンらしい形に戻す。 */
.menubutton{
  display:flex !important;
  flex-direction:column;
  justify-content:center;
  gap:10px;
  width:30px;
  flex:none;
  cursor:pointer;
  /* position:absoluteだと基準が.topmainmenu_bg（幅279pxの細いメニュー枠）になり、
     ページ全体の右上にはならなかったため、position:fixedでブラウザ画面基準にする */
  position:fixed;
  top:20px;
  right:20px;
  z-index:1000;
}
.menubutton div{
  margin:0 0 0 auto !important;
  transition:transform .3s, opacity .3s;
}

/* メニューが開いている間、ハンバーガーの3本線を×に変形させる。
   .is-openクラスの付け外しはpages/sakaitop-test.php側のクリック処理で行っている。
   3本線はgap:10px + baseorisho.css側のheight:2pxで並んでいるので、
   上下の線を12px（10+2）分中央へ動かして重ね、45度回転させるとバツ印になる。 */
.menubutton.is-open div:nth-child(1){
  transform:translateY(12px) rotate(45deg);
}
.menubutton.is-open div:nth-child(2){
  opacity:0;
}
.menubutton.is-open div:nth-child(3){
  transform:translateY(-12px) rotate(-45deg);
}

/* topmenu-rの代わりに、ハンバーガー（right:20px, 幅30px）の左隣にアイコンを配置する */
.newHeaderIcons{
  position:fixed;
  top:25px;
  right:80px;
  display:flex;
  align-items:center;
  gap:16px;
  z-index:1000;
}
@media screen and (max-width:850px){
  .newHeaderIcons{
    top:20px;
  }
}
.headerIcon{
  display:inline-flex;
  color:#1e3d71;
  transition:opacity .3s;
}
.headerIcon:hover{
  opacity:.6;
}
.headerIcon__svg{
  /* .menubutton（ハンバーガー）の幅30pxに合わせる */
  width:30px;
  height:30px;
  display:block;
}
/* user.svgはcart.svgよりviewBoxが縦長（絵柄が箱いっぱいに近い）なため、
   同じ30pxの箱でもアカウントアイコンだけ一回り大きく見える。少しだけ縮小する。 */
.headerIcon__svg--user{
  width:26px;
  height:26px;
}

/* mainmenulist（ロゴ下のメニュー）を縦書きテキストのリストに変更。
   コンテナ側ではなくliの方にwriting-modeをかけないとFlexの主軸が崩れる点に注意。
   ※ 元の.mainmenulistクラスは外してあるので、baseorisho.css側の
   「.mainmenulist ul」等の子孫セレクタと衝突しない（!importantが不要になる）。 */
.newMainmenuList{
  display:block;
  width:auto;
  border-top:1px solid #00a6c4;
  border-bottom:1px solid #00a6c4;
  padding: 40px 0;
}
.newMainmenuList__nav{
  display:flex;
  flex-direction:row-reverse;
  justify-content:center;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
  height:205px;
}
.newMainmenuList__nav li{
  writing-mode:vertical-rl;
  text-orientation:upright;
}
.newMainmenuList__nav a{
  color:#707070;
  font-size:16px;
  font-family:'Shippori Mincho',YakuHanMP,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝",YuMincho,serif;
  font-weight: bold;
  letter-spacing:.05em;
  transition:opacity .3s;
}
.newMainmenuList__nav a:hover{
  opacity:.6;
}

/* newMainmenuList__nav（縦書きメニュー）の下に表示するアカウント/カートアイコン。
   .newHeaderIcons側と同じ.headerIcon/.headerIcon__svgを使い回して見た目を揃える */
.newMainmenuList__icons{
  display:flex;
  justify-content:center;
  gap:24px;
  margin-top:30px;
}
/* SP幅（850px以下）ではbaseorisho.css側の仕組みで.topmainmenu_bgが「固定ヘッダーバー」として
   再表示されるため、この中のアイコンが常時表示の.newHeaderIconsと重複して二重に見えてしまう。
   SPでは.newHeaderIconsだけで足りるので、こちらは隠す。 */
@media screen and (max-width:850px){
  .newMainmenuList__icons{
    display:none;
  }
}

/* baseorisho.css の .mobilemenu{top:70px; right:-225px;...} は、本番ヘッダーの高さと
   「JS側でrightをアニメーションさせてスライドイン」する前提の値。
   このテストページはヘッダー高さが違う上に、下のスクリプトでスライドではなくフェード表示に
   変えたため、rightは常に0固定・topも画面最上部（0）に上書きしておく。 */
.mobilemenu{
  top:0 !important;
  right:0 !important;
}

/* .mobilemenu（ハンバーガーで開くフルスクリーンのメニュー）の中身を新デザインに差し替え。
   .mobilemenu自体の表示・位置・スライドアニメーション（baseorisho.css + base.js）はそのまま使い、
   ここでは配下の内容だけを独自クラスで作り直す。
   .mobilemenu li / .mobilemenu ul a など既存の装飾（ドット罫線・文字色など）を確実に上書きするため、
   セレクタの頭に .mobilemenu を付けて詳細度を上げている（!important不要）。
   アカウント/カート/閉じるアイコンは.newHeaderIcons・.menubutton（どちらもfixed・z-index:1000で
   .mobilemenuより手前に出る）をそのまま使うので、パネル内には置かない。その分、内容の先頭が
   ハンバーガー・アイコンの下に隠れないよう、padding-topで余白を確保している。 */
.mobilemenu .newMobileMenu__nav{
  list-style:none;
  margin:0;
  padding:90px 20px 0;
  display:flex;
  flex-direction:column;
  gap:40px;
}
.mobilemenu .newMobileMenu__group{
  border:none;
  padding:0;
  font-size:inherit;
  color:inherit;
}
/* groupTitle（製品・サービス一覧）、ペアの2リンク、お問い合わせ単独リンクの3パターンすべてが
   .newMobileMenu__group直下のaに当たるので、ここでまとめて共通の見た目にする
   （個別クラスだけに書くと、お問い合わせのような単独リンクだけ古い.mobilemenu ul aの色が
   残ってしまう） */
.mobilemenu .newMobileMenu__nav > li > a{
  display:block;
  font-size:16px;
  color:#707070;
}
.mobilemenu .newMobileMenu__groupTitle{
  margin-bottom:12px;
}
.mobilemenu .newMobileMenu__subList{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobilemenu .newMobileMenu__subList li{
  border:none;
  padding:0;
  font-size:14px;
}
.mobilemenu .newMobileMenu__subList li a{
  color:#707070;
}
.mobilemenu .newMobileMenu__subList li a::before{
  content:"－ ";
}
.mobilemenu .newMobileMenu__group--pair{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.mobilemenu .newMobileMenu__nav a:hover{
  opacity:.6;
}

@media screen and (min-width:851px){
  .mobilemenu .newMobileMenu__nav{
    flex-direction:row-reverse;
    align-items:flex-start;
    justify-content: end;
    padding:90px 60px 20px;
    gap:75px;
  }
  .mobilemenu .newMobileMenu__group{
    display:flex;
    flex-direction:row-reverse;
    gap:30px;
  }
  .mobilemenu .newMobileMenu__nav > li > a{
    writing-mode:vertical-rl;
    text-orientation:upright;
    font-size: 20px;
    font-weight: bold;
  }
  .mobilemenu .newMobileMenu__groupTitle{
    margin-bottom:0;
  }
  .mobilemenu .newMobileMenu__subList{
    flex-direction:row-reverse;
    gap:22px;
  }
  .mobilemenu .newMobileMenu__subList li{
    writing-mode:vertical-rl;
    text-orientation:upright;
    font-size: 18px;
  }
  .mobilemenu .newMobileMenu__subList li a{
    color:#707070;
    font-weight: bold;
  }
  /* 縦書きだと文字の「－」は横棒に見えてしまうため、PCでは文字ではなくCSSで縦線を描く。
     width/heightはwriting-modeの影響を受けない物理サイズなので、そのまま縦の短い線になる。 */
  .mobilemenu .newMobileMenu__subList li a::before{
    content:"";
    display:inline-block;
    width:1px;
    height:10px;
    background-color:#4AA4C1;
    margin-bottom:6px;
  }
  .mobilemenu .newMobileMenu__group--pair{
    flex-direction:row-reverse;
    gap:35px;
  }
}

/* .othermainmenulist（検索窓など）は baseorisho.css 側で display:none がデフォルトで、
   .topmainmenu に .fixed クラスが付いた時だけ表示される仕組みだが、そのクラスを
   付けるJS（static/js/base.js）が該当箇所コメントアウトされていて、本番でも実質
   常に非表示になっている（このページ固有の問題ではない）。ここでは常に表示にする。 */
.othermainmenulist{
  display:block !important;
}
.newHideSearch{
  display:none !important;
}

/* スライダー左上のロゴ（PCのみ）。.topimgに対してposition:absoluteで重ねるため、
   .topimg側にposition:relativeを付けておく。サイズはヘッダーのデスクトップ用ロゴ
   （.toplogomark img{width:130px}、baseorisho.css）に合わせている。 */
.topimg{
  position:relative;
}
.topimgLogo{
  display:none;
}
@media screen and (min-width:769px){
  .topimgLogo{
    display:block;
    position:absolute;
    top:20px;
    left:20px;
    z-index:1000;
  }
  .topimgLogo img{
    display:block;
    width:145px !important;
  }
}

/* topimgのスライダー（.main_visual）のドットを画像内の右下に
   4枚の画像の比率がバラバラだと、スライドごとに高さが変わってドットの位置がズレるため、
   全スライドの高さを揃える（比率は元の3枚のtopimage系に合わせる） */
.main_visual{
  position:relative;
}
.main_visual picture{
  display:block;
}
.main_visual img{
  aspect-ratio:1.5/1;
  object-fit:cover;
}
/* PC用画像（mv_0X.png）は1974x1410の横長、SP用画像（mv_sp_0X.png）は668x930の縦長で、
   実際のファイルサイズの縦横比が大きく異なる。aspect-ratioが1.5/1（横長）に固定のままだと、
   SP用の縦長画像も無理やり横長にクロップされてしまい、切り替わっても見た目にほぼ差が出ない。
   <source>のブレークポイント（850px）に合わせて、SPでは画像本来の比率に切り替える。 */
@media screen and (max-width:768px){
  .main_visual img{
    aspect-ratio:auto;
  }
}
.main_visual .slick-dots{
  /* baseorisho.css の .topimg img{width:80%;padding-left:55px;} により、
     画像の右端は.main_visualの右端から20%内側にある（右パディングは無いため）。
     そこからさらに20px内側に置くことで、画像の右下に乗せる。 */
  position:absolute;
  bottom: 20px;
  left: auto;
  right: calc(20% + 20px);
  width:auto;
  text-align:right;
}
@media screen and (max-width:850px){
  .main_visual .slick-dots{
    right: 20px;
  }
}
.main_visual .slick-dots li button:before{
  width:10px;
  font-size: 10px;
  opacity:1;
  color:rgba(255,255,255,.2);
}
.main_visual .slick-dots li.slick-active button:before{
  opacity:1;
  color:#fff;
}

/* 織元から直送で本物をお届けします（FVの下） */
.introSection{
  padding:120px 20px 0;
  margin-bottom: 140px;
  text-align:center;
}
.introSection__heading{
  font-size:28px;
  color:#262626;
  margin:0 0 45px;
  font-family:'Shippori Mincho',YakuHanMP,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝",YuMincho,serif;
}
.introSection__lead p{
  font-size:18px;
  line-height:1.9;
  color:#707070;
  margin:0 0 24px;
}
.introSection__quote{
  font-size:15px;
  color:#333;
}
.introSection__row{
  display:flex;
  align-items:center;
  gap:90px;
  padding-inline: 120px;
  margin:130px auto 140px;
  text-align:left;
}
.introSection__imgWrap{
  flex:1;
}
.introSection__img{
  width:100%;
  display:block;
}
.introSection__body{
  flex:1;
}
.introSection__bodyTitle{
  font-size:24px;
  color:#262626;
  margin:0 0 46px;
  font-family:'Shippori Mincho',YakuHanMP,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝",YuMincho,serif;
}
.introSection__bodyText{
  font-size:16px;
  line-height:1.9;
  color:#707070;
  margin:0;
}
@media screen and (max-width: 850px){
  .introSection{
    padding:40px 20px 0;
    margin-bottom: 0;
    text-align:left;
  }
  .introSection__heading,
  .introSection__bodyTitle{
    margin: 0 0 20px;
    font-size:18px;
  }
  .introSection__row{
    display:block;
    margin:30px 0 0;
  }
  .introSection__lead p,
  .introSection__bodyText { 
    font-size: 14px;
  }
  .introSection__imgWrap{
    /* .introSectionの左右padding:20px分を打ち消して画面幅いっぱいに広げる */
    margin: 0 -20px 30px;
  }
}

/* 左右の余白はページ全体ではなく、セクションごとに付ける
   （全体に付けると、宇多野ギャラリーの画像のように全幅にしたい部分にも余白が乗ってしまうため） */

/* 商品カテゴリ・お知らせ・おすすめ商品（.content1配下） */
.content1{
  padding:0 20px;
}
@media screen and (min-width: 851px){
  .content1{
    padding-inline:120px;
  }
}

/* ブログ（.content3 は baseorisho.css 側で padding:0 5% 0 20% が付き左に大きな余白ができるため、
   このページの .content3.displaytable（ブログ）だけ打ち消して独自に付け直す。.content3.garally 等の他の用途には影響しない） */
@media screen and (min-width: 769px){
  .content3.displaytable{
    margin-left:0;
    padding:0;
  }
}
.content3.displaytable .blogInfoBox {
  border-top:none;
  padding:0 20px;
}
@media screen and (min-width: 851px){
  .content3.displaytable .blogInfoBox {
    padding-inline:120px;
    margin: 100px 0;
  }
}

/* 「こちらもオススメ」（.content3.garally）も同じ理由（baseorisho.css側の.content3{margin-left:auto;
   width:80%}で左に大きな余白ができる）で、.content1と同じ左右余白に揃える */
@media screen and (min-width: 769px){
  .content3.garally{
    margin-left:0;
    width:100%;
  }
}
.content3.garally{
  padding:0 20px;
}
@media screen and (min-width: 851px){
  .content3.garally{
    padding-inline:120px;
  }
}

/* バナー（お知らせの上）
   .bannerRowは.content1のpaddingの内側にあるため、背景を画面幅いっぱいに広げるために
   .bannerRowWrapperで.content1のpadding分だけ負のマージンをかけて外に広げ、
   .bannerRow側に同じ分のpaddingを付け直してバナー自体の位置は変えない
   （宇多野ギャラリーの画像と同じ考え方） */
.bannerRowWrapper{
  margin: 30px -20px 30px;
  background-color:rgba(207,218,210,.2);
}
@media screen and (min-width: 851px){
  .bannerRowWrapper{
    margin-inline:-120px;
    padding: 100px 0;
  }
}
.bannerRow{
  display:flex;
  gap:25px;
  padding:0 20px;
}
@media screen and (min-width: 851px){
  .bannerRow{
    padding-inline:120px;
  }
}
.bannerRow__item{
  display:block;
  position:relative;
  flex:1;
}
.bannerRow__img{
  width:100%;
  display:block;
}
.bannerRow__label{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  white-space:nowrap;
  color:#fff;
  font-size:25px;
  letter-spacing:.03em;
  font-family:'Shippori Mincho',YakuHanMP,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝",YuMincho,serif;
  text-shadow:0 1px 6px rgba(0,0,0,.7);
}
.bannerRow__label--small{
  font-size:21px;
}
@media screen and (max-width: 850px){
  .bannerRow{
    display:block;
  }
  .bannerRow__item{
    margin-bottom:12px;
  }
  .bannerRow__item:last-child{
    margin-bottom:0;
  }
  .bannerRow__label{
    font-size:20px;
  }
}

/* お知らせ（既存の .noticemain/.noticelist/.notice1/.notice2 とは無関係の独立したCSS） */
.newsBoard{
  display:flex;
  align-items:stretch;
  margin:100px 0;
}
.newsBoard__label{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:none;
  width:180px;
  background-color:#4AA4C1;
  color:#fff;
  font-size:18px;
  letter-spacing:.05em;
}
.newsBoard__list{
  display:flex;
  flex-direction:column;
  flex:1;
  gap:10px;
  padding-left:14px;
}
.newsBoard__item{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  padding:14px 20px;
  background-color:#cfdad2;
  color:#0f4073;
  transition:.3s;
}
.newsBoard__item:hover{
  background-color:#00a6c4;
  color:#fff;
}
.newsBoard__badge{
  flex:none;
  display:inline-flex;
  align-items:center;
  border:1px solid #0f4073;
  border-radius:30px;
  padding:2px 10px;
  font-size:11px;
  transition:.3s;
}
.newsBoard__item:hover .newsBoard__badge{
  border-color:#fff;
}
.newsBoard__text{
  flex:1;
  text-decoration:underline;
}

@media screen and (max-width: 850px){
  .newsBoard{
    display:block;
    margin:20px 0;
  }
  .newsBoard__label{
    width:100%;
    padding:14px 0;
    font-size:16px;
  }
  .newsBoard__list{
    width:100%;
    padding-left:0;
    margin-top:8px;
  }
  .newsBoard__item{
    padding:12px 16px;
  }
}

/* おすすめ商品 */
.recoBoard{
  margin:40px 0 100px;
}
.recoBoard__title{
  font-family:'Sawarabi Gothic',sans-serif;
  font-size:20px;
  color:#707070;
  margin-bottom:16px;
}
.recoBoard__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}
.recoBoard__card{
  display:block;
  border: 1px solid #707070;
  overflow:hidden;
  background:#fff;
}
.recoBoard__image{
  aspect-ratio:1/1;
  background-size:cover;
  background-position:center;
  background-color:#f5f5f5;
}
.recoBoard__body{
  padding:16px;
}
.recoBoard__name{
  display:block;
  font-family:'Sawarabi Gothic',sans-serif;
  font-size:14px;
  color:#3691AF;
  line-height:1.5;
  margin-bottom:6px;
  min-height:calc(1.5em * 2);
}
.recoBoard__price{
  font-family:Arial,Helvetica,sans-serif;
  font-size:20px;
  color:#707070;
  margin-bottom:5px;
  text-align: right;
}
.recoBoard__desc{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
  overflow:hidden;
  font-family:'Sawarabi Gothic',sans-serif;
  font-size:14px;
  color:rgba(112, 112, 112, 0.8);
  line-height:1.6;
}

@media screen and (max-width: 850px){

  .recoBoard{
    margin:40px 0;
  }
  .recoBoard__grid{
    display:flex;
    overflow-x:auto;
    gap:12px;
    padding-bottom:8px;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;
  }
  .recoBoard__card{
    flex:none;
    width:70%;
    scroll-snap-align:start;
  }
}

.utanoGalleryTop{
  display:block;
  margin-top:60px;
  padding:40px 20px;
  background-color:rgba(207, 218, 210, .2);
}
@media screen and (min-width: 851px){
  .utanoGalleryTop{
    padding: 60px 120px;
  }
}
.utanoGalleryTop__title{
  font-family:'Sawarabi Gothic',sans-serif;
  font-size:24px;
  color:#707070;
  margin-bottom:30px;
}
.utanoGalleryTop__row{
  display:flex;
  align-items:stretch;
  gap:60px;
}
.utanoGalleryTop__imgWrap{
  display:block;
  width:50%;
  flex:none;
}
.utanoGalleryTop__img{
  width:100%;
  display:block;
  aspect-ratio:540/270;
  object-fit:cover;
}
.utanoGalleryTop__text{
  flex:1;
  display:flex;
  flex-direction:column;
}
.utanoGalleryTop__textInner{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.utanoGalleryTop__text h3{
  font-family:'Sawarabi Gothic',sans-serif;
  font-size:20px;
  color:#707070;
  margin:0 0 30px;
}
.utanoGalleryTop__text p{
  font-size:16px;
  line-height:1.8;
  color:#707070;
  margin:0 0 30px;
}
.utanoGalleryTop .topProductCategoryMore a{
  width:54%;
  color: #707070;
}
/* 矢印アイコン（arrow_1.svg）はfill固定のSVGなので、背景画像の代わりにmaskで色を#707070に変更 */
.utanoGalleryTop .topProductCategoryMore{
  background:none;
  position:relative;
}
.utanoGalleryTop .topProductCategoryMore::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:7px;
  height:11px;
  transform:translateY(-50%);
  background-color:#707070;
  -webkit-mask:url('../img/common/arrow_1.svg') no-repeat center;
  -webkit-mask-size:contain;
  mask:url('../img/common/arrow_1.svg') no-repeat center;
  mask-size:contain;
}

@media screen and (max-width: 850px){
  .utanoGalleryTop{
    margin-top:40px;
  }
  .utanoGalleryTop__row{
    display:block;
  }
  .utanoGalleryTop__imgWrap{
    width:auto;
    margin:0 -20px 30px;
  }
  .utanoGalleryTop__img {
    aspect-ratio: 5 / 3;
  }
  .utanoGalleryTop .topProductCategoryMore a{
    width:100%;
  }
  .utanoGalleryTop__title {
      font-size: 20px;
  }
  .utanoGalleryTop__text h3{
    margin:0 0 17px;
  }
}
