@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
body {
  min-height: 100vh;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
textarea:not([rows]) {
  min-height: 10em;
}
:target {
  scroll-margin-block: 5ex;
}

/* 追加: 画像のリセット */
/* img {
  max-width: 100%;
  height: auto;
  display: block;
} */

body {
  line-height: 1;
  font-family: "游ゴシック", "Yu Gothic", "Helvetica Neue", Helvetica,
    "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Meiryo, "Meiryo UI",
    "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Verdana, Roboto,
    sans-serif;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  color: #222222;
  font-size: 62.5%;
  /* background: linear-gradient(45deg, #e4e6f1, #f9f9f9, #eae4fa); */
  background-size: 200% 200%;
  animation: bggradient 20s ease infinite;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

footer {
  text-align: center;
  padding: 1em 0;
}

/* フェードイン */

/*==================================================
ふわっ
===================================*/

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
.start {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}
.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 300px;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 30vw;
  height: 100vh; /*ナビの高さ*/
  background: rgba(255, 255, 255, 0.75);
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
s #g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  font-family: "montserrat", sans-serif;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

#g-nav li a:hover {
  opacity: 0.5;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 1000; /*ボタンを最前面に*/
  top: 30px;
  right: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0px;
  height: 1px;
  border-radius: 2px;
  background-color: #666;
  width: 100%;
}

.openbtn span:nth-of-type(1) {
  top: 12.5px;
}

.openbtn span:nth-of-type(2) {
  top: 25px;
}

.openbtn span:nth-of-type(3) {
  top: 37.5px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 75%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 75%;
}

/* ページトップ */
html {
  scroll-behavior: smooth;
}
.pagetop {
  /* height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; */

  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  /* background: #fff; */
  /* border: solid 2px #000; */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 25px;
  width: 25px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: translateY(20%) rotate(-45deg);
}

/* アコーディオン */
.readmore {
  position: relative;
  margin: 50px auto 0;
  padding: 0px 0px 75px;
}

.readmore-content {
  position: relative;
  height: 150px;
  transition: all 0.8s;
  overflow: hidden;
}

.readmore-content::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75px;
  transition: all 0.8s;
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    #fff 100%
  );
}

.readmore-content.is_open:before {
  display: none;
}

.readmore button {
  position: absolute;
  display: table;
  left: 10%;
  bottom: 0px;
  margin: 0 auto;
  width: 200px;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  background-color: #333;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
  transition: all 0.8ss;
}

/* メインコンテンツ */
.heroImage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh; /* ビューポートの高さ */
  /* border-bottom: 1px solid #f6f6f6; */
  border: 10px solid #232323;

  /* background-image: url("http://127.0.0.1:5500/dist/img/top.svg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.heroImage__title {
  width: 1000%;
  max-width: 1100px;
  padding: 20px;
  position: relative;
  padding: 50px;
}

.heroImage__title span {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -50%);
  width: 200px;
}

.atmosphere {
  width: 100%;
  margin: 0 auto;
}

.atmosphereImg {
  width: 100%;
  margin: 0 auto;
}

.atmosphereImgWarp {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3列 */
  gap: 30px; /* 各画像の間のスペース */
  /* padding: 5px; */
  opacity: 0.9;
}

.atmosphereImg {
  width: 100%;
  /* padding: 10px; */
  box-sizing: border-box;
}

.atmosphereImg img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

.epilogue {
  max-width: 1110px;
  margin: 0 auto;
  padding: 200px 20px;
  font-feature-settings: "palt";
  position: relative;
}

.epilogueImg {
  position: absolute;
  bottom: 0%;
  right: 10%;
  transform: translate(40%, 0%);
  width: 200px;
}

.epilogueTtlWarp {
  max-width: 300px;
  padding: 0 0 50px;
}

.epilogueTtl {
  font-family: "montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  margin: 0 0 0.5em 0;
}

.epilogueTtlSub {
  font-family: "montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  padding: 0 0 100px 0;
}

