@charset "UTF-8";

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}

  /* 背景スクロール防止 */
  body.noscroll {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }

  
/* 横スクロール防止 */
html, body { overflow-x: hidden; }

body {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #000000;
}

html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
li,
p,
span,
iframe,
footer,
address,
h1,
h2,
h3,
h4,
h5,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4{
  font-weight: 600;
}

*:focus {
  outline: none;
}

img {
  image-rendering: -webkit-optimize-contrast;
}
img.img-full{
  max-width: 100%;
  height: auto;
}
.w-100{
  width: 100%;
}
.table {
  border-color: #CCC;
}
body.second main{
  padding-top: 102px;
}
/* link ------------------------------*/
a {
  color: #000000;
  transition: color 0.5s ease 0s;
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
  color: #000000;
  /* opacity: .6; */
}

.underline_link {
  text-decoration: underline !important;
}

iframe {
  vertical-align: bottom;
}

figure {
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

figure {
  margin: 0;
}

figure:hover {
  opacity: 0.7;
}

/* hr ------------------------------*/
hr {
  border-top: 2px dashed #4493d0;
}

hr.border_gray {
  border-top: 1px solid #e2e2e2;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* header ------------------------------*/
/* list ------------------------------*/
li {
  list-style-type: none;
}

ul.circle_list,
ul.common_list {
  padding-left: 1em;
  text-indent: -1em;
}

.circle_list li::before {
  content: "● ";
}

ul.circle_list.font-l {
  font-size: 18px;
}

ol {
  position: relative;
  margin: 0;
  padding: 0
}

ol li {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em
}

/* color ------------------------------*/
.white {
  color: #FFF;
}

.orange {
  color: #e95412;
}

.red {
  color: #921F1F;
}

.blue {
  color: #0070b7;
}

.green {
  color: #7FBE25;
}

.grey {
  color: #585858;
}

a.button {
  display: inline-block;
  padding: 15px 25px;
  background: none;
  border: none;
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
  color: #000;
  text-decoration: none;
  font-size: 15px;
}

a.button::after,
a.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #000;
  transition: transform 0.2s;
}

a.button::after {
  transform: translate(3px, 3px);
}

a.button::before {
  transform: translate(-3px, -3px);
}

a.button:hover::after,
a.button:hover::before {
  transform: translate(0, 0);
}

a.button.white-btn{
  color: #fff;
}
a.button.white-btn::after,
a.button.white-btn::before {
  border: 1px solid #fff;
}

a.shop-btn{
  	border: none;
	padding: 15px 10px;
  text-align: center;
  background-color: #fff;
  color: #921F1F;
	font-size: 16px;
  max-width: 250px;
  width: 100%;
  outline : 1px solid #921F1F;
  outline-offset : -3px
}
a.shop-btn:before{
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900;
	content: '\f07a';
	margin-right: 5px;
}
a.red-btn{
  	border: none;
	padding: 15px 10px;
  text-align: center;
  background-color: #921F1F;
  color: #ffff;
	font-size: 16px;
  max-width: 250px;
  width: 100%;
  outline : 1px solid #fff;
  outline-offset : -3px;
}
button.blue-btn{
  	border: none;
	padding: 15px 10px;
  text-align: center;
  background-color: #314278;
  color: #ffff;
	font-size: 16px;
  max-width: 250px;
  width: 100%;
  outline : 1px solid #fff;
  outline-offset : -3px;
  cursor: pointer;
}

.pagetop {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  transition: .3s;
  color: #921F1F;
  background: #fff;
box-shadow: 0px 0px 5px 1px #c78c8c;
  
/*   デフォルトは非表示 */
  opacity: 0;
}
.pagetop:hover {
    box-shadow: 0 0 10px #921F1F;
}

/* =========================================
   共通レイアウトユーティリティ
========================================= */

/* --- コンテナ（中央寄せ・左右余白） --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.container .right-full-container {
  margin-right: calc(50% - 50vw);
}
.container-wide {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- セクション（上下余白） --- */
.section {
  padding: 80px 0;
}
.section.small {
  padding: 40px 0;
}
/* --- カラムレイアウト（フレックスベース） --- */
.column-layout {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  gap: 1rem;
}
.col {
  padding: 0 15px;
  box-sizing: border-box;
  flex: 1 1 100%;
}

.col-1-3{
  width: 100%;
}
/* --- PC時カラム幅指定 --- */
@media (min-width: 768px) {
  .col-1-2 { flex: 0 0 50%; max-width: 50%; }
  .col-1-3 {   
    flex: 1 1 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem); 
}
  .col-2-3 { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-1-4 { flex: 0 0 25%; max-width: 25%; }
  .col-3-4 { flex: 0 0 75%; max-width: 75%; }
}
/* --- 中央寄せユーティリティ --- */
.text-center { text-align: center; }
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- 幅制限を解除したい時 --- */
.full-width {
  width: 100%;
  max-width: none;
  padding: 0;
}

/* =========================================
   スペーシング・ユーティリティ
========================================= */

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.p-0  { padding: 0; }
.p-10 { padding: 10px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-40 { padding: 40px; }

.pt-0 {padding-top: 0;}
.pb-0 {padding-top: 0;}

.text-right{
  text-align: right;
}
.text-center{
  text-align: center;
}
.text-left{
  text-align: left;
}
.d-block{
  display: block;
}

.button-right{
  justify-content: end;
  display: flex;
  align-items: center;
}
.button-center{
  justify-content: center;
  display: flex;
  align-items: center;
}
.button-left{
  justify-content: start;
  display: flex;
  align-items: center;
}
/* header */
.nav-logo img{
  max-width: 170px;
  width: 100%;
  height: auto;
}

.header-box {
  width: 100%;
}

body.is-fixed .nav-header,body.second .nav-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.header-box-in{
  display: flex;
  justify-content: space-between;
}
.nav-between{
	display: flex;
	justify-content: space-between;
	padding: 20px 10px;
	border-bottom: 1px solid #eee;
  align-items: center;
  background-color: #fff;
  width: 100%;
}
ul.nav-menu {
	display: flex;
}
ul.nav-menu li{
	padding: 0 10px;
  align-items: center;
  display: flex;
  justify-content: center;
}
ul.nav-menu li:not(:last-child):after {
  background-color: #000;
  content: "";
  height: 1px;
  width: 30px;
  margin-left: 10px;
  transform: rotate(-60deg);
}
ul.nav-menu li a{
  text-align: center;
}
ul.nav-menu li a span{
  color: #921F1F;
  font-size: 15px;
  display: block;
}


/* =======================
   ハンバーガーメニュー
======================= */

/* ハンバーガー初期非表示（SPのみ表示） */
.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 2001;
}

/* 線3本 */
.nav-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 6px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 24px; }

