@charset "utf-8";


/* Font Awesome
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/* Google Fonts
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

/* カラー管理
---------------------------------------------------------------------------*/
:root {
  --bg-color: linear-gradient(0deg,rgba(246, 207, 104, 1) 0%, rgba(246, 233, 197, 1) 100%);
  --text-color: #707070;
  --link-color: #F98B6D;
  --header-color: rgba(255, 255, 255, .9);
  --menu-bar-color: #F6CF68;
  --close-btn: #F8C53F; /* ハンバーガーメニューの閉じるボタン */
  --logo-filter: invert(28%) sepia(1%) saturate(2777%) hue-rotate(1deg) brightness(102%) contrast(81%);
  --logo-f-filter: invert(86%) sepia(1%) saturate(0%) hue-rotate(97deg) brightness(98%) contrast(98%);
  --shop-menu-filter: invert(42%) sepia(2%) saturate(15%) hue-rotate(359deg) brightness(102%) contrast(81%);
  --kv-bottom-grad: linear-gradient(0deg,rgba(246, 233, 197, 1) 10%, rgba(246, 233, 197, 0) 100%);
  /* LINE UP */
  --lineup-bg-color: #949494; /* 背景 */
  --lineup-bullet: #F6CF68; /* カルーセルのドット */
  --lineup-bullet-active: #4D4D4D; /* ドットアクティブ */
  --shop-btn-bg: #FFF; /* ボタンの背景色 */
  --shop-btn-font: #F8C53F; /* ボタンの文字色 */
  --shop-btn-filter: invert(93%) sepia(53%) saturate(2654%) hue-rotate(320deg) brightness(96%) contrast(103%); /* ボタンのアイコン色 */
  --shop-btn-shadow: #F8C53F; /* ボタンの影 */
}


/* リセット
---------------------------------------------------------------------------*/
figure { margin: 0;}
dd { margin: 0;}
nav ul { list-style: none;}
h1,h2,h3,h4,h5,p,nav,ul,li,ol { margin: 0; padding: 0;}
section li { margin-left: 1rem;}
table { border-collapse: collapse;}
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
video {
  max-width: 100%;
}
iframe {
  width: 100%;
}
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font: inherit;
  font-weight: inherit;
  color: inherit;
}

/* 全体
---------------------------------------------------------------------------*/
body * {
  box-sizing: border-box;
}
html, body {
  font-size: 15px;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", sans-serif;
  -webkit-text-size-adjust: none;
  color: var(--text-color);
  line-height: 1;
  letter-spacing: 0.05em;
}
a, button {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
a:hover, button:hover {
  opacity: 0.8;
}
.container {
  height: 100%;
  padding-top: 56px;
}
.wrap {
  max-width: 1200px;
  margin-inline: auto;
}
.pc_only { display: block; }
.sp_only { display: none; }


/* header
---------------------------------------------------------------------------*/
header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header-color);
  box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, .16);
}
header .wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding-inline: 30px;
}
.logo {
  width: 124px;
  height: auto;
}
.logo img {
  width: 100%;
  filter: var(--logo-filter);
}
.menu_h {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu_h ul {
  display: flex;
  align-items: center;
}
.menu_h a {
  position: relative;
  display: flex;
  align-items: center;
  height: 56px;
  padding-inline: 1.2em;
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0);
}
.menu_h a:hover,
.page-slug-oneday .menu_h li:nth-of-type(1) a {
  border-bottom-color: var(--menu-bar-color);
}
.online button {
  position: relative;
  display: flex;
  align-items: center;
  height: 37px;
  padding-inline: 1.2em 1.3em;
  padding-bottom: 0.1em;
  border: #707070 1px solid;
  border-radius: 20px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.online button::before {
  content: "";
  width: 19px;
  height: 21px;
  margin-right: 0.5em;
  background-image: url(../images/icon_shopping.svg);
  background-size: cover;
  filter: var(--shop-menu-filter);
}
.menu_h .online button:hover {
  border-bottom-color: inherit;
}
.menu_h .online button {
  color: var(--text-color);
}


/* KV
---------------------------------------------------------------------------*/
.kv {
  position: relative;
  max-height: 1100px;
}
.kv::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20vh;
  background: var(--kv-bottom-grad);
}


/* main
---------------------------------------------------------------------------*/
main {
  position: relative;
  z-index: 1;
  background: var(--bg-color);
  padding-top: 1px;
}
section {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  margin-inline: auto;
  padding-block: 70px;
  padding-inline: 30px;
}
section h2 {
  margin-bottom: 1em;
}
section h2 img {
  display: block;
  margin-inline: auto;
  width: 520px;
  max-width: 95%;
}
section .inner {
  border-radius: 30px;
  overflow: hidden;
}
/*============ NEW COLOR =============*/
.new {
  max-width: 960px;
  margin-top: -240px;
}

