@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100..900&display=swap");
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;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul, li {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: inherit;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, background-image 0.3s ease, background 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, background-image 0.3s ease, background 0.3s ease;
  color: colors(black);
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

table {
  width: 100%;
}

p {
  line-break: strict;
}

/* ---------------------------------------
  html , body
-----------------------------------------*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  font-family: "M PLUS 2", sans-serif;
  font-weight: 400;
  color: colors(black);
  -webkit-text-size-adjust: 100%;
  overflow-y: auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  body {
    overflow-x: auto;
  }
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}
body.active {
  overflow: hidden;
}
body::before {
  content: "";
  width: 100%;
  height: 100vh;
  background: url(../img/bg_main.png) no-repeat center/100% auto;
  position: fixed;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  body::before {
    background-image: url(../img/bg_main_sp.png);
    background-position: top center;
  }
}

/* ---------------------------------------
  .wrap
-----------------------------------------*/
.wrap {
  width: 110rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap {
    width: 65rem;
  }
}

/* ---------------------------------------
  main
-----------------------------------------*/
main {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------
  .mv
-----------------------------------------*/
.mv {
  width: 100%;
  min-width: 110rem;
}
@media screen and (max-width: 767px) {
  .mv {
    min-width: auto;
  }
}

/* ---------------------------------------
  #navigation
-----------------------------------------*/
#navigation {
  width: 100%;
  min-width: 110rem;
  height: 11rem;
  background: url(../img/bg_menu.png) no-repeat center/cover;
  position: relative;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  #navigation {
    min-width: auto;
    height: 23rem;
    background-image: url(../img/bg_menu_sp.png);
    padding-top: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  #navigation .wrap {
    width: 75rem;
  }
}
#navigation .logo {
  width: 20.7rem;
  position: absolute;
  left: 1.7rem;
  top: 0.6rem;
}
@media screen and (max-width: 1500px) {
  #navigation .logo {
    display: none;
  }
}
#navigation .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #navigation .nav {
    width: 100%;
  }
}
#navigation .nav .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8rem;
}
@media screen and (max-width: 767px) {
  #navigation .nav .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.2rem 0;
  }
}
@media screen and (max-width: 767px) {
  #navigation .nav .list li {
    max-width: none;
    width: 33.3333333333%;
  }
}
#navigation .nav .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #navigation .nav .list li .en {
    margin: 0 auto;
  }
}
#navigation .nav .list li .ja {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  #navigation .nav .list li .ja {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  #navigation .nav .list li:nth-of-type(1) .en {
    width: 12.6rem;
  }
}
@media screen and (max-width: 767px) {
  #navigation .nav .list li:nth-of-type(2) .en {
    width: 16.3rem;
  }
}
@media screen and (max-width: 767px) {
  #navigation .nav .list li:nth-of-type(3) .en {
    width: 18.9rem;
  }
}
@media screen and (max-width: 767px) {
  #navigation .nav .list li:nth-of-type(4) .en {
    width: 12.1rem;
  }
}
@media screen and (max-width: 767px) {
  #navigation .nav .list li:nth-of-type(5) .en {
    width: 14.4rem;
  }
}

/* ---------------------------------------
  css animation
-----------------------------------------*/
.fadeUp {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
}
.fadeUp.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* ---------------------------------------
  #entry
-----------------------------------------*/
#entry {
  padding-top: 12.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #entry {
    padding-top: 9.6rem;
    overflow: hidden;
  }
}
#entry .slide_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 15.7rem;
  width: 100%;
  min-width: 110rem;
}
@media screen and (max-width: 767px) {
  #entry .slide_box {
    top: 21.1rem;
    min-width: 250rem;
  }
}
#entry .slide_box .slider {
  -webkit-animation: scroll-left 80s infinite linear 0.5s both;
          animation: scroll-left 80s infinite linear 0.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#entry .slide_box .slide {
  width: 134.1rem;
}
@media screen and (max-width: 767px) {
  #entry .slide_box .slide {
    width: 56rem;
  }
}
#entry .wrap {
  position: relative;
  z-index: 1;
}
#entry .btn_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45rem;
  height: 10rem;
  border-radius: 5rem;
  background-color: #524a45;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #entry .btn_box a {
    width: 65rem;
    font-size: 4rem;
  }
}
#entry .ttl_box {
  margin-top: 12.7rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #entry .ttl_box {
    margin-top: 14rem;
  }
}
@media screen and (max-width: 767px) {
  #entry .ttl_box .ttl_en {
    width: 30.5rem;
    margin: 0 auto;
  }
}
#entry .ttl_box .ttl_ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #524a45;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  #entry .ttl_box .ttl_ja {
    font-size: 4rem;
    margin-top: 1.2rem;
  }
}
#entry .lead {
  text-align: center;
  margin-top: 4.7rem;
}
@media screen and (max-width: 767px) {
  #entry .lead {
    width: 52rem;
    margin: 5.7rem auto 0;
  }
}
#entry .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.5rem 0;
  margin-top: 4.7rem;
}
@media screen and (max-width: 767px) {
  #entry .list {
    gap: 2.2rem 4.3rem;
  }
}
@media screen and (max-width: 767px) {
  #entry .list li {
    width: 30.3rem;
  }
}