/* 開いた時のバツ印 */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
}

/* メニュー（SP時は隠す） */
.nav-menu {
  display: flex;
  transition: all 0.4s ease;
}
.nav-menu li {
  padding: 0 10px;
}
.nav-menu a {
  color: #000;
  text-decoration: none;
}

/* ------------- スマホレイアウト ------------- */
@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }
.nav-toggle.active{
	position: fixed;
	top: 10px;
	right: 10px;
}
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.97);
    gap: 30px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    z-index: 2000;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

}


/* //header */
.kv_box {
  width: 100%;
  height: 85vh;
  background: url('./img/kv01.jpg');
  background-size: cover;
  position: relative;
}

.kv_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kv_box::before {
  width: 100%;
  height: 85vh;
  z-index: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.kv_box h1 {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.top-logo {
  position: absolute;
  top: 10px;
  left: 10px;
}

.top-logo img {
  width: 85px;
}

.onlineshop-position {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
}

.onlineshop-btn{
  background-color: #921F1F;
  padding: 10px 10px;
  color: #fff;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 150px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  font-size: 14px;
}
.onlineshop-btn:hover{
  opacity: 0.8;
  color: #fff;
}
.onlineshop-btn i{
    font-size: 25px;
}
.onlineshop-btn span{
  text-align: center;
}

.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0 10px;
  width: 90%;
}
.new-tit-box{
  width: 10%;
  padding: 0 10px;
}
.news-list .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px dashed #CCC;
  padding: 20px 20px;
}
.news-list .item .date{
  margin: 0;
  min-width: 120px;
  font-size: 16px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title{
  color: #921F1F;
}
.news-col{
  display: flex;
  align-items: flex-start;
}
.tate-tit{
  writing-mode: vertical-rl;
  font-size: clamp(1.375rem, 1.309rem + 0.2113vw, 1.5625rem);
  position: relative;
  padding-top: 30px;
}
.tate-tit.white:before{
  box-shadow: 1px 1px #fff;
}
.tate-tit:before{
  background-color: #000;
  content: "";
  height: 1px;
  width: 40px;
transform: translate(-50%, -50%) rotate(-60deg);
  position: absolute;
  top: 0px;
  left: 50%;
}
.about_bg{
  background: url('./img/about-bg.jpg');
  background-size: cover;
  position: relative;
  padding: 150px 0;
}
.about-col{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #FFF;
  padding: 80px 30px 50px 30px;
  max-width: 500px;
}
.about-tit-box{
  margin-top: -80px;
  width: 10%;
  padding: 0 10px;
}
.about-detail{
  width: 90%;
  padding: 0 10px;
}
.about-detail h3{
  font-size: 20px;
  text-align: center;
  margin-bottom: 2rem;
}
.sake-tit-box{
  display: flex;
  justify-content: center;
}
.splide_sake .splide__list{
  align-items: end;
}
.splide_sake .splide__list .splide__slide{
  text-align: center;
}
.splide_sake .splide__list .splide__slide img{
  max-width: 80px;
  width: 100%;
}
.splide_sake .splide__list .splide__slide p{
overflow-wrap: break-word;
}
.kengaku-img-box{
  position: relative;
  z-index: -1;
}
.kengaku-img-box img{
    object-fit: cover;
    aspect-ratio: 4 / 3;
    width: 90%;
}
.kengaku-img-box .kengaku-tit-box{
  position: absolute;
  top: 0px;
  right: 15%;
}
.margin-nega-30{
  margin-top: -30px;
}
.margin-nega-50{
  margin-top: -50px;
}
.margin-nega-100{
  margin-top: -100px;
}
.bg-black-tit{
  background-color: #000;
  color: #fff;
  padding: 10px;
  text-align: center;
  display: inline-block;
}
.onlineshop-box{
    display: flex;
    gap: 0;
    flex-flow: column;
}
.onlineshop-box img{
  width: 100%;
  object-fit: cover;
}
.onlineshop-box .onlineshop-col{
  width: 100%;
  background-color: #921F1F;
      display: flex;
    justify-content: center;
    align-items: center;
}
.onlineshop-box .onlineshop-col .onlineshop-text{
  padding: 30px 15px;
}
.onlineshop-text p{
  color: #fff;
}

.company-imgdark{
  position: relative;
  display: inline-block;
  z-index: -1;
}
.company-imgdark img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.company-imgdark::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background-color: rgba(0, 0, 0, 0.4);
}
.company-tit-box{
  position: absolute;
  top:20%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
}

