@charset "UTF-8";


/*--------------------------------------
リセットCSS
--------------------------------------*/
*, ::before, ::after {-webkit-box-sizing: border-box; box-sizing: border-box; border-style: solid; border-width: 0;}
html { line-height: 1.15; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent;}
/* @media (min-width: 600px) {html {scroll-padding-top: 60px;}} */
body { margin: 0;}
main { display: block;}
p, table, blockquote, address, pre, iframe, form, figure, dl { margin: 0;}
h1, h2, h3, h4, h5, h6 { font-size: inherit; margin: 0;/*letter-spacing: 0.1em;text-indent: 0.1em; font-weight: inherit; */}
ul { margin: 0; padding: 0; list-style: none;}
ol {margin: 0;margin-left: 1.3em;padding: 0;}
dt { font-weight: 500;}
dd { margin-left: 0;}
hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; overflow: visible; border-top-width: 1px; margin: 0; clear: both; color: inherit;}
pre { font-family: monospace, monospace; font-size: inherit;}
address { font-style: inherit;}
a { background-color: transparent; text-decoration: none; color: inherit;}
abbr[title] { -webkit-text-decoration: underline dotted;text-decoration: underline dotted;}
code, kbd, samp { font-family: monospace, monospace; font-size: inherit;}
small { font-size: 80%;}
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline;}
sub { bottom: -0.25em;}
sup { top: -0.5em;}
svg, img, embed, object, iframe { vertical-align: bottom;}
button, input, optgroup, select, textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none; vertical-align: middle; color: inherit; font: inherit; background: transparent; padding: 0; margin: 0; border-radius: 0; text-align: inherit; text-transform: inherit;}
[type=checkbox] { -webkit-appearance: checkbox; -moz-appearance: checkbox; appearance: checkbox;}
[type=radio] { -webkit-appearance: radio; -moz-appearance: radio; appearance: radio;}
button, [type=button], [type=reset], [type=submit] { cursor: pointer;}
button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled { cursor: default;}
:-moz-focusring { outline: auto;}
select:disabled { opacity: inherit;}
option { padding: 0;}
fieldset { margin: 0; padding: 0; min-width: 0;}
legend { padding: 0;}
progress { vertical-align: baseline;}
textarea { overflow: auto;}
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { height: auto;}
[type=search] { outline-offset: -2px;}
[type=search]::-webkit-search-decoration { -webkit-appearance: none;}
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit;}
label[for] { cursor: pointer;}
details { display: block;}
summary { display: list-item;}
[contenteditable]:focus { outline: auto;}
table { border-color: inherit;}
caption { text-align: left;}
td, th { vertical-align: top; padding: 0;}
th { text-align: left; font-weight: initial;}

/*--------------------------------------
色
--------------------------------------*/
/*変数*/
:root {
  --main_color: #939DF9;
  --sub_color: #EB90E9;
  --red: #ff0055;
  --yellow: #FFFF57;
  --green: #26B45C;
  --black: #222222;
  --white: #fff;
  --filter_white: invert(100%) sepia(100%) saturate(0%) hue-rotate(137deg) brightness(106%) contrast(101%);
  --violet: #685FC8;

  --main_color1: #A49A76;
  --main_color2: #6B6037;
  --main_color3: #F3E6AB;
  --white_color1:#F4F5F7;
  --black_color1:#222;
  --black_color2:#2C2D2E;
  --black_color3:#30343E;
  --blue_color1:#2C4BF4;
  --blue_color2:#30416A;
  --yellow_color1:#FFFF57;
  --gray_color1:#383D4A;

  --line_color1:#26B45C;
  --mv_padding_value_pc1: clamp(2.0rem, 3.0vw, 2.8rem);
  --mv_padding_value_sp1: clamp(1.2rem, 6.0vw, 2.1rem);

}

