@charset "UTF-8";
/* ==============================
  base
============================== */
@import url("https://fonts.googleapis.com/css?family=EB+Garamond:400,400i");
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@0;1&display=swap");
@keyframes applyBtn {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}

@keyframes applyBtnBefore {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05, 1.5);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes applyBtnBeforeFont {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4, 4);
    opacity: 0;
  }
}

@keyframes cuisineR {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  50% {
    transform: rotate(40deg) translate(250px, -135px);
  }
  100% {
    transform: rotate(0deg) translate(0, 0);
  }
}

@keyframes cuisineL {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  50% {
    transform: rotate(-40deg) translate(-380px, 195px);
  }
  100% {
    transform: rotate(0deg) translate(0, 0);
  }
}

html {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
  font-feature-settings: "pkna" 1;
  height: 100%;
}

body {
  height: 100%;
  font-family: "EB Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-feature-settings: "pkna" 1;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow-x: hidden;
}

img, svg {
  width: 100%;
}

/* ==============================
  common Styles
============================== */
.fadein {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 500ms;
}

.fadein.fadein_on {
  opacity: 1;
  transform: translate(0, 0);
}

.lp-title {
  font-weight: normal;
  letter-spacing: 5px;
  font-family: 'Libre Baskerville', serif;
}

.lp-title--en {
  display: block;
  margin-bottom: 5px;
  font-size: 3.6rem;
}

@media screen and (min-width: 769px) {
  .lp-title--en {
    font-size: 5rem;
    letter-spacing: 10px;
  }
}

.lp-title--jp {
  display: block;
  font-size: 1.6rem;
}

@media screen and (min-width: 769px) {
  .lp-title--jp {
    font-size: 3rem;
  }
}

.lp-btn {
  position: relative;
  display: block;
  height: 50px;
}

@media screen and (min-width: 769px) {
  .lp-btn {
    height: 60px;
    width: 900px;
  }
}

.lp-btn::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  border-radius: 5px;
}

.lp-btn.scroll_on {
  animation: applyBtn 0.5s;
}

.lp-btn.scroll_on::before {
  animation: applyBtnBefore 1s;
}

.lp-btn p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .lp-btn p {
    font-size: 3rem;
    font-weight: normal;
  }
}

.lp-btn p::before {
  width: 20px;
  height: 15px;
  margin-bottom: -3px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0px bottom;
  background-size: 15px;
  content: "";
}

@media screen and (min-width: 769px) {
  .lp-btn p::before {
    width: 35px;
    height: 30px;
    background-size: 30px;
  }
}

.lp-btn--cuisine {
  border: #666666 1px solid;
  color: #666666;
}

.lp-btn--cuisine p::before {
  width: 25px;
  height: 17px;
  margin-bottom: -4px;
  background-image: url(../img/icon_cuisine.svg);
  background-size: 18px;
}

@media screen and (min-width: 769px) {
  .lp-btn--cuisine p::before {
    width: 42px;
    height: 34px;
    margin-bottom: -6px;
    background-size: 36px;
  }
}

.lp-btn--form {
  color: #fff;
}

.lp-btn--form p::before {
  background-image: url(../img/icon_shoes_w.svg);
}

/* ==============================
  index Styles
============================== */
.intro {
  position: relative;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.intro-summary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  height: 40vh;
  width: 80vw;
  background: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .intro-summary {
    width: 500px;
    height: 400px;
  }
}

.intro-summary__title {
  padding: 40% 0 0;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .intro-summary__title {
    padding: 36% 0 0;
  }
}

.intro-summary__title--sub_text {
  display: block;
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  .intro-summary__title--sub_text {
    font-size: 1.8rem;
  }
}

.intro-summary__title--main_text {
  display: block;
  font-size: 2.5rem;
}

@media screen and (min-width: 769px) {
  .intro-summary__title--main_text {
    font-size: 4rem;
  }
}

.intro-summary__decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
}

.intro-summary__decoration--img {
  margin: 20px auto 0;
  width: 60px;
}

@media screen and (min-width: 769px) {
  .intro-summary__decoration--img {
    width: 100px;
  }
}

.intro-summary__decoration--img.scroll_on path.cuisine_r {
  animation: cuisineR 1s;
}

.intro-summary__decoration--img.scroll_on path.cuisine_l {
  animation: cuisineL 1s;
}