/*============ LINE UP =============*/
.lineup {
  padding-inline: 20px;
  background-color: var(--lineup-bg-color);
}
.lineup .online {
  width: fit-content;
  margin: 0 auto;
}
.lineup .online button {
  height: 55px;
  padding-inline: 2em;
  border: none;
  border-radius: 30px;
  background-color: var(--shop-btn-bg);
  color: var(--shop-btn-font);
  font-size: 1.6rem;
  font-weight: 600;
  box-shadow: 0px 5px 0px var(--shop-btn-shadow);
}
.lineup .online button::before {
  width: 26px;
  height: 28px;
  filter: var(--shop-btn-filter);
}

/*============ Swiper =============*/
.lineup_gallery {
  position: relative;
  padding: 0 20px 60px;
}
.lineup_gallery .swiper-wrapper {
  padding-block: 30px;
}
.lineup_gallery .swiper-slide {
  transition: transform 0.3s ease;
}
.lineup_gallery .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
}
.lineup_gallery .swiper-slide-active {
  transform: scale(1.1);
}
.lineup_gallery .swiper-slide-active::after {
  background-color: rgba(0, 0, 0, 0);
}
.lineup_gallery .swiper-pagination {
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 6px 2px;
}
.lineup_gallery .swiper-pagination-bullet {
  opacity: 1;
  background-color: var(--lineup-bullet);
  width: 9px;
  height: 9px;
}
.lineup_gallery .swiper-pagination-bullet-active {
  background-color: var(--lineup-bullet-active);
}
.lineup_gallery .swiper-button-next,
.lineup_gallery .swiper-button-prev {
  color: #FFF;
  top: 44%;
}
.lineup_gallery .swiper-button-next:after,
.lineup_gallery .swiper-button-prev:after {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, .16);
}
.lineup_gallery .swiper-button-next {
  right: 0;
}
.lineup_gallery .swiper-button-prev {
  left: 0;
}

/*============ ABOUT LENS =============*/
.about {
  max-width: 960px;
}
.about .inner {
  background-color: #FFF;
  padding-bottom: 60px;
}
.about h3 {
  width: fit-content;
  margin-inline: auto;
  margin-block: 1.5em 0.5em;
  padding: 0 0.5em 0.5em;
  color: #5E3118;
  font-size: 2.5rem;
  font-weight: 600;
  border-bottom: #5E3118 6px dotted;
}
.spec {
  display: flex;
  flex-wrap: wrap;
	align-items: stretch;	
	width: 750px;
  max-width: 90%;
  margin: 40px auto 0;
  line-height: 1.5;
}
.spec dt {
  width: 14em;
  padding: 1em 0.5em;
  color: #5E3118;
  font-weight: 600;
	border-top: 1px solid #ccc;
}
.spec dd {
  width: calc(100% - 14em);
  padding: 1em;
	border-top: 1px solid #ccc;
}
.spec dt:nth-of-type(1),.spec dd:nth-of-type(1) {
  border-top: 0;
}
.spec dd li {
  list-style: none;
  position: relative;
  margin-bottom: 3px;
}
.spec dd li::before {
  content: "・";
  position: absolute;
  left: -1em;
  top: 0;
}

/* footer
---------------------------------------------------------------------------*/
footer {
  background-color: #FFF;
}
footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 30px;
  padding-block: 70px;
}
.logo_f {
  width: 148px;
  height: auto;
}
.logo_f img {
  width: 100%;
  filter: var(--logo-f-filter);
}
.menu_f {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu_f ul {
  display: flex;
  align-items: center;
}
.menu_f a {
  position: relative;
  padding: 0.5em 1.2em;
  color: var(--text-color);
  font-size: 1.05rem;
  font-weight: 700;
}
.menu_f .online button::before {
  width: 18px;
  height: 20px;
}
.sns {
  padding-inline: 30px;
}
.sns a {
  display: block;
  width: 40px;
  margin-inline: auto;
}
.copyright {
  margin-top: 50px;
  padding: 50px 30px;
  border-top: #D7D7D7 1px solid;
  text-align: center;
  font-size: 0.85rem;
}


/* モーダル
---------------------------------------------------------------------------*/
.modal {
  display: none; /* 初期は非表示 */
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}
.modal.open {
  display: flex;
}
.modal-content {
  position: relative;
  background: #fff;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  opacity: 0; 
  transition: opacity 0.3s ease;
  pointer-events: none; 
}
.modal.open .modal-content {
  opacity: 1;
  pointer-events: auto;
}

/* 閉じるボタン */
.modal .close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 56px;
  height: 56px;
}
.modal .close::before,
.modal .close::after {
  content: "";
  display: block;
  position: absolute;
  left: 13px;
  width: 30px;
  height: 4px;
  background-color: #FFF;
  border-radius: 4px;
  transition: all .5s;
}
.modal .close::before {
  top: 16px;
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.modal .close::after {
  bottom: 16px;
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}


/* ハンバーガーメニュー
---------------------------------------------------------------------------*/
#menuModal.modal {
  position: fixed;
  align-items: flex-start;
  justify-content: flex-end;
}
#menuModal .modal-content {
  position: absolute;
  top: 60px;
  right: 0;
  width: 320px;
  height: calc(100% - 60px);
  padding: 40px;
  background: #ffffff;
  border-radius: 0;
  border-top-left-radius: 80px;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  opacity: 0;
}
#menuModal.open .modal-content {
  right: 0;
  opacity: 1;
}
.menu_s li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #A7A7A7;
}
.menu_s li a {
  display: block;
  color: #707070;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1em 0.2em;
  text-decoration: none;
  transition-duration: 0.2s;
}
.menu_s .online button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  margin-left: 0;
  margin-top: 40px;
  border-radius: 30px;
  border-color: #A7A7A7;
  font-size: 1.2rem;
  font-weight: 600;
}
.menu_s .online button::before {
  width: 18px;
  height: 20px;
}
.menu_s .sns {
  padding-top: 40px;
}