.mfp-bg {
  background: #7d7873;
  opacity: 1;
  mix-blend-mode: multiply;
}

.entry_modal {
  position: relative;
  width: 98.3rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .entry_modal {
    width: 65rem;
  }
}
.entry_modal .btn {
  position: absolute;
  right: 19.8rem;
  bottom: 6.3rem;
}
@media screen and (max-width: 767px) {
  .entry_modal .btn {
    width: 32rem;
    right: 2rem;
    bottom: 3.5rem;
  }
}
.entry_modal button.mfp-close {
  width: 3.5rem;
  height: 3.5rem;
  text-indent: -9999px;
  top: -5rem;
  background: url(../img/icon_entry_modal_close.svg) no-repeat center/contain;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .entry_modal button.mfp-close:hover {
    opacity: 0.7;
  }
}
#concept .ttl_box:nth-of-type(2) .ttl_ja {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 40px 100px;
  line-height: 30px;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  #concept .ttl_box:nth-of-type(2) .ttl_ja {
    font-size: 3rem;
    width: 70%;
    margin: 0 auto;
  }
}
/* CSSアニメーション */
@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
#entry .ttl_ja:last-of-type {
    font-size: 2rem;
    margin: 0;
}
@media screen and (max-width: 767px) {
    #entry .ttl_ja:last-of-type {
      font-size: 2.5rem;
    }
}
/* ---------------------------------------
  #concept
-----------------------------------------*/
#concept {
  margin-top: 25rem;
}
@media screen and (max-width: 767px) {
  #concept {
    margin-top: 17rem;
  }
}
#concept .ttl_box {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #concept .ttl_box .ttl_en {
    width: 39.3rem;
    margin: 0 auto;
  }
}
#concept .ttl_box .ttl_ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #524a45;
}
@media screen and (max-width: 767px) {
  #concept .ttl_box .ttl_ja {
    font-size: 4rem;
  }
}
#concept .lead_01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 6.4rem auto 0;
}
@media screen and (max-width: 767px) {
  #concept .lead_01 {
    width: 50.6rem;
    margin-top: 6.6rem;
  }
}
#concept .lead_02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  #concept .lead_02 {
    width: 51.7rem;
    margin-top: 5.1rem;
  }
}
#concept .concept_slide {
  margin-top: 8.8rem;
}
@media screen and (max-width: 767px) {
  #concept .concept_slide {
    margin-top: 10.8rem;
    overflow: hidden;
    width: 100%;
  }
}
#concept .concept_slide li {
  margin: 0 0.75rem;
}
@media screen and (max-width: 767px) {
  #concept .concept_slide li {
    margin: 0 2.2rem;
  }
}
#concept .concept_slide li a {
  display: block;
}
#concept .slide_txt {
  display: none;
  position: relative;
  padding-top: 10.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
    #concept .slide_txt {
        display: block;
    }
}
#concept .slide_txt::before {
  content: "";
  width: 20rem;
  height: 2.8rem;
  background: url(../img/icon_slide_arrow.svg) no-repeat center/cover;
  position: absolute;
  left: 50%;
  top: 5.6rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #concept .slide_txt img {
    width: 12.7rem;
  }
}

/* ---------------------------------------
  #link
-----------------------------------------*/
#link {
  margin-top: 8.1rem;
}
@media screen and (max-width: 767px) {
  #link {
    margin-top: 17.9rem;
  }
}

/* ---------------------------------------
  #examine
-----------------------------------------*/
#examine {
  margin-top: 15.3em;
}
@media screen and (max-width: 767px) {
  #examine {
    margin-top: 23.5rem;
  }
}
.examine {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.examine img {
    display: block;
    width: 100%;
    height: auto;
}
/* 右側のLINE丸のクリックエリア */
.examine__btn-line {
position: absolute;
    display: block;
    text-indent: -9999px;
    overflow: hidden;
    border-radius: 50px;
    width: 19%;
    aspect-ratio: 1 / 1;
    right: 18.5%;
    top: 29%;
}
@media screen and (max-width: 767px) {
    .examine__btn-line {
        width: 42%;
        aspect-ratio: 1 / 1;
        right: 10%;
        top: 28.5%;
    }
}
/* ---------------------------------------
  #entry_web
-----------------------------------------*/
#entry_web {
  margin-top: 8.9em;
}
@media screen and (max-width: 767px) {
  #entry_web {
    margin-top: 22.6rem;
  }
}
#entry_web .img_box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #entry_web .img_box {
    width: 100%;
  }
}

