@charset "utf-8";
/* トップMV */

/* ===== MV ===== */
.mv {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
}
/* 背景 */
.mv_bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.mv_bg .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* 背景 */
.mv_bg .day {
  opacity: 0.7;
  animation: fadeOut 3s forwards 0.8s; /* ロゴ開始と同じタイミングでフェードアウト開始 */
  z-index: 2;
}
.mv_bg .sunset {
  z-index: 1;
}
/* SVG */
.logo_line {
  width: clamp(100px, 13vw, 125px);
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.logo_line .fo1, .logo_line .fo2 {
  animation: svg-color 1.2s ease-in both, svg-opacity 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 1s, 3.3s;
}
.logo_line .fo11, .logo_line .fo4 {
  animation: svg-color 0.8s ease-in both, svg-opacity 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 1.4s, 3.3s;
}
.logo_line .fo7, .logo_line .fo8 {
  animation: svg-color 1s ease-in both, svg-opacity 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 1.6s, 3.3s;
}
.logo_line .fo13, .logo_line .fo12 {
  animation: svg-color 0.8s ease-in both, svg-opacity 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 2.0s, 3.3s;
}
.logo_line .fo5, .logo_line .fo10 {
  animation: svg-color 1s ease-in both, svg-opacity 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 2.2s, 3.3s;
}
.logo_line .fo15, .logo_line .fo14 {
  animation: svg-color 0.8s ease-in both, svg-opacity 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 2.6s, 3.3s;
}
.logo_line .fo3, .logo_line .fo16 {
  animation: svg-color 1s ease-in both, svg-opacity 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 2.8s, 3.3s;
}
.logo_line .fo9, .logo_line .fo6 {
  animation: svg-color 0.8s ease-in both, svg-opacity 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 3.2s, 3.3s;
}
@keyframes svg-color {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgba(99, 68, 145, 0.4);
  }
}
@keyframes svg-opacity {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
/* ロゴ */
.logo_fill {
  width: clamp(110px, 13vw, 200px);
filter: brightness(0) saturate(100%) invert(100%) drop-shadow(1px 1px 1px rgba(89, 64, 162, 0.8));
  position: absolute;
  top: 13%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 11;
  animation: logoFade 1.5s ease 5s forwards !important;
}
@keyframes logoFade {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
/* テキスト */
.mv_text {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%); /* ロゴの上に重ねる */
  z-index: 12;
  color: #fff;
  font-size: var(--fs-35);
  display: flex;
  white-space: nowrap;
  text-shadow: 1px 1px 1.5px rgba(89,64,162,0.8);
}
.mv_text span {
  opacity: 0;
  display: inline-block;
  animation: textFadeIn 0.5s forwards;
}
/* 15文字分の遅延設定（ロゴ終了の3.5s付近から開始） */
.mv_text span:nth-child(1) {
  animation-delay: 3.5s;
}
.mv_text span:nth-child(2) {
  animation-delay: 3.6s;
}
.mv_text span:nth-child(3) {
  animation-delay: 3.7s;
}
.mv_text span:nth-child(4) {
  animation-delay: 3.8s;
}
.mv_text span:nth-child(5) {
  animation-delay: 3.9s;
}
.mv_text span:nth-child(6) {
  animation-delay: 4.0s;
}
.mv_text span:nth-child(7) {
  animation-delay: 4.1s;
}
.mv_text span:nth-child(8) {
  animation-delay: 4.2s;
}
.mv_text span:nth-child(9) {
  animation-delay: 4.3s;
}
.mv_text span:nth-child(10) {
  animation-delay: 4.4s;
}
.mv_text span:nth-child(11) {
  animation-delay: 4.5s;
}
.mv_text span:nth-child(12) {
  animation-delay: 4.6s;
}
.mv_text span:nth-child(13) {
  animation-delay: 4.7s;
}
.mv_text span:nth-child(14) {
  animation-delay: 4.8s;
}
.mv_text span:nth-child(15) {
  animation-delay: 4.9s;
}
/* キーフレーム定義 */
@keyframes fadeOut {
  0% {
    opacity: 0.7;
	}
  100% {
    opacity: 0;
  } /* 最後に少し透過させる */
}
@keyframes lineDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes logoFullAnim {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  } /* 最後に少し透過させる */
}
@keyframes textFadeIn {
  to {
    opacity: 1;
  }
}
/**/
/* アニメーション後の状態を定義 */