.company-table-wrap{
  background-color: #fff;
  padding: 20px 10px;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 0.75em 1em;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.company-table th {
  width: 25%;
  color: #333;
  font-weight: 600;
}
.map iframe{
  width: 100%;
  height: 450px;
}
.footer{
  background-color: #921F1F;
  padding: 40px 0 20px 0;
  color: #fff;
}
.footer a{
  color: #fff;
}
.footer-nav-box{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-logo img{
  width: 120px;
}
.footer-nav ul{
  display: block;
  margin-bottom: 10px;
}
.footer-nav ul li{
  padding: 5px;
}
.privacy-btn{
  display: block;
  margin-bottom: 10px;
}
.arrow-right:after{
  content:'\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right:5px;
}
.notice{
  background-color: #641212;
  padding: 10px;
}
.notice p{
  text-align: center;
}
.pc-none{
  display: block;
}
.sp-none{
  display: none;
}
.second-fv{
  display: flex;
  align-items: end;
  gap: 20px;
}
.second-fv-img{
  width: 70%;
}
.second-fv-img img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.second-tit-box{
  padding: 0 10px;
}
.second-tate-tit{
  color: #921F1F;
  font-size: 15px;
}
.second-tate-tit span{
  writing-mode: vertical-rl;
  font-size: clamp(1.375rem, 1.309rem + 0.2113vw, 1.5625rem);
  color: #000;
  display: block;
  margin: 10px auto 0 auto;
  letter-spacing: 8px;
}
.concept-box{
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.concept-box-in{
  width: auto;
}
.concept-txt{
  width: 60%;
  line-height: 2;
}
.concept-txt h3{
font-size: clamp(1.25rem, 1.14rem + 0.3521vw, 1.5625rem);
}
.both-img01 {
  align-self: flex-end;
}

.both-img02 {
  align-self: flex-start;
}
.history-flex{
  position: relative;
}
.history-tit-box{
  width: 15%;
  position: absolute;
}
.history-tit-box .tate-tit{
  margin: 0 auto;
}
.history-box {
  position: relative;
    width: 85%;
    margin: 0 0 0 auto;
}
.timeline-line{
  position: absolute;
  border: 1px solid #eee;
  width: 100%;
  top: 3px;
}
.history-item {
  width: 240px;
  position: relative;
  text-align: left;
  padding-top: 40px;
}

.history-item .dot {
  width: 8px;
  height: 8px;
  background-color: #921F1F;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.history-item h3 {
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #004f4f;
}

.history-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.about-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
}
.history-arrow-box{
  position: absolute;
  right: 0;
  top: -50%;
}
.history-arrow-box .splide__arrows{
  display: flex;
  justify-content: end;
}
.history-arrow-box .splide__arrows .splide__arrow{
  position: unset;
  margin: 0 5px;
}
.splide__arrows .splide__arrow{
  background: #000000;
  height: 3em;
  width: 3em;
  transform: unset;
}
.splide__arrows .splide__arrow svg{
  fill: #fff;
}
/* 画像をコンテナ外にはみ出させる */
.about-img {
  margin-left: calc((100vw - 100%) / -2); /* 左に全幅分はみ出す */
  position: relative;
}
.about-img-r{
  margin-right: calc((100vw - 100%) / -2);
  margin-left: unset;
}
.about-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* テキスト部分は通常のコンテナ内で制御 */
.about-txt {
  flex: 1;
}
.about-txt h3{
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}
.about-txt h3::before,
.about-txt h3::after {
  background-color: #000;
  content: "";
  height: 1px;
  width: 60px;
}
.about-txt h3::before {
  margin-right: 15px;
}
.about-txt h3::after {
  margin-left: 15px;
}
.order-pc-1-sp-2{
  order: 2;
}
.order-pc-2-sp-1{
  order: 1;
}
.tour-flex{
  display: flex;
  align-items: stretch;
  position: relative;
}
.tour-tit-box{
  position: absolute;
  top: 0;
  left: unset;
  right: 5%;
}
.tour-img{
  width: 100%;
}
.tour-img img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* 高さを合わせてトリミング */
  display: block;
}
.tour-text{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 上下中央 */
  align-items: center; /* 左右中央 */
  text-align: center;
  padding: 2rem;
  color: #fff;
  background: #000; /* 背景つけたい場合 */
}
.tour_info-flex{
  display: flex;
}
.tour_info-tit-box{
  width: 10%;
}
.tour_info-text{
  width: 90%;
}
.notice-gray{
  background-color: #f6f6f6;
  margin-top: 10px;
  padding: 10px;
}
.flow-box{
  margin-bottom: 3rem;
}
.flow-box h3{
  counter-increment: num; 
  font-size: clamp(1.375rem, 1.0625rem + 1vw, 1.625rem);
}
.tour-num{
  counter-reset: num;
}
.flow-box h3:before{
  margin-bottom: 3rem;
   content: counter(num, decimal-leading-zero) ".";
}
.flow-box img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;

}
.sake-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.card-img-wrap {
  display: flex;
  align-items: flex-end; /* 画像を下へ */
  flex-grow: 1;          /* 余白をここに持たせる */
}
.sake-card .card-body{
  padding: 15px;
   margin-top: auto; 
}
.sake-card img{
    margin: 0 auto;
    width: 100%;
    display: block;
    height: auto;
    max-width: 100px;
}
.sake-card span{
  background-color: #921F1F;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
}
.sake-card span,.sake-card h3,.sake-card p{
  margin-bottom: 1rem;
}
.sake-list li{
  border-top: 1px solid #C8C8C8;
  padding: 10px 5px;
}
.sake-list li:last-child{
  border-bottom: 1px solid #C8C8C8;
}