.intro-summary__decoration--text {
  margin: auto;
  width: 55%;
  padding: 2.5px 0;
  font-size: 1.2rem;
  font-weight: bold;
  background: #4b4b4b;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .intro-summary__decoration--text {
    width: 40%;
    font-size: 1.6rem;
  }
}

.intro-summary--frame_l::before, .intro-summary--frame_l::after, .intro-summary--frame_r::before, .intro-summary--frame_r::after {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #ff0;
  content: "";
  background: url(../img/intro/intro_frame.png) no-repeat center;
  background-size: contain;
}

@media screen and (min-width: 769px) {
  .intro-summary--frame_l::before, .intro-summary--frame_l::after, .intro-summary--frame_r::before, .intro-summary--frame_r::after {
    width: 80px;
    height: 80px;
  }
}

.intro-summary--frame_l::before, .intro-summary--frame_l::after {
  left: 10px;
}

.intro-summary--frame_l::before {
  top: 10px;
  transform: rotate(270deg);
}

.intro-summary--frame_l::after {
  bottom: 10px;
  transform: rotate(180deg);
}

.intro-summary--frame_r::before, .intro-summary--frame_r::after {
  right: 10px;
}

.intro-summary--frame_r::before {
  top: 10px;
}

.intro-summary--frame_r::after {
  bottom: 10px;
  transform: rotate(90deg);
}

.intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.intro__bg-list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}