.mv.is-loaded .logo_line .fo1,
.mv.is-loaded .logo_line .fo2,
.mv.is-loaded .logo_line .fo3,
.mv.is-loaded .logo_line .fo4,
.mv.is-loaded .logo_line .fo5,
.mv.is-loaded .logo_line .fo6,
.mv.is-loaded .logo_line .fo7,
.mv.is-loaded .logo_line .fo8,
.mv.is-loaded .logo_line .fo9,
.mv.is-loaded .logo_line .fo10,
.mv.is-loaded .logo_line .fo11,
.mv.is-loaded .logo_line .fo12,
.mv.is-loaded .logo_line .fo13,
.mv.is-loaded .logo_line .fo14,
.mv.is-loaded .logo_line .fo15,
.mv.is-loaded .logo_line .fo16{
  fill: rgba(99, 68, 145, 0.2);
  animation: none;
}

.mv.is-loaded .logo_fill {
  opacity: 1;
  animation: none;
  transition: none;
}

.mv.is-loaded .mv_text span {
  opacity: 1;
  transform: translateY(0);
}

/* 背景も夕方状態にするなら */
.mv.is-loaded .mv_bg .bg.sunset {
  opacity: 1!important;
  animation: none;
}

.mv.is-loaded .mv_bg .bg.day {
  opacity: 0!important;
  animation: none;
}
/**/
#section1{
	position: relative;
}
#section1 h2{
	width:clamp(80px,12vw,200px);
	filter:drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2)); 
	position:absolute;
	top:2vh;
	left:2vh;
	z-index: 50;
}
.subsec1_inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  padding-top: 20vh;
}
.mv_sub {
  position: relative;
}
.mv_sub::before {
  content: "";
  width: 32vw;
  height: 32vw;
  background-image: url(../images/common/bg_logo@2x.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  position: absolute;
  top: -3.0em;
  left: -3.0em;
  filter: blur(6px) saturate(0.5);
  opacity: 0.1;
}
.subsec1_box {
  justify-self: center;
  /*padding-left: clamp(20px, 25vw, 290px);*/
}
.subsec1_box h1 {
  display: inline-block;
  font-family: var(--font-cin);
  font-size: var(--fs-35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a5a200;
  margin-bottom: 2.0em;
  position: relative;
}
.subsec1_box h1::before {
  content: "";
  width: 50%;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(165, 162, 0, 0) 0%, rgba(165, 162, 0, 1) 15%, rgba(165, 162, 0, 1) 85%, rgba(165, 162, 0, 0) 100%);
  position: absolute;
  bottom: 0.45em;
  left: 50%;
  transform: translateX(-50%);
}
.subsec1_box p {
  font-size: var(--fs-18);
}
/*===確認用アウトライン

* {

  outline: 1px solid red;



}

/* CSS Document */
html {
  scroll-behavior: smooth;
  /*font-size: 62.5%;*/ /*1rem=10px*/
}
body {
  font-family: 'Shippori Mincho', serif;
  color: #5f5f5f;
  line-height: 1.5;
}
img {
  width: 100%;
  height: auto;
}
.SEC_container {
  max-width: 1920px;
  margin: 0 auto;
  word-break: break-all;
}
.SEC_container70 {
  max-width: 1920px;
  width: 70vw;
  margin: 0 auto;
  word-break: break-all;
}
.SEC_container85 {
  max-width: 1920px;
  width: 85vw;
  margin: 0 auto;
  word-break: break-all;
}
.only_tb {
  display: none;
}
.only_sp {
  display: none;
}
.only_ssp {
  display: none;
}
.img_pc {
  display: block;
}
.img_sp {
  display: none;
}
/*改行残りを防ぐ*/
.tw_p {
  text-wrap: pretty;
}
/*=========フォント===========



=============================*/ :root {
  /* font family */
  --font-mincho: 'Shippori Mincho', serif;
  --font-gothic: 'Zen Maru Gothic', sans-serif;
  --font-kakugothic: "Zen Kaku Gothic New", sans-serif;
  --font-cin: "Cinzel", serif;
  /* fluid 　　　　PCサイズ-SPサイズ(1450-375=1075)*/
  --fluid: calc((100vw - 375px) / 1075);
  /* font size */
  --fs-cap: clamp(10px, calc(10px + 2 * var(--fluid)), 12px);
  --fs-14: clamp(12px, calc(12px + 2 * var(--fluid)), 14px);
  --fs-16: clamp(14px, calc(14px + 2 * var(--fluid)), 16px);
  --fs-18: clamp(15px, calc(15px + 3 * var(--fluid)), 18px);
  --fs-20: clamp(16px, calc(16px + 4 * var(--fluid)), 20px);
  --fs-23: clamp(17px, calc(17px + 6 * var(--fluid)), 23px);
  --fs-25: clamp(18px, calc(18px + 7 * var(--fluid)), 25px);
  --fs-28: clamp(20px, calc(20px + 8 * var(--fluid)), 28px);
  --fs-30: clamp(21px, calc(21px + 8 * var(--fluid)), 30px);
  --fs-35: clamp(23px, calc(23px + 9 * var(--fluid)), 35px);
  --fs-40: clamp(25px, calc(25px + 14 * var(--fluid)), 40px);
  --fs-44: clamp(28px, calc(28px + 16 * var(--fluid)), 44px);
  --fs-56: clamp(32px, calc(32px + 24 * var(--fluid)), 56px);
}
/*マージン*/
.sec_mb {
  margin-bottom: 15vh;
}
/*----ヘッダー--------------------



----------------------------------*/
#header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: all .4s ease;
  z-index: 500;
  will-change: background, color;
}
.nav_box {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.0em 1.5em;
  gap: 2.0em;
}
.drawer_hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
#menu_btn_check {
  margin: 0;
  padding: 0;
}
/*ナビを横に並べる*/
.nav_list {
  font-size: var(--fs-16);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(113, 105, 150, 0.8);
  display: flex;
  justify-content: center;
  gap: 1.6em;
  white-space: nowrap;
}

