@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

/* ============================
  basic
=============================*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #F5F3F1;
}

body {
  position: relative;
  background: #ffffff;
  color: #333333;
  font-family:"Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: 0.0em;
  opacity: 1;
}

@media (min-width: 768px) {
  body {
    width: 100%;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: calc(28 / 750 * 100vw);
  }
}

body::before, body::after {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto;
  overflow: hidden;
}

@media (min-width: 768px) {
  body::before, body::after {
    content: '';
  }
}

body::before {
  background-color: #BDB29F;
  opacity: 0.1;
  z-index: 0;
}

body::after {
  background-image: url(../img/body_bg.png);
  mix-blend-mode: overlay;
  opacity: 0.8;
  z-index: 1;
}

body.Android {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: none;
}

main {
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 2;
}

@media (min-width: 768px) {
  main {
    position: relative;
    width: 375px;
    box-shadow: 0px calc(3px / 2) calc(10px / 2) calc(-6px / 2) rgba(0, 0, 0, 0.1);
    z-index: 10;
  }
}

@media (max-width: 767px) {
  main {
    max-width: 100%;
  }
}

.wrapper {
  position: relative;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .wrapper {
    left: 0;
    right: 0;
    width: 375px;
  }
}

@media (max-width: 767px) {
  .wrapper {
    width: 100%;
  }
}

.container {
  margin: 0 auto;
  z-index: 1;
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - ((40 / 750 * 100vw) * 2));
  }
}

.clearfix * {
  zoom: 1;
}

.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.hide {
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}

@media (min-width: 768px) {
  .u-pc {
    display: block;
  }
}

@media (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.clear {
  clear: both;
}

/* ============================
  Header
=============================*/
.header {
  position: fixed;
  top: 0;
  display: block;
  width: 100%;
  margin: 0 auto;
  z-index: 20;
}

@media (min-width: 768px) {
  .header {
    top: 30px;
  }
}

@media (max-width: 767px) {
  .header {
    background-color: white;
    box-shadow: 0px calc(3 / 750 * 100vw) calc(10 / 750 * 100vw) calc(-6 / 750 * 100vw) rgba(0, 0, 0, 0.6);
  }
}

.header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .header-inner {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    height: calc(100px / 2);
    padding: calc(50px / 2);
  }
}

@media (max-width: 767px) {
  .header-inner {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    height: calc(100 / 750 * 100vw);
    padding: calc(20 / 750 * 100vw);
  }
}

.header-logo {
  display: block;
  background: url(../img/logo.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .header-logo {
    width: calc(350px / 2);
    height: calc(52px / 2);
  }
}

@media (max-width: 767px) {
  .header-logo {
    width: calc(298 / 750 * 100vw);
    height: calc(52 / 750 * 100vw);
  }
}

.header-link {
  text-align: right;
  color: #333333;
  cursor: pointer;
  vertical-align: baseline;
}

@media (min-width: 768px) {
  .header-link {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-link {
    display: block;
  }
}

.header-link svg {
  position: relative;
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  stroke: #333333;
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: transparent;
}

@media (min-width: 768px) {
  .header-link svg {
    top: calc(6px / 2);
    margin-right: calc(10px / 2);
    stroke-width: calc(2px / 2);
  }
}

@media (max-width: 767px) {
  .header-link svg {
    top: calc(6 / 750 * 100vw);
    margin-right: calc(10 / 750 * 100vw);
    stroke-width: calc(2 / 750 * 100vw);
  }
}

/* ============================
  PC
=============================*/
.bg-img {
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 3;
}

@media (min-width: 768px) {
  .bg-img {
    display: block;
  }
}

@media (max-width: 767px) {
  .bg-img {
    display: none;
  }
}

.bg-img-item {
  display: block;
}

.bg-img-item::before, .bg-img-item::after {
  position: fixed;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 4;
}

@media (min-width: 768px) {
  .bg-img-item::before, .bg-img-item::after {
    content: '';
  }
}

.bg-img-item:nth-child(1)::before {
  bottom: 9.895833333333332vw;
  left: 4.6875vw;
  width: 8.489583333333334vw;
  height: 8.489583333333334vw;
  background-image: url(../img/bg_img_item_01.png);
  z-index: 5;
  animation: mvimg-anim2 7s ease-in-out 0.6s infinite alternate;
}

.bg-img-item:nth-child(1)::after {
  bottom: 3.125vw;
  left: 8.854166666666668vw;
  width: 11.45833333333333vw;
  height: 11.45833333333333vw;
  background-image: url(../img/bg_img_item_02.png);
  z-index: 6;
  animation: mvimg-anim1 8s ease-in-out 0.3s infinite alternate;
}

.bg-img-item:nth-child(2)::before {
  bottom: 4.166666666666666vw;
  left: 3.125vw;
  width: 6.770833333333333vw;
  height: 10.885416666666666vw;
  background-image: url(../img/bg_img_circle_01.png);
  z-index: 4;
  animation: mvimg-anim2 10s ease-in-out 0.4s infinite alternate;
}

.bg-img-item:nth-child(2)::after {
  bottom: 5.208333333333334vw;
  left: 5.729166666666666vw;
  width: 19.479166666666668vw;
  height: 5.9375vw;
  background-image: url(../img/bg_img_circle_02.png);
  z-index: 4;
  animation: mvimg-anim1 6s ease-in-out 0.6s infinite alternate;
}

.bg-img-item:nth-child(3)::before {
  top: 3.125vw;
  right: 3.125vw;
  width: 13.125vw;
  height: 13.125vw;
  background-image: url(../img/bg_img_item_03.png);
  z-index: 5;
  animation: mvimg-anim2 8s ease-in-out 0.6s infinite alternate;
}

.bg-img-item:nth-child(3)::after {
  top: 7.291666666666667vw;
  right: 15.104166666666666vw;
  width: 8.229166666666666vw;
  height: 8.229166666666666vw;
  background-image: url(../img/bg_img_item_04.png);
  z-index: 6;
  animation: mvimg-anim1 9s ease-in-out 0.4s infinite alternate;
}

.bg-img-item:nth-child(4)::before {
  top: 11.979166666666668vw;
  right: 11.458333333333332vw;
  width: 6.09375vw;
  height: 6.09375vw;
  background-image: url(../img/bg_img_item_05.png);
  z-index: 7;
  animation: mvimg-anim2 10s ease-in-out 0.6s infinite alternate;
}

.bg-img-item:nth-child(4)::after {
  top: -9.895833333333332vw;
  right: -9.895833333333332vw;
  width: 20.104166666666668vw;
  height: 20.3125vw;
  background-image: url(../img/bg_img_ring.png);
  z-index: 4;
  animation: mvimg-anim1 8s ease-in-out 0.5s infinite alternate;
}

.bg-img-item:nth-child(5)::before {
  top: 5.208333333333334vw;
  right: 14.0625vw;
  width: 8.229166666666666vw;
  height: 12.604166666666666vw;
  background-image: url(../img/bg_img_circle_03.png);
  z-index: 4;
  animation: mvimg-anim2 7s ease-in-out 0.6s infinite alternate;
}

.link-box {
  position: fixed;
  bottom: 5vw;
  right: 2vw;
  width: 7.291666666666667vw;
  text-align: center;
}

@media (min-width: 768px) {
  .link-box {
    /*z-index: 4;*/
    z-index: 105;
  }
}

@media (max-width: 767px) {
  .link-box {
    z-index: 105;
  }
}

.link-box-qr {
  color: #5C5549;
  font-size: 0.625vw;
  font-weight: bold;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .link-box-qr {
    display: block;
  }
}

@media (max-width: 767px) {
  .link-box-qr {
    display: none;
  }
}

.link-box-qr picture {
  position: relative;
  display: block;
  width: 5.208333333333334vw;
  height: 5.208333333333334vw;
  margin: 0.48125vw auto 0;
  box-shadow: 0px 0.23438vw 0.78125vw -0.46875vw rgba(0, 0, 0, 0.1);
}

.link-box-qr picture::after {
  content: '';
  position: absolute;
  top: -1.1625vw;
  right: -3.61125vw;
  display: block;
  width: 5.0015624999999995vw;
  height: 1.7874999999999999vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/qr_arrow.png);
  z-index: 5;
}

.link-box-clip {
  display: table;
  background-color: #913832;
  border-radius: 50%;
  text-decoration: none;
}

@media (min-width: 768px) {
  .link-box-clip {
    width: 7.291666666666667vw;
    height: 7.291666666666667vw;
    margin-top: 0.78125vw;
    box-shadow: 0px 0.23438vw 0.78125vw -0.46875vw rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
}

@media (max-width: 767px) {
  .link-box-clip {
    /*display: none;*/
    position: fixed;
    bottom: calc(20 / 750 * 100vw);
    right: calc(20 / 750 * 100vw);
    width: calc(220 / 750 * 100vw);
    height: calc(220 / 750 * 100vw);
    box-shadow: 0px 0px calc(16 / 750 * 100vw) calc(-6 / 750 * 100vw) rgba(65, 65, 65, 0.2);
  }
}

.link-box-clip.open {
  display: table;
}

.link-box-clip p {
  display: table-cell;
  vertical-align: middle;
  color: #ffffff;
  font-weight: 400;
}

@media (min-width: 768px) {
  .link-box-clip p {
    font-size: 0.9375vw;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .link-box-clip p {
    line-height: 1.3;
  }
}

.link-box-clip p span {
  display: inline;
  color: #DA8194;
}

.page-link {
  position: fixed;
  bottom: -2.604166666666667vw;
  right: 15.625vw;
  width: 18.541666666666668vw;
  height: 18.541666666666668vw;
  padding-top: 3.6458333333333335vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/page_link_bg.png);
  text-align: center;
  z-index: 4;
}

@media (min-width: 768px) {
  .page-link {
    display: block;
  }
}

@media (max-width: 767px) {
  .page-link {
    display: none;
  }
}

.page-link p {
  position: relative;
  left: -0.5208333333333333vw;
  font-family: 'WindSong', cursive;
  text-align: center;
  color: #BDB29F;
  font-size: 2.083333333333333vw;
}

.page-link ol {
  display: inline-block;
  text-align: left;
}

.page-link ol li {
  font-size: 0.9375vw;
  font-weight: bold;
}

.page-link ol li a {
  color: #BDB29F;
  text-decoration: none;
  transition: .3s;
}

.page-link ol li a.current {
  color: #5C5549;
  text-decoration: underline;
}

/* ============================
  main-visual
=============================*/
.mv {
  position: relative;
  display: block;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 768px) {
  .mv {
    height: calc(2000px / 2);
  }
}

@media (max-width: 767px) {
  .mv {
    height: calc(2000 / 750 * 100vw);
  }
}

.mv::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: darken;
  animation: mvimg-anim1 9s ease-in-out 0.8s infinite alternate;
  z-index: 0;
}

.mv::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  animation: mvimg-anim2 8s ease-in-out 0.6s infinite alternate;
  z-index: 10;
}

