@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: 200px;
}

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

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 30vw;
  height: 100vh;
  /*ナビの高さ*/
  background: #e8e8e8b5;
  /*動き*/
  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: Roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  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;
}

.g-nav__bottom {
  margin-top: 50px;
  font: bold;
}

/*========= ボタンのための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: 2px;
  border-radius: 2px;
  background-color: #555;
  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: 2px solid #555;
  border-right: 2px solid #555;
  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 {
  width: 100%;
  height: 100vh;
  background: url(../image/mv_f.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
}

@media only screen and (max-width: 640px) {
  .heroImage {
    aspect-ratio: 5/6;
    height: auto;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .heroImage {
    aspect-ratio: 5/4;
    height: auto;
  }
}

.heroImage__title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ttl_logo {
  width: auto;
  height: 80%;
  max-width: 100%;
  filter: drop-shadow(2px 4px 6px black);

  display: flex;
  justify-content: center;
  align-items: center;
}

.ttl_logo img {
  height: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
}

.arknets_logo {
  width: 13%;
  max-width: 275px;
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .ttl_logo {
    height: 80%;
  }

  .arknets_logo {
    width: 21%;
  }
}

@media only screen and (max-width: 640px) {
  .ttl_logo {
    height: 80%;
  }

  .arknets_logo {
    width: 21%;
  }
}

.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__block {
  max-width: 1110px;
  margin: 0 auto;
  font-feature-settings: "palt";
  position: relative;
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .epilogue__block {
    padding: 100px 30px;
  }
}

.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: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  /*font-family: "good-times", sans-serif;
  font-weight: 700;
  font-style: normal;*/
  font-size: 45px;
  letter-spacing: 0.05em;
  line-height: 2;
  display: flex;
  flex-wrap: wrap;
  color: #000000;
}
.epilogueTxt span {
  /* margin: 0 0.5em 0 0; */
  margin: 0;
}
.epilogueTxtSub {
  color: #000000;
  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-size: 19px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1.8;
  padding: 0 0 25px;
}

.epilogueTxtSub_button {
  color: #000000;
  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-size: 19px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1.8;
  padding: 5px 0 5px;
}
.button-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #d1db4a; /* 背景黄色 */
  color: #000;               /* 文字黒 */
  padding: 0.25em 0.5em;      /* 0.1 0.2 */
  border-radius: 9999px;     /* 丸みを最大に */
  text-decoration: none;
  border: none;
  min-width: 8em;
  max-width: 100%;
  box-sizing: border-box;
}

.button-text {
  white-space: nowrap;
  font-size: min(0.7em, 2.333vw); /* 画面幅に応じて調整 *//* 0.3 1 */
  font-weight: bold;
  margin: 0 !important;
  padding-top: 2px;
}

.info .epilogueTxtSub {
  color: #000000;
}

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

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .info__novelty {
    flex-direction: column;
    gap: 20px;
  }

  .infoWarp {
    padding: 50px 30px 50px;
  }
}



.infoTxtWarp {
  padding: 160px 90px;
  background: #f2f2f2;
  border-radius: 1px;
  /*margin-bottom: 100px;*/
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  /* .infoTxtWarp {
    padding: 120px 30px 90px;
  } */
}

.infoTtl {
  font-size: 37px;
  letter-spacing: 0.07em;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  position: relative;
  margin: 0 0 20px;
}

.infoTtl span {
  font-size: 25px;
  display: block;
  margin-bottom: 5px;
}

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

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

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


.info__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.info__inner--col5 {
  grid-template-columns: repeat(5, 1fr);
  margin: 45px 0 0;
}

.info__inner--col5 .info__brandName {
  display: none;
}