.epilogueTxt {
  font-family: "游ゴシック", "Yu Gothic", "Helvetica Neue", Helvetica,
    "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Meiryo, "Meiryo UI",
    "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Verdana, Roboto,
    sans-serif;
  /* font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; */
  /* max-width: 914px; */
  font-size: 42px;
  font-weight: 700;
  font-style: normal;
  /* text-align:justify; */
  letter-spacing: 0.1em;
  line-height: 2;
  /* padding: 0 0 100px 0; */
  display: flex;
  flex-wrap: wrap;
  /*margin: 0 0 1em 0;*/
}

.epilogueTxt span {
  margin: 0 0.5em 0 0;
}
.epilogueTxtH3 {
  font-family: "游ゴシック", "Yu Gothic", "Helvetica Neue", Helvetica,
    "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Meiryo, "Meiryo UI",
    "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Verdana, Roboto,
    sans-serif;
  /* font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; */
  /* max-width: 914px; */
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  /* text-align:justify; */
  letter-spacing: 0.1em;
  line-height: 2;
  /* padding: 0 0 100px 0; */
  display: flex;
  flex-wrap: wrap;
  /*margin: 0 0 1em 0;*/
}

.epilogueTxtH3 span {
  margin: 0 0.5em 0 0;
	font-size: 23px;
}


.epilogueTxtSub {
  /* color: #9c9c9c; */
  font-family: "游ゴシック", "Yu Gothic", "Helvetica Neue", Helvetica,
    "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Meiryo, "Meiryo UI",
    "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Verdana, Roboto,
    sans-serif;
  /* font-family: "montserrat", sans-serif; */
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.5;
  /* padding: 0 0 15vw 0; */
  max-width: 50em;
}
.epilogueTxtSub span {
	color: red;
}

.info {
  background-color: #f6f6f6;
}

.info-wh {
  background-color: #fff;
}

.infoWarp {
  max-width: 1110px;
  margin: 0 auto;
  padding: 150px 20px 150px;
}

.info--sub .infoWarp {
  padding: 0 20px 150px;
}

/* .infoImg {
  width: 100%;
  height: 30vw;
  background-image: url(../img/detail.jpg);
  background-position: center;
  background-size: cover;
} */

.infoTxtWarp {
  /* margin: 100px 100px 0; */
}

.infoTtl {
  font-family: "montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  padding: 0 0 50px 0;
}

.infoTtl::before {
  content: "";
  border-left: 3px solid #d89750;
  padding-left: 10px;
}

.infoTxt {
  max-width: 1100px;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  /* text-align:justify; */
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 0 0 1.5em 0;
}

.infoTxt--floor {
  border-top: 1px solid #ddd;
  padding: 24px 0;
}

.infoTxt-points {
  background-color: white;
  padding: 1em;
  line-height: 1.5;
  display: block;
  border-radius: 2px;
  margin: 1em 0 0 0;
}

.infoTxtSub {
  max-width: 914px;
  color: #9c9c9c;
  font-family: "montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding: 0 0 15vw 0;
}

.infoTxt dt {
  font-weight: 700;
  margin: 0 0 1em;
}

.infoSecial {
  font-size: 12px;
  letter-spacing: 0;
  margin: 0 0 0 4px;
  color: #999;
}

.infoTxt dd {
  padding: 0 0 0 1em;
  font-size: 14px;
  /* max-width: 50em; */
  /* text-align: justify; */
}

.infoCatWrap {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
}

.infoCat {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.4;
}

.infoSexWrap {
  margin-left: 16px;
}

.infoSex {
  font-size: 12px;
  font-weight: initial;
  background: #6b95c4;
  color: #fff;
  line-height: 1;
  padding: 4px 6px 3px;
  border-radius: 2px;
}

.infoSex--w {
  background: #f08cb7;
}

.infoSex + .infoSex {
  margin-left: 8px;
}

.infoTxtFlex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.infoTxtFlexsImg {
  width: 50%;
  padding: 0 50px;
}

.infoTxtFlexsTxt {
  width: 560px;
}

.infoTxtFlexsTxt--sub {
  font-size: 16px;
  width: 50%;
  max-width: 50em;
}

.shopName {
  font-weight: 700;
  margin: 0 0 1em;
}