@media (min-width: 768px) {
  .mv::after {
    width: calc(733px / 2);
    top: calc(240px / 2);
  }
}

@media (max-width: 767px) {
  .mv::after {
    width: calc(733 / 750 * 100vw);
    top: calc(240 / 750 * 100vw);
  }
}

.mv-ttl {
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  margin-left: auto;
  margin-right: 0;
}

@media (min-width: 768px) {
  .mv-ttl {
    width: calc(684px / 2);
    height: calc(737px / 2);
    top: calc(224px / 2);
  }
}

@media (max-width: 767px) {
  .mv-ttl {
    width: calc(684 / 750 * 100vw);
    height: calc(737 / 750 * 100vw);
    top: calc(224 / 750 * 100vw);
  }
}

.mv-ttl::after {
  content: '';
  position: absolute;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/mv_ttl_bg.png);
}

@media (min-width: 768px) {
  .mv-ttl::after {
    width: calc(684px / 2);
    height: calc(737px / 2);
  }
}

@media (max-width: 767px) {
  .mv-ttl::after {
    width: calc(684 / 750 * 100vw);
    height: calc(737 / 750 * 100vw);
  }
}

.mv-ttl-main {
  position: absolute;
  right: 0;
  display: block;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/mv_ttl_main.png);
  mix-blend-mode: multiply;
  z-index: 14;
}

@media (min-width: 768px) {
  .mv-ttl-main {
    top: calc(106px / 2);
    left: calc(40px / 2);
    width: calc(472px / 2);
    height: calc(218px / 2);
  }
}

@media (max-width: 767px) {
  .mv-ttl-main {
    top: calc(106 / 750 * 100vw);
    left: calc(40 / 750 * 100vw);
    width: calc(472 / 750 * 100vw);
    height: calc(218 / 750 * 100vw);
  }
}

.mv-ttl-tag {
  position: absolute;
  right: 0;
  display: block;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/mv_ttl_tag.png);
  z-index: 12;
}

@media (min-width: 768px) {
  .mv-ttl-tag {
    top: calc(340px / 2);
    left: calc(40px / 2);
    width: calc(371px / 2);
    height: calc(56px / 2);
  }
}

@media (max-width: 767px) {
  .mv-ttl-tag {
    top: calc(340 / 750 * 100vw);
    left: calc(40 / 750 * 100vw);
    width: calc(371 / 750 * 100vw);
    height: calc(56 / 750 * 100vw);
  }
}

.mv-ttl-sub {
  position: absolute;
  right: 0;
  display: block;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/mv_ttl_sub.png);
  z-index: 12;
}

@media (min-width: 768px) {
  .mv-ttl-sub {
    top: calc(440px / 2);
    left: calc(50px / 2);
    width: calc(413px / 2);
    height: calc(188px / 2);
  }
}

@media (max-width: 767px) {
  .mv-ttl-sub {
    top: calc(440 / 750 * 100vw);
    left: calc(50 / 750 * 100vw);
    width: calc(413 / 750 * 100vw);
    height: calc(188 / 750 * 100vw);
  }
}