@media only screen and (max-width: 640px) {
  .info__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .info__inner--col5 {
    grid-template-columns: repeat(3, 1fr);
    margin: 24px 0 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: #000000;
  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;
  color: #000000;
}

.infoTxt dd {
  /* max-width: 50em; */
  /* text-align: justify; */
  color: #000000;
  line-height: 28px;
}

.infoTxt2 dt {
  font-weight: 700;
  margin: 0 0 1em;
  color: #000000;
}

.infoTxt2 dd {
  /* max-width: 50em; */
  /* text-align: justify; */
  color: #000000;
  line-height: 28px;
}

.infoTxt3 dt {
  font-weight: 700;
  margin: 0 0 1em;
  color: #000000;
}

.infoTxt3 dd {
  /* max-width: 50em; */
  /* text-align: justify; */
  color: #000000;
  line-height: 28px;
}


.infoTxtFlex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.infoTxtFlexsImg {
  width: 60%;
  background: #fafafa;
}

.infoTxtFlexsTxt {
  width: 560px;
  color: #333;
}

.infoTxtFlexsTxt--sub {
  font-size: 16px;
  width: 40%;
  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;
}

.infoTxtWarp .epilogueTxtSub {
  color: #000000;
}


.info__novelty {
  display: flex;
  gap: 50px;
}



.info__novelty-01 {
  flex: 0 0 calc(50%);
  background: #333333;
  padding: 30px;
  border-radius: 3px;
}

.info__novelty-02 {
  padding: 30px;
  border-radius: 3px;
}

.info__noveltyTtl {
  font-size: 15px;
  /* padding: 0; */
}

/* .info__noveltyTtl {
font-size: 15px;
} */

.info__noveltyCare {
  margin: 5px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.info__noveltyCare .info__noveltyImg {
  flex: 0 0 calc(50%);
}

.info__noveltyName {
  margin: auto;
  color: #000000;
}

@media only screen and (max-width: 768px) {
  .info__noveltyCare {
    display: block;
  }
  .info__noveltyCare .info__noveltyImg {
    flex: 0 0 calc(100%);
    width: 100%;
  }
  .info__noveltyName {
padding-top: 20px;
  }
}

.NewsHead__annotation {
  background: #404040;
  display: block;
  padding: 15px;
  border-radius: 3px;
  color: #232323;
  font-size: 12px;
  margin: 20px auto 0;
  color: #000000;
}

.info__Popup .infoTxtWarp {
  background-color: #d0da4a;
  color: #000000;
}

.info__Popup .epilogueTxtSub {
  color: #333;
}

.info__brand {
  margin-bottom: 50px;
  padding: 0;
}

.info__brandTtl {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 1.2; /* ← 行間を詰めておくとよりテキストぴったり */
  color: #000000;
  padding-left: 16px;
  display: inline-block;
  margin: 0 0 30px 0;
}

.info__brandTtl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #000;
}
.info__brandTtl__brand__4 {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 1.2; /* ← 行間を詰めておくとよりテキストぴったり */
  color: #000000;
  padding: 0px;
  display: inline-block;
  margin: 0 0 30px 0;
}
.brand__4{
  margin: 0 auto;
  text-align: center;
}
.info__brandBox {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.info__brand .infoTxt dd {
  padding: 0;
}

.info__Popup .infoTxt dd {
  color: #333;
  font-size: 14px;
}

.info__brandName {
  color: #333;
}


.p-brand__btn {
  /* margin: 20px 0 0; */
  text-align: center;
}

.p-brand__btn a {
  font-size: 14px;
  padding: 13px 1.5em 13px;
  width: auto;
  font-family: "good-times", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.p-brand__btn__2 {
  margin: 30px 0 30px;
  text-align: center;
}

.p-brand__btn__2 a {
  font-size: 18px;
  padding: 20px 2.5em 20px;
  width: auto;
  font-family: "miller-display", serif;
  font-weight: 600;
  font-style: normal;
}

.c-linkButton {
  background: #333;
  border: .5px solid #5b5b5b;
  color: #f7f7f7;
  display: inline-block;
  text-decoration: none;

  /* font-family: "ivypresto-text", serif;
font-weight: 300;
font-style: normal; */

  letter-spacing: 0.12em;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 16px 1.6em 17px;
  position: relative;
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 280px;
}

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

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

.notes {
  font-size: 13px;
  display: inline-block;
  /* margin-top: 3px; */
}

.notes:before {
  content: '※';
  display: inline-block;
}








.Clause {
  display: flex;
  font-size: 14px;
}

.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;
  }
}


.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 {
  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);
}

.btn-more {
  color: #000000;
}