/*他項目*/
#header.scrolled {
  background-image: linear-gradient(0deg, rgba(113, 105, 150, 0), rgba(113, 105, 150, 0.8) 100%);
  text-shadow: none;
  padding-bottom: 2.0em;
}

/*ホバー時*/
.nav_item:hover {
  color: ffffff;
  text-shadow: 0 0 10px #ffffff;
}
.nav_item_underline {
  padding-bottom: 5px;
  position: relative;
}
.nav_item_underline::before {
  background-color: #ffffff;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.nav_item_underline:hover::before {
  transform: scale(1, 1);
}

/*請求ボタン*/
#contact p {
  width: 8.0em;
  height: 3.0em;
}
#Button_1, #Button_2 {
  font-size: var(--fs-14);
  color: #ffffff;
  background-color: #a5a200;
  padding-top: 1.0em;
  box-shadow: 1.5px 1.5px 2px rgba(122, 118, 35, 0.6);
  z-index: 500;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  width: 9em;
  height: 3.5em;
  text-align: center;
}
#Button_1:hover, #Button_2:hover {
  color: #ffffff;
  background-color: #EBA36C;
  transform: translate(1px, 1px);
  box-shadow: none;
}
/*==============ここまでヘッダー=================*/
/*=========フッターエントリーボタンなど==============*/
.footer_btn_area {
  text-align: center;
}
.footer_button {
  text-align: center;
  margin-bottom: 10vh;
  display: inline-block;
}
.detailBtn {
  padding: 12px 28px;
  font-size: 16px;
}
.detailLink {
  position: relative;
  display: inline-block;
  color: #ffffff;
  background-color: #a5a200;
  box-shadow: 1.5px 1.5px 2px rgba(122, 118, 35, 0.6);
  border-radius: 5px;
  padding: 0.8em 2.0em;
  z-index: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* hover */
.detailLink:hover {
  color: #ffffff;
  background-color: #EBA36C;
  transform: translate(1px, 1px);
  box-shadow: none;
}
.footerTel {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}
.shopinfo {
  display: flex;
  column-gap: 1.0em;
  align-items: center;
  margin-bottom: 10vh;
}
.shopinfo img, .shopinfo svg {
  padding: 10px;
}
.last_sec {
  display: flex;
  gap: 5%;
  justify-content: center;
  margin-bottom: 10vh;
}
/*===========トップへ戻る========*/
#page-top {
  position: fixed;
  bottom: 100px;
  right: 5vw;
  width: 35px;
  height: 35px;
  opacity: 0.8;
  z-index: 100;
  cursor: pointer;
  /* アニメーションの速度設定 */
  transition: transform 0.3s ease;
}
#page-top a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
#page-top::before {
  position: absolute;
  content: "";
  width: 15px;
	height:28px;
  background-image: url(../images/common/sankaku@2x.webp);
 background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	filter: drop-shadow(1px 1px 2px rgba(93, 107, 93, 0.7));
  top: 55%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