.bg_color_black{background: var(--black_color2);}
.bg_color_blue{background: var(--blue_color1);}
.bg_color_pink{background: var(--sub_color);}
.bg_color_grad{background: linear-gradient(0deg, #EAA6D5 0%, #C1B3F1 50%, #58BBF6 100%);position: relative;z-index: 0;}
.txt_color_black{color: var(--black);}
.txt_color_white{color: var(--white);}
.txt_color_violet{color: var(--violet);}




/*--------------------------------------
フォント・その他
--------------------------------------*/
:root {
	--font-serif: "Times New Roman", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "MS PMincho", serif;
	--font-sans: "Jost", "Helvetica Neue", Helvetica, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--font-title: "Cormorant Garamond", serif;
}


/*--------------------------------------
サイト共通定義
--------------------------------------*/
html {
  /* font-size: 62.5%; */
  /* scroll-behavior: smooth; */
}
body {
  line-height: 1.6;
  margin: 0 auto;
  min-height: 800px;
  min-width: 320px;
  width: 100%;
  color: var(--white_color1);
  background: var(--black_color1);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  overflow-x: hidden;
  word-break: break-word;
}
@media (min-width: 600px) {
  body { font-size: 14px; }
}
body, input[type="submit"] , input[type="reset"] , input[type="button"] {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
body.open {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
body.open .nav_list {overflow: scroll;}
body::-webkit-scrollbar {width: 10px;}
body::-webkit-scrollbar-track {background-color: var(--white);}
body::-webkit-scrollbar-thumb {background-color: #454569;border-radius: 100px;}
::-moz-selection {background: var(--main_color);color: var(--white);}
::selection {background: var(--main_color);color: var(--white);}
ul::-webkit-scrollbar {display: none;}
img, video {width: 100%;height: auto;}

/*--------------------------------------
大エリア設定
--------------------------------------*/
.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.inner {
  max-width: 1040px;
  margin: auto;
}

/* セクション */
main.index .sec { padding: 60px 20px; }
main.index .sec.section_option,/* オプションとコラム */
main.index .sec.section_column{
  padding: 100px 20px 40px;
}
@media (min-width: 600px) {
  main.index .sec { padding: 80px 20px; }
  main.index .sec.section_option,/* オプションとコラム */
  main.index .sec.section_column{
    padding: 120px 20px 60px;
  }
}


/*--------------------------------------
共通のlink
--------------------------------------*/
a:link , a:visited , input { transition: all .4s; }
a:hover { opacity: .6; }
@media (min-width: 600px) {
  a img { transition: all .4s; }
  a img:hover { opacity: .6; }
}

/* LINEバナー */
.bnr_line {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  display: block;
}
.bnr_line img {
  width: 100%;
  height: auto;
}

/*--------------------------------------
共通のスライダー
--------------------------------------*/
/* 左右矢印　*/
.swiper-button-lock{ display: block; }
.swiper-navigation-icon{ display: none; }
.swiper-button-prev:after,
.swiper-button-next:after{
  content: '';
  position: absolute;
  top: -40px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin: auto;
  border: 0;
  border-top: solid 3.5px var(--yellow);
  border-right: solid 3.5px var(--yellow);
}
.swiper-button-prev:after {
  transform: rotate(-135deg);
  left: -30px;
}
.swiper-button-next:after {
  transform: rotate(45deg);
  right: -30px;
}
@media (min-width: 600px) {
  .section_productions .swiper-button-lock{
      display: none;
  }
  .section_design .swiper-button-prev,
  .section_design .swiper-button-next{
    display: none;
  }
}
/* ナビゲーション */
.swiper-pagination-horizontal { bottom: 20px; }
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid var(--white);
  opacity: 1;
}
.swiper-pagination-bullet-active { background: var(--white); }
.section_productions .swiper-pagination-bullet{border: 1px solid var(--black);}
.section_productions .swiper-pagination-bullet-active{background: var(--black);}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
}
.swiper-pagination { z-index: 1; }

/* 価格表ナビゲーション */
/* .section_price .swiper { padding-bottom: 40px; }
.section_price .swiper-pagination-bullet { border: 1px solid var(--main_color); }
.section_price .swiper-pagination-bullet,
.section_alcohol .swiper-pagination-bullet {
  margin: 0 4px !important;
}
.section_price .swiper-pagination-bullet-active { background: var(--main_color); } */


/* 現在表示されているページネーションのスタイル */
.meno-pagination.splide__pagination .is-active {
	background: var(--yellow_color1);
	opacity: 1;
}

/* ページネーションの位置 */
.meno-pagination.splide__pagination {
	bottom: 1.5em;
	padding-top: 40px;
}
@media (min-width: 600px) {
  .meno-pagination.splide__pagination {
      padding-top: 56px;
    }
}
/* ページネーション間の余白 */
.meno-pagination.splide__pagination li {
	margin-left: 5px;
	margin-right: 5px;
}
.meno-pagination.splide__pagination li button {
	background-color: var(--gray_color1);
	height: 16px;
	width: 16px;
	border-radius: 40px;
	border: none;
	transition: 0.5s all;
	cursor: pointer;
}

/* スライド矢印 */
.splide__arrows {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 0 12.0vw;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .splide__arrows {
    top: 40%;
    padding: 0 80px;
    max-width: 560px;
  }
}
.splide__arrows button img {
  filter: var(--filter_white);
  width: 24px;
  height: auto;
}



/*--------------------------------------
表示・非表示
--------------------------------------*/
.sp { display: block!important;}
@media (min-width: 600px) {
  .sp { display: none!important;}
}
.pc { display: none!important;}
@media (min-width: 600px) {
  .pc { display: block!important;}
}

.display_pc { display: none!important; }
.display_sp { display: block!important; }
@media screen and (min-width: 600px){
	.display_pc { display: block!important; }
	.display_sp { display: none!important; }
}

/*--------------------------------------
マージン
--------------------------------------*/
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_40{margin-bottom: 40px;}
.mb_60{margin-bottom: 60px;}
.mb_120{margin-bottom: 120px;}

.mb_responsive{ margin-bottom: 40px; }
@media (min-width: 600px) {
  .mb_responsive{ margin-bottom: 60px; }
}

/*--------------------------------------
パディング
--------------------------------------*/
.pt_60{padding-top: 60px;}

/*--------------------------------------
2カラム
--------------------------------------*/
.row section:first-child{
  margin-bottom: 60px;
}
@media screen and (min-width: 600px){
  .row section:first-child{ margin-bottom: 100px; }
}
@media screen and (min-width: 1080px){
	.row{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
  }
  .row section{
    width: calc((100% - 20px) / 2);
    margin-bottom: 0;
  }
  .row section:first-child{ margin-bottom: 0; }
}

/*--------------------------------------
共通のボックス
--------------------------------------*/
/* 白いラインのボックス */
.liner_white{
  border: 2px solid var(--white_color1);
  padding: 0.8rem;
  position: relative;
}
.liner_white--white_color1.bg_violet{/* 濃い紫の背景色 */
  background: #585E91;
}
.liner_white.bg_pink{/* ピンクの背景色 */ background: var(--sub_color); }
.liner_white.bg_white{/* 白の背景色 */
  background: var(--white_color1);
  color: var(--black_color1);
}
@media (min-width: 1080px) {
  .liner_white{
    padding: 1.6rem;
    margin-bottom: 0;
  }
  .alcohol_outer .liner_white{ padding: 20px; }
}

.box_white{/* 半透明の白いボックス */
  background: rgb(255 255 255 / 0.8);
  border-radius: 20px;
  padding: 30px 20px;
}
@media (min-width: 600px) {
  .box_white{
    padding: 50px 60px;
  }
}


.box_black{
  background: rgb(34 34 34 / 0.8);
  border-radius: 20px;
  padding: 30px 20px;
}
@media (min-width: 600px) {
  .box_black{ padding: 50px 60px; }
}
.box_black_border{
  background: rgb(34 34 34 / 0.8);
  padding: 30px 20px;
  border: 1px solid var(--gray_color1);
}
@media (min-width: 600px) {
  .box_black_border{ padding: 50px 60px; }
}

/* 黄色ラインのボックス */
.liner_yellow{
  border: 2px solid var(--yellow_color1);
  border-radius: 20px;
  background: var(--black_color1);
  padding: 16px;
  position: relative;
}
@media (min-width: 1080px) {
  .liner_yellow{
    padding: 50px 60px;
    margin-bottom: 0;
  }
  .alcohol_outer .liner_yellow{ padding: 20px; }
}

/*--------------------------------------
テキスト系
--------------------------------------*/
/*フォントサイズ*/
.fs_6{font-size: 0.6em!important;}
.fs_7{font-size: 0.7em!important;}
.fs_8{font-size: 0.8em!important;}
.fs_12{font-size: 1.2em!important;}
.fs_16{font-size: 1.6em!important;}
.fs_20{font-size: 2em!important;}

.bold{font-weight: bold;}

/* テキストアライン */
.left{text-align: left;}
.center{text-align: center;}

/*--------------------------------------
タイトル & 見出し
--------------------------------------*/
h2,h3{
  font-weight: 500;
}
h2.reason{
  margin: 0 0 60px 10px;
  font-size: 1.6em;
  font-weight: bold;
}
@media (min-width: 600px) {
  h2.reason{
    margin: 0 0 80px 10px;
    text-align: center;
    font-size: 2em;
  }
}
h2.title {
  font-size: 32px;
  text-align: left;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: bold;
}
main.terms h2.title {
  font-size: 28px;
  font-weight: bold;
}
@media (min-width: 600px) {
  h2.title,
  main.terms h2.title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}

.title_contents {
  font-size: 2.8rem;
  text-align: center;
  position: relative;
  padding: 40px 0;
  z-index: 10;
}
.title_contents p {
  line-height: 1.0;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  font-family: var(--font-serif);
  position: relative;
  z-index: 10;
}
.title_contents p span {
  font-size: 0.9rem;
  font-family: var(--font-sans);
  letter-spacing: 3px;
}
@media (min-width: 600px) {
  .title_contents { font-size: 4.0rem; }
}

/* スライドテキスト */
.title_unit .sub_txt {
  font-size: 1.0rem;
  letter-spacing: 2px;
  padding: 8px 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 960px) {
  .title_unit .sub_txt { font-size: clamp(1.0rem, 1.5vw, 1.4rem); }
}
.title_unit .lead_txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: "Noto Sans JP", sans-serif;
}
.title_unit .lead_txt .sliding_txt {
  display: inline-block;
  position: relative;
}
.title_unit .lead_txt .sliding_txt.slide { animation: clip-text 0.5s ease-in-out forwards; }
.title_unit .lead_txt .sliding_txt:before {
  content: "";
  display: block;
  background: var(--white_color1);
  position: absolute;
  inset: 0;
}
.title_unit .lead_txt .sliding_txt span {
  color: var(--blue_color1);
  padding: 8px;
  font-size: clamp(1.5rem, 4.0vw, 2.6rem);
  letter-spacing: 2px;
  /* font-family: "Noto Sans JP", sans-serif; */
}
.taste .title_unit .lead_txt .sliding_txt span {
  font-size: clamp(1.3rem, 4.0vw, 2.6rem);
}
.title_unit .lead_txt .sliding_txt.slide span {
  animation: clip-text 0.5s ease-in-out forwards;
  animation-delay: 0.3s;
}
@media (min-width: 600px) {
  .title_unit .lead_txt .sliding_txt span { font-size: clamp( 1.5rem, 4.0vw, 3.2rem); }
}
@keyframes clip-text {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

/* 下層ページの共通タイトル1 */
.secondary_title { margin-bottom: 24px; }
@media (min-width: 600px) {
  .secondary_title { margin-bottom: 40px; }
}
h3.secondary_title  {
  color: var(--main_color);
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1;
}
h3.secondary_title span {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.4em;
  color: var(--gray);
  letter-spacing: 0.1em;
}
/* 下層ページの共通タイトル2 */
h4.tertiary_title  {
  margin-bottom: 24px;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
}

/*--------------------------------------
共通のボタン
--------------------------------------*/
.btn_layer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
}
.btn, .btn_liner_black, .btn_liner_white {
  display: block;
  width: 100%;
  max-width: 280px;
  padding: 16px;
  color: var(--blue_color2);
  text-align: center;
  overflow: hidden;
  position: relative;
  margin-inline: auto;
  transition: 0.2s ease-in-out;
  font-size: 1.0rem;
}
.btn { z-index: 1; }
.btn:hover{ color: var(--white_color1); }
@media (min-width: 600px) {
  .btn::after {
    background: var(--black_color1);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 140px;
    transform: skewY(-10deg) scale(1, 0);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .btn:hover::after {
    transform: skewY(-10deg) scale(1, 1);
  }
  .btn:hover{
    opacity: 1;
    color: var(--white_color1);
  }
}
.btn.bg_green {/* 緑色の背景色 */
  background: var(--green);
  color: var(--white_color1)!important;
}
.btn.bg_green:hover{
  background: var(--black_color1);
  opacity: 1;
}
.btn.bg_yellow {/* 黄色の背景色 */
  background: var(--yellow_color1);
}
.btn.bg_yellow:hover{
  background: var(--black_color1);
  opacity: 1;
}
.modaal-content-container .btn.bg_yellow:hover{
  background: var(--yellow_color1);
  opacity: 1;
}
.btn.bg_violet {/* 紫色の背景色 */
  background: var(--violet);
  color: var(--white_color1);
}
.btn.bg_violet:hover{
  background: var(--black_color1);
  opacity: 1;
}

/* 線のボタン */
.btn_liner_black {
  border: 2px solid var(--black_color1);
  color: var(--black_color1);
}
.btn_liner_white {
  border: 2px solid var(--white_color1);
  color: var(--white_color1);
  /* background: var(--sub_color); */
}
.btn,.btn_liner_black:hover,.btn_liner_white:hover{
  opacity: 1;
  transform: translate(0, -2px);
}
@media (min-width: 600px) {
  .btn,.btn_liner_black,.btn_liner_white {
    max-width: 480px;
    padding: 24px;
    font-size: 1.1rem;
  }
}

/* LINE用ボタン */
.btn_line {
  display: block;
  width: 100%;
  max-width: 480px;
  min-width: 320px;
  padding: 16px;
  color: var(--white_color1);
  text-align: center;
  overflow: hidden;
  position: relative;
  margin-inline: auto;
  transition: 0.2s ease-in-out;
  background: var(--line_color1)
}
.btn_line p {
  font-size: 1.0rem;
  line-height: 1.4;
  letter-spacing: 2px;
}
.btn_line p span {
  font-size: 1.8rem;
  border-bottom: 4px solid var(--yellow_color1);
  display: inline-block;
  padding: 0 8px;
}

/*--------------------------------------
共通のtable
--------------------------------------*/
table {
  border-collapse: collapse;
  width: 100%;
}
table th , table td {
  padding: 12px;
  vertical-align: middle;
  line-height: 1.4;
}
@media (min-width: 600px) {
  table th { padding: 20px 15px; }
  table td { padding: 10px 15px; }
}
@media (min-width: 940px) {
  table{
    overflow-x: auto;
    display: table;
  }
}
/* 料金表 */
.table-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
/* 左側の固定列 */
.fixed-column {
  flex-shrink: 0;
  background: linear-gradient(0deg, #f4f0fc 0%, #ebf1fd 100%);
  width: 40px;
}
.fixed-column tr:first-child th{ height: 42px; }
.fixed-column table td{
  padding: 10px 0;
  height: 56px;
}
@media (min-width: 600px) {
  .fixed-column {
    background: linear-gradient(0deg, #f7effa 0%, #f1f0fc 100%);
    width: 100px;
  }
  .fixed-column tr:first-child th{ height: 60px; }
  .fixed-column table td{
    height: 60px;
    padding: 10px;
  }
}
/* 右側のスクロール部分 */
.scrollable-table {
  flex-grow: 1;
  overflow-x: auto;
}
.scrollable-table :is(th, td) { width: calc(100% / 8); }

/* スクロールバーの設定 */
.table_scroll_wrap .mCSB_scrollTools { height: 10px; }
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #454569;
  border-radius: 10px;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: -2px auto;
  background: #454569;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail { height: 0; }
.mCSB_scrollTools.mCSB_scrollTools_horizontal { height: 10px; }
.mCSB_scrollTools .mCSB_draggerContainer{
  background: #C0C2D4;
  border: 4px solid #f3f0fc;
}
.table-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap; /* テーブルが折り返されないようにする */
}
.table_01 {
  table-layout: fixed;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.table_01 th , .table_01 td { text-align: center; }
.table_01 th {
  background: #43425ccc;
  color: var(--white);
  border-right: solid 1px #B6B5D6;
}
.table_01 td{ border-right: solid 1px #B6B5D6; }
.table_01 td:last-child{ border-right: 0; }
@media (min-width: 961px) {
  .table-wrap::after { display: none; }
}

/* op */
.table_op th:last-child {
  border-right: 0;
  text-align: center;
  padding: 15px;
  background: var(--black);
}
.table_op td,.table_op th{
  width: 50%;
  border-top: solid 1px var(--gray_color1);
}
.table_op td{ text-align: center; }
.table_op th{
  background: #43425ccc;
  color: var(--white_color1);
}

/* 縦 */
table.table_02 {
  border-spacing: 0;
  width: 100%;
}
.table_02 th {
  width: 35%;
  background: #303440cc;
  color: var(--white);
  border-bottom: solid 1px var(--gray_color1);
}
.table_02 td { border-bottom: solid 1px var(--gray_color1); }

/*--------------------------------------
共通のモーダル（テンプレート & 制作実績）
--------------------------------------*/
.modal_detail {/* モーダルの内容を非表示にしておく */
  display: none;
}
.modaal-wrapper .modaal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: none;
  box-shadow: none;
}
.modaal-close:after, .modaal-close:before {
  top: 9px;
  left: 18px;
  width: 2px;
  background: var(--white_color1);
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: var(--yellow_color1);
}
.modaal-container {
  width: min(100%, 800px);
  background: var(--blue_color2);
  color: var(--white_color1);
}
.modaal-container img {
  width: 100%;
  max-width: 100% !important;
  height: auto !important;
}
.modaal-container img.img_bottle{
  width: 20%;
  display: block;
  margin: 16px auto;
}
/* .modaal-content-container { padding: 20px 20px 30px; } */
.modaal-content-container { padding: 2.4rem 1.2rem; }
/* .modaal-content-container .thum{ margin-bottom: 20px; } */
/* .modaal-content-container .thum.modaal_productions{ margin-top: 40px; } */
.modaal-content-container h3 {
  margin: 4px 0 16px;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.2;
  font-weight: bold;
}
.modaal-content-container .text {
  font-size: clamp(12px, 2vw, 14px);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
.modaal-content-container .btn { margin-top: 16px; }
.modaal-content-container .btn::after { background: var(--blue_color1); }
.modaal-container .sample_bottle_img:has(> :nth-child(1):last-child)>div {
  display: block;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 600px) {
  .modaal-container img.img_bottle{ width: 40%; }
  .modaal-wrapper .modaal-close {
    top: 10px;
    right: 10px;
  }
  .modaal-content-container { padding: 4.0rem 2.4rem; }
  .modaal-container .sample_bottle_img{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
  }
  .modaal-container .sample_bottle_img>div:first-child{
    width: 65%;
    margin-bottom: 0;
  }
  .modaal-container .sample_bottle_img>div:last-child{ width: 35%; }
}

/*--------------------------------------
ページネーション
--------------------------------------*/
.page_list {
  margin-top: 20px;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.page_list li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
}
.page_list li.active {
  background: var(--blue_color1);
  border-radius: 50px;
  color: var(--white_color1);
}
.page_list li.arrow { border: none; }
.page_list li.disabled.arrow { opacity: 0; }
.page_list li.arrow img {
  width: 8px;
  height: auto;
  vertical-align: middle;
  filter: var(--filter_white);
}
.page_list li.arrow.prev img { transform: rotate(180deg); }
.page_list li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-items: center;
}
@media (min-width: 600px) {
  .page_list { margin-top: 64px; }
}

/*--------------------------------------
ローディングアニメーション
--------------------------------------*/
/* #loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fafafa;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.loader {
  width: 60px;
  aspect-ratio: 3;
  --dot: no-repeat radial-gradient(circle closest-side,var(--main_color2) 90%,#0000);
  background: 
    var(--dot) 0%   50%,
    var(--dot) 50%  50%,
    var(--dot) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: loading-dot 1s infinite linear;
}
@keyframes loading-dot {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
} */


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

ヘッダー

--------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background: transparent;
}
header h1 img {
  width: 72px;
  padding: 2px 0 6px 6px;
}
@media (min-width: 600px) {
  header h1 img {
    width: 80px;
    padding: 0 0 4px 4px;
  }
}
header .header_inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 10px ;
  display: grid;
  grid-template-columns: minmax(auto, 96px) auto;
}
header .header_inner .nav_contact {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}

/* PCナビゲーション */
header :is(.pc_nav, .btn) { display: none }
header .pc_nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
header .pc_nav ul li a {
  color: var(--white_color1);
  font-size: 1.0rem;
  letter-spacing: 2px;
  text-shadow: 0 0 1em var(--black_color1), 0 0 0.2em var(--black_color1);
}
/* PCお問い合わせボタン */
header .btn {
  max-width: 180px;
  width: 100%;
  margin: 0;
  background: var(--yellow_color1);
  color: var(--black_color1);
}
header .btn:after { background: var(--blue_color1); }
@media (min-width: 1080px) {
  header {
    display: block;
    transition: all 0.4s ease-out;
  }
  header.active { background: var(--black_color1); }
  header .pc_nav,
  header .btn {
    display: block;
  }
  .header_nav { display: none; }
}

/* ハンバーガーメニュー */
.header_nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
.header_nav .nav_list {
  position: fixed;
  -webkit-overflow-scrolling: auto;
  width: 80%;
  height: 410px;
  top: 0;
  right: 0;
  border-radius: 0 0 0 30px;
  transition: all 0.6s;
  /* padding: 100px 0; */
  gap: 20px;
  align-content: center;
  visibility: hidden;
  opacity: 0;
  overflow-y: scroll;
  scrollbar-width: none;
  text-align: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.header_nav .nav_list::-webkit-scrollbar { display:none; }
.header_nav .nav_list .nav_box {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  padding: 0 20px;
}
.header_nav .menu-btn { display: none; }
.header_nav .menu-btn:checked ~ .nav_list {
  visibility: visible;
  opacity: 1;
  background: var(--black_color1);
}
@media (min-width: 600px) {
  .header_nav .nav_list {
    width: 290px;
    height: 420px;
  }
}

/* メニューフェードイン */
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(even) {
  transform: translateX(150%);
  animation-name: fadeInMenuEven;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(odd) {
  transform: translateX(-150%);
  animation-name: fadeInMenuOdd;
}
/* .header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(1) {
  animation-delay: .05s;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(2) {
  animation-delay: .1s;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(3) {
  animation-delay: .15s;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(4) {
  animation-delay: .2s;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(5) {
  animation-delay: .25s;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(6) {
  animation-delay: .3s;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(7) {
  animation-delay: .35s;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(8) {
  animation-delay: .4s;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(9) {
  animation-delay: .45s;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(10) {
  animation-delay: .5s;
}
.header_nav .menu-btn:checked ~ .nav_list .nav_menu li:nth-of-type(11) {
  animation-delay: .55s;
} */
@keyframes fadeInMenuEven {
  0% {
      opacity: 0;
      transform: translateX(100%);
  }
  100% {
      opacity: 1;
      transform: translateX(0%);
  }
}
@keyframes fadeInMenuOdd {
  0% {
      opacity: 0;
      transform: translateX(-100%);
  }
  100% {
      opacity: 1;
      transform: translateX(0%);
  }
}
.header_nav .nav_list .nav_menu li a {
  text-decoration: none;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1;
  padding: 10px 0;
  color: var(--white_color1);
}
.header_nav .nav_list .nav_menu li a:hover {
  color: var(--main_color);
  opacity: 1;
}
.header_nav .nav_list .nav_menu li a.btn{ justify-content: center; }
.header_nav .nav_list .nav_menu li a:hover.btn{ color: var(--white_color1); }

/* 3本線 */
.header_nav .menu-btn:checked ~ .menu-icon .navicon {
  transform: rotateY(-360deg);
  background: none;
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.header_nav .menu-btn:checked ~ .menu-icon .navicon:before {
  top: 0;
  right: 0;
  transform: rotate(-135deg);
  background: var(--white_color1);
}
.header_nav .menu-btn:checked ~ .menu-icon .navicon:after {
  bottom: 0;
  right: 0;
  transform: rotate(135deg);
  background: var(--white_color1);
}
.header_nav .menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 96px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 100;
  position: relative;
}
.header_nav .menu-icon .navicon {
  display: block;
  height: 3px;
  width: 30px;
  position: relative;
  /* background: none;  */  /* 中央の線を非表示 */
  background: var(--white_color1);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.header_nav .menu-icon .navicon:before,
.header_nav .menu-icon .navicon:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  position: absolute;
  background: var(--white_color1);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.header_nav .menu-icon .navicon:before {
  top: 8px; /* 上の線の位置 */
}
.header_nav .menu-icon .navicon:after {
  bottom: 8px; /* 下の線の位置 */
}

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

メイン

--------------------------------------*/
/* メインビジュアル */
main .mainvisual {
  min-height: 880px;
  height: 85vh;
  position: relative;
  /* aspect-ratio: 375 / 638; */
  /* aspect-ratio: 1 / 2.4; */
}
main .mainvisual picture img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
main .mainvisual picture img.capseal_mv{
  position: absolute;
  bottom: -3px;
  left: -3px;
  z-index: 1;
  width: 60%;
}
main .mainvisual picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  /* max-width: 1200px; */
}
@media (min-width: 600px) {
  main .mainvisual {
    width: 100%;
    min-height: 960px;
    height: 95vh;
    aspect-ratio: 1 / 0.6 ;
  }
  main .mainvisual picture img { object-position: center center; }
}

main .mainvisual .mv_sp { display: block!important; }
main .mainvisual .mv_pc { display: none!important; }
@media (min-width: 600px) {
  main .mainvisual .mv_sp { display: none!important; }
  main .mainvisual .mv_pc { display: block!important; }
}

/* メインビジュアル - 見出し上部 */
main .mainvisual .txt_top {
  position: absolute;
  top: 112px;
  right: 0;
  left: 0;
  margin-inline: auto;
}
main .mainvisual .txt_top_lead p {
  text-align: center;
  letter-spacing: 4px;
  font-size: var(--mv_padding_value_sp1);
  font-family: var(--font-sans);
  font-weight: 600;
  text-shadow: 0 0 1em var(--black_color1), 0 0 0.2em var(--black_color1);
}
main .mainvisual .txt_top_lead p span { font-size: clamp(1.8rem, 8.0vw, 3.2rem); }

/* メインビジュアル - 見出し中央部 */
main .mainvisual .txt_middle {
  width: 100%;
  position: absolute;
  left: 0;
  padding: 0 4.0vw;
  top: 42%;
  transform: translateY(-50%);
}
main .mainvisual .txt_middle :is(.txt_postage, .txt_shortshipping) { font-family: var(--font-serif); }
main .mainvisual .txt_middle .txt_postage {
  display: inline-block;
  font-size: 2.4rem;
  color: var(--white_color1);
  background: var(--blue_color1);
  padding: 12px 10px 8px;
  line-height: 1.0;
}
main .mainvisual .txt_middle .txt_shortshipping {
  padding-top: 8px;
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--yellow_color1);
  line-height: 1.2;
  text-shadow: 0 0 1em var(--black_color1), 0 0 0.2em var(--black_color1);
}
main .mainvisual .txt_middle .txt_shortshipping span { display: block; }

/* メインビジュアル - 見出し下部 */
main .mainvisual .txt_bottom {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 240px;
  right: 0;
  left: 0;
  margin-inline: auto;
  padding: 0 var(--mv_padding_value_sp1);
  display: flex;
}
main .mainvisual .txt_bottom .inner {
  display: flex;
  justify-content: center;
}
main .mainvisual .txt_bottom_lead {
  border: 2px solid var(--white_color1);
  border-radius: 16px;
  padding: 24px;
  background: var(--black_color1);
  position: relative;
}
main .mainvisual .txt_bottom .txt_bottom_lead {
  min-width: 360px;
  padding: 1.2rem 1.6rem 1.6rem;
  display: inline-block;
}
main .mainvisual .txt_bottom_lead .btn_order {
  position: absolute;
  bottom: -104px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
main .mainvisual .txt_bottom_lead p {
  text-align: center;
  letter-spacing: 2px;
  font-size: 1.2rem;
  line-height: 1.0;
}
main .mainvisual .txt_bottom_lead p.price {
  color: var(--yellow_color1);
  font-size: 1.6rem;
}
main .mainvisual .txt_bottom_lead p span { font-size: 2.1rem; }
main .mainvisual .txt_bottom_lead p.price span {
  /* font-size: 4.0rem; */
  font-size: clamp(4.0rem, 7.5vw, 5.6rem);
  font-family: var(--font-sans);
}

@media (min-width: 600px) {
  main .mainvisual .txt_middle .inner,
    main .mainvisual .txt_bottom .inner {
    max-width: 1280px;
    padding: 0 1.2rem;
  }
  main .mainvisual .txt_top_lead { margin-bottom: 24px; }
  main .mainvisual .txt_top_lead p {
    display: inline-block;
    margin-inline: auto;
    text-align: left;
    font-size: var(--mv_padding_value_pc1);
  }
  /* main .mainvisual .txt_top_lead p span { font-size: clamp(3.2rem, 5.5vw, 4.8rem); } */
  main .mainvisual .txt_top_lead p span { font-size: clamp(3.2rem, 7.5vw, 5.6rem); }
  main .mainvisual .txt_middle { top: 45%; }
  main .mainvisual .txt_middle .txt_shortshipping { font-size: 3.6rem; }
  main .mainvisual .txt_middle .txt_shortshipping span { display: inline-block; }

  main .mainvisual .txt_bottom .inner { display: block; }
  main .mainvisual .txt_bottom_lead {
    margin-top: 24px;
    padding: 1.4rem 200px 1.4rem 1.4rem;
    display: inline-block;
  }
  main .mainvisual .txt_bottom .txt_bottom_lead {
    width: auto;
    display: inline-block;
    margin-inline: auto;
  }
  main .mainvisual .txt_bottom_lead .btn_order {
    top: -18px;
    bottom: 0;
    left: initial;
    right: 12px;
    justify-content: flex-end;
  }
}

.btn_order{
  z-index: 10;
  transition: all 0.4s;
}
.btn_order a {
  border: 4px solid var(--white_color1);
  background: var(--line_color1);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  z-index: 1;
  text-align: center;
  color: var(--white_color1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px 10px;
  font-size: 1.0rem;
  line-height: 1.1;
  letter-spacing: 2px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
}
.btn_order a:hover{
  transform: scale(1.1);
  opacity: 1;
}
.btn_order a .txt_l { font-size: 2.2rem; }
.btn_order a img { width: 21px; }
.btn_order a img:hover { opacity: 1; }
@media (min-width: 600px) {
  .btn_order{
    bottom: 20px;
    right: 20px;
  }
  .btn_order a{
    width: 180px;
    height: 180px;
    padding: 18px 10px 10px;
    font-size: 1.6rem;
  }
  .btn_order a .txt_l{ font-size: 3.2rem; }
  .btn_order a img{ width: 36px; }
}

/* スクロールダウン */
/* .scroll_down {
  position  : absolute;
  font-size : 13px;
  writing-mode : vertical-rl;
  bottom : 100px;
  right : 10px;
  z-index: 10;
}
.scroll_down::after {
  content : '';
  display : inline-block;
  position : absolute;
  background-color: var(--white);
  right : 50%;
  bottom : -115px;
  transform : translateX(-50%);
  width : 1px;
  height : 100px;
  animation: scroll_down 1.5s infinite;
} */
/* @keyframes scroll_down {
  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%;
  }
} */

/* ---------- トップページ 料金 ---------- */
/* .section_price{
  color: var(--black);
}
.section_price .price_outer{
  margin: 0 auto 20px;
}
.section_price .price_outer>div{
  text-align: center;
}
.section_price .price_outer .txt_bg_violet{
  background: var(--violet);
  color: var(--white);
  width: 100%;
  border-radius: 50px 0;
  padding: 4px;
  letter-spacing: .1em;
}
.section_price .price_outer .price_inner{
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.section_price .price_outer .free_shipping{
  font-size: 1.6em;
  width: 80%;
  margin: 0 auto 20px;
}
.section_price .price_outer img.txt_minimum_amount{
  width: 90%;
}
.section_price .price_op_img{
  display: inline-block;
  margin-bottom: 40px;
}
.section_price .price_op_img img{
  width: 75%;
  display: block;
}
.section_price .price_op_img img:nth-of-type(2),
.section_price .price_op_img img:nth-of-type(3){
  width: 90%; 
}
.section_price .price_op_img img:nth-child(even){
  margin-left: auto;
}
.section_price .section_wrap {
  padding: 30px 20px;
}
@media (min-width: 600px) {
  .section_price .section_wrap{
    padding: 50px 60px;
  }
  .section_price .price_outer{
    margin: 0 auto 40px;
  }
  .section_price .price_outer{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .section_price .price_outer>div{
    width: calc((100% - 20px) / 2);
    text-align: center;
  }
  .section_price .price_outer>div:first-child {
    width: 40%;
    text-align: right;
  }
  .section_price .price_outer>div:first-child img {
    width: 90%;
  }
  .section_price .price_outer>div:last-child {
    width: 50%;
  }
  .section_price .price_outer .free_shipping{
    width: 100%;
  }
  .section_price .price_outer img.txt_minimum_amount{
    width: 80%;
    max-width: 260px;
  }
  .section_price .price_outer .price_inner{
    width: 90%;
    margin-bottom: 0;
  }
  .section_price .price_op_img{
    display: none;
  }
}
@media (min-width: 860px) {
  .section_price .price_outer>div:first-child img {
    width: 70%;
  }
} */

/* ---------- トップページ 料金 ---------- */
.section_price { color: var(--white_color1); }
.section_price .section_wrap .inner {
  max-width: 1580px;
  padding: 0 1.2rem;
}
.title_contents.title_price {
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--yellow_color1);
  text-align: center;
  font-family: var(--font-serif);
  border-top: 1px solid var(--yellow_color1);
  border-bottom: 1px solid var(--yellow_color1);
  padding: 12px 0;
}
.title_contents.title_price span { font-size: 2.4rem; }

@media (min-width: 600px) {
  .title_contents.title_price {
    font-size: 2.0rem;
    padding: 20px 0;
  }
  .title_contents.title_price span { font-size: 3.2rem; }
}
.section_price .price_outer{
  margin-inline: auto;
  margin-top: -120px;
  padding: 32px 16px;
}
@media (min-width: 600px) {
.section_price .price_outer{
    margin-top: -120px;
    padding: 64px 32px;
  }
}

/* 料金表 */
.group_price ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding-top: 24px;
}
.group_price ul li {
  background: var(--blue_color2);
  /* border-radius: 16px; */
}
.group_price ul li .category_outer {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
  padding: 8px;
}
@media (min-width: 600px) {
  .group_price ul { grid-template-columns: repeat(3, 1fr); }
  .group_price ul li .category_outer { padding: 12px; }
}
@media (min-width: 800px) {
  .group_price ul { grid-template-columns: repeat(4, 1fr); }
  .group_price ul li .category_outer { padding: 16px; }
}
@media (min-width: 1200px) {
  .group_price ul { grid-template-columns: repeat(6, 1fr); }
}

.group_price ul li .category_outer .category_bottle {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .group_price ul li .category_outer { gap: 12px; }
  .group_price ul li .category_outer .category_bottle { gap: 12px; }
}
.group_price ul li .category_outer .category_bottle .unit_name .title_bottle {
  display: block;
  /* font-size: clamp(0.8rem, 1.5vw, 0.9rem); */
  font-size: 0.9;
}
.group_price ul li .category_outer .category_bottle .unit_name .taste {
  display: block;
  font-size: 0.7rem;
  font-feature-settings: "palt";
}
@media (min-width: 600px) {
  .group_price ul li .category_outer .category_bottle .unit_name .title_bottle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  }
  .group_price ul li .category_outer .category_bottle .unit_name .taste {
    font-size: clamp(0.7rem, 1.6vw, 0.8rem);
  }
}

.group_price ul li .category_outer .category_price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4px;
}
.group_price ul li .category_outer .category_price .unit_price {
  width: calc(100% - 20%);
  background: var(--white_color1);
  color: var(--blue_color2);
  display: inline-block;
  padding: 0 4px;
  margin-block-start: auto;
  /* font-size: 1.0rem; */
  font-size: clamp(1.0rem, 1.2vw, 1.4rem);
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
}
.group_price ul li .img_bottle img {
  max-height: 36px;
  width: auto;
  height: 100%;
}
@media (min-width: 600px) {
  .group_price ul li .category_outer .category_price .unit_price {
    /* width: calc(100% - 44px); */
    width: calc(100% - 20%);
    font-size: clamp(1.0rem, 1.2vw, 1.4rem);
  }
  .group_price ul li .img_bottle img { max-height: 64px; }
}
.group_price ul li .img_lupe {
  /* max-width: 24px; */
  min-height: 20px;
  width: 15%;
}
.group_price .txt_atten {
  padding-top: 8px;
  font-size: 0.7rem;
  text-align: center;
}
@media (min-width: 600px) {
  .group_price ul li .img_lupe {
    /* max-width: 32px; */
  }
  .group_price .txt_atten { font-size: 0.8rem; }
}

/* オプション */
.group_option_outer .txt_plus {
  font-size: 3.2rem;
  text-align: center;
  font-weight: 200;
  color: var(--yellow_color1);
  line-height: 1.0;
  padding: 16px 0;
}
.group_option_outer .title_option {
  /* font-size: 1.6rem; */
  font-size: clamp(1.6rem, 3.0vw, 2.4rem);
  text-align: center;
  line-height: 1.0;
  font-family: var(--font-serif);
}
.group_option ul {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
  padding-top: 16px;
}
.group_option ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--white_color1);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
}
/* .group_option ul li:nth-child(-n+3) { width: calc((100% - 16px) / 3); } */
/* .group_option ul li:nth-child(n+4) { width: calc((100% - 8px) / 2); } */
.group_option ul li p { font-size: 0.7rem; }
.group_option ul li p span { font-size: 0.9rem; }