.mv-img {
  display: block;
  width: 100%;
  height: 100%;
}

.mv-img-item {
  display: block;
}

.mv-img-item::before, .mv-img-item::after {
  content: '';
  position: absolute;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.mv-img-item:nth-child(1)::before {
  background-image: url(../img/mv_img_item_01.png);
  z-index: 5;
  animation: mvimg-anim1 6s ease-in-out 0.8s infinite alternate;
}

@media (min-width: 768px) {
  .mv-img-item:nth-child(1)::before {
    top: calc(-230px / 2);
    left: calc(-92px / 2);
    width: calc(480px / 2);
    height: calc(480px / 2);
  }
}

@media (max-width: 767px) {
  .mv-img-item:nth-child(1)::before {
    top: calc(-230 / 750 * 100vw);
    left: calc(-92 / 750 * 100vw);
    width: calc(480 / 750 * 100vw);
    height: calc(480 / 750 * 100vw);
  }
}

.mv-img-item:nth-child(1)::after {
  background-image: url(../img/mv_img_item_02.png);
  z-index: 6;
  animation: mvimg-anim2 4s ease-in-out 0s infinite alternate;
}

@media (min-width: 768px) {
  .mv-img-item:nth-child(1)::after {
    top: calc(200px / 2);
    left: calc(40px / 2);
    width: calc(280px / 2);
    height: calc(280px / 2);
  }
}

@media (max-width: 767px) {
  .mv-img-item:nth-child(1)::after {
    top: calc(200 / 750 * 100vw);
    left: calc(40 / 750 * 100vw);
    width: calc(280 / 750 * 100vw);
    height: calc(280 / 750 * 100vw);
  }
}

.mv-img-item:nth-child(2)::before {
  background-image: url(../img/mv_img_item_03.png);
  z-index: 6;
  animation: mvimg-anim1 5s ease-in-out .2s infinite alternate;
}

@media (min-width: 768px) {
  .mv-img-item:nth-child(2)::before {
    top: calc(480px / 2);
    left: calc(-30px / 2);
    width: calc(215px / 2);
    height: calc(215px / 2);
  }
}

@media (max-width: 767px) {
  .mv-img-item:nth-child(2)::before {
    top: calc(480 / 750 * 100vw);
    left: calc(-30 / 750 * 100vw);
    width: calc(215 / 750 * 100vw);
    height: calc(215 / 750 * 100vw);
  }
}

.mv-img-item:nth-child(2)::after {
  background-image: url(../img/mv_img_item_04.png);
  z-index: 6;
  animation: mvimg-anim2 7s ease-in-out 0s infinite alternate;
}

@media (min-width: 768px) {
  .mv-img-item:nth-child(2)::after {
    top: calc(160px / 2);
    left: calc(340px / 2);
    width: calc(139px / 2);
    height: calc(139px / 2);
  }
}

@media (max-width: 767px) {
  .mv-img-item:nth-child(2)::after {
    top: calc(160 / 750 * 100vw);
    left: calc(340 / 750 * 100vw);
    width: calc(139 / 750 * 100vw);
    height: calc(139 / 750 * 100vw);
  }
}

.mv-img-item:nth-child(3)::before {
  background-image: url(../img/mv_img_item_05.png);
  z-index: 7;
  animation: mvimg-anim1 6s ease-in-out 0s infinite alternate;
}

@media (min-width: 768px) {
  .mv-img-item:nth-child(3)::before {
    top: calc(180px / 2);
    right: calc(60px / 2);
    width: calc(262px / 2);
    height: calc(262px / 2);
  }
}

@media (max-width: 767px) {
  .mv-img-item:nth-child(3)::before {
    top: calc(180 / 750 * 100vw);
    right: calc(60 / 750 * 100vw);
    width: calc(262 / 750 * 100vw);
    height: calc(262 / 750 * 100vw);
  }
}

.mv-img-item:nth-child(3)::after {
  background-image: url(../img/mv_img_item_06.png);
  z-index: 5;
  animation: mvimg-anim2 6s ease-in-out 0s infinite alternate;
}

@media (min-width: 768px) {
  .mv-img-item:nth-child(3)::after {
    top: calc(770px / 2);
    left: calc(-110px / 2);
    width: calc(397px / 2);
    height: calc(409px / 2);
  }
}

@media (max-width: 767px) {
  .mv-img-item:nth-child(3)::after {
    top: calc(770 / 750 * 100vw);
    left: calc(-110 / 750 * 100vw);
    width: calc(397 / 750 * 100vw);
    height: calc(409 / 750 * 100vw);
  }
}

.mv-img-item:nth-child(4)::before {
  background-image: url(../img/mv_img_item_07.png);
  z-index: 6;
  animation: mvimg-anim1 8s ease-in-out 0s infinite alternate;
}

@media (min-width: 768px) {
  .mv-img-item:nth-child(4)::before {
    top: calc(1080px / 2);
    left: calc(60px / 2);
    width: calc(312px / 2);
    height: calc(312px / 2);
  }
}

@media (max-width: 767px) {
  .mv-img-item:nth-child(4)::before {
    top: calc(1080 / 750 * 100vw);
    left: calc(60 / 750 * 100vw);
    width: calc(312 / 750 * 100vw);
    height: calc(312 / 750 * 100vw);
  }
}

.mv-img-item:nth-child(4)::after {
  background-image: url(../img/mv_img_item_08.png);
  z-index: 5;
  animation: mvimg-anim2 4s ease-in-out 0s infinite alternate;
}

@media (min-width: 768px) {
  .mv-img-item:nth-child(4)::after {
    top: calc(810px / 2);
    right: calc(-80px / 2);
    width: calc(222px / 2);
    height: calc(222px / 2);
  }
}

@media (max-width: 767px) {
  .mv-img-item:nth-child(4)::after {
    top: calc(810 / 750 * 100vw);
    right: calc(-80 / 750 * 100vw);
    width: calc(222 / 750 * 100vw);
    height: calc(222 / 750 * 100vw);
  }
}

.mv-img-item:nth-child(5)::before {
  background-image: url(../img/mv_img_item_09.png);
  z-index: 6;
  animation: mvimg-anim2 5s ease-in-out 1s infinite alternate;
}

@media (min-width: 768px) {
  .mv-img-item:nth-child(5)::before {
    top: calc(930px / 2);
    right: calc(140px / 2);
    width: calc(262px / 2);
    height: calc(262px / 2);
  }
}

@media (max-width: 767px) {
  .mv-img-item:nth-child(5)::before {
    top: calc(930 / 750 * 100vw);
    right: calc(140 / 750 * 100vw);
    width: calc(262 / 750 * 100vw);
    height: calc(262 / 750 * 100vw);
  }
}

.mv-img-item:nth-child(5)::after {
  background-image: url(../img/mv_img_item_10.png);
  z-index: 5;
  animation: mvimg-anim2 6s ease-in-out 0s infinite alternate;
}

@media (min-width: 768px) {
  .mv-img-item:nth-child(5)::after {
    top: calc(1170px / 2);
    right: calc(-210px / 2);
    width: calc(581px / 2);
    height: calc(581px / 2);
  }
}

@media (max-width: 767px) {
  .mv-img-item:nth-child(5)::after {
    top: calc(1170 / 750 * 100vw);
    right: calc(-210 / 750 * 100vw);
    width: calc(581 / 750 * 100vw);
    height: calc(581 / 750 * 100vw);
  }
}

.mv-img-item:nth-child(6)::before {
  background-image: url(../img/mv_img_item_11.png);
  z-index: 7;
  animation: mvimg-anim1 4s ease-in-out 0s infinite alternate;
}

@media (min-width: 768px) {
  .mv-img-item:nth-child(6)::before {
    top: calc(1120px / 2);
    right: calc(230px / 2);
    width: calc(210px / 2);
    height: calc(210px / 2);
  }
}

@media (max-width: 767px) {
  .mv-img-item:nth-child(6)::before {
    top: calc(1120 / 750 * 100vw);
    right: calc(230 / 750 * 100vw);
    width: calc(210 / 750 * 100vw);
    height: calc(210 / 750 * 100vw);
  }
}

@keyframes mvimg-anim1 {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(2px, -12px);
  }
}