#page-top::after {
  content:"";
  width: 50px;
  height: 50px;
background-image: url(../images/common/bg_logo_1@2x.webp);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 0;
        left:0;
        filter: saturate(0.7);
	opacity: 0.6;
}
#page-top:hover {
  opacity: 1;
  transform: translateY(-5px);
}
/*フェードインアニメーション--------------*/
/* 基本フェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  will-change: opacity, transform;
}
/* 表示されたら付くクラス */
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* オプション：複数要素を順番に遅らせる（必要なら） */
.fade-in.delay-1 {
  transition-delay: 0.20s;
}
.fade-in.delay-2 {
  transition-delay: 0.40s;
}
.fade-in.delay-3 {
  transition-delay: 0.60s;
}
/* 表示されたら付くクラス */
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in2 {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .9s ease-out, transform .9s ease-out;
  will-change: opacity, transform;
}
/* 表示されたら付くクラス */
.fade-in2.in-view {
  opacity: 1;
  transform: translateX(0);
}

.fade-in3 {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .9s ease-out, transform .9s ease-out;
  will-change: opacity, transform;
}
/* 表示されたら付くクラス */
.fade-in3.in-view {
  opacity: 1;
  transform: translateX(0);
}
/*=========レスポンシブ=====================
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: .8s;
}

.fade-in2 {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.in-view {
  opacity: 1;
  transform: none;
}






=======SP対応・ブレイクポイント768px=========*/
@media (max-width: 1024px) {
  .only_tb {
    display: inline;
  }
  .only_sp {
    display: none;
  }
  .only_ssp {
    display: none;
  }
  .img_pc {
    display: block;
  }
  .img_sp {
    display: none;
  }
  #Button_1, #Button_2 {
    padding-top: 0.5em;
    height: 2.5em;
    width: 8em;
  }
  .nav_list {
    font-size: var(--fs-14);
  }
  .nav_box {
    gap: 1em;
  }
	/*top*/
	.mv {
    height: 70vh;
	}
}
@media (max-width: 768px) {
  .only_tb {
    display: inline;
  }
  .only_sp {
    display: inline;
  }
  .only_ssp {
    display: none;
  }
  .img_pc {
    display: none;
  }
  .img_sp {
    display: block;
  }
  /*マージン*/
  .sec_mb {
    margin-bottom: 8vh;
  }
  .SEC_container70 {
    max-width: 768px;
    width: 85vw;
  }
  .SEC_container85 {
    max-width: 768px;
    width: 90vw;
  }
  /*ーーーーーーーーーー



ハンバーガーメニュー



ーーーーーーーーーーー*/
  .nav_box {
    padding: 0.5em 1.5em;
  }
  .nav_list,.Sub .nav_list {
    display: block; /*ナビを縦に並べる*/
    width: 100vw;
    background-color: none;
    margin: 0;
  }
  .menu_btn {
    position: fixed;
    border-radius: 0 0 0 30px;
    top: 0px;
    right: 0px;
    display: flex;
    height: 55px;
    width: 55px;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  /* メニュー開いたらMENU文字を消す */
  #menu_btn_check:checked ~ .menu_btn::after {
    content: none;
  }
  #menu_btn_check:checked ~ .menu_btn {
    filter: none;
  }
  .menu_btn span, .menu_btn span:before, .menu_btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 1px;
    background-color: #5D6B5D;
    position: absolute;
  }
  .menu_btn span:before {
    bottom: 8px;
  }
  .menu_btn span:after {
    top: 8px;
  }
  #menu_btn_check:checked ~ .menu_btn span {
    background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
  }
  #menu_btn_check:checked ~ .menu_btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #ffffff;
  }
  #menu_btn_check:checked ~ .menu_btn span {
    background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
  }
  #menu_btn_check:checked ~ .menu_btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #ffffff;
  }
  #menu_btn_check:checked ~ .menu_btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #ffffff;
  }
  :checked ~ .menu_btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #ffffff;
  }
  #menu_btn_check {
    display: none;
  }
  .menu_content ul {
    padding-top: 40%;
  }
  .menu_content ul li {
    list-style: none;
  }
  .menu_content ul li a {
            display: block;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 1.6em;
        text-align: center;
        position: relative;
        font-size: var(--fs-23);
        letter-spacing: 0.16em;
	  text-shadow: 1px 1px 1px rgba(93, 107, 93, 0.9);
	}
  /*×でメニューをを外へ出す*/
  .menu_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /*leftの値を変更してメニューを画面外へ*/
    z-index: 900;
    transition: all 0.5s; /*アニメーション設定*/
    background-image:linear-gradient(0deg,rgba(93, 107, 93, 0) 0%, rgba(93, 107, 93, 0.7) 30%, rgba(93, 107, 93, 0.9) 75%);
	}
	.menu_content::before{
		content: "";
		width: 30%;
		aspect-ratio:184/160;
		background-image: url("../images/common/top_logo2.svg");
		background-repeat: no-repeat;
    background-size: contain;
    background-position: left top;
		position: absolute;
		top:12%;
		left:50%;
		transform: translate(-50%,-50%);
		filter: drop-shadow(1px 1px 1px rgba(67, 94, 11, 0.6));
		z-index: 910;
	}
   	.menu_content::after{
        content: "";
        width: 45%;
        height: 45%;
        background-image: url(../images/common/bg_logo@2x.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right bottom;
        position: absolute;
        top: -10%;
        left: 0%;
        z-index: 910;
        opacity: 0.2;
        filter: blur(1.5px) saturate(0.2);
	}
  #menu_btn_check:checked ~ .menu_content {
    left: 0; /*メニューを画面内へ*/
  }
  .link:link:hover, .link:visited:hover {
    background-image: none;
    -webkit-background-clip: none;
    background-clip: none;
    color: #5D6B5D;
    font-weight: 400;
  }
  .nav_item_underline {
    padding-bottom: 0;
    position: relative;
  }
  .nav_item_underline::before {
    background-color: rgba(255,255,255,0.6);
    content: "";
    width: 40%;
    height: 1.5em;
	border-radius: 0.5em;
    position: absolute;
    top:0;
	left:30%;
    transform-origin: center top;
    transform: scale(0, 1),translate(-50%,-50%);
    transition: transform 0.3s;
    z-index: -1;
  }
  .nav_item_underline:hover::before {
    transform: scale(1, 1);
  }
  .menu_header {
    display: block;
    text-align: center;
  }
  .menu_header img {
    width: 210px;
  }
  .shop_name {
    color: #ffffff;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  #menu_btn_check ~ .menu_content .menu_header {
    opacity: 1;
    transform: translateY(-22vh);
  }