.contact-intro{
  text-align: center;
  margin-bottom: 2rem;
}
.contact-form .form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-form label {
  width: 20%;
  font-weight: 600;
  padding-top: 8px;
}

.contact-form .form-field {
  width: 80%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;  
   width: 100%;
   max-width: 100%;
   box-sizing: border-box;
}

.form-textarea textarea {
  height: 150px;
  resize: vertical;
}

/* ラジオボタンの整列 */
.radio-field{
  display: flex;
  flex-wrap: wrap;
}
.radio-item {
  margin-bottom: 5px;
  padding-right: 10px;
  font-weight: normal;
  width: auto!important;
}

/* プライバシーポリシー部分 */
.privacy-row label {
  font-weight: normal;
  width: 180px;
}

.privacy-text {
  margin-bottom: 10px;
  text-align: center;
}
.privacy-text a{
  color: #921F1F;
  text-decoration: underline;
}
.privacy-check{
      margin: 0 auto;
    display: block;
    width: 100%!important;
    text-align: center;
}
.privacy-check input {
  margin-right: 8px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

/* 共通：初期状態（非表示）*/
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease-out;
}

/* スライドアップ */
.animate.slide-up {
  transform: translateY(30px);
}
.animate.show.slide-up {
  opacity: 1;
  transform: translateY(0);
}