.intro__bg-list li {
  width: 100%;
  padding: 100vh 0 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.intro__bg-list li:nth-child(1) {
  background-image: url(../img/intro/intro_bg1.jpg);
}

@media screen and (min-width: 769px) {
  .intro__bg-list li:nth-child(1) {
    background-image: url(../img/intro/intro_bg_pc1.jpg);
  }
}

.intro__bg-list li:nth-child(2) {
  background-image: url(../img/intro/intro_bg2.jpg);
}

@media screen and (min-width: 769px) {
  .intro__bg-list li:nth-child(2) {
    background-image: url(../img/intro/intro_bg_pc2.jpg);
  }
}

.intro__bg-list li:nth-child(3) {
  background-image: url(../img/intro/intro_bg3.jpg);
}

@media screen and (min-width: 769px) {
  .intro__bg-list li:nth-child(3) {
    background-image: url(../img/intro/intro_bg_pc3.jpg);
  }
}

.fair {
  position: relative;
  overflow: hidden;
}

.fair__inner {
  padding: 10% 5%;
}

@media screen and (min-width: 769px) {
  .fair__inner {
    padding: 60px 0%;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fair__header {
  position: relative;
  padding: 0 0 10%;
  margin-bottom: 10%;
}

@media screen and (min-width: 769px) {
  .fair__header {
    width: 750px;
    padding-bottom: 60px;
    margin-bottom: 0;
  }
}

.fair__header .fair__title {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  font-style: italic;
  text-shadow: 0 0 2px #fff ,0 0 2px #fff ,0 0 2px #fff;
}

@media screen and (min-width: 769px) {
  .fair__header .fair__title {
    text-shadow: 3px 0px 0 #fff;
  }
}

.fair__header::before {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, 0);
  width: 200vw;
  height: 40vh;
  background: #ebf1e5;
  content: "";
  z-index: -1;
}

@media screen and (min-width: 769px) {
  .fair__header::before {
    height: 400px;
  }
}

.fair__header img {
  width: 100%;
}

.fair-summary {
  margin-bottom: 10%;
  padding: 7.5%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  color: #444;
  background: #fff;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .fair-summary {
    width: 750px;
    margin: -30px 0 60px auto;
  }
}

.fair-summary__header {
  font-size: 1.8rem;
  margin-bottom: 5%;
}

@media screen and (min-width: 769px) {
  .fair-summary__header {
    font-size: 2.5rem;
  }
}

.fair-summary__text {
  text-align: left;
}

@media screen and (min-width: 769px) {
  .fair-summary__text {
    font-size: 1.8rem;
  }
}

.fair-presents {
  padding: 7.5%;
  color: #fff;
  text-shadow: 0 0 1px #fff;
  background-image: url(../img/fair_presents_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .fair-presents {
    background-image: url(../img/fair_presents_bg_pc.jpg);
    font-size: 3rem;
  }
}

.fair-presents__header {
  position: relative;
  background: url(../img/icon_presents.svg) no-repeat center top;
  background-size: 20px;
  padding: 15% 0 5%;
  margin-top: 5%;
}

@media screen and (min-width: 769px) {
  .fair-presents__header {
    padding: 90px 0 60px;
    margin-top: 0%;
    background-size: 50px;
  }
}

.fair-presents__header::before {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 1px;
  content: "";
}

.fair-presents__text {
  padding: 5% 0;
  font-size: 1.8rem;
}

@media screen and (min-width: 769px) {
  .fair-presents__text {
    padding: 60px 0;
    font-size: 4rem;
  }
  .fair-presents__text br {
    display: none;
  }
}

.fair-presents__sub-text {
  text-align: right;
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {
  .fair-presents__sub-text {
    font-size: 1.4rem;
  }
}

.fair-btn--cuisine {
  margin: 0 5% 5%;
}

@media screen and (min-width: 769px) {
  .fair-btn--cuisine {
    margin: 0 auto 30px;
  }
}

.fair-btn--form {
  background: #2a2826;
  margin: 0 5% 10%;
}

@media screen and (min-width: 769px) {
  .fair-btn--form {
    margin: auto;
    margin: 0 auto 60px;
  }
}

.fair-btn--form::before {
  background: #2a2826;
}

.point {
  background: #fdf7f1;
}

.point-summary {
  padding: 10% 5% 0;
}

@media screen and (min-width: 769px) {
  .point-summary {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 10% 10% 0;
  }
}

.point-summary__inner {
  position: relative;
  padding: 10%;
  background: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.point-summary__inner::before, .point-summary__inner::after {
  position: absolute;
  width: 50px;
  height: 2px;
  background: #333;
  content: "";
  transform: rotate(30deg);
}

.point-summary__inner::before {
  top: 7px;
  right: -10px;
}

.point-summary__inner::after {
  bottom: 7px;
  left: -10px;
}

.point-summary__title {
  letter-spacing: 5px;
  margin-bottom: 30px;
}

.point-summary__title--sub_text {
  margin-bottom: 15px;
}

@media screen and (min-width: 769px) {
  .point-summary__title--sub_text {
    font-size: 2rem;
  }
}

.point-summary__title--text {
  font-size: 2.2rem;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .point-summary__title--text {
    font-size: 4rem;
  }
}

.point-summary__title--text_3point {
  display: inline-block;
  position: relative;
  font-family: 'Libre Baskerville', serif;
  font-size: 3.5rem;
}

@media screen and (min-width: 769px) {
  .point-summary__title--text_3point {
    font-size: 5.5rem;
  }
}

.point-summary__title--text_3point::before {
  position: absolute;
  display: block;
  font-size: 3.5rem;
  content: "3つ";
}

@media screen and (min-width: 769px) {
  .point-summary__title--text_3point::before {
    font-size: 5.5rem;
  }
}

.point-summary.scroll_on .point-summary__title--text_3point {
  animation: applyBtn 0.5s 1s;
}

.point-summary.scroll_on .point-summary__title--text_3point::before {
  animation: applyBtnBeforeFont 1s 1s;
}

.point-summary__rank--item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  opacity: 0;
  transform: translate(0, 50px);
}

@media screen and (min-width: 769px) {
  .point-summary__rank--item {
    font-size: 2rem;
  }
}

.point-summary__rank--item1 {
  transition: 1s 0.5s;
}

.point-summary__rank--item2 {
  transition: 1s 1s;
}

.point-summary__rank--item3 {
  transition: 1s 1.5s;
}

.point-summary__rank--item4 {
  transition: 1s 2s;
}

.point-summary__rank--item span {
  display: block;
  text-align: left;
}

.point-summary__rank--item span:nth-child(1) {
  width: 30%;
  background: left center no-repeat;
  background-size: 15px;
  padding-left: 20px;
}

.point-summary__rank--item span:nth-child(1).rank1 {
  background-image: url(../img/icon_crown1.svg);
}

.point-summary__rank--item span:nth-child(1).rank2 {
  background-image: url(../img/icon_crown2.svg);
}

.point-summary__rank--item span:nth-child(1).rank3 {
  background-image: url(../img/icon_crown3.svg);
}

.point-summary__rank--item span:nth-child(2) {
  width: 45%;
}

.point-summary__rank--item span:nth-child(3) {
  width: 25%;
  text-align: right;
}

.point-summary__rank.scroll_on .point-summary__rank--item {
  opacity: 1;
  transform: translate(0, 0);
}

.point-summary--sub_text {
  text-align: right;
  color: #999;
  font-size: 1.2rem;
}

.point-summary__text {
  padding: 10% 0;
  font-size: 2.3rem;
  line-height: 1.6;
  letter-spacing: 5px;
}

@media screen and (min-width: 769px) {
  .point-summary__text {
    font-size: 5rem;
  }
}

.point-summary__text--item {
  position: relative;
  display: inline-block;
}

.point-summary__text--item::before {
  position: absolute;
  bottom: 0;
  left: -15px;
  width: 0%;
  height: 15px;
  background: #fcebd1;
  content: "";
}

@media screen and (min-width: 769px) {
  .point-summary__text--item::before {
    height: 30px;
  }
}

.point-summary__text--item span {
  position: relative;
  z-index: 1;
}

.point-summary__text--item1::before {
  transition: 1s 1s;
}

.point-summary__text--item2::before {
  transition: 1s 1.5s;
}

.point-summary__text.scroll_on .point-summary__text--item::before {
  width: 105%;
  width: calc(100% + 30px);
}

.point-list__inner {
  padding-bottom: 15%;
}

@media screen and (min-width: 769px) {
  .point-list__inner {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.point-list__item1 {
  color: #6c4619;
}

.point-list__item2 {
  color: #136592;
  background: #f5fbfe;
}

.point-list__item3 {
  color: #bf5c8f;
  background: #fff6ff;
}

.point-list__header {
  position: relative;
  padding: 0 0 10%;
  margin-bottom: 10%;
}

@media screen and (min-width: 769px) {
  .point-list__header {
    padding: 0 0 6%;
    margin-bottom: 0%;
  }
}

.point-list__header .point-list--mun {
  padding: 10% 5% 5%;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  letter-spacing: 2px;
}

@media screen and (min-width: 769px) {
  .point-list__header .point-list--mun {
    padding: 10% 5% 15px;
    font-size: 2.5rem;
  }
}

.point-list__header .point-list--mun_inner {
  position: relative;
  display: inline-block;
  padding: 2.5px 5px 2.5px 5px;
}

.point-list__header .point-list--mun_inner::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  content: "";
}

.point-list__header .point-list--mun span {
  padding-left: 5px;
  display: inline-block;
  font-size: 2.5rem;
}

@media screen and (min-width: 769px) {
  .point-list__header .point-list--mun span {
    font-size: 4rem;
  }
}

.point-list__header .point-list--mun1 {
  text-align: left;
}

.point-list__header .point-list--mun1 .point-list--mun_inner::before {
  background: #6c4619;
}

.point-list__header .point-list--mun2 {
  text-align: right;
}

.point-list__header .point-list--mun2 .point-list--mun_inner::before {
  background: #136592;
}

.point-list__header .point-list--mun3 {
  text-align: left;
}

.point-list__header .point-list--mun3 .point-list--mun_inner::before {
  background: #bf5c8f;
}

.point-list__header .point-list--img {
  background: center no-repeat;
  background-size: cover;
}

@media screen and (min-width: 769px) {
  .point-list__header .point-list--img img {
    opacity: 0;
  }
}

.point-list__header .point-list--img1 {
  background-image: url(../img/point/point_list_header1_pc.jpg);
}

.point-list__header .point-list--img2 {
  background-image: url(../img/point/point_list_header2_pc.jpg);
}

.point-list__header .point-list--img3 {
  background-image: url(../img/point/point_list_header3_pc.jpg);
}

.point-list__header .point-list__title {
  position: absolute;
  bottom: 0;
}

.point-list__header .point-list__title .lp-title--en {
  font-style: italic;
  text-shadow: 3px 0px 0 #fff;
}

.point-list__header .point-list__title1 {
  text-align: right;
  right: 5%;
}

.point-list__header .point-list__title2 {
  text-align: left;
  left: 5%;
}

.point-list__header .point-list__title3 {
  text-align: right;
  right: 5%;
}

.point-list__text {
  margin: 0 5% 5%;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .point-list__text {
    margin: 0 0% 5%;
    font-size: 1.8rem;
  }
}

.point-list__text p {
  margin-bottom: 5%;
}

.point-list__text1 {
  text-align: left;
}

.point-list__text2 {
  text-align: right;
}

.point-list__text3 {
  text-align: left;
}

.point-list__gallery {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10%;
}

.point-list__gallery .gallery_img1 {
  position: relative;
  overflow: hidden;
  opacity: 0.3;
  transition: 1s 0.5s;
  filter: grayscale(100);
}

.point-list__gallery .gallery_img2 {
  position: relative;
  overflow: hidden;
  opacity: 0.3;
  transition: 1s 1s;
  filter: grayscale(100);
}

.point-list__gallery .gallery_img3 {
  position: relative;
  overflow: hidden;
  opacity: 0.3;
  transition: 1s 1.5s;
  filter: grayscale(100);
}

.point-list__gallery .gallery_img4 {
  position: relative;
  overflow: hidden;
  opacity: 0.3;
  transition: 1s 2s;
  filter: grayscale(100);
}

.point-list__gallery .gallery_img1 {
  padding-top: 50%;
}

.point-list__gallery .gallery_img1, .point-list__gallery .gallery_right {
  display: flex;
  justify-content: space-between;
  width: 50%;
  width: calc(50% - 2px);
}

.point-list__gallery .gallery_left, .point-list__gallery .gallery_img4 {
  width: 50%;
  width: calc(50% - 2px);
}

.point-list__gallery .gallery_img2, .point-list__gallery .gallery_img3 {
  height: 50%;
  height: calc(50% - 2px);
  background: #00f;
}

.point-list__gallery .gallery_img2 {
  margin-bottom: 4px;
}

.point-list__gallery .gallery_img4 img, .point-list__gallery .gallery_img3 img, .point-list__gallery .gallery_img2 img, .point-list__gallery .gallery_img1 img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.point-list__gallery .gallery_img1 img {
  height: 101%;
}

.point-list__gallery .gallery_img3 img, .point-list__gallery .gallery_img2 img, .point-list__gallery .gallery_img4 img {
  width: 103%;
}

.point-list__gallery.scroll_on .gallery_img4,
.point-list__gallery.scroll_on .gallery_img3,
.point-list__gallery.scroll_on .gallery_img2,
.point-list__gallery.scroll_on .gallery_img1 {
  opacity: 1;
  filter: grayscale(0);
}

.point-list__btn {
  margin: 0 5%;
}

@media screen and (min-width: 769px) {
  .point-list__btn {
    margin: auto;
  }
}

.point-list__btn1 {
  background: #b39b73;
}

.point-list__btn1::before {
  background: #b39b73;
}

.point-list__btn2 {
  background: #136592;
}

.point-list__btn2::before {
  background: #136592;
}

.point-list__btn3 {
  background: #d28bb0;
}

.point-list__btn3::before {
  background: #d28bb0;
}

.question {
  position: relative;
}

.question::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 90%;
  width: 100%;
  background: url(../img/qa_bg.jpg) center no-repeat;
  background-size: cover;
  content: "";
}

@media screen and (min-width: 769px) {
  .question::before {
    background: url(../img/qa_bg_pc.jpg) center no-repeat;
    background-size: cover;
  }
}

.question__inner {
  margin: 10% 5%;
  padding: 10% 5%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 769px) {
  .question__inner {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 120px 10%;
  }
}

.question__title {
  font-size: 3.6rem;
  margin-bottom: 10%;
}

@media screen and (min-width: 769px) {
  .question__title {
    margin-bottom: 30px;
  }
}

.question-list2 {
  display: none;
}

.question-list__item {
  margin-bottom: 5%;
  background: #2a2826;
  color: #fff;
  text-align: left;
  line-height: 1.6;
  text-shadow: 0 0 1px #fff;
}

@media screen and (min-width: 769px) {
  .question-list__item {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.question-list--more {
  margin: 10% auto 10%;
  padding: 2.5% 0;
  border: #888 1px solid;
  border-radius: 3px;
  width: 50%;
  background: rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 769px) {
  .question-list--more {
    margin: 10% auto 0%;
  }
}

.question-list--more.click_on {
  display: none;
}

.question-list--q {
  position: relative;
  padding: 5%;
}

@media screen and (min-width: 769px) {
  .question-list--q {
    padding: 10px 5%;
  }
  .question-list--q br {
    display: none;
  }
}

.question-list--q::before {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translate(0, -50%);
  transition: 1s;
  width: 0;
  height: 0;
  border-top: 10px solid #fff;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 0px solid transparent;
  content: "";
}

.question-list--q.click_on::before {
  transform: translate(0, -50%) rotate(180deg);
}

.question-list--a {
  padding: 0 5% 5%;
  display: none;
}

@media screen and (min-width: 769px) {
  .question-list--a {
    padding: 0 10% 20px 5%;
  }
  .question-list--a br {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .access__inner {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.access__title {
  padding: 0 5%;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .access__title {
    padding: 0;
  }
}

.access__title .lp-title--en {
  font-style: italic;
}

.access-map--text {
  padding: 10% 5% 5%;
  line-height: 1.6;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .access-map--text {
    padding: 30px 0 30px;
    font-size: 1.8rem;
  }
}

.access-map--google iframe {
  width: 100%;
  height: 40vh;
}

.access-shop {
  padding: 10% 5%;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .access-shop {
    padding: 30px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.access-shop--logo {
  margin: auto;
  width: 150px;
  margin-bottom: 5%;
}

@media screen and (min-width: 769px) {
  .access-shop--logo {
    width: 40%;
    margin-bottom: 0;
  }
  .access-shop--logo img {
    display: block;
    width: 228px;
    margin: auto;
  }
}

.access-shop__text {
  text-align: left;
}

@media screen and (min-width: 769px) {
  .access-shop__text {
    width: 55%;
    font-size: 1.8rem;
  }
}

.access-shop--tel {
  margin-bottom: 5%;
}
.fixed_bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    /* background: #DBBD88; */
    z-index: 100;
}

.fixed_bottom__inner {
  position: relative;
  display: flex;
  justify-content: space-around;
  height: 100%;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .fixed_bottom__inner {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fixed_bottom__btn {
    display: block;
    position: relative;
    border-radius: 1px;
    width: 88%;
    height: 80%;
    align-items: center;
    cursor: pointer;
}

.fixed_bottom__btn p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-weight: bold;
}

.fixed_bottom__btn p::before {
  height: 20px;
  margin-bottom: -3px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0px bottom;
  background-size: 15px;
  content: "";
}

.fixed_bottom a {
    display: block;
        margin: 0 auto;
}

.fixed_bottom--form {
    background: #c96e78;
    color: #fff;
    font-size: 110%;
    font-weight: bold;
    padding: 8px;
    width: 85%;
    display: block;
    margin: 10% auto 5%;
    border-radius: 5px;
    letter-spacing: 2px;
}
.fixed_bottom--form span{

    padding: 3px;
}

.fixed_bottom--form p::before {
  width: 20px;
  background-image: url(../img/fixfoot_ioc02.png);
}

.fixed_bottom--line {
  background: #00b900;
  color: #fff;
  display: none !important;
}

.fixed_bottom--line p::before {
  width: 20px;
  background-image: url(../img/fixfoot_ioc01.png);
}

.footer {
  margin-bottom: 20%;
}

.footer--copyright {
  font-size: 0.8rem;
    margin-bottom: 30%;
}

.font_orange {
  color: #f3610a;
}
section {
    max-width: 750px;
    margin: 0 auto;
}
a.content-btn.modal_trigger img {
    width: 50%;
}
@media screen and (max-width: 767px) {
a.content-btn.modal_trigger img {
    width: 80%;
}
}

.input_100 {
    margin-bottom: 10px;
}
input[type="submit"], input[type="button"] {
    margin: auto;
    display: inline-block;
    width: 77% !important;
    background: #a59b8d;
    color: #fff;
    padding: 13px;
    letter-spacing: 3px;
    filter: drop-shadow(5px 6px 10px rgba(0, 0, 0, 0.4));
    font-size: 100%;
}
.input_100 input[type=text], .input_100 input[type=email], .input_100 input[type=tel], .input_100 textarea, .input_100 select {
    width: 100%;
    outline: none;
    color: #623c20;
    border: solid 1px #623c20;
    padding: 7px 12px;
    background: #fff;
}
.modal-inner {
    margin: 5vh 0 0;
    background: #f8f8f8;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px 10px 0 0;
    height: 95vh;
}