.sandalfair__image {
  transition: all 0.2s ease-in-out;
  background-color: #ffffff;
  padding: 10px;
}

.sandalfair__image:hover {
  opacity: 0.4;
}

.infoDate {
  color: #000000;
  margin-bottom: 20px;
  padding: 0 0 0 1em;
  border-bottom: solid 2px #e8e8e8;
  padding-bottom: 24px;
}

.infoDate_site {
  font-weight: bold;
  font-size: 19px;
}

.infoDate_date {
  font-size: 16px;
}

.infoDate_date ul {
  line-height: 1.5;
}

.last__item__more {
  display: flex;
  align-items: center;
  /* ← 縦方向中央揃え */
  height: 100%;
  /* 必要に応じて */
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  font-weight: bold;
}


/*小野さんコンテンツ*/
.staff__brand {
  width: 100%;
  padding: 80px 40px 80px;
  background: #ffffff;
}

.staff__brand__flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 0 20px;
}

.staff__brand__flex__left {
  width: 20%;
  margin: 0 auto;
  padding-right: 20px;
}

.staff__brand__flex__right {
  width: 78%;
  margin: 0 auto;
}



.staff__brand__flex_2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-bottom: 20px;
}

.items2_flex {
  justify-content: center;
}

.staff__brand__items {
  width: 25%;
}

.staff__img {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  padding-bottom: 8px;
}
.staff__img img{
  width: 100%; /* 親divに合わせる */
  height: 100%;
  object-fit: cover; /* 丸にきれいに収める */
}


.staff__brand__text {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  border-top: solid 1px #e8e8e8;
  border-bottom: solid 1px #e8e8e8;
  padding: 16px 0;
}

.brand__logo__img {
  width: 30%;
  padding: 0 0 20px;
  margin: 0 auto;
}


/*スライドショー 順挙動*/

.slideshow {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}

input[name="slideshow"] {
  display: none;
}

.slideContents {
  position: relative;
  /*ackground: #86c0de;*/
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
}
/*62515
.slideContents section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(100%);
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}*/

.slideContents section img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

/*@media (min-width: 520px) {
          .slideContents section img {
              aspect-ratio: 3 / 1;
              object-fit: cover;
          }
      }*/

/* 丸ボタン部分 */
.arrow {
  position: absolute;
  top: 42.5%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.4);
}

.arrow .ico {
  opacity: 0.6;
  /* 常に表示 */
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  position: relative;
}

.prev {
  left: 1px;
}

.next {
  right: 1px;
}

.prev .ico {
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}

.next .ico {
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

/* スライド切り替え */
#switch1:checked~.slideContents #slide1,
#switch2:checked~.slideContents #slide2,
#switch3:checked~.slideContents #slide3,
#switch4:checked~.slideContents #slide4 {
  position: relative;
  transform: none;
}

#switch1:checked~.slideContents #slide4,
#switch2:checked~.slideContents #slide1,
#switch3:checked~.slideContents #slide2,
#switch4:checked~.slideContents #slide3 {
  transform: translateX(-100%);
}

#switch1:checked~.slideContents #slide3,
#switch2:checked~.slideContents #slide4,
#switch3:checked~.slideContents #slide1,
#switch4:checked~.slideContents #slide2 {
  transition-duration: 0s;
}

.arrow label {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  pointer-events: none;
  z-index: 1;
}

/* 各ボタンをクリック可能にする */
#switch1:checked~.prev label[for="switch4"],
#switch2:checked~.prev label[for="switch1"],
#switch3:checked~.prev label[for="switch2"],
#switch4:checked~.prev label[for="switch3"],
#switch1:checked~.next label[for="switch2"],
#switch2:checked~.next label[for="switch3"],
#switch3:checked~.next label[for="switch4"],
#switch4:checked~.next label[for="switch1"] {
  pointer-events: auto;
}


/*スライドを瞬間にしている*/
.slideContents section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slideContents section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 0;
}

#switch1:checked~.slideContents #slide1,
#switch2:checked~.slideContents #slide2,
#switch3:checked~.slideContents #slide3,
#switch4:checked~.slideContents #slide4 {
  opacity: 1;
  position: relative;
  /* 一番上に */
}