.infoTxtFlexsTxt--sub__dt {
  padding: 0 20px 0;
}
.infoTxtFlexsTxt--sub__dd {
  padding: 0 20px 0;
}

.Clause {
  display: flex;
}

.Clause::before {
  content: "・";
}

.blogWarp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  /* padding: 5px; */
  opacity: 0.9;
}

.blog {
  border-bottom: 1px solid #f6f6f6;
  padding: 0 0 20px;
}

.blog:last-child {
  margin-right: auto;
}

.blog--coming {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  background-color: #f6f6f6;
  border: 1px solid #fff;
  border-radius: 3px;
}

.blog--coming p {
  font-size: 12px;
  line-height: 1.5;
}
.blog a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.blog a:hover {
  opacity: 0.9;
}

.blogTxt {
  margin: 20px 0 0;
}

.blogTtl {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

.blogTtl p {
  margin-top: 10px;
  text-align: left;
}

.blogTtl--day {
  font-size: 10px;
  color: #a6a6a6;
}

.blogName {
  display: flex;
  align-items: center;
  position: static;
  margin-top: 20px;
  letter-spacing: 0;
}

.blogIcon {
  width: 50px;
  margin-left: 3px;
}

.blogIcon figure {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}

.blogPerson {
  margin-left: 10px;
}

.blogPerson__shop {
  font-size: 10px;
  font-weight: normal;
}

.blogPerson__name {
  font-size: 12px;
  font-weight: bold;
  font-family: Helvetica;
}

.block-store-list--store-address {
  margin: 20px auto;
  font-size: 14px;
  line-height: 1.25;
}

.block-store-list--store-tel {
  margin: 20px auto;
  font-size: 14px;
  line-height: 1.25;
}

.itemImg {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  position: relative;
}

.itemImg01 {
  background-image: url(../img/item_01.jpg);
  position: relative;
}

.itemImg01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(24, 26, 25, 0.2);
  mix-blend-mode: multiply;
}

.itemImg02 {
  background-image: url(../img/item_02.jpg);
}

.itemImgTtl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.itemImg__Ttl {
  font-family: "montserrat", sans-serif;
  font-size: 32px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  padding: 0 0 25px 0;
  color: #fff;
  text-align: center;
}

.itemImg__Ttl span {
  display: block;
  font-family: "montserrat", sans-serif;
  font-size: 28px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  padding: 0 0 0.5em 0;
  color: #fff;
  text-align: center;
}