@media (min-width: 600px) {
  .group_option ul {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 8px;
  }
  .group_option ul li {
    width: 100%;
    padding: 0.6rem;
  }
  .group_option ul li p { font-size: 1.0rem; }
  .group_option ul li p span { font-size: 1.3rem; }
}
@media (min-width: 960px) {
  .group_option ul { grid-template-columns: repeat(5,1fr); }
}

/* ---------- トップページ REASON - メンズオリシャンが選ばれる理由 ---------- */
.section_reason { color: var(--white_color1); }
.section_reason.bg_img_black { background: url(../images/bg_black01.webp) center / cover repeat }
.section_reason .section_wrap { padding: 80px 0; }
.section_reason .title_contents::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
	display: inline-block;
	min-width: 360px;
	width: 360px;
	height: 153px;
	background: url(../images/img_brush_blue01.png) no-repeat;
	background-size: contain;
}

.section_reason .reason_outer { padding-top: 40px; }
@media (min-width: 600px) {
  .section_reason .reason_outer { padding-top: 56px; }
}
.section_reason .group_reason {
  position: relative;
  display: block;
  min-height: 300px;
  padding: 32px 0 64px;
}
.section_reason .group_reason:last-child { padding: 32px 0 0; }
.section_reason .group_reason:before {
	content: "";
	position: absolute;
	top: 0;
  left: 0;
	width: 0;
	height: 0;
	box-sizing: border-box;
	border-right: min(80vw, 640px) solid transparent;
  border-left: initial;
	border-top: 200px solid var(--blue_color1);
}
.section_reason .group_reason:nth-child(even):before {
  right: 0;
  left: initial;
	border-right: initial;
	border-left: min(80vw, 640px) solid transparent;
}
@media (min-width: 600px) {
  .section_reason .group_reason { padding: 96px 0; }
  .section_reason .group_reason:before {
    border-right: min(80vw, 1080px) solid transparent;
    border-top: 400px solid var(--blue_color1);
  }
  .section_reason .group_reason:nth-child(even):before {
    border-left: min(80vw, 1080px) solid transparent;
  }
}
.section_reason .group_reason .group_frame {
  z-index: 10;
  position: relative;
}
.section_reason .group_reason .group_frame .inner {
  max-width: 1280px;
  padding: 0 1.2rem;
}

