@charset "UTF-8";
/*
 * htmlのfont-size用
 */
/*
   * font-size可変用
   */
/*メディアクエリー
---------------------------------------------*/
/* For modern browsers */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

/* variable */
i {
  margin: auto 20px;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.pc {
  display: inherit !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 769px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inherit !important;
  }
}
/*---------------------------------------------------------------
common
-------------------------------------------------------------- */
.wf-loading {
  opacity: 0;
}

html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 50px;
}

body {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 180%;
  color: #614A3A;
  background: url("../images/bg.jpg") fixed no-repeat;
  background-size: cover;
  background-position: center center;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: justify;
  text-justify: inter-ideograph;
  position: relative;
}

a,
a:hover,
a:visited {
  color: #614A3A;
  text-decoration: none;
}

#wrapper {
  width: 100%;
  max-width: 475px;
  margin: 0 auto;
  margin-right: 10%;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #fff;
}
@media screen and (min-width: 476px) {
  #wrapper {
    border-left: solid 1px #fff;
    border-right: solid 1px #fff;
  }
}

.fade-in {
  transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
}

img {
  width: 100%;
  vertical-align: bottom;
}

h1,
h2,
h3 {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}

/*-------------------------------
block
--------------------------------- */
.pc {
  display: none;
}
@media screen and (min-width: 476px) {
  .pc {
    display: inherit;
  }
}

@media screen and (min-width: 476px) {
  .sp {
    display: none;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*---------------------------------------------------------------
 navi
-------------------------------------------------------------- */
#toggle {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 4.2105263158vw;
  right: 4.2105263158vw;
  background: #614A3A;
  border: solid 1px #614A3A;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 476px) {
  #toggle {
    top: 20px;
    right: 20px;
  }
}

#toggle-box {
  margin-top: -4px;
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

#toggle-box > span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
}

#toggle-box > span:nth-child(1) {
  top: 0;
}

#toggle-box > span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}

#toggle-box > p {
  color: #fff;
  font-size: 10px;
  font-family: futura-pt, sans-serif;
  margin-top: 8px;
  text-align: center;
}

#toggle {
  z-index: 1000;
}

#nav-content {
  z-index: 9999;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: #DED6D0;
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  font-family: "corporate-logo-ver2", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 476px) {
  #nav-content {
    width: 100%;
    max-width: 800px;
  }
}
#nav-content nav {
  width: 80%;
  margin: 0 auto;
}
#nav-content nav h1 {
  width: 50%;
  max-width: 200px;
  margin: 0 auto 10.5263157895vw;
}
@media screen and (min-width: 476px) {
  #nav-content nav h1 {
    margin: 0 auto 50px;
  }
}
#nav-content nav ul {
  list-style: none;
}
#nav-content nav ul li {
  margin-bottom: 12.6315789474vw;
  text-align: center;
  font-size: 7.5789473684vw;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 476px) {
  #nav-content nav ul li {
    margin-bottom: 60px;
    font-size: 3.6rem;
  }
}
#nav-content nav ul li a {
  display: block;
  text-decoration: none;
  padding: 0;
  transition: opacity 0.6s ease;
  position: relative;
}
#nav-content nav ul li a:hover {
  opacity: 0.6;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box > span {
  background: #fff;
}

.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

.is-open #toggle-box > p {
  display: none;
}

.is-open #nav-content {
  z-index: 999;
  transform: translateX(0);
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
}