/* ---------------------------------------
  #entry_sns
-----------------------------------------*/
#entry_sns {
  margin-top: 13.5em;
}
@media screen and (max-width: 767px) {
  #entry_sns {
    margin-top: 23rem;
  }
}
#entry_sns .img_box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #entry_sns .img_box {
    width: 100%;
  }
}

/* ---------------------------------------
  #entry_line
-----------------------------------------*/
#entry_line {
  margin-top: 12em;
}
@media screen and (max-width: 767px) {
  #entry_line {
    margin-top: 26.3em;
  }
}
#entry_line .img_box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #entry_line .img_box {
    width: 100%;
  }
}

/* ---------------------------------------
  #goods
-----------------------------------------*/
#goods {
  background: url(../img/bg_goods.png) no-repeat top/cover;
  padding: 10rem 0 24rem;
  position: relative;
  margin-top: 24.7rem;
}
@media screen and (max-width: 767px) {
  #goods {
    background-image: url(../img/bg_goods_sp.png);
    padding: 13.5rem 0 17rem;
    margin-top: 16.3rem;
  }
}
#goods::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #524a45;
  position: absolute;
  left: 0;
  bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #goods .wrap {
    width: 100%;
  }
}
#goods .ttl_box .ttl_en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #goods .ttl_box .ttl_en {
    width: 35rem;
  }
}
#goods .ttl_box .ttl_ja {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-top: 2.3rem;
}
@media screen and (max-width: 767px) {
  #goods .ttl_box .ttl_ja {
    font-size: 4rem;
    margin-top: 1.2rem;
  }
}
#goods .goods_slide {
  margin-top: 4.7rem;
}
@media screen and (max-width: 767px) {
  #goods .goods_slide {
    margin-top: 9rem;
  }
}
#goods .goods_slide li {
  margin: 0 1.2rem;
}
@media screen and (max-width: 767px) {
  #goods .goods_slide li {
    margin: 0 2.5rem;
  }
}
#goods .goods_slide .slick-prev,
#goods .goods_slide .slick-next {
  width: 4rem;
  height: 4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#goods .goods_slide .slick-prev::before,
#goods .goods_slide .slick-next::before {
  content: none;
}
#goods .goods_slide .slick-prev:hover,
#goods .goods_slide .slick-next:hover {
  opacity: 0.7;
}
#goods .goods_slide .slick-prev {
  background: url(../img/icon_slide_goods_prev.svg) no-repeat center/cover;
  left: -6rem;
}
#goods .goods_slide .slick-next {
  background: url(../img/icon_slide_goods_next.svg) no-repeat center/cover;
  right: -6rem;
}
#goods .slide_txt {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  #goods .slide_txt {
    font-size: 2.7rem;
    line-height: 1.4814814815;
    margin-top: 8.6rem;
  }
}

/* ---------------------------------------
  footer
-----------------------------------------*/
footer {
  position: relative;
  z-index: 1;
}
footer .footer_content {
  padding: 10.4rem 0 4.3rem;
  background-color: #524a45;
}
@media screen and (max-width: 767px) {
  footer .footer_content {
    padding: 15rem 0 10rem;
  }
}
footer .footer_content::before {
  content: "";
  width: 100%;
  height: 3.6rem;
  background-color: #ffbaba;
  position: absolute;
  left: 0;
  top: 0;
}
footer .make .txt {
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  footer .make .txt {
    font-size: 4rem;
  }
}
footer .make .logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.6rem auto;
}
@media screen and (max-width: 767px) {
  footer .make .logo {
    width: 41rem;
    margin-top: 4.2rem;
  }
}
footer .share_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 4rem;
  margin-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  footer .share_list {
    margin-top: 10.1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem 0;
  }
}
footer .share_list li {
  width: 23rem;
}
@media screen and (max-width: 767px) {
  footer .share_list li {
    width: 100%;
  }
}
footer .copyright {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-top: 5.9rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    font-size: 2.3rem;
    margin-top: 8.8rem;
    line-height: 1.3636363636;
  }
}
footer .sns_box {
  background-color: #fff;
  padding: 2.7rem 0;
}
@media screen and (max-width: 767px) {
  footer .sns_box {
    padding: 8.5rem 0;
  }
}
footer .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 5rem;
}
@media screen and (max-width: 767px) {
  footer .sns_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
footer .sns_list li {
  width: 5.7rem;
}
@media screen and (max-width: 767px) {
  footer .sns_list li {
    width: 5.5rem;
  }
}

/* ---------------------------------------
  表示・非表示処理
-----------------------------------------*/
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

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