/* メニューボタン */
.toggle_btn {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  transition: all .5s;
  cursor: pointer;
  z-index: 100;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 15px;
  width: 26px;
  height: 4px;
  background-color: #999;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 16px;
}
.toggle_btn span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.toggle_btn span:nth-child(3) {
  bottom: 16px;
}

/* 閉じるボタン */
#menuModal .close {
  background-color: var(--close-btn);
}


/* オンラインショップ
---------------------------------------------------------------------------*/
#popup.modal {
  position: fixed;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
#popup .modal-content {
  position: relative;
  background: #fff;
  padding: 0;
  width: fit-content;
  max-width: 90%;
  border-radius: 8px;
}
#popup .modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.shop_list {
  margin: 1em 0;
  padding: 1.5em 2.5em;
  background-color: #FFF;
  border-radius: 20px;
  line-height: 2;
}
.shop_list ul {
  list-style: none;
}
.shop_list li {
  position: relative;
  display: flex;
  font-size: 1.2rem;
  margin: 0;
  padding-left: 0.8em;
}
.shop_list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 1.5em;
  margin-right: 0.3em;
  font-size: 0.5rem;
}
.shop_list a {
  color: var(--link-color);
}
.shop_list li ul {
  padding-left: 0.5em;
}
.shop_list li ul li {
  display: inline-block;
  margin-left: 0.5em;
}
.shop_list li ul li::before {
  content: "-";
  top: -0.1em;
  margin-right: 0;
  font-size: 1.2rem;
  font-weight: 700;
}


/*================================================
  画面幅900px以下の追加指定 
 ================================================*/

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

  .pc_only { display: none; }
  .sp_only { display: block; }

  header .wrap {
    padding-inline: 15px 56px;
  }
  .menu_h ul {
    display: none;
  }
  .online button {
    padding-inline: 0.8em;
  }

  .kv {
    max-height: 100vh;
  }
  .kv::before {
    height: 40vh;
  }
  .new {
    margin-top: -30vh;
  }

  section {
    padding: 40px;
  }
  section h2 img {
    width: 460px;
    max-width: 100%;
  }
  
  .lineup {
    padding-inline: 0;
  }
  .lineup_gallery {
    padding-inline: 0;
  }
  .lineup_gallery .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset,18%);
  }
  .lineup_gallery .swiper-button-next {
    right: var(--swiper-navigation-sides-offset,18%);
  }

  .about .inner {
    padding-bottom: 20px;
  }
  .about h3 {
    font-size: 2rem;
  }
  .spec dt, .spec dd {
    padding: 1em 0.5em;
  }
  .spec dt.note {
    width: 100%;
  }
  .spec dd.note {
    width: 100%;
    padding-top: 0;
    border-top: none;
  }
  .spec dd.note br {
    display: none;
  }

  footer .wrap {
    flex-direction: column;
    gap: 30px;
    padding: 30px 15px;
  }
  .menu_f {
    flex-direction: column;
  }
  .menu_f .online button {
    padding-inline: 2em;
  }
  .copyright {
    margin-top: 30px;
    padding: 30px;
  }

  .toggle_btn {
    display: block;
  }

  main.low section {
    padding-bottom: 50px;
  }

}

/*================================================
  画面幅576px以下の追加指定 
 ================================================*/

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

  html, body {
    font-size: 13px;
  }

  section {
    padding-block: 30px;
    padding-inline: 15px;
  }

  .lineup {
    padding-inline: 15px;
  }
  .lineup_gallery .swiper-wrapper {
    padding-block: 0;
  }
  .lineup_gallery .swiper-slide::after {
    display: none;
  }
  .lineup_gallery .swiper-slide-active {
    transform: unset;
  }
  .lineup_gallery .swiper-button-prev {
    left: -8px;
  }
  .lineup_gallery .swiper-button-next {
    right: -8px;
  }

  .about h3 {
    font-size: 1.8rem;
    border-bottom-width: 4px;
  }
  .spec dt {
    width: 10em;
  }
  .spec dd {
    width: calc(100% - 10em);
  }

  .menu_f a {
    padding: 0.8em;
  }
  
  .shop_list {
    padding: 1.5em;
  }

}