@keyframes mvimg-anim2 {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(-2px, 8px);
  }
}

/* ============================
  sns
=============================*/
.sns-link {
  display: block;
  margin: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .sns-link {
    margin-top: calc(30px / 2);
  }
}

@media (max-width: 767px) {
  .sns-link {
    margin-top: calc(30 / 750 * 100vw);
  }
}

.sns-link a {
  display: block;
  margin: auto
}

@media (min-width: 768px) {
  .sns-link a {
    width: calc(272px / 2);
    height: calc(58px / 2);
  }
}

@media (max-width: 767px) {
  .sns-link {
    width: calc(272 / 750 * 100vw);
    height: calc(58 / 750 * 100vw);
  }
}


/* ============================
  How to use
=============================*/
.how {
  position: relative;
  display: block;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.78);
  z-index: 15;
}

@media (min-width: 768px) {
  .how {
    top: calc(-600px / 2);
    width: calc(670px / 2);
    margin-bottom: calc(-600px / 2);
    border: calc(2px / 2) solid #CA9978;
  }
}

@media (max-width: 767px) {
  .how {
    top: calc(-600 / 750 * 100vw);
    width: calc(670 / 750 * 100vw);
    margin-bottom: calc(-600 / 750 * 100vw);
    border: calc(2 / 750 * 100vw) solid #bdb29f;
  }
}

.how-ttl {
  position: relative;
  display: block;
  background-color: #CA9978;
  color: #ffffff;
  text-align: center;
}

@media (min-width: 768px) {
  .how-ttl {
    height: calc(120px / 2);
  }
}

@media (max-width: 767px) {
  .how-ttl {
    height: calc(120 / 750 * 100vw);
  }
}

.how-ttl::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
;
}

@media (min-width: 768px) {
  .how-ttl::after {
    width: calc(638px / 2);
    height: calc(88px / 2);
  }
}

@media (max-width: 767px) {
  .how-ttl::after {
    width: calc(638 / 750 * 100vw);
    height: calc(88 / 750 * 100vw);
  }
}

.how-ttl-head {
  position: absolute;
  left: 0;
  right: 0;
  display: table;
  margin: auto;
  background-color: #ffffff;
  color: #bdb29f;
  text-align: center;
  letter-spacing: 0.17em;
}

@media (min-width: 768px) {
  .how-ttl-head {
    width: calc(303px / 2);
    height: calc(35px / 2);
    border-radius: 0 0 calc(10px / 2) calc(10px / 2);
    line-height: calc(20px / 2);
  }
}

@media (max-width: 767px) {
  .how-ttl-head {
    width: calc(303 / 750 * 100vw);
    height: calc(35 / 750 * 100vw);
    border-radius: 0 0 calc(10 / 750 * 100vw) calc(10 / 750 * 100vw);
    line-height: calc(20 / 750 * 100vw);
  }
}

.how-ttl-head span {
  display: inline-flex;
  align-items: center;
}

@media (min-width: 768px) {
  .how-ttl-head span {
    font-size: calc(20px / 2);
  }
}

@media (max-width: 767px) {
  .how-ttl-head span {
    font-size: calc(20 / 750 * 100vw);
  }
}

.how-ttl-head span::before, .how-ttl-head span::after {
  content: '';
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/how_ttl_line.png);
}

@media (min-width: 768px) {
  .how-ttl-head span::before, .how-ttl-head span::after {
    width: calc(40px / 2);
    height: calc(4px / 2);
    line-height: calc(35px / 2);
  }
}