/* スライド右から */
.animate.slide-right {
  transform: translateX(-40px);
}
.animate.show.slide-right {
  opacity: 1;
  transform: translateX(0);
}

/* スライド左から */
.animate.slide-left {
  transform: translateX(40px);
}
.animate.show.slide-left {
  opacity: 1;
  transform: translateX(0);
}
.left-border{
  border-left: 4px solid #921F1F;
  padding: 5px 5px 5px 15px;
}
@media screen and (max-width: 767px){
.news-list .item a{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
.company-table th{
  border-bottom: 0;
  padding-bottom: 0;
}
.company-table th,
.company-table td {
  display: block;
}
ul.nav-menu li:not(:last-child):after {
  display: none;
}
.concept-box {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .concept-txt {
    width: 100%;
    order: 1;
    text-align: center;
  }

  /* 画像2枚を横並びにするためのラッパーを仮想的に作る */
  .both-img01,
  .both-img02 {
    width: 60%;
  }

  /* 並べるためのラップ */
  .concept-box-in-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
  }
   .concept-box-in{
    order: 2;
   }
   .about-flex {
  gap: 1rem;
}

.about-txt h2{
  text-align: center;
}
  .about-flex {
    flex-direction: column;
  }
  .about-img {
    margin-left: 0;
  }
  .tour-flex {
    flex-direction: column;
  }
  .tour-img img {
    height: auto;
  aspect-ratio: 2 / 1;
  }  
  .contact-form .form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
    flex-direction: column;

}
.radio-field{
    flex-direction: column;
}
.contact-form label {
  width: 100%;
  font-weight: 600;
  padding-top: 8px;
}

.contact-form .form-field {
  width: 100%;
}
}

@media (min-width: 768px) {
  .top-logo img {
  width: 120px;
}
  .kengaku-img-box{
  width: 70%;
}
.kengaku-img-box img{
    object-fit: unset;
    aspect-ratio: unset;
    width: 100%;
}
.company-imgdark::before{
  width: 100%;
    object-fit: unset;
    aspect-ratio: unset;
    height: 100%;
}
.kengaku-img-box .kengaku-tit-box{
  right: 20px;
}
.onlineshop-box{
  align-items: stretch;
height: 250px;
flex-flow: row;
}
.onlineshop-box img{
  width: 60%;
}
.onlineshop-box .onlineshop-col{
  width: 40%;
}
.company-imgdark img{
  object-fit: unset;
  aspect-ratio: unset;
}
.company-tit-box{
  top:40%;
}
.company-table-wrap{
  background-color: #fff;
  padding: 20px 40px;
}
.footer-nav ul{
  display: flex;
}
.footer-nav ul li{
  padding: 0 10px;
}
.news-col{
  align-items: center;
}
.pc-none{
  display: none;
}
.sp-none{
  display: block;
}
.second-fv-img img{
  aspect-ratio: 2 / 1;
}
.order-pc-1-sp-2{
  order: 1;
}
.order-pc-2-sp-1{
  order: 2;
}
.about-txt h3{
  justify-content: left;
  text-align: left;
}
.tour-img{
  width: 45%;
}
.tour-tit-box{
  left: 50%;
  right: unset;
}
.flow-box img{
  aspect-ratio: 3 / 1;

}
}

@media (max-width: 991px) {
.onlineshop-btn {
  width: 100px;
}
.onlineshop-btn span{
  font-size: 12px;
}
.onlineshop-btn i{
  font-size: 18px;
}
}
@media (max-width: 767px) {}

@media (min-width: 992px) {}

@media (max-width: 991px) {}

@media (min-width: 1400px) {}

@media (min-width: 768px) and (max-width: 1399px) {
  .about-img{
    width: 50%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {}

@media (min-width: 1200px) {}

@media (max-width: 1199px) {}

@media (min-width: 576px) {}

@media (max-width: 575px) {}

@media (min-width: 768px) and (max-width: 1199px) {}

@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 768px) and (max-width: 991px) {}

@media (min-width: 576px) and (max-width: 767px) {}

@media (max-width: 450px) {}

@media print {}