#header.scrolled {
    background-image: none;
    text-shadow: none;
    padding-bottom: 0;
}
  /*資料請求*/
  #Button_1, #Button_2 {
    display: none;
  }

/*top_logo*/
.logo_fill {
    width: clamp(170px, 17vw, 500px);
	    top: 16%;
	}
  /*サブトップ*/
  .subsec1_box h1 {
    font-size: var(--fs-35);
  }
  .subsec1_box p {
    font-size: var(--fs-18);
  }
  .subsec1_inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1.3fr;
    padding: 10% 0 0 0;
    text-align: center;
  }
  .mv_sub::before {
    width: 40vw;
    height: 40vw;
  }
  .last_sec {
    display: flex;
    flex-direction: column;
    gap: 2.0em;
    justify-content: center;
    margin-bottom: 10vh;
  }
  .shopinfo {
    flex-direction: column;
    row-gap: 1.2em;
    margin-bottom: 5vh;
  }
/*top_logo*/
	.mv {
    height: 55vh;
	}
	.logo_line {
    top: 30%;
	}
    .logo_fill {
        width: 30%;
	}
	.mv_text {
		top:28%;
    font-size: var(--fs-30);
	}
}
@media (max-width: 500px) {
  .only_tb {
    display: inline;
  }
  .only_sp {
    display: inline;
  }
  .only_ssp {
    display: inline;
  }
  .img_pc {
    display: none;
  }
  .img_sp {
    display: block;
  }
/*ハンバーガー内*/
	    .menu_content ul {
        padding-top: 50%;
	}
   	.menu_content::after{
        width: 55%;
        height: 40%;
	}
/*top_logo*/
	.mv {
    height: 45vh;
	}
	.logo_line {
    top: 30%;
	}
    .logo_fill {
        width: 30%;
	}
	.mv_text {
		top:28%;
    font-size: var(--fs-28);
	}
  /*サブトップ*/
  .subsec1_box h1 {
    font-size: var(--fs-30);
  }
  .subsec1_box p {
    font-size: var(--fs-16);
  }

}