.section_reason .group_reason .title_unit { margin-bottom: 8px; }
.section_reason .group_reason .title_unit .number {
  font-family: var(--font-sans);
  font-size: 4.8rem;
  line-height: 1.0;
}
@media (min-width: 600px) {
  .section_reason .group_reason .title_unit .number {
    font-size: clamp(5.6rem, 9.0vw, 7.2rem);
  }
}

/* スライドテキスト - reason */
.section_reason .group_reason:nth-child(even) .title_unit :is(.number, .sub_txt) {
  text-align: right;
}
.section_reason .group_reason:nth-child(even) .title_unit .lead_txt {
  align-items: flex-end;
}
@media (min-width: 600px) {
  .section_reason .group_reason.taste .title_unit .lead_txt .sliding_txt span {
    font-size: clamp( 1.0rem, 2.5vw, 2.4rem);
  }
}
.section_reason .group_reason .txt_unit { font-size: 1.0rem; }
.section_reason .group_reason .img_unit img {
  width: 100%;
  height: auto;
}

/* 01 デザイン費無料 */
.section_reason .group_reason .design_outer {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.section_reason .group_reason.design .design_outer .title_group,
.section_reason .group_reason.design .design_outer .img_unit {
  width: 100%;
}
.section_reason .group_reason.design .design_outer .img_unit {
  max-width: 400px;
  margin-inline: auto;
  padding: 0;
}
@media (min-width: 600px) {
  .section_reason .group_reason .design_outer {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .section_reason .group_reason:nth-child(even) .design_outer { justify-content: flex-end; }
  .section_reason .group_reason.design .design_outer .title_group,
  .section_reason .group_reason.design .design_outer .img_unit {
    width: calc(100% / 2);
  }
  .section_reason .group_reason.design .design_outer .img_unit { max-width: 480px; }
}
.section_reason .group_reason.design .taste_outer .title_unit { min-width: 400px; }
.section_reason .group_reason.taste .taste_outer .title_group { width: 100%; }
.section_reason .group_reason.design .taste_outer .img_unit {
  max-width: 640px;
  margin-inline: auto;
  padding: 40px 0 64px;
}
@media (min-width: 600px) {
  .section_reason .group_reason.design .taste_outer .title_group {
    width: calc(100% / 2);
  }
  .section_reason .group_reason.design .taste_outer .img_unit {
    max-width: 480px;
    padding: 0;
  }
}

/* 02 テンプレート */
.section_reason .group_reason.template .img_unit img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.section_reason .group_reason.template .splide_template { padding: 40px 0; }
@media (min-width: 600px) {
  .section_reason .group_reason.template .splide_template { padding: 56px 0; }
}

/* 03 味と飲みやすさ */
.section_reason .group_reason .taste_outer {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.section_reason .group_reason.taste .taste_outer .img_unit {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  padding: 40px 0 64px;
}
@media (min-width: 600px) {
  .section_reason .group_reason .taste_outer {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 96px;
  }
  .section_reason .group_reason:nth-child(even) .taste_outer {
    justify-content: flex-end;
  }
  .section_reason .group_reason.taste .taste_outer .title_group,
  .section_reason .group_reason.taste .taste_outer .img_unit {
    width: calc(100% / 2);
  }
  .section_reason .group_reason.taste .taste_outer .img_unit {
    max-width: 480px;
    padding: 0;
  }
}
.section_reason .group_reason.taste .splide_taste { position: relative; }
.section_reason .group_reason.taste .splide_taste:before {
  position: absolute;
  top: -24px;
  left: 24px;
  content: "ORICHAM";
  font-family: var(--font-sans);
  font-weight: 100;
  color: var(--main_color1);
  font-size: 3.6rem;
  line-height: 1;
  z-index: 1;
  width: 100%;
}
@media (min-width: 600px) {
  .section_reason .group_reason.taste .splide_taste:before {
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5.6rem;
    max-width: 1280px;
    padding: 0 1.2rem;
  }
}
.section_reason .group_reason.taste .splide_taste .splide__slide {
  padding: 40px 24px;
  background: var(--black_color3);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section_reason .group_reason.taste .splide_taste .splide__slide > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
@media (min-width: 600px) {
  .section_reason .group_reason.taste .splide_taste .splide__slide {
    padding: 48px 24px;
  }
}
.section_reason .group_reason.taste .splide_taste .splide__slide > ul .txt_unit {
  font-size: 0.8rem;
  font-weight: normal;
}
.section_reason .group_reason.taste :is(.bottle_detail, .bottle_color) { padding-top: 8px; }


/* 04 フルラッピングオリシャン・シールオリシャン */
.section_reason .group_reason.rapping .img_unit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 40px 1.0rem;
}
.section_reason .group_reason.rapping .img_unit img {
  max-width: 560px;
}
@media (min-width: 600px) {
  .section_reason .group_reason.rapping .img_unit {
    flex-direction: row;
    gap: 0 32px;
    padding: 24px 1.0rem;
    margin-bottom: 40px;
  }
}


.section_reason .bottle_name {
  font-size: 1.1rem;
  font-weight: bold;
}
.section_reason .bottle_detail { font-feature-settings: "palt"; }
.section_reason .bottle_color p { display: inline-block; }
.section_reason .bottle_color span{
  display: flex;
  align-items: flex-start;
  align-items: center;
}
.section_reason .bottle_color span:before{
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  mask: radial-gradient(circle, black 50%, transparent 51%);
}

/* お酒テイスト */
.section_reason .bottle_color .rose:before { background: #EB7777; }
.section_reason .bottle_color .brut:before { background: #9FA179; }
.section_reason .bottle_color .muscat:before { background: #D0E07F; }
.section_reason .bottle_color .peach:before { background: #FFA2C4; }
.section_reason .bottle_color .strawberry:before { background: #EA2020; }
.section_reason .bottle_color .mango:before { background: #FFB443; }
.section_reason .bottle_color .lemon:before { background: #ffec43; }
.section_reason .bottle_color .ice:before { background: #5CD244; }
.section_reason .bottle_color .blanc:before { background: #9FA179; }
.section_reason .bottle_color .raspberry:before { background: #AC2053; }
.section_reason .bottle_color .greenapple:before { background: #B1DE73; }
.section_reason .bottle_color .dry:before { background: #D4D5A4; }
.section_reason .bottle_color .redgrape:before { background: #C1386F; }
.section_reason .bottle_color .whitegrape:before { background: #DCE98E; }
.section_reason .bottle_color .lychee:before {
  background: linear-gradient(-45deg, #FC8385, #AC2053);
}
.section_reason .bottle_color .pine:before {
  background: linear-gradient(-45deg, #FC8385, #FFED50);
}

.section_reason .group_reason.taste .splide_taste .splide__slide > ul .img_unit { width: 30%; }
.section_reason .group_reason.taste .splide_taste .splide__slide > ul .img_unit img {
  max-width: 96px;
  width: 100%;
  height: auto;
}
.section_reason .group_reason.taste .splide_taste .splide__slide > ul .txt_unit { width: 70%; }

/* 04 ラッピング */
.section_reason .group_reason.rapping .dummy {
  display: block;
  background: var(--blue_color2);
  width: 320px;
  height: 160px;
  margin-inline: auto;
}

/* モーダル - 料金表 */
.modaal-content-container .name_thum {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.modaal-content-container .name_thum p { width: calc(100% / 2); }
.modaal-content-container .name_thum .txt_box {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: bold;
}
.modaal-content-container .name_thum .txt_box span { font-size: 0.9rem; }
.modaal-content-container .name_thum .img_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modaal-content-container .name_thum .img_box img {
  max-width: 96px!important;
  width: 100%;
  height: auto;
}
.modaal-content-container .group_type .type_frame {
  display: grid;
  grid-template-rows: 1fr;
  gap: 16px;
  padding-top: 16px;
}
@media (min-width: 600px) {
  .modaal-content-container .group_type .type_frame {
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
  }
}

.modaal-content-container .group_type .type_title {
  font-size: 1.0rem;
  font-weight: bold;
  width: 100%;
  padding: 2px 6px;
  color: var(--white_color1);
  background: var(--black_color2);
}
.modaal-content-container .group_type .type_txt { padding-top: 8px; }
.modaal-content-container .price_list { padding-top: 24px; }
.modaal-content-container .price_list table { width: 100%; }
.modaal-content-container .price_list table tr :is(th, td) {
  width: 35%;
  text-align: center;
  border: 1px solid var(--white_color1);
}
.modaal-content-container .price_list table tr :is(th:first-child, td:first-child) {
  width: 30%;
}
.modaal-content-container .price_list table tr th {
  background: var(--white_color1);
  color: var(--blue_color2);
  border: 1px solid var(--blue_color2);
  padding: 4px;
  font-weight: bold;
}
.modaal-content-container .price_list table tr th:first-child {
  border-left: 1px solid var(--white_color1);
}
.modaal-content-container .price_list table tr th:last-child {
  border-right: 1px solid var(--white_color1);
}
.modaal-content-container .price_list table tr td { padding: 8px 4px; }
.modaal-content-container .price_list table tr td:not(:first-child) { font-size: 1.0rem; }

/* ---------- トップページ オプション2 ---------- */
.section_option {
  padding: 0 0 80px;
  position: relative;
}
.section_option.bg { background: var(--black_color2); }
.section_option:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  z-index: 1;
	background: url(../images/bg_laser01.webp) right bottom no-repeat;
	background-size: cover;
  /* height: 80px; */
  width: 100%;
  aspect-ratio: 1 / 1;
}
@media (min-width: 600px) {
  .section_option:after { width: 70%; }
}
.section_option .section_wrap {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}
.section_option .section_wrap:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 560px;
  background: var(--main_color2);
  /* z-index: -10; */
}
.section_option .section_wrap .inner { padding: 0 1.2rem; }
.section_option .title_contents::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
	display: inline-block;
	min-width: 360px;
	width: 360px;
	height: 153px;
	background: url(../images/img_brush_gold01.png) no-repeat;
	background-size: contain;
}
.section_option .option_outer {
  position: relative;
  z-index: 10;
  padding-top: 24px;
  max-width: 1280px;
  margin-inline: auto;
}
.section_option .splide_option {
  display: flex;
  flex-direction: column;
}

/* オプションスライダー - サムネイル */
.section_option .splide_option .splide_thumb { padding: 0 24px; }
.section_option .splide_option .splide_thumb.option_sp { display: block!important; }
@media (min-width: 960px) {
  .section_option .splide_option .splide_thumb.option_sp { display: none!important; }
}
.section_option .splide_option .splide_thumb .splide__slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 4px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}
.section_option .splide_option .splide_thumb .splide__slide.is-active {
  background: var(--blue_color1);
}
.section_option .splide_option .splide_thumb .img_unit img {
  max-height: 80px;
  height: 100%;
  width: auto;
}
.section_option .splide_option .splide_thumb .txt_unit {
  font-size: 0.7rem;
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
}
@media (min-width: 960px) {
  .section_option .splide_option .splide_thumb .txt_unit { font-size: 0.8em; }
}

/* オプションスライダー - メイン */
.section_option .splide_option .splide_main {
  padding-top: 16px;
  width: 100%;
}
@media (min-width: 960px) {
  .section_option .splide_option .splide_main { margin-inline: auto; }
}
.section_option .splide_option .splide_main .splide__list { justify-content: space-between; }
.section_option .splide_option .splide_main .splide__slide { width: 100%; }
@media (min-width: 960px) {
  .section_option .splide_option .splide_main { padding-left: 0.6rem; }
  .section_option .splide_option .splide_main .splide__slide {
    width: min(max(25% - 0.6rem, 200px), 300px)!important;
  }
}

/* オプション5枚のとき（jsのperPageもあわせて修正） */
/* @media (min-width: 960px) {
  .section_option .splide_option .splide_main .splide__slide {
    width: min(max(20% - 0.6rem, 180px), 300px)!important;
  }
} */


.section_option .splide_option .splide_main .frame_blue {
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1.4rem 1.0rem;
  border: 8px solid var(--blue_color1);
  background: var(--black_color1);

}
@media (min-width: 960px) {
  .section_option .splide_option .splide_main .frame_blue { padding: 1.8rem 1.0rem; }
}
.section_option .splide_option .splide_main .img_unit {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.section_option .splide_option .splide_main .img_unit img {
  width: 100%;
  height: auto;
  max-width: 640px;
}
.section_option .splide_option .splide_main .img_unit.option_thumb img { max-width: 280px; }
.section_option .splide_option .splide_main .title_option {
  letter-spacing: 3px;
  font-size: 0.9rem;
  position: relative;
  height: 36px;
  padding: 9px 12px;
  line-height: 1.4;
  margin-right: 100px;
  word-break: break-all;
  color: var(--white_color1);
  background: var(--blue_color1);
  max-width: 240px;
}
.section_option .splide_option .splide_main .title_option:after {
  position: absolute;
  top: 0;
  right: -36px;
  width: 0;
  height: 0;
  content: '';
  border-width: 36px 36px 0 0;
  border-style: solid;
  border-color: var(--blue_color1) transparent transparent transparent;
}
@media (min-width: 960px) {
  .section_option .splide_option .splide_main .title_option { margin-right: 40px; }
}
.section_option .splide_option .splide_main .lead_s { letter-spacing: 1px; }
.section_option .splide_option .splide_main .lead_l {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.4;
}
@media (min-width: 960px) {
  .section_option .splide_option .splide_main .lead_s {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  }
  .section_option .splide_option .splide_main .lead_l {
    font-size: clamp(1.0rem, 1.8vw, 1.4rem);
  }
}
.section_option .splide_option .splide_main .detail_option { padding: 8px 0 16px; }

/* ---------- トップページ 制作実績 ---------- */
.section_productions .section_wrap {
  padding: 0 0 80px;
  background: var(--black_color2);
}
.section_productions .section_wrap .title_contents {
  margin-bottom: 28px;
  width: 400px;
  margin-inline: auto;
  padding: 0;
}
.section_productions .section_wrap .title_contents:before {
  position: absolute;
  content: "PRODUCTION RESULTS";
  top: -32px;
  left: 0;
  color: var(--black_color3);
  font-size: 4.0rem;
  line-height: 1.0;
  font-weight: 100;
  text-align: center;
}
.section_productions .section_wrap .title_contents p {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  letter-spacing: 2px;
  line-height: initial;
  text-box-trim: initial;
  text-box-edge: initial;
  position: relative;
  z-index: 10;
}
@media (min-width: 1200px) {
  .section_productions .section_wrap .title_contents { width: 800px; }
  .section_productions .section_wrap .title_contents:before {
    top: -62px;
    left: 0;
    font-size: 5.0rem;
    line-height: 1.0;
  }
}

.section_productions .splide_productions { position: relative; }
.section_productions .splide_productions:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 1.2rem;
  max-width: 800px;
  min-width: 320px;
  width: 80%;
  height: 100%;
  display: block;
  background: var(--black_color3);
}
.section_productions .splide_productions .splide__track { padding: 40px 0; }

.section_productions .productions_wrap .productions_list_img { padding: 0 1.2rem; }

/* 制作実績 - スライダー */
main .section_productions article a .thum,
main .section_productions .productions_list_img article a .thum{
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  overflow: hidden;
}
main .section_productions article a img,
main .section_productions .productions_list_img article a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-out;
}
main .section_productions article a h3 {
  color: var(--main_color);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.2;
  margin-bottom: 8px;
  text-align: center;
  transition: all 0.4s ease-out;
}
main .section_productions article a .txt_unit {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-height: 2.0;
  transition: all 0.4s ease-out;
}
main .section_productions article a .txt_unit span{
  font-size: initial!important;
  font-weight: normal;
}
main .section_productions article a .txt_unit img,
main .section_productions article a .txt_unit table,
main .section_productions article a .txt_unit br{
  display: none;
}

/* 制作実績 - サムネイルリスト */
main .section_productions .productions_wrap.thumb_wrap { padding: 40px 0; }
main .section_productions .productions_wrap.thumb_wrap .inner { padding: 0; }
main .section_productions .productions_list_img ul{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}
main .section_productions .productions_list_img article a .thum{
  margin-bottom: 0;
  border-radius: 0;
}
main .section_productions .productions_list_img ul li{ width: calc((100% - 12px) / 3 ); }
main .section_productions .productions_list_img ul li:nth-child(-n+5),/* 初めの5件を非表示にする */
main.index .section_productions .productions_list_img ul li:nth-of-type(n + 18) {/* 全体で18件目から非表示にする（5件+12件=全17件）*/
  display: none;
}
@media (min-width: 600px) {
  main .section_productions .productions_list_img ul{ gap: 8px; }
  main .section_productions .productions_list_img ul li{
    width: calc((100% - 32px) / 5 );
  }
  main .section_productions .productions_list_img ul li:nth-child(-n+5),
  main.index .section_productions .productions_list_img ul li:nth-of-type(n + 18){/* spで非表示にした分をリセットする */
    display: block;
  }
  main .section_productions .productions_list_img ul li:nth-child(-n+3),/* 初めの3件を非表示にする */
  main.index .section_productions .productions_list_img ul li:nth-of-type(n + 14) {/* 全体で14件目から非表示にする（3件+10件=全13件）*/
    display: none;
  }
}
/* ホバー */
main .section_productions .productions_list article a:hover img,
main .section_productions .productions_list_img article a:hover img {
  transform: scale(1.1);
}
main .section_productions .productions_list article a:hover .text {
  opacity: 0.6;
}
@media (min-width: 600px) {
  main .section_productions .productions_list article a .thum{
    margin-bottom: 20px;
  }
  main .section_productions .productions_list ul{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
  }
  main .section_productions .productions_list ul li{
    width: calc((100% - 40px) / 3 );
    flex-shrink: 1;
  }
  main .section_productions .productions_list ul li:nth-of-type(n + 4) {
      display: none;
  }
}

/* ---------- トップページ MEGAオリシャンが選ばれる理由 ---------- */
.reason_no{
  width: auto;
  height: 40px;
  position: absolute;
  top: -36px;
  left: 10px;
  /* z-index: -1; */
}
@media (min-width: 600px) {
  .reason_no{
    height: 60px;
    top: -56px;
  }
}

/* ---------- トップページ デザインラインナップ ---------- */
.section_design .txt_design{
  margin-bottom: 8px;
  font-size: clamp(0.9rem, 3.5vw, 1.1rem);
}
.section_design h2{ font-size: clamp(0.9rem, 3.5vw, 1.2rem); }
@media (min-width: 600px) {
  .section_design .txt_design{ font-size: clamp(1.0rem, 1.5vw, 1.3rem); }
  .section_design h2{ font-size: clamp(1.1rem, 1.5vw, 1.6rem); }
}
.liner_design {
    border: 2px solid var(--gray_color1);
    padding: 1.6rem;
    position: relative;
    background: rgba(35, 35, 35, 0.7);
}
.section_design .order_design{
  position: relative;
  padding-top: 40px;
}


.section_design .design_outer{ margin-bottom: 40px; }
.section_design .design_outer .design_item img{
  width: 60%;
  height: auto;
  margin-inline: auto;
  display: block;
}
.section_design .design_item p{
  background: var(--yellow_color1);
  color: var(--black_color1);
  text-align: center;
  padding: 8px;
  margin-inline: auto;
  width: 80%;
  font-size: 1.2rem;
}
@media (min-width: 600px) {
  .section_design .design_outer{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* gap: 24px; */
    margin: 20px 0;
  }
  .section_design .design_item {
    margin-right :0;
    /* width: calc((100% - 48px) / 3 ); */
  }
  .section_design .design_outer .design_item img{ width: 100%; }
  .section_design .design_item p{
    margin-inline: auto;
    width: 100%;
    font-size: clamp(0.9rem, 2.0vw, 1.2rem);
  }
  .liner_design {
    padding: 3.6rem;
    margin-bottom: 0;
  }
  .section_design .liner_design,
  .samples_list .liner_design{
    min-height: 560px;
  }
}
@media screen and (min-width:601px) and ( max-width:1079px) {
  /* .section_design .design_outer { gap: 32px; } */
  /* .section_design .design_item {
    width: calc((100% - 64px) / 3 );
  } */
}



.section_design .splide__arrows {
    top: 40%;
    left: 50%;
    padding: 0 2.0vw;
}
.section_design .meno-pagination.splide__pagination {
	padding-top: 24px;
}

/* ---------- トップページ テンプレート ---------- */
.samples_list .samples_box {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}
.samples_list .samples_box .img_unit {
  aspect-ratio: 1 / 1;
  position: relative;
}
.samples_list .samples_box .img_unit img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.samples_list .samples_box .img_unit a::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.samples_list .samples_box .img_unit a img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
@media (min-width: 600px) {
  main.index .samples_list .samples_box .samples_item:nth-of-type(n + 9) {
    display: none;
  }
  .samples_list .samples_box {
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1080px){
  main.index .samples_list .samples_box .samples_item:nth-of-type(n + 7) { display: none; }
  .samples_list .samples_box { grid-template-columns: repeat(3, 1fr); }
}

/* ラッピング切り替え */
.rapping_change {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding: 8px;
  background: var(--gray_color1);
  border-radius: 16px;
}
.rapping_change button {
  display: block;
  width: calc(100% / 2);
  text-align: center;
  padding: 16px 8px;
  font-size: 0.9rem;
  background: var(--gray_color1);
  border-radius: 16px;
  transition: all 0.4s ease-out;
}
.rapping_change button.is-active {
  background: var(--yellow_color1);
  color: var(--gray_color1);
}
@media (min-width: 600px) {
  .rapping_change { border-radius: 64px; }
  .rapping_change button {
    padding: 16px;
    font-size: 1.2rem;
    border-radius: 64px;
  }
}

/* ---------- トップページ お酒の種類 ---------- */
.section_alcohol{ padding-top: 60px; }
.section_alcohol .alcohol_des{ margin-bottom: 20px; }
.section_alcohol .alcohol_des .circle img{
  width: 80%;
  margin: 0 auto 15px;
  display: block;
}
.section_alcohol .alcohol_outer{ margin-bottom: 40px; }
.section_alcohol .alcohol_item{ font-size: 13px; }
.section_alcohol .swiper-slide > div > div:first-child {
  width: 40%;
  padding-top: 40px;
}
.section_alcohol .swiper-slide > div > div:last-child { width: 60%; }
.section_alcohol .alcohol_name{
  background: var(--white);
  color: var(--black);
  border-radius: 50px;
  text-align: center;
  padding: 4px 5px 3px;
  font-size: 14px;
  line-height: 1.2;
}
.section_alcohol .alcohol_specification{ margin-bottom: 10px; }
.section_alcohol .alcohol_specification li{
  padding: 6px 0;
  border-bottom: 1px solid var(--white);
  text-align: center;
}
.section_alcohol .flavor_des{ margin-bottom: 10px; }
.section_alcohol .flavor_kinds{
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}
.section_alcohol .flavor_kinds.row{
  flex-direction: row;
  align-items: center;
}
.section_alcohol .flavor_kinds li{
  display: flex;
  align-items: flex-start;
  align-items: center;
}
.section_alcohol .flavor_kinds.row li{ width: calc(50% - 10px); }
.section_alcohol .flavor_kinds li:before{
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-mask: radial-gradient(circle, black 50%, transparent 51%);
  mask: radial-gradient(circle, black 50%, transparent 51%);
}
.section_alcohol .flavor_kinds li.raspberry:before{background: #AC2053;}
.section_alcohol .flavor_kinds li.lychee:before{background: linear-gradient(-45deg, #FC8385, #AC2053);}
.section_alcohol .flavor_kinds li.greenapple:before,.section_alcohol .flavor_kinds li.melon:before{background: #B1DE73;}
.section_alcohol .flavor_kinds li.peach:before{background: #FFA2C4;}
.section_alcohol .flavor_kinds li.muscat:before{background: #D0E07F;}
.section_alcohol .flavor_kinds li.pine:before{background: linear-gradient(-45deg, #FC8385, #FFED50);}
.section_alcohol .flavor_kinds li.strawberry:before{background: #EA2020;}
.section_alcohol .flavor_kinds li.mango:before{background: #FFB443;}
.section_alcohol .flavor_kinds li.lemon:before{background: #ffec43;}
.section_alcohol .flavor_kinds li.dry:before{background: #D4D5A4;}
.section_alcohol .flavor_kinds li.rose:before{background: #F976A6;}
.section_alcohol .flavor_kinds li.ice:before{background: #5CD244;}
.section_alcohol .flavor_kinds li.bran:before{background: var(--white);}
.section_alcohol .flavor_kinds li.brut:before{background: #BFC294;}
.section_alcohol .flavor_kinds li.red_g:before{background: #C1386F;}
.section_alcohol .flavor_kinds li.whi_g:before{background: #DCE98E;}

/* スライドの高さを一旦リセット */
.section_alcohol .swiper-slide {
  height: auto; /* 明示的にリセット */
}
.section_alcohol .swiper-slide > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media (min-width: 600px) {
  .section_alcohol{ padding-top: 100px; }
  .section_alcohol .alcohol_des{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
  }
  .section_alcohol .alcohol_des>div{ width: calc(100% / 2); }
  .section_alcohol .alcohol_outer{ margin-bottom: 60px; }
  .section_alcohol .alcohol_des .circle img {
    width: 90%;
    margin: 0 0 0 auto;
  }
  .section_alcohol .alcohol_item{ font-size: 14px; }
  .section_alcohol .swiper-slide > div {
    align-items: flex-start;
    gap: 20px;
  }
  .section_alcohol .swiper-slide > div > div:first-child { padding-top: 0; }
}

/* ---------- トップページ オプション ---------- */
.section_option .inner .option_outer li{ margin-bottom: 20px; }
.section_option .option_neck img.img_option_neck_01 {
  width: 95%;
  display: block;
  margin: 0 auto 20px;
}
.section_option .option_acrylic img.img_option_acrylic_01 {
  margin-top: 10px;
  margin-bottom: 20px;
}
@media (min-width: 850px) {
  .section_option .inner .option_outer{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .section_option .inner .option_outer li{ width: calc((100% - 20px) / 2); }
}
@media (min-width: 600px) {
  .section_option .option_led .option_led_des div:last-child img { margin-top: -100px; }
  .section_option .liner_white{ padding: 30px 40px; }
  .section_option .option_acrylic img.img_option_acrylic_01{
    margin-top: 15px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width:601px) and ( max-width:750px) {
  .section_option .option_led .option_led_des{ margin-bottom: 20px; }
}
@media screen and (min-width:601px) and ( max-width:671px) {
  .section_option .option_led .option_led_des div:last-child img { margin-top: 0; }
}

/* ---------- トップページ 制作実績 ---------- */
/* main .section_productions{
  color: var(--black);
}
main .section_productions .productions_wrap {
  position: relative;
} */

/* スライダーの方 */
/* main .section_productions .productions_list {
  margin-bottom: 40px;
}
main .section_productions .productions_list ul{
  margin-bottom: 40px;
}
main .section_productions .productions_list article a .thum,
main .section_productions .productions_list_img article a .thum{
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  border-radius: 20px;
  overflow: hidden;
}
main .section_productions .productions_list article a img,
main .section_productions .productions_list_img article a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
    object-fit: cover;
  transition: all 0.4s ease-out;
}
main .section_productions .productions_list article a h3 {
  color: var(--main_color);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.2;
  margin-bottom: 8px;
  text-align: center;
  transition: all 0.4s ease-out;
}
main .section_productions .productions_list article a .text {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-height: 1.5;
  transition: all 0.4s ease-out;
}
main .section_productions .productions_list article a .text span{
  font-size: initial!important;
  font-weight: normal;
}
main .section_productions .productions_list article a .text img,
main .section_productions .productions_list article a .text table,
main .section_productions .productions_list article a .text br{
  display: none;
} */

/* 画像のみの方 */
main .section_productions .productions_list_img ul{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}
main .section_productions .productions_list_img article a .thum{
  margin-bottom: 0;
  border-radius: 0;
}
main .section_productions .productions_list_img ul li{
  width: calc((100% - 12px) / 3 );
}
main .section_productions .productions_list_img ul li:nth-child(-n+5),/* 初めの5件を非表示にする */
main.index .section_productions .productions_list_img ul li:nth-of-type(n + 18) {/* 全体で18件目から非表示にする（5件+12件=全17件）*/
  display: none;
}
@media (min-width: 600px) {
  main .section_productions .productions_list_img ul{ gap: 8px; }
  main .section_productions .productions_list_img ul li{ width: calc((100% - 32px) / 5 ); }
  main .section_productions .productions_list_img ul li:nth-child(-n+5),
  main.index .section_productions .productions_list_img ul li:nth-of-type(n + 18){/* spで非表示にした分をリセットする */
    display: block;
  }
  main .section_productions .productions_list_img ul li:nth-child(-n+3),/* 初めの3件を非表示にする */
  main.index .section_productions .productions_list_img ul li:nth-of-type(n + 14) {/* 全体で14件目から非表示にする（3件+10件=全13件）*/
    display: none;
  }
}
/* ホバー */
/* main .section_productions .productions_list article a:hover img,
main .section_productions .productions_list_img article a:hover img {
  transform: scale(1.1);
}
main .section_productions .productions_list article a:hover .text {
  opacity: 0.6;
}
@media (min-width: 600px) {
  main .section_productions .productions_list article a .thum{
    margin-bottom: 20px;
  }
  main .section_productions .productions_list ul{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0;
  }
  main .section_productions .productions_list ul li{
    width: calc((100% - 40px) / 3 );
    flex-shrink: 1;
  }
  main .section_productions .productions_list ul li:nth-of-type(n + 4) {
      display: none;
  }
} */

/* ---------- トップページ コラム ---------- */
.section_column_qa.bg_color_blue {
  background: url(../images/bg_blue01.webp) top center repeat;
}
.section_column_qa .section_wrap {
  padding: 0 0 80px;
  position: relative;
}
.section_column_qa .section_column.section_wrap { padding: 24px 0 80px; }
.section_column_qa .section_wrap .inner { padding: 0 1.2rem; }
.section_column_qa .section_column.section_wrap .inner { padding: 0 2.4rem; }
.section_column_qa .section_column.section_wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 128px;
  display: inline-block;
  background: var(--black_color2);
}
@media (min-width: 600px) {
  .section_column_qa .section_column.section_wrap:before { content: none; }
  .section_column_qa .section_wrap .inner,
  .section_column_qa .section_column.section_wrap .inner {
    padding: 0 1.2rem;
  }
}

/* ボタン */
.section_column_qa .btn_column{
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
}

/* コラム - 共通リスト */
.column_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 0;
}
.column_list article {
  background: var(--white_color1);
  padding: 16px;
}
.column_list article a .thum {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 8px;
  overflow: hidden;
}
.column_list article a img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: all 0.4s ease-out;
}
.column_list article a .article_txt {
  display: inherit;
  grid-template-rows: auto 1em 3.5em;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 4px;
  color: var(--blue_color1);
}
.column_list article a h3 {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.4;
  letter-spacing: 1px;
  transition: all 0.4s ease-out;
  margin-bottom: 4px;
}
.column_list article a time {
  font-size: 0.9rem;
  color: var(--main_color1);
  font-family: var(--font-sans);
  letter-spacing: 3px;
  transition: all 0.4s ease-out;
}

/* ホバー */
.column_list article a:hover h3 { color: var(--main_color2); }
.column_list article a:hover time,
.column_list article a:hover .text {
  opacity: 0.6;
}

@media (min-width: 600px) {
  .column_list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  .column_list article a .article_text {
    display: inherit;
    grid-template-rows: auto 1.5em 4em;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 4px;
  }
  .column_list article a time,
  .column_list article a .text {
    font-size: 14px;
  }
}

/* ---------- トップページ Q&A ---------- */
/* .section_column .title_contents::before, */
.section_qa .title_contents::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
	display: inline-block;
	min-width: 360px;
	width: 360px;
	height: 153px;
	background: url(../images/img_brush_blue02.png) no-repeat;
	background-size: contain;
}
.section_qa .qa_unit {
  position: relative;
  padding-top: 24px;
}
.section_qa .qa_box:nth-of-type(n + 2) { margin-top: 10px; }
.section_qa .qa_toggle { display: none; }
.section_qa :is(.qa_q, .qa_a) {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all .5s;
}
.section_qa .qa_q {
  display: flex;
  flex-direction: row;
  position: relative;
  border: 1px solid var(--white_color1);
}
.section_qa .qa_q:after {
  z-index: 1;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  right: 16px;
  display: block;
  content: "＋";
  color: var(--white_color1);
}
.section_qa .qa_q p {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 48px;
  width: 100%;
  background: var(--white_color1);
  color: var(--blue_color1);
  font-size: 1.6rem;
  font-family: var(--font-sans);
  font-weight: 400;
}
.section_qa .qa_q h3 {
  width: 100%;
  padding: 16px 40px 16px 16px;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}
.section_qa .qa_a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.9rem;
}
.section_qa .qa_a dl {
  color: var(--white_color1);
  padding: 12px 20px;
}
.section_qa .qa_a dd { margin-top: 5px; }
.section_qa .qa_toggle:checked + .qa_q + .qa_a {
  max-height: 950px;
  transition: all 1.5s ease-in-out;
}
.section_qa .qa_toggle:checked + .qa_q img { transform: rotate(-90deg); }
@media (min-width: 600px) {
  .section_qa .qa_q p {
    max-width: 72px;
    font-size: 2.0rem;
  }
  .section_qa .qa_q h3 { padding: 24px 56px 24px 24px; }
  .section_qa .qa_q ,
  .section_qa .qa_a dl {
    background-size: 40px 47px !important;
  }
  .section_qa .qa_q { background-position: 25px center; }
  .section_qa .qa_q:after { right: 20px; }
  .section_qa .qa_q img { right: 25px; }
  .section_qa .qa_a dl {
    background-position: 25px 10px;
    padding: 20px 60px 18px 30px;
  }
}

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

フッター

--------------------------------------*/
footer{
  background: var(--black);
  padding: 0 20px;
}
footer .footer_flex {
  padding: 40px 0;
  width: min(100%, 800px);
  margin: auto;
}
@media (min-width: 600px) {
  footer .footer_flex { padding: 80px 0 40px; }
}

/* ロゴ */
footer .footer_flex figure { text-align: center; }
footer .footer_flex figure a { display: block; }
footer .footer_flex figure img {
  width: 120px;
  display: inline-block;
  margin-inline: auto;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  footer .footer_flex figure img { margin: -16px 0 8px; }
}

/* ナビゲーション */
footer .footer_flex ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  gap: 20px 8px;
  text-align: left;
  margin-bottom: 40px;
  padding: 0 0 40px;
  border-bottom: 1px solid var(--main_color2);
  height: 100%;
}
footer .footer_flex ul li {
  width: calc((100% - 16px) / 2);
  text-align: center;
}
footer .footer_flex p{
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
}
footer .footer_flex .copyright {
  display: block;
  color: var(--white_color1);
  font-size: 12px;
  text-align: center;
}
@media (min-width: 600px) {
  footer .footer_flex ul {
    justify-content: flex-start;
    justify-content: center;
    margin-inline: auto;
    border-bottom: 0;
    gap: 24px;
    border-bottom: 1px solid var(--main_color2);
  }
  footer .footer_flex ul li {
    text-align: left;
    width: initial;
    text-align: center;
  }
  footer .footer_flex p{
    text-align: left;
    line-height: 2;
  }
  footer .footer_flex figure{ text-align: left; }
  .footer_top{
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .footer_bottom{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}
/* 追尾注文ボタン */
/* .btn_order{
  z-index: 10;
  position: fixed;
  bottom: 10px;
  right: 10px;
  transition:all 0.4s;
}
.btn_order:hover{
	transform: scale(1.1);
}
.btn_order a {
  background: var(--green);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  z-index: 1;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px 10px;
  font-size: 10px;
  line-height: 1.4;
}
.btn_order a img{
  width: 14px;
}
.btn_order a img:hover{
  opacity: 1;
}
@media (min-width: 600px) {
  .btn_order{
    bottom: 20px;
    right: 20px;
  }
  .btn_order a{
    width: 120px;
    height: 120px;
    padding: 20px 10px 10px;
    font-size: 11px;
  }
  .btn_order a img{
    width: 16px;
  }
} */


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

下層ページ

--------------------------------------*/
main:not(.index) .inner {/* 上部に白いタイトル画像があるページ（コラムページ・デザインテンプレートページ・選べるお酒と料金ページ・実績ページ・ご紹介制度ページ） */
  /* padding: 140px 20px 100px; */
  padding: 80px 20px 100px;
}
main.column .inner { padding: 80px 20px 100px; }
/* main.lineup .inner, */
/* main.amazongift .inner, */
/* main.productions .inner, */
main.info .inner,
main.terms .inner,
main.err .inner{/* 上部に白いタイトル画像が無いページ */
  padding: 100px 20px;
}
main:not(.index) .sec { margin-bottom: 64px; }
main:not(.index) .sec:last-child { margin-bottom: 0; }
@media (min-width: 600px) {
  main:not(.index) .sec { margin-bottom: 80px; }
}
@media (min-width: 1200px) {
  main:not(.index) .inner { padding: 140px 0; }
}
main:not(.index) .sec p { margin-bottom: 1rem; }
.spacing { padding: 0 20px; }
@media (min-width: 1025px) {
  .spacing { padding: 0; }
}

.subvisual { position: relative; }
.subvisual_inner {
  max-width: 1040px;
  margin: auto;
}
.subvisual:before {
	content: "";
	position: absolute;
	top: 0;
  left: 0;
	width: 0;
	height: 0;
	box-sizing: border-box;
	border-right: min(80vw, 640px) solid transparent;
  border-left: initial;
	border-top: 200px solid var(--blue_color1);
}
:is(.column, .column_detail, .faq) .subvisual:before {
	border-right: min(80vw, 640px) solid transparent;
  border-left: initial;
	border-top: 200px solid var(--black_color1);
}
.subvisual .subvisual_frame {
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 1.6rem;
}
.subvisual .subvisual_frame .page_title {
  font-family: var(--font-sans);
  text-transform:capitalize;
  font-size: 3.2rem;
  text-align: left;
  line-height: 1;
  z-index: 10;
}
.subvisual .subvisual_frame p {
  line-height: 1.0;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  font-family: var(--font-serif);
  text-align: left;
  position: relative;
  padding-top: 16px;
  z-index: 10;
}
.subvisual .subvisual_frame p span {
  font-size: 0.9rem;
  font-family: var(--font-sans);
  letter-spacing: 3px;
}
@media (min-width: 600px) {
  .subvisual .subvisual_frame { height: 260px; }
  .subvisual .subvisual_frame .page_title { font-size: 6.4rem; }
}

/* ---------- 下層ページ デザインテンプレート ---------- */
main.samples { color: var(--white_color1); }
main.samples.bg_img_black { background: url(../images/bg_black01.webp) center / cover repeat }
main.samples .samples_list{ margin-bottom: 40px; }
main.samples .samples_category {
  padding-top: 16px;
  margin-bottom: 32px;
}
main.samples .samples_category .is-empty {
  display: block;
  margin-inline: auto;
  width: 100%;
  max-width: 360px;
  background: var(--blue_color1) url(../images/txt_btn_arrow.svg) right 15px center / 7px 8px no-repeat;
  /* background: #6166A3 url(../images/txt_btn_arrow.svg) right 15px center / 7px 8px no-repeat; */
  padding: 10px 35px 10px 15px;
  border-radius: 50px;
  text-align: center;
  text-align-last: center;
  cursor: pointer;
}
@media (min-width: 600px) {
  main.samples .samples_list{ margin-bottom: 60px; }
  main.samples .samples_category {
    padding-top: 24px;
    margin-bottom: 48px;
  }
  main.samples .samples_list .samples_box { grid-template-columns: repeat(4, 1fr); }
}

/* ランキングナンバー */
.samples_list .ranking_no{
  position: relative;
  color: var(--black);
  z-index: 2;
}
.samples_list .ranking_no::after {/* 三角形 */
  content: "";
  top: 0;
  left: 0;
  border-bottom: 2em solid transparent;
  border-left: 3.2em solid var(--white);
  position: absolute;
  z-index: -1;
}
.samples_list .ranking_no .ranking_no_txt{/* no. */
  transform: rotate(-35deg);
  position: absolute;
  font-size: 9px;
  top: 3px;
  left: 2px;
}

/* 1〜3位 */
.samples_list .ranking_no.no_1::after,
.samples_list .ranking_no.no_2::after,
.samples_list .ranking_no.no_3::after{/* 三角形 */
  border-bottom: 2.4em solid transparent;
  border-left: 3.6em solid var(--yellow);
}
.samples_list .ranking_no.no_1 .ranking_no_txt,
.samples_list .ranking_no.no_2 .ranking_no_txt,
.samples_list .ranking_no.no_3 .ranking_no_txt{/* no. */
  font-size: 11px;
  top: 3px;
  left: 4px;
}
@media (min-width: 600px) {
  .samples_list .ranking_no::after {/* 三角形 */
    border-bottom: 3.6em solid transparent;
    border-left: 5.2em solid var(--white);
  }
  .samples_list .ranking_no .ranking_no_txt{/* no. */
    font-size: 14px;
    top: 9px;
    left: 8px;
  }
  /* 1〜3位 */
  .samples_list .ranking_no.no_1::after,
  .samples_list .ranking_no.no_2::after,
  .samples_list .ranking_no.no_3::after{/* 三角形 */
    border-bottom: 4em solid transparent;
    border-left: 5.6em solid var(--yellow);
  }
  .samples_list .ranking_no.no_1 .ranking_no_txt,
  .samples_list .ranking_no.no_2 .ranking_no_txt,
  .samples_list .ranking_no.no_3 .ranking_no_txt{/* no. */
    font-size: 16px;
    top: 8px;
    left: 8px;
  }
}

/* ---------- 下層ページ コラム ---------- */
main.column.bg_color_blue {
  background: url(../images/bg_blue01.webp) top center repeat;
}
main.column_detail.bg_color_blue {
  background: url(../images/bg_blue01.webp) top center repeat;
}

/* 詳細ページ */
main.column_detail .column_list .text img{
  width: auto;
	max-width: 100%!important;
	height: auto!important;
}
main.column_detail .column_list article {
  color: var(--black_color1);
  padding: 16px;
}
@media (min-width: 600px) {
  main.column_detail .column_list article { padding: 40px; }
}
main.column_detail .column_list article h2 {
  font-size: clamp(1.1rem, 4.5vw, 1.3rem);
  line-height: 1.4;
  color: var(--black_color1);
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  main.column_detail .column_list article h2 { font-size: clamp(1.3rem, 3.0vw, 1.6rem); }
}
main.column_detail .column_list article time {
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--blue_color1);
  margin-bottom: 20px;
  display: block;
}
main.column_detail .column_nav{
  margin: 40px auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}
main.column_detail #toc{
  border: 2px solid var(--black_color1);
  padding: 30px 20px;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 600px;
}
main.column_detail #toc>ul{ margin-top: 20px; }

/*見出し装飾*/
main.column_detail .text h3 {
  font-size: clamp(20px, 2.8vw, 24px);
  margin: 20px 0 8px;
  padding: 8px 8px 8px 16px;
  background: var(--black_color1);
  color: var(--white_color1);
}
main.column_detail .text h4 {
  font-size: clamp(18px, 2.6vw, 20px);
  margin: 10px 0 8px;
}
main.column_detail #toc .toc_title{
  text-align: center;
  font-size: 18px;
  margin: 0;
  padding: 0;
}
main.column_detail #toc .toc-list ul{ margin-left: 1.5em; }
main.column_detail summary{ cursor: pointer; }
main.column_detail .bnr_line { padding-top: 40px; }
@media (min-width: 600px) {
  main.column_detail .column_list article time,
  main.column_detail .column_list article .text {
    font-size: 14px;
  }
  main.column_detail #toc{ padding: 40px; }
  main.column_detail .bnr_line { padding-top: 80px; }
}

/* ---------- 下層ページ 選べるお酒・料金 ---------- */
main.lineup .section_alcohol .alcohol_item{
  margin-bottom: 20px;
  display: block;
}
main.lineup .section_alcohol .alcohol_item:last-child{ margin-bottom: 0; }

/* リピート率ナンバーワンアイコン */
main.lineup .section_alcohol .alcohol_item div.crown,
main.index #section_alcohol .alcohol_outer div.crown{
  position: relative;
}
main.lineup .section_alcohol .alcohol_item div.crown::before,
main.index #section_alcohol .alcohol_outer div.crown::before{
  background: url(../images/icon_crown.png) no-repeat;
  position: absolute;
  top: 0;
  left: -17px;
  content: "";
  background-size: 100% auto;
  width: 18vw;
  aspect-ratio: 80 / 103;
}
main.index #section_alcohol .alcohol_outer div.crown::before{
  top: 40px;
  width: 14vw;
}
@media (min-width: 600px) {
  main.index #section_alcohol .alcohol_outer div.crown::before{
    top: 0;
    width: min(9vw, 70px);
  }
}
@media (min-width: 600px) {
  main.lineup .section_alcohol .alcohol_item div.crown::before{
    width: min(9vw, 90px);
  }
}

/* //リピート率ナンバーワンアイコン */
main.lineup .section_alcohol { padding-top: 0; }
main.lineup .section_alcohol .alcohol_outer{ margin-bottom: 0; }
main.lineup .section_alcohol .alcohol_item>div{
  width: 100%;
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
main.lineup .section_alcohol .alcohol_item>div>div:first-child { width: 40%; }
main.lineup .section_alcohol .alcohol_item>div>div:last-child { width: 60%; }
main.lineup .section_alcohol .flavor_kinds{ font-size: 12px; }
main.lineup .section_alcohol .flavor_kinds li { margin-bottom: 4px; }
main.lineup .table_op{ font-size: 13px; }
main.lineup .table_op th:last-child{ border-top: 0; }
main.lineup .table_op td{
  color: var(--black_color1);
  background: var(--white_color1);
}
@media (min-width: 600px) {
  main.lineup .section_alcohol .alcohol_outer{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  main.lineup .section_alcohol .alcohol_item{
    width: calc((100% - 20px) / 2);
    margin-bottom: 0;
  }
  main.lineup .section_alcohol .alcohol_item>div{ gap: 24px; }
  main.lineup .table_op{ font-size: 14px; }
}

/* ---------- 下層ページ 最短発送ページ ---------- */
.info{ color: var(--white_color1); }
.info.bg { background: url(../images/bg_black01.webp) center / cover repeat; }

/* コピーボタン */
#copy_button::before {
  background: url(../images/txt_btn_copy_black.svg) no-repeat;
  bottom: 0;
  content: "";
  background-size: 100% auto;
  height: 16px;
  width: 14px;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 0;
  transition: 0.2s ease-in-out;
}
#copy_button:hover::before {
  background: url(../images/txt_btn_copy.svg) no-repeat;
  bottom: 0;
  content: "";
  background-size: 100% auto;
  height: 16px;
  width: 14px;
}
.copy_box {
  max-height: 400px;
  overflow-y: scroll;
}
@media (min-width: 600px) {
  .copy_box {
    max-height: none;
    overflow-y: auto;
  }
}

/* ---------- 下層ページ LINEリッチメニューからのページ Amazonギフト ---------- */
main.amazongift .introduction_des img{
  width: 80%;
  display: block;
  margin: 0 auto;
}
@media (min-width: 600px) {
  main.amazongift .introduction_des{
    display: flex;
    gap: 20px;
  }
  main.amazongift .introduction_des img{
    max-width: 220px;
    object-fit: contain;
  }
}



/* ---------- 下層ページ 利用規約 ---------- */
.terms{ color: var(--white_color1); }
.terms.bg { background: url(../images/bg_black01.webp) center / cover repeat; }
.terms dl {
  padding: 20px 0;
  border-bottom: solid 1px var(--gray_color1);
}
.terms .privacy dl:first-of-type { padding: 0 0 20px; }
.terms dt {
  color: var(--yellow_color1);
  margin-bottom: 20px;
}
.terms dd ul li {
  padding-left:1.0em;
  text-indent:-1.0em;
}
.terms .privacy { margin-bottom: 40px; }
@media (min-width: 600px) {
  .terms dl { padding: 40px 0; }
  .terms .privacy dl:first-of-type { padding: 0 0 40px; }
}

/* ---------- 下層ページ 制作実績 ---------- */
.productions { color: var(--white_color1); }
.productions.bg_img_black { background: url(../images/bg_black01.webp) center / cover repeat }

.productions .section_productions{
  padding-top: 80px;
  margin-bottom: 40px;
}
.productions .productions_list_img ul li:nth-child(n+18) {
  display: none; /* 18個目以降を非表示 */
}
.productions .productions_list_img ul.show-all li {
  display: block; /* ボタンクリック後に全て表示 */
}
@media (min-width: 600px) {
  .productions .section_productions{
    padding-top: 120px;
    margin-bottom: 60px;
  }
  .productions .productions_list_img ul li:nth-child(n+14) {
    display: none;/* 14個目以降を非表示 */
  }
  .productions .productions_list_img ul.show-all li {
    display: block; /* ボタンクリック後に全て表示 */
  }
}
.productions .bnr_line { padding-top: 40px; }
@media (min-width: 600px) {
  .productions .bnr_line { padding-top: 80px; }
}

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

アニメーション

--------------------------------------*/
/* 左からスライドイン */
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
  animation-delay: 0.4s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;
	opacity:0;
}
@keyframes bgextendAnimeBase{
  from { opacity:0; }
  to { opacity:1; }
}
.bgappear{ /* 中の要素 */
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes bgextendAnimeSecond{
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.bgLRextend::before{ /* 左から */
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--black_color1); /* 伸びる背景色の設定 */
  z-index: 1;
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* 順番にフェードアップ */
.fadeUp {
  animation-name:fadeUpAnime;
  animation-duration:0.6s;
  animation-delay: 0.3s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeRight {
  animation-name:fadeRightAnime;
  animation-duration:0.6s;
  animation-delay: 0.3s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeRightAnime{
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.delay_1 { animation-delay: 0.6s; }
.delay_2 { animation-delay: 1s; }
.delay_3 { animation-delay: 1.4s; }

/* マーカー */
.marker {
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: var(--white_color1);
  padding: 4px 8px 2px;
  line-height: 1.5;
  z-index: 0;
}
.marker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue_color1);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.5s ease;
  z-index: -1;
}
.marker.active::before { transform: scaleX(1); }

@media (min-width: 600px) {
  .marker {
    font-size: 2.4rem;
    font-size: clamp(1.8rem, 4.0vw, 2.4rem);
    padding: 4px 16px 2px;
    line-height: 1.5;
  }
}

/* ホバーでup */
.btn_up{ transition:all 0.4s; }
.btn_up:hover{ transform: translate(0, -2px); }