.itemImg__TtlSub {
  font-family: "montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}

.itemTxtWarp {
  margin: 100px calc(100px + 7.5vw) 0;
}

.itemTtl {
  font-family: "montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  margin: 0 0 0.75em 0;
}

.itemTtlSub {
  font-family: "montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  padding: 0 0 100px 0;
}

.itemTxt {
  max-width: 1100px;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  /* text-align:justify; */
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 0 0 15vw 0;
}

.itemTxtSub {
  max-width: 914px;
  color: #9c9c9c;
  font-family: "montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding: 0 0 15vw 0;
}

.itemStyling {
  margin: 0 0 0 7.5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.itemStyling__imgAll {
  width: 40%;
  height: 50vw;
  background-position: center;
  background-size: cover;
}

.itemStyling__imgPick {
  width: 59.5%;
  height: 50vw;
  background-position: center;
  background-size: cover;
}

.itemStyling__img01-01-01 {
  background-image: url(../img/item_01-01-01.jpg);
}
.itemStyling__img01-01-02 {
  background-image: url(../img/item_01-01-02.jpg);
}

.itemStyling__img01-02-01 {
  background-image: url(../img/item_01-02-01.jpg);
}
.itemStyling__img01-02-02 {
  background-image: url(../img/item_01-02-02.jpg);
}

.itemStyling__img02-01-01 {
  background-image: url(../img/item_02-01-01.jpg);
}
.itemStyling__img02-01-02 {
  background-image: url(../img/item_02-01-02.jpg);
}

.itemStyling__img02-02-01 {
  background-image: url(../img/item_02-02-01.jpg);
}
.itemStyling__img02-02-02 {
  background-image: url(../img/item_02-02-02.jpg);
}

.itemStyling__credit {
  width: 100%;
  margin: 100px 0 100px 100px;
}

.itemStyling__creditTtl {
  max-width: 1100px;
  font-family: "montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  padding: 0 0 50px 0;
}

.itemStyling__creditList {
  max-width: 914px;
  font-family: "montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding: 0 0 100px 0;
}

.itemStyling__creditList li a {
  color: #222222;
  text-decoration: none;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.itemStyling__creditList li a:hover {
  opacity: 0.5;
}

.itemStyling__creditList li span {
  font-family: "montserrat", sans-serif;
  display: inline-block;
  width: 7em;
  font-weight: 500;
}

/* ショップリスト */

.p-shoplist {
  background-color: #f6f6f6;
  padding: 250px 7.5vw 0;
}

.p-shoplist__ttl {
  margin: 0 auto 50px;
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .p-shoplist__ttl {
    margin: 0 0 30px;
  }
}

.shoplist__block {
}

.p-shoplist__inner {
  justify-content: center;
}

@media only screen and (max-width: 640px) {
  .p-shoplist__inner {
    display: block;
  }
}

.p-shoplist__block {
  align-items: center;
  border-bottom: 1px solid #ccc;
  margin: 0 auto 50px;
  padding: 0 0 50px;
  text-align: left;
}

@media only screen and (max-width: 640px) {
  .p-shoplist__block {
    margin: 0 0 50px;
    width: auto;
  }

  .p-shoplist__block:last-of-type {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .p-shoplist__block {
    display: block;
    margin: 0 auto 100px;
  }
}

.p-shoplist__overview {
  flex: 0 0 calc(50% - 20px);
  width: calc(50% - 20px);
}

@media only screen and (max-width: 640px) {
  .p-shoplist__overview {
    flex: 0 0 100%;
    width: 100%;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .p-shoplist__overview {
    flex: 0 0 100%;
    margin: 0 0 20px;
    width: 100%;
  }
}

.p-shoplist__imgArea {
  flex: 0 0 calc(50% - 5px);
  width: calc(50% - 5px);
}

@media only screen and (max-width: 640px) {
  .p-shoplist__imgArea {
    flex: 0 0 100%;
    margin: 30px 0 0;
    width: 100%;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .p-shoplist__imgArea {
    flex: 0 0 100%;
    width: 100%;
  }
}

.p-shoplist__img {
  border-radius: 3px;
  overflow: hidden;
}

.p-shoplist__shopName {
  font-size: 18px;
  line-height: 1em;
  padding-bottom: 5px;
}

.p-shoplist__shopKana {
  font-size: 10px;
}

@media only screen and (max-width: 640px) {
  .p-shoplist__shopKana {
    display: block;
    margin: 5px 0 0 0;
  }
}

.p-shoplist__shopinfo {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  margin: 20px auto 15px;
}

.p-shoplist__shopinfo dt {
  align-items: center;
  color: #333;
  display: flex;
  flex: 0 0 80px;
  font-size: 12px;
  font-style: italic;
  margin: 5px 0 0 0;
  max-width: 80px;
}

.p-shoplist__shopinfo dd {
  flex: 0 0 calc(100% - 80px);
  line-height: 1.4;
  margin: 5px 0 0 0;
  width: calc(100% - 80px);
}

.p-shoplist__map {
  font-style: italic;
  margin-left: 5px;
}

.p-shoplist__tel::after {
  display: none;
}

@media only screen and (max-width: 640px) {
  .p-shoplist__tel::after {
    display: inline;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .p-shoplist__tel::after {
    display: inline;
  }
}

.p-shoplist__notice {
  font-size: 10px;
}

.p-shoplist__sns ul {
  display: flex;
  justify-content: flex-start;
  margin: 10px 0 20px;
}

.p-shoplist__sns li {
  margin-right: 10px;
  width: 18px;
}

.p-shoplist__sns li svg {
  fill: #333;
}

.p-shoplist .c-linkUnderLine {
  font-family: inherit;
  color: #727272;
}

.sectionLabel {
  align-items: center;
  color: #5ba4c3;
  display: flex;
  flex: 1 1 auto;
  font-family: "montserrat", sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  justify-content: center;
  line-height: 1;
  padding-bottom: 80px;
  padding-top: 20px;
}

@media only screen and (max-width: 640px) {
  .sectionLabel {
    font-size: 3rem;
    padding: 0 2rem 2.5rem;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .sectionLabel {
    font-size: 3.5rem;
    padding: 0 2rem 4rem;
  }
}

.c-articleLabelL {
  color: #333;
  font-family: "montserrat", sans-serif;
  font-size: min(2vw, 50px);
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .c-articleLabelL {
    font-size: 30px;
  }
}

.c-articleLabelM {
  color: #333;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E,
    メイリオ, Meiryo, serif;
  font-size: min(1.1vw, 30px);
  font-weight: 400;
  line-height: 1.5em;
}

@media only screen and (max-width: 640px) {
  .c-articleLabelM {
    font-size: 16px;
    line-height: 1.5em;
  }
}

.articleLabelS {
  font-size: 1.2rem;
  font-weight: 100;
  margin-right: 10px;
}

@media only screen and (min-width: 1024px) {
  .nonePc {
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  .noneSp {
    display: none;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .noneTl {
    display: none;
  }
}

.c-linkButton {
  background: #000;
  border: 1px solid #000;
  border-radius: 1px;
  color: #fff;
  display: inline-block;
  font-family: "montserrat", sans-serif;
  font-size: 16px;
  line-height: 1;
  padding: 8px 1.6em 9px;
  position: relative;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.c-linkButton::after {
  -webkit-transform: rotate(45deg);
  border-right: 1px #fff solid;
  border-top: 1px #fff solid;
  content: "";
  display: block;
  height: 4px;
  margin-top: -2px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
  width: 4px;
}

.c-linkButton:hover {
  background: #fff;
  background-position: 99% 60%;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
}

.c-linkButton:hover::after {
  border-right: 1px #000 solid;
  border-top: 1px #000 solid;
}

.linkArr {
  background: #333;
  border: 1px solid #fff;
  color: #fff;
  color: #fff;
  display: block;
  font-family: "montserrat", sans-serif;
  position: relative;
  text-align: left;
  width: 200px;
}

.linkArr__arr {
  background-color: #fff;
  bottom: 1em;
  height: 1px;
  position: absolute;
  right: 24px;
  transition: all 0.5s ease;
  width: 35px;
}

.linkArr__arr:before {
  -webkit-transform: rotate(40deg);
  background-color: #fff;
  bottom: 3px;
  content: "";
  height: 1px;
  position: absolute;
  right: -1px;
  transform: rotate(40deg);
  transition: all 0.5s ease;
  width: 10px;
}

.linkArr__wrap {
  color: #fff;
  display: block;
  font-size: 12px;
  height: 100%;
  letter-spacing: 0.08em;
  line-height: 3em;
  padding-left: 18px;
  position: relative;
  text-transform: capitalize;
  width: 100%;
  z-index: 1;
}

.linkArr:hover .BtnArr__arr,
.linkArr:hover .BtnArr__arr:before {
  -webkit-transform: translateX(10px);
  background-color: #fff;
  transform: translateX(10px);
  transition: all 0.5s ease;
}

.linkArr:hover .BtnArr__arr:before {
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

.c-linkUnderLine {
  display: inline-block;
  font-family: "montserrat", sans-serif;
  padding: 0 1px;
  position: relative;
  text-decoration: none;
  transition: color ease 0.3s;
}

.c-linkUnderLine::after,
.c-linkUnderLine::before {
  background-color: #4e4e4e;
  content: "";
  height: 1px;
  position: absolute;
}

.c-linkUnderLine::before {
  bottom: -1px;
  left: 0;
  transition: width ease 0.4s;
  width: 0%;
}

.c-linkUnderLine::after {
  bottom: -1px;
  left: 0;
  transition: all ease 0.6s;
  width: 100%;
}

.c-linkUnderLine:hover {
  text-decoration: none;
}

.c-linkUnderLine:hover::before {
  background-color: #4e4e4e;
  width: 100%;
}

.c-linkUnderLine:hover::after {
  background-color: #ddd;
  left: 100%;
  transition: all ease 0.2s;
  width: 0%;
}

.c-linkHoverLine {
  color: #333;
  display: inline-block;
  font-family: "montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1em;
  position: relative;
  text-align: center;
  transition: 0.3s;
  z-index: 2;
}

.c-linkHoverLine::after {
  background: #4e4e4e;
  bottom: 1px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
}

.c-linkHoverLine:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

.c-linkHoverLine:hover:before {
  -webkit-transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: left top;
}

.u-mt10px {
  margin-top: 10px;
}

.u-mt20px {
  margin-top: 20px;
}

.u-mt30px {
  margin-top: 30px;
}

.u-mt60px {
  margin-top: 60px;
}

.u-mb100px {
  margin-bottom: 100px;
}

.u-imgfix {
  height: auto;
  vertical-align: bottom;
  width: 100%;
}

.js-show-b {
  -webkit-transform: translate(0, 10px);
  opacity: 0;
  transform: translate(0, 10px);
  transition: all 1s;
}

.js-show-b.is-show-b {
  -webkit-transform: translate(0, 0);
  opacity: 1;
  transform: translate(0, 0);
}

.js-show-t {
  -webkit-transform: translate(0, -10px);
  opacity: 0;
  transform: translate(0, -10px);
  transition: all 1s;
}

.js-show-t.is-show-t {
  -webkit-transform: translate(0, 0);
  opacity: 1;
  transform: translate(0, 0);
}

.js-show-l {
  -webkit-transform: translate(-10px, 0);
  opacity: 0;
  transform: translate(-10px, 0);
  transition: all 1s;
}

.js-show-l.is-show-l {
  -webkit-transform: translate(0, 0);
  opacity: 1;
  transform: translate(0, 0);
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 640px) {
  .js-show-l.is-show-l {
    display: block;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .js-show-l.is-show-l {
    display: block;
  }
}

.js-show-r {
  -webkit-transform: translate(10px, 0);
  opacity: 0;
  transform: translate(10px, 0);
  transition: all 1s;
}

.js-show-r.is-show-r {
  -webkit-transform: translate(0, 0);
  opacity: 1;
  transform: translate(0, 0);
}

.l-basewidth {
  margin: 0 auto 50px;
  max-width: 1640px;
  /* padding-left: 40px;
  padding-right: 40px; */
  /* width: 85.4166666667vw; */
  width: calc(100vw -15vw);
}
/*--vol4--*/
.pa__out{
  padding-top: 30px;
}
@media screen and (max-width: 640px) {
  .pa__out{
    margin-top: 60px;
  }
}
.e__v__font{
  font-size: 20px;
}
.epilogueTxtSubimg {
	width: 100%;
}
@media screen and (max-width: 640px) {
  .epilogueTxtSubimg{
	  width: 90%;
	  margin: 0 auto;
	  text-align: center;
  }
	
	 .epilogueTxtSubimg img {
        display: inline-block;
        max-width: 100%; 
        height: auto;
    }

}


.epilogueTxtEvContent {
  display: flex;
  justify-content: space-between;
  
  gap: 2%;
  background-color: #f5f5f5; 
  padding: 1em 1em;    
	margin: 50px 0;
	    align-items: center;
}

/* 左右の幅 */
.epilogueTxtEvLeft {
  width: 55%;
}

.epilogueTxtEvRight {
  width: 35%;
}

/* 画像 */
.epilogueTxtSubimg img {
  width: 100%;
  height: auto;
  display: block;
}


@media only screen and (max-width: 640px) {
  .epilogueTxtEvContent {
    flex-direction: column; 
    align-items: center;    
  }

  .epilogueTxtEvLeft,
  .epilogueTxtEvRight {
    width: 90%;
    margin: 0 auto;
  }

  .epilogueTxtSubimg {
    text-align: center;     
  }

  .epilogueTxtSubimg img {
    display: inline-block;
    max-width: 100%;
  }
}