@media (max-width: 767px) {
  .how-ttl-head span::before, .how-ttl-head span::after {
    width: calc(40 / 750 * 100vw);
    height: calc(4 / 750 * 100vw);
    line-height: calc(35 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .how-ttl-head span::before {
    margin-right: calc(10px / 2);
  }
}

@media (max-width: 767px) {
  .how-ttl-head span::before {
    margin-right: calc(10 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .how-ttl-head span::after {
    margin-left: calc(10px / 2);
  }
}

@media (max-width: 767px) {
  .how-ttl-head span::after {
    margin-left: calc(10 / 750 * 100vw);
  }
}

.how-ttl-main {
  font-weight: bold;
  letter-spacing: 0.14em;
}

@media (min-width: 768px) {
  .how-ttl-main {
    font-size: calc(32px / 2);
    line-height: calc(140px / 2);
  }
}

@media (max-width: 767px) {
  .how-ttl-main {
    font-size: calc(32 / 750 * 100vw);
    line-height: calc(140 / 750 * 100vw);
  }
}

.how-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .how-list {
    padding: calc(40px / 2) calc(50px / 2);
  }
}

@media (max-width: 767px) {
  .how-list {
    padding: calc(40 / 750 * 100vw) calc(50 / 750 * 100vw);
  }
}

.how-list-item {
  position: relative;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .how-list-item {
    width: calc(254px / 2);
  }
}

@media (max-width: 767px) {
  .how-list-item {
    width: calc(254 / 750 * 100vw);
  }
}

.how-list-item:nth-child(1)::after {
  content: '';
  position: absolute;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .how-list-item:nth-child(1)::after {
    top: calc(16px / 2);
    left: calc(-30px / 2);
    width: calc(34px / 2);
    height: calc(46px / 2);
  }
}

@media (max-width: 767px) {
  .how-list-item:nth-child(1)::after {
    top: calc(16 / 750 * 100vw);
    left: calc(-30 / 750 * 100vw);
    width: calc(34 / 750 * 100vw);
    height: calc(46 / 750 * 100vw);
  }
}

.how-list-item:nth-child(1) picture::after {
  background-image: url(../img/how_list_01_mark.png);
}

@media (min-width: 768px) {
  .how-list-item:nth-child(1) picture::after {
    bottom: calc(-15px / 2);
    right: calc(-25px / 2);
    width: calc(91px / 2);
    height: calc(82px / 2);
  }
}

@media (max-width: 767px) {
  .how-list-item:nth-child(1) picture::after {
    bottom: calc(-15 / 750 * 100vw);
    right: calc(-25 / 750 * 100vw);
    width: calc(91 / 750 * 100vw);
    height: calc(82 / 750 * 100vw);
  }
}

.how-list-item:nth-child(2) picture::after {
  background-image: url(../img/how_list_02_mark.png);
}

@media (min-width: 768px) {
  .how-list-item:nth-child(2) picture::after {
    top: calc(-55px / 2);
    right: calc(-55px / 2);
    width: calc(83px / 2);
    height: calc(66px / 2);
  }
}

@media (max-width: 767px) {
  .how-list-item:nth-child(2) picture::after {
    top: calc(-55 / 750 * 100vw);
    right: calc(-55 / 750 * 100vw);
    width: calc(83 / 750 * 100vw);
    height: calc(66 / 750 * 100vw);
  }
}

.how-list-item p {
  position: relative;
  display: table;
  margin: auto;
  text-align: center;
  line-height: 1.34;
  font-weight: bold;
}

@media (min-width: 768px) {
  .how-list-item p {
    margin-bottom: calc(20px / 2);
    padding-bottom: calc(10px / 2);
    border-bottom: dotted calc(4px / 2) #bdb29f;
    font-size: calc(26px / 2);
  }
}

@media (max-width: 767px) {
  .how-list-item p {
    margin-bottom: calc(20 / 750 * 100vw);
    padding-bottom: calc(10 / 750 * 100vw);
    border-bottom: dotted calc(4 / 750 * 100vw) #bdb29f;
    font-size: calc(26 / 750 * 100vw);
  }
}

.how-list-item p svg {
  position: relative;
  display: inline-block;
  stroke: #333333;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: transparent;
  cursor: pointer;
}

@media (min-width: 768px) {
  .how-list-item p svg {
    top: calc(2px / 2);
    left: calc(2px / 2);
    width: calc(26px / 2);
    height: calc(26px / 2);
    margin: 0 calc(4px / 2);
  }
}

@media (max-width: 767px) {
  .how-list-item p svg {
    top: calc(2 / 750 * 100vw);
    left: calc(2 / 750 * 100vw);
    width: calc(26 / 750 * 100vw);
    height: calc(26 / 750 * 100vw);
    margin: 0 calc(4 / 750 * 100vw);
  }
}

.how-list-item picture {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.how-list-item picture::after {
  content: '';
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.how-bottom {
  display: block;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .how-bottom {
    margin-bottom: calc(20px / 2);
    font-size: calc(26px / 2);
  }
}

@media (max-width: 767px) {
  .how-bottom {
    margin-bottom: calc(20 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }
}

/* ============================
  gallery
=============================*/
.gallery {
  position: relative;
  display: block;
  margin: auto;
}

@media (min-width: 768px) {
  .gallery {
    margin-top: calc(30px / 2);
  }
}

@media (max-width: 767px) {
  .gallery {
    margin-top: calc(30 / 750 * 100vw);
  }
}

.gallery-head {
  position: relative;
  text-align: center;
}

@media (min-width: 768px) {
  .gallery-head {
    margin-bottom: calc(20px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-head {
    margin-bottom: calc(20 / 750 * 100vw);
  }
}

.gallery-list {
  display: grid;
  margin: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (min-width: 768px) {
  .gallery-list {
    width: calc(712px / 2);
    grid-template-columns: calc(230px / 2) 1fr 1fr;
    grid-gap: calc(10px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-list {
    width: calc(712 / 750 * 100vw);
    grid-template-columns: calc(230 / 750 * 100vw) 1fr 1fr;
    grid-gap: calc(10 / 750 * 100vw);
  }
}

.gallery-list-item {
  cursor: pointer;
}

.gallery-list-item:nth-child(4) {
  grid-row: 2 / span 2;
  grid-column: 1 / span 1;
}

.gallery-list-item:nth-child(5) {
  grid-row: 2 / span 2;
  grid-column: 2 / span 2;
}

.gallery-list-item:nth-child(6) {
  grid-row: 4 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(14) {
  grid-row: 7 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(15) {
  grid-row: 7 / span 1;
  grid-column: 3 / span 1;
}

.gallery-list-item:nth-child(17) {
  grid-row: 8 / span 1;
  grid-column: 2 / span 2;
}

.gallery-list-item:nth-child(24) {
  grid-row: 11 / span 2;
  grid-column: 1 / span 1;
}

.gallery-list-item:nth-child(25) {
  grid-row: 11 / span 2;
  grid-column: 2 / span 2;
}

.gallery-list-item:nth-child(26) {
  grid-row: 13 / span 1;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(31) {
  grid-row: 15 / span 2;
  grid-column: 1 / span 2;
}

.gallery-list-item:nth-child(32) {
  grid-row: 15 / span 2;
  grid-column: 3 / span 1;
}

.gallery-list-item:nth-child(33) {
  grid-row: 17 / span 1;
  grid-column: 1 / span 3;
}

.gallery-list-item a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.gallery-slide-item {
  position: relative;
  display: block;
  width: auto;
  flex-shrink: 0;
  text-align: center;
}

.gallery-slide-item img {
  width: auto;
  margin: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  .gallery-slide-item img {
    max-height: calc(750px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-slide-item img {
    max-height: calc(720 / 750 * 100vw);
  }
}

.gallery-slide-item .box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.87);
}

@media (min-width: 768px) {
  .gallery-slide-item .box {
    height: calc(50px / 2);
    padding: 0 calc(30px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-slide-item .box {
    height: calc(50 / 750 * 100vw);
    padding: 0 calc(30 / 750 * 100vw);
  }
}

.gallery-slide-item .box p {
  text-align: right;
  font-size: 0.8em;
}

@media (min-width: 768px) {
  .gallery-slide-item .box p {
    margin-right: calc(10px / 2);
    line-height: calc(40px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-slide-item .box p {
    margin-right: calc(10 / 750 * 100vw);
    line-height: calc(40 / 750 * 100vw);
  }
}

.gallery-slide-item .box button {
  opacity: .5;
  transition: opacity .2s;
  background: none;
  border: 0;
  outline: none;
  pointer-events: visible;
  color: inherit;
}

@media (min-width: 768px) {
  .gallery-slide-item .box button {
    width: calc(26px / 2);
    height: calc(26px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-slide-item .box button {
    width: calc(26 / 750 * 100vw);
    height: calc(26 / 750 * 100vw);
  }
}

.gallery-slide-item .box button svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: #333333;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  fill: transparent;
  cursor: pointer;
}

.gallery-slide-item .box button.is-on svg {
  stroke: transparent;
  fill: #e46087;
  animation: heartAnime .4s ease-out;
}

.gallery-tag {
  text-align: center;
}

.gallery-group {
  display: table;
  width: auto;
  margin: auto;
  color: #ffffff;
}

@media (min-width: 768px) {
  .gallery-group {
    height: calc(30px / 2);
    margin-bottom: calc(30px / 2);
    padding: 0 calc(30px / 2);
    border-radius: calc(15px / 2);
    font-size: calc(17px / 2);
    line-height: calc(30px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-group {
    height: calc(30 / 750 * 100vw);
    margin-bottom: calc(30 / 750 * 100vw);
    padding: 0 calc(30 / 750 * 100vw);
    border-radius: calc(15 / 750 * 100vw);
    font-size: calc(17 / 750 * 100vw);
    line-height: calc(30 / 750 * 100vw);
  }
}

.gallery-group[data-group="ROMANTIC"], .gallery-group[data-group="ELEGANT"], .gallery-group[data-group="ROMANTIC_ELEGANTIC"] {
  background-color: #DA8194;
}

.gallery-group[data-group="ORIGINAL"], .gallery-group[data-group="PLAYFUL"], .gallery-group[data-group="ORIGINAL_PLAYFUL"] {
  background-color: #B3D0D6;
}

.gallery-group[data-group="CASUAL"], .gallery-group[data-group="JOYFUL"], .gallery-group[data-group="CASUAL_JOYFULL"] {
  background-color: #F4F0D0;
  color: #333333;
}

.gallery .md {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
}

.gallery .md-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 101;
}

.gallery .md-content {
  position: absolute;
  width: 100%;
  background: #ffffff;
  z-index: 102;
}

@media (min-width: 768px) {
  .gallery .md-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 75%;
    min-height: calc(500px / 2);
    height: 80%;
    box-shadow: 0px 0px calc(16px / 2) calc(-6px / 2) rgba(65, 65, 65, 0.2);
  }
}

@media (max-width: 767px) {
  .gallery .md-content {
    top: 40%;
    left: 50%;
    height: auto;
    transform: translate(-50%, -40%);
    min-height: calc(300 / 750 * 100vw);
    box-shadow: 0px 0px calc(16 / 750 * 100vw) calc(-6 / 750 * 100vw) rgba(65, 65, 65, 0.2);
  }
}

.gallery .md-inner {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .gallery .md-inner {
    padding: calc(170px / 2) 0;
  }
}

@media (max-width: 767px) {
  .gallery .md-inner {
    padding: calc(100 / 750 * 100vw) 0;
  }
}

.gallery .md .center .slick-slide {
  transform: scale(0.8);
  transition: 0.3s all;
}

.gallery .md .center .slick-slide.slick-center {
  transform: scale(1);
}

.gallery .md .center .slick-slide img {
  transition: 0.3s all;
}

.gallery .md-close-btn {
  display: block;
  position: absolute;
  background-color: #ffffff;
  border-radius: 50%;
  color: #000000;
  text-align: center;
  text-decoration: none;
  z-index: 200;
}

@media (min-width: 768px) {
  .gallery .md-close-btn {
    bottom: calc(-90px / 2);
    left: calc(20px / 2);
    width: calc(75px / 2);
    height: calc(75px / 2);
    font-size: calc(35px / 2);
    line-height: calc(75px / 2);
    box-shadow: 0px 0px calc(16px / 2) calc(-6px / 2) rgba(65, 65, 65, 0.2);
  }
}

@media (max-width: 767px) {
  .gallery .md-close-btn {
    bottom: calc(-90 / 750 * 100vw);
    left: calc(20 / 750 * 100vw);
    width: calc(75 / 750 * 100vw);
    height: calc(75 / 750 * 100vw);
    font-size: calc(35 / 750 * 100vw);
    line-height: calc(75 / 750 * 100vw);
    box-shadow: 0px 0px calc(16 / 750 * 100vw) calc(-6 / 750 * 100vw) rgba(65, 65, 65, 0.2);
  }
}

.gallery .slick-track {
  display: flex;
  align-items: center;
}

.gallery .fav-link {
  display: table;
  position: fixed;
  background-color: #5C5549;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  z-index: 105;
}

@media (min-width: 768px) {
  .gallery .fav-link {
    display: none;
  }
}

@media (max-width: 767px) {
  .gallery .fav-link {
    bottom: calc(-200 / 750 * 100vw);
    right: calc(20 / 750 * 100vw);
    width: calc(220 / 750 * 100vw);
    height: calc(220 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
    box-shadow: 0px 0px calc(16 / 750 * 100vw) calc(-6 / 750 * 100vw) rgba(65, 65, 65, 0.2);
  }
}

.gallery .fav-link span {
  display: table-cell;
  vertical-align: middle;
}

.gallery-end {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  text-align: center;
  font-weight: bold;
}

@media (min-width: 768px) {
  .gallery-end {
    margin-top: calc(80px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-end {
    margin-top: calc(80 / 750 * 100vw);
  }
}

.gallery-end::before, .gallery-end::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-end::before {
  background-image: url(../img/gallery_end_bg.png);
  opacity: .3;
  z-index: 0;
}

.gallery-end::after {
  background-color: #B0BDD1;
  mix-blend-mode: overlay;
  z-index: 1;
}

.gallery-end-wrap {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
}

.gallery-end-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 54%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  background-image: url(../img/gallery_end_bottom.png);
  z-index: 2;
}

.gallery-end-head {
  position: relative;
  display: block;
  margin: auto;
  z-index: 2;
}

@media (min-width: 768px) {
  .gallery-end-head {
    padding: calc(50px / 2) 0 calc(0px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-end-head {
    padding: calc(50 / 750 * 100vw) 0 calc(0 / 750 * 100vw);
  }
}

.gallery-end-head p {
  display: inline-block;
}

.gallery-end-head p span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .gallery-end-head p span {
    top: calc(6px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-end-head p span {
    top: calc(9 / 750 * 100vw);
  }
}

.gallery-end-head p span[data-num="01"] {
  background-image: url(../img/gallery_end_txt_01.png);
}

@media (min-width: 768px) {
  .gallery-end-head p span[data-num="01"] {
    width: calc(98px / 2);
    height: calc(41px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-end-head p span[data-num="01"] {
    width: calc(98 / 750 * 100vw);
    height: calc(41 / 750 * 100vw);
  }
}

.gallery-end-head p span[data-num="02"] {
  background-image: url(../img/gallery_end_txt_02.png);
}

@media (min-width: 768px) {
  .gallery-end-head p span[data-num="02"] {
    width: calc(104px / 2);
    height: calc(41px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-end-head p span[data-num="02"] {
    width: calc(104 / 750 * 100vw);
    height: calc(41 / 750 * 100vw);
  }
}

.gallery-end-bottom {
  position: relative;
  display: block;
  margin: auto;
  z-index: 2;
}

@media (min-width: 768px) {
  .gallery-end-bottom {
    padding: calc(100px / 2) 0 calc(50px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-end-bottom {
    padding: calc(100 / 750 * 100vw) 0 calc(50 / 750 * 100vw);
  }
}

.gallery-end-bottom p {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: #ffffff;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;

}

@media (min-width: 768px) {
  .gallery-end-bottom p {
    font-size: calc(36px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-end-bottom p {
    font-size: calc(36 / 750 * 100vw);
  }
}

.gallery-end-bottom p::before, .gallery-end-bottom p::after {
  content: '';
  position: absolute;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .gallery-end-bottom p::before {
    top: calc(-30px / 2);
    left: calc(-80px / 2);
    width: calc(89px / 2);
    height: calc(93px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-end-bottom p::before {
    top: calc(-30 / 750 * 100vw);
    left: calc(-80 / 750 * 100vw);
    width: calc(89 / 750 * 100vw);
    height: calc(93 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .gallery-end-bottom p::after {
    bottom: calc(36px / 2);
    right: calc(-14px / 2);
    width: calc(35px / 2);
    height: calc(39px / 2);
  }
}

@media (max-width: 767px) {
  .gallery-end-bottom p::after {
    bottom: calc(36 / 750 * 100vw);
    right: calc(-14 / 750 * 100vw);
    width: calc(35 / 750 * 100vw);
    height: calc(39 / 750 * 100vw);
  }
}

@keyframes heartAnime {
  0% {
    transform: scale(0.4);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ==========================================================
  point
=====*/
.point {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
}

@media (min-width: 768px) {
  .point {
    padding: calc(50px / 2) 0;
  }
}

@media (max-width: 767px) {
  .point {
    padding: calc(50 / 750 * 100vw) 0;
  }
}

.point-ttl {
  position: relative;
  display: table;
  margin: auto;
  font-family: "EB Garamond", serif;
  text-align: center;
  color: #BDB29F;
}

@media (min-width: 768px) {
  .point-ttl {
    font-size: calc(62px / 2);
  }
}

@media (max-width: 767px) {
  .point-ttl {
    font-size: calc(62 / 750 * 100vw);
  }
}

.point-ttl::before, .point-ttl::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/point_ttl_mark.png);
}

@media (min-width: 768px) {
  .point-ttl::before, .point-ttl::after {
    width: calc(16px / 2);
    height: calc(40px / 2);
  }
}

@media (max-width: 767px) {
  .point-ttl::before, .point-ttl::after {
    width: calc(16 / 750 * 100vw);
    height: calc(40 / 750 * 100vw);
  }
}

.point-ttl::before {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .point-ttl::before {
    left: calc(-30px / 2);
  }
}

@media (max-width: 767px) {
  .point-ttl::before {
    left: calc(-30 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .point-ttl::after {
    right: calc(-50px / 2);
  }
}

@media (max-width: 767px) {
  .point-ttl::after {
    right: calc(-50 / 750 * 100vw);
  }
}

.point-list {
  display: block;
  width: 100%;
  margin: auto;
}

@media (min-width: 768px) {
  .point-list {
    margin-top: calc(30px / 2);
  }
}

@media (max-width: 767px) {
  .point-list {
    margin-top: calc(30 / 750 * 100vw);
  }
}

.point-list-item {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  clear: both;
}

.point-list-item:nth-child(odd) .point-list-head picture {
  order: 1;
}

@media (min-width: 768px) {
  .point-list-item:nth-child(odd) .point-list-head picture::after {
    left: calc(20px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-item:nth-child(odd) .point-list-head picture::after {
    left: calc(20 / 750 * 100vw);
  }
}

.point-list-item:nth-child(odd) .point-list-head .point-num {
  order: 2;
}

.point-list-item:nth-child(odd) .point-list-bottom picture {
  float: right;
}

@media (min-width: 768px) {
  .point-list-item:nth-child(odd) .point-list-bottom picture::after {
    right: calc(20px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-item:nth-child(odd) .point-list-bottom picture::after {
    right: calc(20 / 750 * 100vw);
  }
}

.point-list-item:nth-child(even) .point-list-head picture {
  order: 2;
}

@media (min-width: 768px) {
  .point-list-item:nth-child(even) .point-list-head picture::after {
    right: calc(20px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-item:nth-child(even) .point-list-head picture::after {
    right: calc(20 / 750 * 100vw);
  }
}

.point-list-item:nth-child(even) .point-list-head .point-num {
  order: 1;
}

.point-list-item:nth-child(even) .point-list-bottom picture {
  float: left;
}

@media (min-width: 768px) {
  .point-list-item:nth-child(even) .point-list-bottom picture {
    margin-right: calc(40px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-item:nth-child(even) .point-list-bottom picture {
    margin-right: calc(40 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .point-list-item:nth-child(even) .point-list-bottom picture::after {
    left: calc(20px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-item:nth-child(even) .point-list-bottom picture::after {
    left: calc(20 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .point-list-item:nth-child(1) .point-list-bottom .point-list-txt {
    padding-top: calc(290px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-item:nth-child(1) .point-list-bottom .point-list-txt {
    padding-top: calc(290 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .point-list-item:nth-child(2) .point-list-bottom .point-list-txt {
    padding-top: calc(280px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-item:nth-child(2) .point-list-bottom .point-list-txt {
    padding-top: calc(280 / 750 * 100vw);
  }
}

.point-list-item:nth-child(3) .point-list-head picture {
  z-index: 2;
}

.point-list-item:nth-child(3) .point-list-bottom {
  z-index: 0;
}

@media (min-width: 768px) {
  .point-list-item:nth-child(3) .point-list-bottom {
    top: calc(-280px / 2);
    margin-bottom: calc(-280px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-item:nth-child(3) .point-list-bottom {
    margin-bottom: calc(-280 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .point-list-item:nth-child(3) .point-list-bottom .point-list-txt {
    padding-top: calc(370px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-item:nth-child(3) .point-list-bottom .point-list-txt {
    padding-top: calc(370 / 750 * 100vw);
  }
}

@media (min-width: 768px) {
  .point-list-item:not(:last-child) {
    margin-bottom: calc(70px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-item:not(:last-child) {
    margin-bottom: calc(70 / 750 * 100vw);
  }
}

.point-list-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
  margin: auto;
}

.point-list-head .point-num {
  margin: 0 auto;
  font-family: "EB Garamond", serif;
  color: #CA9978;
  line-height: 1;
}

@media (min-width: 768px) {
  .point-list-head .point-num {
    font-size: calc(31px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-head .point-num {
    font-size: calc(31 / 750 * 100vw);
  }
}

.point-list-head .point-num span {
  position: relative;
  display: block;
  font-family: "EB Garamond", serif;
  color: #CA9978;
}

@media (min-width: 768px) {
  .point-list-head .point-num span {
    top: calc(-24px / 2);
    left: calc(-6px / 2);
    font-size: calc(106px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-head .point-num span {
    top: calc(-24 / 750 * 100vw);
    left: calc(-6 / 750 * 100vw);
    font-size: calc(106 / 750 * 100vw);
  }
}

.point-list-head picture {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .point-list-head picture {
    width: calc(520px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-head picture {
    width: calc(520 / 750 * 100vw);
  }
}

.point-list-head picture::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #E9D4C3;
  mix-blend-mode: darken;
  z-index: -1;
}

@media (min-width: 768px) {
  .point-list-head picture::after {
    top: calc(20px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-head picture::after {
    top: calc(20 / 750 * 100vw);
  }
}

.point-list-bottom {
  position: relative;
  display: table;
  width: 100%;
  margin: auto;
  z-index: 1;
}

@media (min-width: 768px) {
  .point-list-bottom {
    top: calc(-230px / 2);
    margin-bottom: calc(-230px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-bottom {
    top: calc(-230 / 750 * 100vw);
    margin-bottom: calc(-230 / 750 * 100vw);
  }
}

.point-list-bottom picture {
  position: relative;
  display: block;
  float: right;
}

@media (min-width: 768px) {
  .point-list-bottom picture {
    width: calc(304px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-bottom picture {
    width: calc(304 / 750 * 100vw);
  }
}

.point-list-bottom picture::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #E9D4C3;
  mix-blend-mode: darken;
  z-index: -1;
}

@media (min-width: 768px) {
  .point-list-bottom picture::after {
    top: calc(20px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-bottom picture::after {
    top: calc(20 / 750 * 100vw);
  }
}

.point-list-bottom .point-list-txt {
  text-align: justify;
}

@media (min-width: 768px) {
  .point-list-bottom .point-list-txt {
    padding-right: calc(40px / 2);
    padding-left: calc(40px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-bottom .point-list-txt {
    padding-right: calc(40 / 750 * 100vw);
    padding-left: calc(40 / 750 * 100vw);
  }
}

.point-list-bottom .point-list-txt h3 {
  color: #BD332D;
  font-weight: bold;
  font-family:"Zen Old Mincho", serif;

}

@media (min-width: 768px) {
  .point-list-bottom .point-list-txt h3 {
    margin-bottom: calc(10px / 2);
    font-size: calc(36px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-bottom .point-list-txt h3 {
    margin-bottom: calc(10 / 750 * 100vw);
    font-size: calc(36 / 750 * 100vw);
  }
}

.point-list-bottom .point-list-txt p {
  text-align: justify;
}

.point-list-bottom .point-list-txt p span.sup {
  font-size: 70%;
  vertical-align: super;
}

.point-list-note {
  margin: 1em auto 0;
  padding-left: 1em;
  text-indent: -1em;
}

@media (min-width: 768px) {
  .point-list-note {
    width: calc(670px / 2);
    font-size: calc(22px / 2);
  }
}

@media (max-width: 767px) {
  .point-list-note {
    width: calc(670 / 750 * 100vw);
    font-size: calc(22 / 750 * 100vw);
  }
}

/* ==========================================================
  facility
=====*/
.facility {
  display: block;
  margin: auto;
}

.facility-head {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.facility-head::before, .facility-head::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.facility-head::before {
  background-image: url(../img/facility_ttl_bg.png);
  z-index: 0;
}

.facility-head::after {
  background-color: #B0BDD1;
  mix-blend-mode: overlay;
  z-index: 1;
}

.facility-head-ttl {
  position: relative;
  text-align: center;
  color: #5C5549;
  font-weight: bold;
  z-index: 2;
}

@media (min-width: 768px) {
  .facility-head-ttl {
    padding: calc(120px / 2) 0 calc(200px / 2);
    font-size: calc(32px / 2);
  }
}

@media (max-width: 767px) {
  .facility-head-ttl {
    padding: calc(120 / 750 * 100vw) 0 calc(200 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
  }
}

.facility-head-ttl::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 768px) {
  .facility-head-ttl::before {
    top: calc(60px / 2);
    width: calc(33px / 2);
    height: calc(37px / 2);
  }
}

@media (max-width: 767px) {
  .facility-head-ttl::before {
    top: calc(60 / 750 * 100vw);
    width: calc(33 / 750 * 100vw);
    height: calc(37 / 750 * 100vw);
  }
}

.facility-head-ttl span {
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 1.5;
}

.facility-head-ttl span[data-num="01"] {
  display: block;
  margin: auto;
  margin-bottom: 1em;
  background-image: url(../img/facility_ttl_01.png);
}

@media (min-width: 768px) {
  .facility-head-ttl span[data-num="01"] {
    width: calc(438px / 2);
    height: calc(63.25px / 2);
  }
}

@media (max-width: 767px) {
  .facility-head-ttl span[data-num="01"] {
    width: calc(438 / 750 * 100vw);
    height: calc(63.25 / 750 * 100vw);
  }
}

.facility-head-ttl span[data-num="02"] {
  position: relative;
  display: inline-block;
  background-image: url(../img/facility_ttl_02.png);
}

@media (min-width: 768px) {
  .facility-head-ttl span[data-num="02"] {
    top: calc(10px / 2);
    width: calc(100px / 2);
    height: calc(50px / 2);
  }
}

@media (max-width: 767px) {
  .facility-head-ttl span[data-num="02"] {
    top: calc(10 / 750 * 100vw);
    width: calc(100 / 750 * 100vw);
    height: calc(50 / 750 * 100vw);
  }
}

.facility-body {
  position: relative;
  display: block;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .facility-body {
    top: calc(-100px / 2);
  }
}

@media (max-width: 767px) {
  .facility-body {
    top: calc(-100 / 750 * 100vw);
  }
}

/* ==========================================================
  footer
=====*/
.footer {
  position: relative;
  display: block;
  margin: 0 auto;
  background-color: #ffffff;
  text-align: center;
  z-index: 3;
}

@media (min-width: 768px) {
  .footer {
    width: 375px;
    padding: calc(100px / 2) 0;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: calc(100 / 750 * 100vw) 0;
  }
}

.footer img {
  width: 60%;
  margin: auto;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: auto;
}

.swiper-slide .box {
  opacity: .2;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box {
  transition: 1s;
  height: 100%;
}

.swiper-slide-active .box {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  top: auto;
  bottom: 0;
  --swiper-navigation-color: #3c5a41;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 200px;
  left: 50%;
  margin-left: -100px;
}

.swiper-pagination-bullet-active {
  background: #3c5a41;
}

.swiper-button-next {
  right: 10%;
}

.swiper-button-prev {
  left: 10%;
}

.searchMenu {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (min-width: 768px) {
  .searchMenu {
    width: 96%;
    margin: auto;
    padding-bottom: 5px;
  }
}

.searchMenu.justify-center::-webkit-scrollbar {
  display: none;
}

.searchMenu {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  outline: none;
}

.searchMenu::-webkit-scrollbar {
  height: 10px;
}

.searchMenu::-webkit-scrollbar-thumb {
  background-color: #c2c2c2;
  border-radius: 9999px;
}

.searchMenu::-webkit-scrollbar-track {
  background-color: #e0e0e0;
  border-radius: 9999px;
}

a {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  outline: none;
}

@media (min-width: 768px) {
  .searchMenu::-webkit-scrollbar {
    display: block;
  }
}

@media (max-width: 767px) {
  .searchMenu::-webkit-scrollbar {
    display: none;
  }
}