/*-------------------------------
main
--------------------------------- */
.main {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  position: relative;
}
.main .logo {
  width: 12.6315789474vw;
  position: absolute;
  top: 4.2105263158vw;
  right: 4.2105263158vw;
}
@media screen and (min-width: 476px) {
  .main .logo {
    width: 60px;
    top: 20px;
    right: 20px;
  }
}
.main figure {
  margin-bottom: 12.6315789474vw;
}
@media screen and (min-width: 476px) {
  .main figure {
    margin-bottom: 60px;
  }
}
.main figure img {
  width: 100%;
}
.main .box {
  width: 80%;
  margin: 0 auto 25.2631578947vw;
}
@media screen and (min-width: 476px) {
  .main .box {
    margin-bottom: 120px;
  }
}
.main .box figure {
  width: 63.1578947368vw;
  margin: 0 auto 6.3157894737vw;
}
@media screen and (min-width: 476px) {
  .main .box figure {
    width: 300px;
    margin-bottom: 30px;
  }
}
.main .box h1 {
  margin-bottom: 10.5263157895vw;
  font-size: 6.3157894737vw;
  line-height: 1.56em;
  letter-spacing: 0.2em;
  color: #1F155F;
}
.main .box h1 span {
  font-size: 2.9473684211vw;
  letter-spacing: 0.05em;
  display: block;
}
@media screen and (min-width: 476px) {
  .main .box h1 span {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 476px) {
  .main .box h1 {
    margin-bottom: 50px;
    font-size: 3rem;
  }
}
.main .box .release {
  margin-bottom: 25.2631578947vw;
  color: #1F155F;
  position: relative;
}
@media screen and (min-width: 476px) {
  .main .box .release {
    margin-bottom: 120px;
  }
}
.main .box .release .date {
  font-size: 10.1052631579vw;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-right: 0;
}
@media screen and (min-width: 476px) {
  .main .box .release .date {
    font-size: 4.8rem;
  }
}
.main .box .release .week {
  margin: 0 1.0526315789vw 0 0.4210526316vw;
  font-size: 3.3684210526vw;
}
@media screen and (min-width: 476px) {
  .main .box .release .week {
    margin: 0 5px 0 2px;
    font-size: 1.6rem;
  }
}
.main .box .release .txt {
  font-size: 6.7368421053vw;
}
@media screen and (min-width: 476px) {
  .main .box .release .txt {
    font-size: 3.2rem;
  }
}
.main .box .release .deco {
  font-size: 13.4736842105vw;
  color: #D5C2B3;
  font-family: "adventures-unlimited", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  bottom: -25px;
  right: 0;
  z-index: -1;
  transform: rotate(-10deg);
}
@media screen and (min-width: 476px) {
  .main .box .release .deco {
    font-size: 6.4rem;
  }
}
.main .box .lead {
  font-size: 5.0526315789vw;
  font-weight: 600;
  line-height: 2em;
  letter-spacing: 0.2em;
}
.main .box .lead span {
  margin-bottom: 2.1052631579vw;
  font-size: 3.7894736842vw;
  letter-spacing: 0.1em;
  line-height: 2em;
  display: block;
}
@media screen and (min-width: 476px) {
  .main .box .lead span {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 476px) {
  .main .box .lead {
    font-size: 2.4rem;
  }
}
.main #about {
  width: 80%;
  margin: 0 auto;
  padding: 12.6315789474vw 6.3157894737vw 10.5263157895vw;
  background: #FAF1E5;
  font-size: 2.9473684211vw;
  line-height: 1.71em;
  position: relative;
}
@media screen and (min-width: 476px) {
  .main #about {
    padding: 60px 30px 50px;
    font-size: 1.4rem;
  }
}
.main #about h2 {
  margin-bottom: 6.3157894737vw;
  font-size: 4.2105263158vw;
  letter-spacing: 0.2em;
  line-height: 1.8em;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 476px) {
  .main #about h2 {
    margin-bottom: 30px;
    font-size: 2rem;
  }
}
.main #about h2:before {
  content: "30th";
  position: absolute;
  left: 0;
  right: 0;
  top: -4.2105263158vw;
  color: #FAF1E5;
  -webkit-text-stroke: 1px #fff;
  font-size: 22.1052631579vw;
  z-index: -1;
}
@media screen and (min-width: 476px) {
  .main #about h2:before {
    top: -20px;
    font-size: 10.5rem;
  }
}
.main #about .txt {
  margin-bottom: 6.3157894737vw;
}
@media screen and (min-width: 476px) {
  .main #about .txt {
    margin-bottom: 30px;
  }
}
.main #about .link {
  margin-bottom: 4.2105263158vw;
}
@media screen and (min-width: 476px) {
  .main #about .link {
    margin-bottom: 20px;
  }
}
.main #about a.btn {
  width: 100%;
  padding: 5.2631578947vw;
  font-size: 3.7894736842vw;
  letter-spacing: 0.05em;
  background: #F8D6AF;
  border: solid 1px #CAAC8B;
  border-radius: 100vh;
  display: block;
}
@media screen and (min-width: 476px) {
  .main #about a.btn {
    padding: 25px;
    font-size: 1.8rem;
  }
}
.main #about::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10.5263157895vw;
  height: 10.5263157895vw;
  width: 100%;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #FAF1E5;
  z-index: -2;
}
@media screen and (min-width: 476px) {
  .main #about::before {
    top: -50px;
    height: 50px;
  }
}
.main .owabi {
  width: 80%;
  margin: 10.5263157895vw auto 0;
  padding: 10.5263157895vw 4.2105263158vw 10.5263157895vw;
  border: dotted 1px #dadada;
}
@media screen and (min-width: 476px) {
  .main .owabi {
    margin: 50px auto 0;
    padding: 50px 20px 50px;
  }
}
.main .owabi h2 {
  margin-bottom: 2.1052631579vw;
  font-size: 5.8947368421vw;
  letter-spacing: 0.2em;
  line-height: 1.8em;
}
@media screen and (min-width: 476px) {
  .main .owabi h2 {
    margin-bottom: 10px;
    font-size: 2.8rem;
  }
}
.main .owabi p {
  font-size: 2.9473684211vw;
  line-height: 1.6em;
}
@media screen and (min-width: 476px) {
  .main .owabi p {
    font-size: 1.4rem;
  }
}
.main .owabi h3 {
  margin-top: 6.3157894737vw;
  margin-bottom: 2.1052631579vw;
}
@media screen and (min-width: 476px) {
  .main .owabi h3 {
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
.main .owabi figure {
  margin-bottom: 0;
}

/*-------------------------------
item
--------------------------------- */
.item {
  width: 100%;
  margin: 0 auto;
  padding: 25.2631578947vw 0 0 0;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 476px) {
  .item {
    padding: 120px 0 0 0;
  }
}
.item h2 {
  margin-bottom: 8.4210526316vw;
  font-size: 13.4736842105vw;
  letter-spacing: 0.1em;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
}
@media screen and (min-width: 476px) {
  .item h2 {
    margin-bottom: 40px;
    font-size: 6.4rem;
  }
}
.item .lead {
  margin-bottom: 23.1578947368vw;
  font-size: 3.3684210526vw;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 476px) {
  .item .lead {
    margin-bottom: 110px;
    font-size: 1.6rem;
  }
}
.item .lead span {
  border-bottom: solid 1px;
  display: inline-block;
}
.item ul.item_main {
  padding: 21.0526315789vw 0;
  background: #EBE8E4;
  position: relative;
}
@media screen and (min-width: 476px) {
  .item ul.item_main {
    padding: 100px 0;
  }
}
.item ul.item_main:before {
  width: 100%;
  height: 12.6315789474vw;
  content: "";
  position: absolute;
  top: -12.6315789474vw;
  left: 0;
  background-image: url("../images/item_top.png");
  background-size: 100%;
}
@media screen and (min-width: 476px) {
  .item ul.item_main:before {
    height: 60px;
    top: -60px;
  }
}
.item ul.item_main > li {
  margin-bottom: 31.5789473684vw;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li {
    margin-bottom: 150px;
  }
}
.item ul.item_main > li:last-child {
  margin-bottom: 0;
}
.item ul.item_main > li h3 {
  margin-bottom: 8.4210526316vw;
  font-size: 5.0526315789vw;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.75em;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li h3 {
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
}
.item ul.item_main > li h3::before {
  position: absolute;
  left: 2.1052631579vw;
  top: -4.2105263158vw;
  color: #fff;
  font-size: 31.5789473684vw;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: -1;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li h3::before {
    top: -10px;
    font-size: 15rem;
  }
}
.item ul.item_main > li h3 span {
  margin-bottom: 2.1052631579vw;
  font-size: 3.7894736842vw;
  display: block;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li h3 span {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.item ul.item_main > li div.img {
  margin-bottom: 10.5263157895vw;
  position: relative;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.img {
    margin-bottom: 50px;
  }
}
.item ul.item_main > li div.img .img_1 {
  width: 70%;
  position: relative;
  z-index: 3;
}
.item ul.item_main > li div.img .img_2 {
  width: 55%;
  margin: 8.4210526316vw 0 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.img .img_2 {
    margin: 40px 0 0 auto;
  }
}
.item ul.item_main > li div.img .bg {
  width: 70%;
  padding-top: 130%;
  position: absolute;
  background: #DED6D0;
  position: absolute;
  top: 16.8421052632vw;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.img .bg {
    top: 80px;
  }
}
.item ul.item_main > li div.credit {
  width: 86%;
  margin: 0 auto;
}
.item ul.item_main > li div.credit .copy {
  margin-bottom: 8.4210526316vw;
  font-size: 4.2105263158vw;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.8;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.credit .copy {
    margin-bottom: 40px;
    font-size: 2rem;
  }
}
.item ul.item_main > li div.credit .name {
  margin-bottom: 1.0526315789vw;
  font-size: 3.7894736842vw;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.credit .name {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
}
.item ul.item_main > li div.credit .price {
  font-size: 4.2105263158vw;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.credit .price {
    font-size: 2rem;
  }
}
.item ul.item_main > li div.credit .price span {
  font-size: 2.9473684211vw;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.credit .price span {
    font-size: 1.4rem;
  }
}
.item ul.item_main > li div.credit ul.color {
  margin-top: 6.3157894737vw;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.credit ul.color {
    margin-top: 30px;
  }
}
.item ul.item_main > li div.credit ul.color li {
  padding: 0 2%;
  flex: 1;
}
.item ul.item_main > li div.credit ul.color li figure {
  margin-bottom: 1.0526315789vw;
  padding: 2.1052631579vw;
  background: #fff;
  border-radius: 100vh;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.credit ul.color li figure {
    margin-bottom: 5px;
    padding: 10px;
  }
}
.item ul.item_main > li div.credit ul.color li figure img {
  border-radius: 100vh;
}
.item ul.item_main > li div.credit ul.color li p {
  margin-bottom: 0.6315789474vw;
  font-size: 2.9473684211vw;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.credit ul.color li p {
    margin-bottom: 3px;
    font-size: 1.4rem;
  }
}
.item ul.item_main > li div.credit ul.color li .btn {
  width: 16.8421052632vw;
  margin: auto;
  padding: 1.0526315789vw;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.3684210526vw;
  letter-spacing: 0.05em;
  background: #F8D6AF;
  border: solid 1px #CAAC8B;
  border-radius: 100vh;
  display: block;
  line-height: 100%;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.credit ul.color li .btn {
    width: 80px;
    padding: 5px;
    font-size: 1.6rem;
  }
}
.item ul.item_main > li div.other {
  width: 86%;
  margin: 10.5263157895vw auto 0;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other {
    margin: 50px auto 0;
  }
}
.item ul.item_main > li div.other h4 {
  margin-bottom: 4.2105263158vw;
  font-size: 3.3684210526vw;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other h4 {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}
.item ul.item_main > li div.other .box {
  margin-bottom: 2.1052631579vw;
  padding: 6.3157894737vw;
  background: #F4F2EF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other .box {
    margin-bottom: 10px;
    padding: 30px;
  }
}
.item ul.item_main > li div.other .box figure {
  width: 44%;
}
.item ul.item_main > li div.other .box .inner {
  width: 52%;
}
.item ul.item_main > li div.other .box .inner .icon {
  margin-bottom: 2.1052631579vw;
  padding: 2.1052631579vw;
  border: solid 1px #C8BFB8;
  font-size: 2.5263157895vw;
  text-align: center;
  line-height: 100%;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other .box .inner .icon {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1.2rem;
  }
}
.item ul.item_main > li div.other .box .inner .name {
  margin-bottom: 0.2105263158vw;
  font-size: 2.9473684211vw;
  line-height: 1.71;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other .box .inner .name {
    margin-bottom: 1px;
    font-size: 1.4rem;
  }
}
.item ul.item_main > li div.other .box .inner .price {
  margin-bottom: 1.0526315789vw;
  font-size: 4.2105263158vw;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other .box .inner .price {
    margin-bottom: 5px;
    font-size: 2rem;
  }
}
.item ul.item_main > li div.other .box .inner .price span {
  font-size: 2.9473684211vw;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other .box .inner .price span {
    font-size: 1.4rem;
  }
}
.item ul.item_main > li div.other .box .inner .txt {
  font-size: 2.3157894737vw;
  line-height: 1.81;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other .box .inner .txt {
    font-size: 1.1rem;
  }
}
.item ul.item_main > li div.other .box .inner .color {
  margin-top: 4.2105263158vw;
  display: flex;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other .box .inner .color {
    margin-top: 20px;
  }
}
.item ul.item_main > li div.other .box .inner .color li {
  width: 12.6315789474vw;
  margin: 0 2.1052631579vw 0 0;
  flex: 1;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other .box .inner .color li {
    width: 60px;
    margin-right: 10px;
  }
}
.item ul.item_main > li div.other .box .inner .color li figure {
  width: 100%;
  margin-bottom: 0.4210526316vw;
  padding: 2.1052631579vw;
  background: #fff;
  border-radius: 100vh;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other .box .inner .color li figure {
    margin-bottom: 2px;
    padding: 10px;
  }
}
.item ul.item_main > li div.other .box .inner .color li figure img {
  width: 100%;
  border-radius: 100vh;
}
.item ul.item_main > li div.other .box .inner .color li p {
  font-size: 2.9473684211vw;
  text-align: center;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other .box .inner .color li p {
    font-size: 1.4rem;
  }
}
.item ul.item_main > li div.other .caution {
  font-size: 2.1052631579vw;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li div.other .caution {
    font-size: 1rem;
  }
}
.item ul.item_main > li:nth-child(1) h3:before {
  content: "01";
}
.item ul.item_main > li:nth-child(2) h3:before {
  content: "02";
  left: auto;
  right: 2.1052631579vw;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li:nth-child(2) h3:before {
    right: 10px;
  }
}
.item ul.item_main > li:nth-child(2) div.img .img_1 {
  margin: 0 0 0 auto;
}
.item ul.item_main > li:nth-child(2) div.img .img_2 {
  margin: 8.4210526316vw auto 0 0;
}
@media screen and (min-width: 476px) {
  .item ul.item_main > li:nth-child(2) div.img .img_2 {
    margin: 40px auto 0 0;
  }
}
.item ul.item_main > li:nth-child(2) div.img .bg {
  right: auto;
  left: 0;
}
.item ul.item_main > li:nth-child(3) h3:before {
  content: "03";
}
.item div.item_sub {
  padding: 21.0526315789vw 8.4210526316vw;
  background: #F4F2EF;
}
@media screen and (min-width: 476px) {
  .item div.item_sub {
    padding: 100px 40px;
  }
}
.item div.item_sub h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.0526315789vw;
  padding: 0;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 476px) {
  .item div.item_sub h4 {
    gap: 5px;
  }
}
.item div.item_sub h4:before {
  content: "";
  width: 8.4210526316vw;
  height: 0.2105263158vw;
  transform: rotate(60deg);
  box-sizing: border-box;
  background-color: #614A3A;
}
@media screen and (min-width: 476px) {
  .item div.item_sub h4:before {
    width: 40px;
    height: 1px;
  }
}
.item div.item_sub h4:after {
  content: "";
  width: 8.4210526316vw;
  height: 0.2105263158vw;
  transform: rotate(-60deg);
  box-sizing: border-box;
  background-color: #614A3A;
}
@media screen and (min-width: 476px) {
  .item div.item_sub h4:after {
    width: 40px;
    height: 1px;
  }
}
.item div.item_sub > ul > li {
  margin-top: 12.6315789474vw;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li {
    margin-top: 60px;
  }
}
.item div.item_sub > ul > li .fukidashi {
  margin-bottom: 8.4210526316vw;
  padding-bottom: 3.1578947368vw;
  position: relative;
  border-bottom: 1px dotted #614A3A;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .fukidashi {
    margin-bottom: 40px;
    padding-bottom: 15px;
  }
}
.item div.item_sub > ul > li .fukidashi:before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-25deg);
  height: 4.2105263158vw;
  width: 2.1052631579vw;
  border-right: 1px dotted #614A3A;
  background-color: #F4F2EF;
  content: "";
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .fukidashi:before {
    height: 20px;
    width: 10px;
  }
}
.item div.item_sub > ul > li .fukidashi .en {
  margin-bottom: 0.2105263158vw;
  font-size: 6.7368421053vw;
  font-family: "futura-pt", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #D5C2B3;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .fukidashi .en {
    margin-bottom: 1px;
    font-size: 3.2rem;
  }
}
.item div.item_sub > ul > li .fukidashi .en span {
  margin-right: 1.0526315789vw;
  font-size: 6.7368421053vw;
  font-family: "adventures-unlimited", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .fukidashi .en span {
    margin-right: 5px;
    font-size: 3.2rem;
  }
}
.item div.item_sub > ul > li .fukidashi .jp {
  font-size: 3.3684210526vw;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .fukidashi .jp {
    font-size: 1.6rem;
  }
}
.item div.item_sub > ul > li .detail .copy {
  margin-bottom: 4.2105263158vw;
  font-size: 4.2105263158vw;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.8;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .detail .copy {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.item div.item_sub > ul > li .detail .box {
  margin-bottom: 2.1052631579vw;
  background: #F4F2EF;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .detail .box {
    margin-bottom: 10px;
  }
}
.item div.item_sub > ul > li .detail .box figure {
  width: 44%;
}
.item div.item_sub > ul > li .detail .box .inner {
  width: 50%;
}
.item div.item_sub > ul > li .detail .box .inner .name {
  margin-bottom: 0.4210526316vw;
  font-size: 3.7894736842vw;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .detail .box .inner .name {
    margin-bottom: 2px;
    font-size: 1.8rem;
  }
}
.item div.item_sub > ul > li .detail .box .inner .price {
  font-size: 4.2105263158vw;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .detail .box .inner .price {
    font-size: 2rem;
  }
}
.item div.item_sub > ul > li .detail .box .inner .price span {
  font-size: 2.9473684211vw;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .detail .box .inner .price span {
    font-size: 1.4rem;
  }
}
.item div.item_sub > ul > li .detail .box .inner ul.color {
  margin-top: 4.2105263158vw;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .detail .box .inner ul.color {
    margin-top: 20px;
  }
}
.item div.item_sub > ul > li .detail .box .inner ul.color li {
  margin: 0 2.1052631579vw 0 0;
  flex: 1;
  text-align: center;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .detail .box .inner ul.color li {
    margin: 0 10px 0 0;
  }
}
.item div.item_sub > ul > li .detail .box .inner ul.color li figure {
  width: 100%;
  margin-bottom: 0.4210526316vw;
  padding: 2.1052631579vw;
  background: #fff;
  border-radius: 100vh;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .detail .box .inner ul.color li figure {
    margin-bottom: 2px;
    padding: 10px;
  }
}
.item div.item_sub > ul > li .detail .box .inner ul.color li figure img {
  border-radius: 100vh;
}
.item div.item_sub > ul > li .detail .box .inner ul.color li p {
  margin-bottom: 0.4210526316vw;
  font-size: 2.9473684211vw;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .detail .box .inner ul.color li p {
    margin-bottom: 2px;
    font-size: 1.4rem;
  }
}
.item div.item_sub > ul > li .detail .box .inner ul.color li .btn {
  width: 12.6315789474vw;
  margin: auto;
  padding: 1.0526315789vw;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.3684210526vw;
  letter-spacing: 0.05em;
  background: #F8D6AF;
  border: solid 1px #CAAC8B;
  border-radius: 100vh;
  display: block;
  line-height: 100%;
}
@media screen and (min-width: 476px) {
  .item div.item_sub > ul > li .detail .box .inner ul.color li .btn {
    width: 60px;
    padding: 5px;
    font-size: 1.6rem;
  }
}

/*-------------------------------
about_2
--------------------------------- */
.about_2 {
  width: 100%;
  margin: 0 auto;
  padding: 21.0526315789vw 12.6315789474vw;
  background: #EBE8E4;
  font-size: 2.9473684211vw;
  line-height: 1.71em;
  text-align: center;
}
@media screen and (min-width: 476px) {
  .about_2 {
    padding: 100px 60px;
    font-size: 1.4rem;
  }
}
.about_2 h2 {
  margin-bottom: 6.3157894737vw;
  font-size: 4.2105263158vw;
  letter-spacing: 0.2em;
  line-height: 1.8em;
}
@media screen and (min-width: 476px) {
  .about_2 h2 {
    margin-bottom: 30px;
    font-size: 2rem;
  }
}
.about_2 .txt {
  margin-bottom: 6.3157894737vw;
}
@media screen and (min-width: 476px) {
  .about_2 .txt {
    margin-bottom: 30px;
  }
}
.about_2 .link {
  margin-bottom: 4.2105263158vw;
}
@media screen and (min-width: 476px) {
  .about_2 .link {
    margin-bottom: 20px;
  }
}
.about_2 a.btn {
  width: 70%;
  margin: auto;
  padding: 5.2631578947vw;
  font-size: 3.7894736842vw;
  letter-spacing: 0.05em;
  background: #F8D6AF;
  border: solid 1px #CAAC8B;
  border-radius: 100vh;
  display: block;
}
@media screen and (min-width: 476px) {
  .about_2 a.btn {
    padding: 25px;
    font-size: 1.8rem;
  }
}

/*-----------------------------
 information
------------------------------------ */
.information {
  width: 100%;
  margin: 0 auto;
  padding: 21.0526315789vw 12.6315789474vw;
  position: relative;
}
@media screen and (min-width: 476px) {
  .information {
    padding: 100px 60px;
  }
}
.information h2 {
  font-size: 7.5789473684vw;
  text-align: center;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 476px) {
  .information h2 {
    font-size: 3.6rem;
  }
}
.information .information_box {
  margin: 0 auto;
}
.information .information_box h3 {
  margin: 10.5263157895vw auto 6.3157894737vw;
  padding-bottom: 2.1052631579vw;
  font-size: 4.2105263158vw;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.05em;
  border-bottom: dotted 1px;
}
@media screen and (min-width: 476px) {
  .information .information_box h3 {
    margin: 50px auto 30px;
    padding: 10px;
    font-size: 2rem;
  }
}
.information .information_box p {
  padding: 0;
  margin-bottom: 3.1578947368vw;
  font-size: 2.9473684211vw;
  line-height: 1.71em;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 476px) {
  .information .information_box p {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
.information .information_box p::before {
  content: "※";
}
.information .information_box p span {
  color: #E83921;
}
.information .information_box p a {
  width: 90%;
  margin: 10px auto 0;
  text-decoration: underline;
}

footer {
  width: 100%;
  padding: 21.0526315789vw 12.6315789474vw;
  text-align: center;
}
@media screen and (min-width: 476px) {
  footer {
    padding: 100px 60px;
  }
}
footer .f_logo {
  width: 33.6842105263vw;
  margin: 0 auto;
}
@media screen and (min-width: 476px) {
  footer .f_logo {
    width: 160px;
  }
}
footer .f_logo a {
  margin: 0 auto;
  padding: 0;
  display: block;
}
footer .f_logo a img {
  vertical-align: bottom;
}
footer .f_icon {
  margin: 6.3157894737vw auto 2.1052631579vw;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 476px) {
  footer .f_icon {
    margin: 30px auto 10px;
  }
}
footer .f_icon li {
  margin: 0 3.1578947368vw;
  padding: 0;
}
@media screen and (min-width: 476px) {
  footer .f_icon li {
    margin: 0 15px;
  }
}
footer .f_icon li i {
  margin: 0;
  font-size: 5.8947368421vw;
}
@media screen and (min-width: 476px) {
  footer .f_icon li i {
    font-size: 2.8rem;
  }
}
footer small {
  text-align: center;
  font-size: 2.1052631579vw;
}
@media screen and (min-width: 476px) {
  footer small {
    font-size: 1rem;
  }
}

/*------------------------------
animation
-------------------------------*/
.invisible {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.visible {
  transition: opacity 0.5s ease;
  opacity: 1;
}
@keyframes bgAnimTop {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 0px 1200px;
  }
}
@keyframes bgAnimBottom {
  0% {
    background-position: 0px 1200px;
  }
  100% {
    background-position: 0px 0px;
  }
}
@keyframes bgAnimLeft {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 1200px 0px;
  }
}/*# sourceMappingURL=style.css.map */