/*ドットシーケンス*/
.pagination-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.pagination-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.pagination-dots .dot:hover {
  background: #ccc;
}

/* 選択中のスライドに応じて色を変更 */
#switch1:checked~.pagination-dots label[for="switch1"],
#switch2:checked~.pagination-dots label[for="switch2"],
#switch3:checked~.pagination-dots label[for="switch3"],
#switch4:checked~.pagination-dots label[for="switch4"] {
  background: #000000;
}


/*ボタン オフィシャル*/
.NewsHead__btn {
  margin-top: 40px;
  text-align: center;
}
.NewsHead__btn__brand {
  margin-top: 40px;
  text-align: center;
}
.linkBtn {
  display: inline-block;
  position: relative;
  height: 60px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 60px;
  border: 1px #232323 solid;
  border-radius: 3px;
  background: #232323;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  min-width: 360px;
  text-decoration: none;
  position: relative;
  z-index: 10;
}
.linkBtn:after {
  content: '';
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -3px;
  border-right: 1px #ffffff solid;
  border-top: 1px #ffffff solid;
  transform: rotate(45deg);
}
@media only screen and (max-width: 640px) {
  .brand__logo__img {
    width: 50%;
    margin: 0 auto;
    /*padding:0 0 20px ;*/
  }


  .staff__brand__flex__left {
    width: 35%;
    /*margin: 0 auto;
        padding-right: 20px;*/
  }

  .staff__brand__flex__right {
    width: 63%;
    /*margin: 0 auto;*/
  }

  .staff__brand__text {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }

.linkBtn {
  height: 45px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 45px;
  border: 1px #232323 solid;
  border-radius: 3px;
  font-size: 14px;
  min-width: 225px;
}



  /*スライドのボタンを消すコード*/
  .next .ico {
    display: none;
  }

  .arrow .ico {
    display: none;
  }

  .arrow {
    display: none;
  }


  .staff__brand__flex_2 {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap; /* アイテムを折り返す */
  }
  .staff__brand__items {
    width: 48%;
}
.items2_flex {
  justify-content: space-between;
}
/* 最初の2つのアイテムに適用 */
.staff__brand__items:nth-child(1),
.staff__brand__items:nth-child(2) {
  padding-bottom: 20px; /* 追加したいpadding */
}
.NewsHead__btn__brand {
  margin-top: 15px;
  text-align: center;
}
}



/* 
.staff_brand_title{
font-size: 24px;
font-weight: bold;
padding: 0 0 25px;
} */

 /* スライド切替 */
.slideContents section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 0;
}

#switch1:checked ~ .slideContents #slide1,
#switch2:checked ~ .slideContents #slide2,
#switch3:checked ~ .slideContents #slide3,
#switch4:checked ~ .slideContents #slide4 {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  z-index: 1;
}

/* 矢印ボタンラベルの見直し */
.arrow label {
  z-index: 2;
}



/*ブランドロゴ__サイズ調整__r*/
.b__padding__BIRKENSTOCK1774{
  padding:10px;
}

.p10__back_img{
  padding: 10px 0;
  width: 70%;
  border-bottom: none;
}

.event__guide__pa{
  padding: 0;
}
.event__guide__ma{
   margin: 0;
}

.e__padding0__z{
  padding: 0;
}
.e__margin0__z{
  margin: 0;
}




.staff__shop{
  font-size: 12px;
  font-weight:bold;
  padding-bottom: 8px;
}
.staff__name{
  font-size: 14px;
  font-weight:bold;
  padding-bottom: 8px;
}
.items__name{
  font-size: 14px;
  padding-bottom: 8px;
}
.items__price{
  font-size: 14px;
  padding-bottom: 8px;
}

@media only screen and (max-width: 640px) {
  .arrow{
    top: 42%;
  }
  .p10__back_img{
    width: 100%;
  }

  .staff__shop{
    font-size:8px;
    line-height: 1.2;
  }
  .staff__name{
    font-size:8px;
  }
  .items__name{
    font-size:10px;
    display: none;
  }
  .items__price{
    font-size:10px;
    display: none;
  }
  }
  .e__padding__z{
    padding: 0 0 160px;
    margin: 0;
  }