@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}
/* フェードイン(初期値) */
.fadein {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: opacity 1s ease, -webkit-filter 1s ease;
  transition: opacity 1s ease, -webkit-filter 1s ease;
  transition: opacity 1s ease, filter 1s ease;
  transition: opacity 1s ease, filter 1s ease, -webkit-filter 1s ease;
}

/* フェードイン(スクロールした後) */
.fadein.is-inview {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/* カートボタン */
.shopify-buy-frame--cart {
  z-index: 2147483500 !important;
}

.cart_btn_wrap {
  position: fixed;
  top: 19px;
  right: 14px;
  z-index: 2147483600;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}

.cart_btn_wrap.is-active {
  opacity: 1;
  pointer-events: all;
}

.cart_btn_wrap .btn_close {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  background-color: #fff;
}

.cart_btn_wrap .btn_close:before, .cart_btn_wrap .btn_close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 23px;
  background-color: #767676;
}

.cart_btn_wrap .btn_close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.cart_btn_wrap .btn_close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.c_btn {
  display: block;
  text-align: center;
  width: 236px;
  font-size: 1.4rem;
  color: #000;
  margin: 28px auto 0;
  padding: 10px 0;
  border: 1px solid #000;
  border-radius: 25px;
}
.c_btn:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
.c_btn.none {
  pointer-events: none;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  padding: 0 18px;
  background: #fff;
  border-bottom: 1px solid #EBEBEB;
  height: 80px;
  /* menu */
}
header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .logo {
  max-width: 49px;
  padding: 10px 0;
}
header .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
header .header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 45px;
}
header .header_nav ul li {
  padding: 20px 0;
}
header .header_nav ul li a {
  text-align: center;
  font-size: 1.4rem;
  color: #000;
  width: 100%;
  display: block;
}
header .header_nav ul li a span {
  display: block;
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 1.2rem;
}
header .header_nav ul li a .arrow {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 6px;
  margin: 0 0 1px 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .header_nav ul li a .arrow::before, header .header_nav ul li a .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0px);
  width: 1px;
  height: 12px;
  background-color: #000;
  -webkit-transform-origin: 50% calc(100% - 0px);
          transform-origin: 50% calc(100% - 0px);
}
header .header_nav ul li a .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .header_nav ul li a .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .header_nav ul li a.none {
  pointer-events: none;
  opacity: 0.5;
}
header .header_nav ul li .nav_child {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: 0;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 50px 70px;
  gap: 30px 45px;
}
header .header_nav ul li .nav_child li {
  width: calc(14.28% - 39px);
  padding: 0;
}
header .header_nav ul li .nav_child a {
  text-align: left;
  font-size: 1.2rem;
}
header .header_nav ul li .nav_child a span {
  font-size: 1rem;
  margin-top: 10px;
}
header .header_nav ul li .nav_child a img {
  margin-bottom: 10px;
}
header .header_nav ul li.hover_action:hover .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header .header_nav ul li.hover_action:hover .nav_child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
header .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 45px;
  gap: 10px;
}
header .menu-icon {
  cursor: pointer;
  position: relative;
  z-index: 2;
}
header .menu-icon .bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #000;
  margin: 9px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .menu-icon.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-7px, 7px);
          transform: rotate(-45deg) translate(-7px, 7px);
}
header .menu-icon.open .bar2 {
  opacity: 0; /* 真ん中のバーを非表示 */
}
header .menu-icon.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
          transform: rotate(45deg) translate(-8px, -8px);
}
@media screen and (max-width: 768px) {
  header {
    padding: 0 20px;
    height: 50px;
  }
  header .logo {
    max-width: 34px;
    padding: 5px 0;
  }
  header .header_nav {
    position: fixed;
    top: 50px;
    left: 0;
    background: #fff;
    width: 100%;
    border-bottom: 1px solid #EBEBEB;
  }
  header .header_nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    gap: 0 45px;
  }
  header .header_nav ul li {
    padding: 10px 0;
  }
  header .header_nav ul li a {
    font-size: 1.2rem;
  }
  header .header_nav ul li a span {
    font-size: 1rem;
  }
  header .header_nav ul li a .arrow::before, header .header_nav ul li a .arrow::after {
    height: 9px;
  }
  header .header_nav ul li .nav_child {
    top: 56px;
    padding: 28px 18px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  header .header_nav ul li .nav_child li {
    width: 100%;
  }
  header .header_nav ul li .nav_child a span {
    margin-top: 0;
  }
  header .header_nav ul li .nav_child a img {
    margin-bottom: 5px;
  }
  header .header_nav ul li .nav_child.products_list {
    height: calc(100dvh - 56px);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-y: scroll;
  }
  header .header_nav ul li .nav_child.products_list li {
    width: 30%;
    margin-right: 1%;
  }
  header .header_nav ul li .nav_child.products_list li:nth-child(3n) {
    margin-right: 0;
  }
  header .icon {
    margin-left: 0;
    gap: 17px;
  }
}

.nav-menu {
  position: fixed;
  z-index: 100;
  top: 50px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 80px 25px 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.nav-menu .nav_list {
  height: 100%;
  overflow-y: scroll;
  padding-bottom: 60px;
}
.nav-menu .nav_list .nav_item {
  margin-bottom: 50px;
}
.nav-menu .nav_list .nav_item p, .nav-menu .nav_list .nav_item a {
  color: #000;
  font-size: 1.4rem;
}
.nav-menu .nav_list .nav_item p span, .nav-menu .nav_list .nav_item a span {
  display: block;
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 1.2rem;
}
.nav-menu .nav_list .nav_item p.none, .nav-menu .nav_list .nav_item a.none {
  pointer-events: none;
  opacity: 0.5;
}
.nav-menu .acd .acd_header .arrow {
  position: relative;
  display: block;
  width: 14px;
  height: 6px;
  margin-top: -6px;
  margin-left: 95%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.nav-menu .acd .acd_header .arrow::before, .nav-menu .acd .acd_header .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0px);
  width: 1px;
  height: 12px;
  background-color: #000;
  -webkit-transform-origin: 50% calc(100% - 0px);
          transform-origin: 50% calc(100% - 0px);
}
.nav-menu .acd .acd_header .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.nav-menu .acd .acd_header .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.nav-menu .acd .acd_header.open .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav-menu .acd .acd_inner {
  display: none;
  padding: 40px 23px 10px;
}
.nav-menu .acd .acd_inner .child_nav_list .child_nav_item {
  margin-bottom: 30px;
}
.nav-menu .acd .acd_inner .child_nav_list .child_nav_item a {
  color: #000;
  font-size: 1.2rem;
}
.nav-menu .acd .acd_inner .child_nav_list .child_nav_item a span {
  display: block;
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 5px;
}
.nav-menu .acd .acd_inner .child_nav_list .child_nav_item a.none {
  pointer-events: none;
  opacity: 0.5;
}
.nav-menu.open {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.overlay.active {
  display: block;
  opacity: 1;
}

footer {
  padding: 150px 0 45px;
  background: #F0F4F5;
}
footer .inner {
  max-width: 1000px;
  margin: 0 auto;
}
footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .flex .logo {
  width: 172px;
}
footer .flex ul {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 0;
}
footer .flex ul li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
footer .flex ul li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
footer .flex ul li:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}
footer .flex ul li:nth-child(4) {
  grid-column: 2;
  grid-row: 1;
}
footer .flex ul li:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}
footer .flex ul li:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}
footer .flex ul li:nth-child(7) {
  grid-column: 3;
  grid-row: 1;
}
footer .flex ul li:nth-child(8) {
  grid-column: 3;
  grid-row: 2;
}
footer .flex ul li:nth-child(9) {
  grid-column: 3;
  grid-row: 3;
}
footer .flex ul li a {
  font-size: 1.4rem;
  color: #000;
}
footer .flex ul li a span {
  display: block;
  font-size: 1rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
footer .flex ul li a.none {
  pointer-events: none;
  opacity: 0.5;
}
footer .insta {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 70px auto 20px;
}
footer .address {
  text-align: center;
  font-size: 1.2rem;
  margin: 20px 0 40px;
}
footer .copy {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 75px 0 40px;
  }
  footer .inner {
    width: 90%;
  }
  footer .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .flex .logo {
    width: 40%;
    margin-bottom: 55px;
  }
  footer .flex ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 15px;
  }
  footer .flex ul li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  footer .flex ul li:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  footer .flex ul li:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  footer .flex ul li:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  footer .flex ul li:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }
  footer .flex ul li:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
  }
  footer .flex ul li:nth-child(7) {
    grid-column: 1;
    grid-row: 4;
  }
  footer .flex ul li:nth-child(8) {
    grid-column: 2;
    grid-row: 4;
  }
  footer .flex ul li:nth-child(9) {
    grid-column: 1;
    grid-row: 5;
  }
  footer .flex ul li a {
    font-size: 1.2rem;
  }
  footer .flex ul li a span {
    font-size: 1rem;
  }
}

.home header {
  background: transparent;
  position: absolute;
  border-bottom: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.home header .logo {
  width: 77px;
  padding: 18px 0;
  max-width: unset;
}
.home header .header_nav ul li a {
  color: #fff;
}
.home header .header_nav ul li a .arrow::before, .home header .header_nav ul li a .arrow::after {
  background-color: #fff;
}
.home header .header_nav ul li .nav_child a {
  color: #000;
}
.home header .icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.home header .menu-icon .bar {
  background-color: #fff;
}
.home header.scrolled-20 {
  opacity: 0;
}
.home header.scrolled {
  opacity: 1;
  background: #fff;
  position: fixed;
}
.home header.scrolled .logo {
  max-width: 49px;
  padding: 10px 0;
}
.home header.scrolled .header_nav ul li a {
  color: #000;
}
.home header.scrolled .header_nav ul li a .arrow::before, .home header.scrolled .header_nav ul li a .arrow::after {
  background-color: #000;
}
.home header.scrolled .icon img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.home header.scrolled .menu-icon .bar {
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .home header .flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 18px 0;
  }
  .home header .logo {
    padding: 0;
  }
  .home header .header_nav {
    display: none;
  }
  .home header.scrolled .flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
  .home header.scrolled .logo {
    max-width: 34px;
    padding: 0;
  }
  .home header.scrolled .header_nav {
    display: block;
  }
}
.home .fv {
  position: relative;
  background: #fff;
}
.home .fv .slide_box .dots-wrap {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .fv .slide_box .dots-wrap li {
  width: 50px;
  height: 2px;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.home .fv .slide_box .dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.home .fv .slide_box .dots-wrap li:hover {
  background: #fff;
}
.home .fv .slide_box .dots-wrap li.slick-active {
  background: #fff;
}
.home .fv .slide_box .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.home .fv h1 {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (max-width: 768px) {
  .home .fv h1 {
    top: 40%;
  }
}
.home .topics {
  padding: 30px 0 10px;
}
.home .topics .inner {
  max-width: 1060px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.home .topics .tag {
  font-size: 1.4rem;
  color: #fff;
  background: #000;
  text-align: center;
  width: 75px;
  margin-right: 40px;
}
.home .topics .list .item {
  padding-bottom: 20px;
}
.home .topics .list .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  color: #000;
}
.home .topics .list .item a .date {
  font-size: 1.2rem;
  font-weight: 400;
}
.home .topics .list .item a .title {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .home .topics .inner {
    width: 90%;
  }
  .home .topics .tag {
    margin-right: 20px;
  }
  .home .topics .list .item a {
    gap: 10px;
  }
  .home .topics .list .item a .date {
    font-size: 1rem;
  }
  .home .topics .list .item a .title {
    font-size: 1.2rem;
  }
}
.home .product {
  position: relative;
}
.home .product .content {
  position: absolute;
  top: 12%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  text-align: center;
}
.home .product .content h2 {
  font-size: 1.8rem;
  font-weight: 400;
}
.home .product .content h2 span {
  display: block;
  font-family: "PT Serif", serif;
}
@media screen and (max-width: 768px) {
  .home .product .content h2 {
    font-size: 1.6rem;
  }
}
.home .concept {
  position: relative;
}
.home .concept .content {
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  text-align: center;
}
.home .concept .content h2 {
  font-size: 1.8rem;
  font-weight: 400;
}
.home .concept .content h2 span {
  display: block;
  font-family: "PT Serif", serif;
}
@media screen and (max-width: 768px) {
  .home .concept .content h2 {
    font-size: 1.6rem;
  }
}
.home .about {
  margin: 100px 0 160px;
}
.home .about .inner {
  max-width: 974px;
  margin: 0 auto;
}
.home .about .bnr {
  position: relative;
}
.home .about .bnr .content {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  text-align: center;
}
.home .about .bnr .content h2 {
  font-size: 1.8rem;
  font-weight: 400;
}
.home .about .bnr .content h2 span {
  display: block;
  font-family: "PT Serif", serif;
}
.home .about .about_bottom {
  padding-top: 250px;
  margin-top: -150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 73px;
}
.home .about .about_bottom .map {
  width: 50%;
  height: 447px;
}
.home .about .about_bottom .info {
  width: 45%;
}
.home .about .about_bottom .info .title {
  font-size: 2rem;
}
.home .about .about_bottom .info .title span {
  display: block;
  font-size: 1.2rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.home .about .about_bottom .info .address {
  font-size: 1.4rem;
  line-height: 2;
  margin: 30px 0 15px;
}
.home .about .about_bottom .info .address_mongol {
  font-size: 1.4rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.home .about .about_bottom .info .parking {
  font-size: 1rem;
  color: #EF0000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .home .about {
    margin: 70px 0 80px;
  }
  .home .about .inner {
    width: 90%;
  }
  .home .about .bnr .content {
    top: 35%;
  }
  .home .about .bnr .content h2 {
    font-size: 1.6rem;
  }
  .home .about .about_bottom {
    padding-top: 170px;
    margin-top: -100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
  }
  .home .about .about_bottom .map {
    width: 100%;
    height: 200px;
  }
  .home .about .about_bottom .info {
    width: 100%;
  }
}
.home .bnr_area {
  margin-bottom: 210px;
}
.home .bnr_area .inner {
  max-width: 974px;
  margin: 0 auto;
}
.home .bnr_area .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.home .bnr_area .flex a {
  display: block;
  position: relative;
}
.home .bnr_area .flex a p {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
}
.home .bnr_area .flex a p span {
  display: block;
  font-size: 1.4rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .home .bnr_area {
    margin-bottom: 100px;
  }
  .home .bnr_area .inner {
    width: 90%;
  }
  .home .bnr_area .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .home .bnr_area .flex a {
    width: 100%;
  }
  .home .bnr_area .flex a p {
    font-size: 1.6rem;
  }
  .home .bnr_area .flex a p span {
    font-size: 1.2rem;
  }
}
.home #Modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}
.home #Modal #modalContent {
  position: relative;
  width: 80%;
  max-width: 650px;
  margin: 100px auto;
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}
.home #Modal #modalContent .close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}
.home #Modal .modal_info {
  font-size: 1.6rem;
}
.home #Modal .modal_info span {
  display: block;
  font-size: 3.2rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
  margin-bottom: 5px;
}
.home #Modal .text {
  font-size: 1.6rem;
  margin: 20px 0;
}
.home #Modal .mongol {
  font-size: 1.4rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .home #Modal .modal_info {
    font-size: 1.4rem;
  }
  .home #Modal .modal_info span {
    font-size: 3.2rem;
  }
  .home #Modal .text {
    font-size: 1.4rem;
  }
  .home #Modal .mongol {
    font-size: 1.2rem;
  }
}

.archive_page {
  padding: 150px 0 200px;
}
.archive_page .inner {
  max-width: 1140px;
  margin: 0 auto;
}
.archive_page h1 {
  text-align: center;
  font-size: 2.8rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}
.archive_page .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: 60px 0;
  margin: 100px 0;
}
.archive_page .list::before {
  content: "";
  display: block;
  width: 241px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.archive_page .list::after {
  content: "";
  display: block;
  width: 241px;
}
.archive_page .list .item {
  width: 241px;
}
.archive_page .list .item a {
  display: block;
  width: 100%;
  color: #000;
}
.archive_page .list .item .date {
  font-size: 1.2rem;
  margin: 10px 0 5px;
}
.archive_page .list .item .title {
  font-size: 1.4rem;
}
.archive_page .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
}
.archive_page .pagination .page-numbers {
  font-size: 1.6rem;
  color: #000;
}
.archive_page .pagination .page-numbers.prev {
  margin-right: 10px;
}
.archive_page .pagination .page-numbers.next {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .archive_page {
    padding-top: 175px;
  }
  .archive_page .inner {
    max-width: 100%;
  }
  .archive_page h1 {
    font-size: 2.4rem;
  }
  .archive_page .list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.archive_products {
  padding-top: 150px;
}
.archive_products .inner {
  max-width: 95%;
  margin: 0 auto;
}
.archive_products h1 {
  text-align: center;
  font-size: 2.8rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}
.archive_products h1 span {
  display: block;
  font-size: 1.8rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.archive_products .products_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin: 100px 0;
}
.archive_products .products_list::after {
  content: "";
  display: block;
  width: 49%;
}
.archive_products .products_list .products_item {
  width: 49%;
}
.archive_products .products_list .products_item a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.archive_products .products_list .products_item a:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.archive_products .products_list .products_item .img img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive_products .products_list .products_item .title_box {
  position: absolute;
  top: 20px;
  left: 20px;
}
.archive_products .products_list .products_item .title_box .cate {
  font-size: 1.4rem;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 14px;
  padding: 0 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.archive_products .products_list .products_item .title_box .title {
  color: #000;
  font-size: 1.6rem;
  margin-top: 10px;
}
.archive_products .products_list .products_item .title_box .mongol {
  color: #000;
  font-size: 1.4rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.archive_products .products_list .products_item .price {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #000;
  font-size: 2.6rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.archive_products .products_list .products_item .price span {
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  margin-left: 5px;
}
.archive_products .products_list .products_item.none {
  position: relative;
}
.archive_products .products_list .products_item.none::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 5;
}
.archive_products .products_list .products_item.none::after {
  content: "Coming soon";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  font-size: 2rem;
  font-weight: 400;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .archive_products {
    padding-top: 175px;
  }
  .archive_products .inner {
    max-width: 100%;
  }
  .archive_products h1 {
    font-size: 2.4rem;
  }
  .archive_products h1 span {
    font-size: 1.4rem;
  }
  .archive_products .products_list {
    gap: 15px;
    margin: 100px 0;
  }
  .archive_products .products_list .products_item {
    width: 100%;
  }
  .archive_products .products_list .products_item .img img {
    width: 600px;
    margin-left: calc(50% - 300px);
  }
  .archive_products .products_list .products_item .title_box {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .archive_products .products_list .products_item .price {
    bottom: 20px;
    right: 20px;
  }
}

.single_page {
  padding: 150px 0 200px;
}
.single_page .inner {
  max-width: 840px;
  margin: 0 auto;
}
.single_page .date {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 25px;
}
.single_page h1 {
  font-size: 2rem;
  font-weight: 400;
  margin: 40px 0;
}
.single_page .content {
  font-size: 1.6rem;
  font-weight: 400;
}
.single_page .content p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .single_page .content p {
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .single_page {
    padding-top: 175px;
  }
  .single_page .inner {
    width: 90%;
  }
}

.single_products {
  padding-top: 180px;
}
.single_products .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.single_products .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single_products .left {
  width: 45%;
}
.single_products .left .main-carousel {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.single_products .left .main-carousel .carousel-cell img {
  display: block;
  width: 100%;
  height: auto;
}
.single_products .left .main-carousel.cursor-left .flickity-viewport {
  cursor: w-resize;
}
.single_products .left .main-carousel.cursor-right .flickity-viewport {
  cursor: e-resize;
}
.single_products .left .nav-carousel {
  width: 85%;
  margin: 0 auto;
}
.single_products .left .nav-carousel .carousel-cell {
  width: 20%;
  cursor: pointer;
  margin-right: 5px;
}
.single_products .left .nav-carousel .carousel-cell img {
  width: 100%;
  height: auto;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
.single_products .left .nav-carousel .carousel-cell.is-selected img {
  opacity: 1;
  border: 2px solid #333;
}
.single_products .left .custom-arrows {
  position: relative;
}
.single_products .left .custom-arrows button {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
}
.single_products .left .custom-arrows button.custom-prev {
  top: -60px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .single_products .left .custom-arrows button.custom-prev {
    top: -50px;
  }
}
.single_products .left .custom-arrows button.custom-next {
  top: -60px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .single_products .left .custom-arrows button.custom-next {
    top: -50px;
  }
}
.single_products .left .custom-arrows button svg {
  width: 100%;
  height: 100%;
}
.single_products .right {
  width: 45%;
}
.single_products .right .cate {
  font-size: 1.4rem;
  color: #7C7C7C;
}
.single_products .right .title {
  font-size: 2.6rem;
  font-weight: 500;
  margin: 40px 0 10px;
}
.single_products .right .mongol {
  font-size: 1.4rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.single_products .right .price {
  font-size: 2.2rem;
  margin: 50px 0;
}
.single_products .right .price span {
  font-size: 1rem;
}
.single_products .right .description {
  padding: 30px 0 50px;
  border-top: 1px dashed #A8A8A8;
  border-bottom: 1px dashed #A8A8A8;
}
.single_products .right .description .description_title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.single_products .right .description .description_text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 45px;
}
.single_products .right .description .description_mongol {
  font-size: 1.4rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
  line-height: 1.8;
}
.single_products .right .postage {
  margin: 60px 0;
}
.single_products .right .postage p {
  font-size: 1.4rem;
  font-weight: bold;
}
.single_products .right .postage a {
  font-size: 1.4rem;
  color: #000;
  text-decoration: underline;
  position: relative;
}
.single_products .right .postage a img {
  position: absolute;
  top: 3px;
  right: -20px;
  width: 15px;
}
.single_products .right .buy_btn_none {
  font-size: 16px;
  padding: 16px 80px;
  background-color: #000000;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.single_products .info {
  margin: 110px 0 90px;
  border-top: 1px dashed #A8A8A8;
  padding-top: 50px;
}
.single_products .info p {
  font-size: 1.4rem;
}
.single_products .info p.info_title {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .single_products {
    padding-top: 180px;
  }
  .single_products .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single_products .left {
    width: 100%;
  }
  .single_products .right {
    width: 90%;
    margin: 30px auto 0;
  }
  .single_products .info {
    width: 90%;
    margin: 70px auto 90px;
  }
}
.single_products #productModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}
.single_products #productModal #modalContent {
  position: relative;
  width: 80%;
  max-width: 650px;
  margin: 100px auto;
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}
.single_products #productModal .modal_info {
  font-size: 1.6rem;
}
.single_products #productModal .modal_info span {
  display: block;
  font-size: 1.4rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
  margin-top: 10px;
}
.single_products #productModal h2 {
  font-size: 2.4rem;
  margin: 50px 0 30px;
  font-weight: 500;
}
.single_products #productModal h2 span {
  display: block;
  font-size: 1.4rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
  margin-top: 10px;
}
.single_products #productModal .modal_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.single_products #productModal .modal_flex button {
  width: 40%;
  background: #000;
  padding: 20px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "PT Serif", serif;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .single_products #productModal .modal_info {
    font-size: 1.4rem;
  }
  .single_products #productModal .modal_info span {
    font-size: 1.2rem;
  }
  .single_products #productModal h2 {
    font-size: 1.4rem;
    margin: 40px 0 30px;
  }
  .single_products #productModal h2 span {
    font-size: 1.2rem;
  }
  .single_products #productModal .modal_flex button {
    width: 45%;
    padding: 20px 10px;
    font-size: 1.2rem;
  }
}

.guide {
  padding-top: 150px;
}
.guide h1 {
  text-align: center;
  font-size: 2.8rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}
.guide h1 span {
  display: block;
  font-size: 1.8rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.guide .link_area {
  width: 90%;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.guide .link_area a {
  display: block;
  width: 33%;
  text-align: center;
  font-size: 1.4rem;
  color: #000;
  border: 1px solid #000;
  border-radius: 35px;
  padding: 15px;
}
.guide .link_area a span {
  display: block;
  font-size: 1.2rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.guide .link_area a:hover {
  background: #000;
  color: #fff;
}
.guide h2 {
  font-size: 2rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  padding-bottom: 20px;
}
.guide h2 span {
  display: block;
  font-size: 1.6rem;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.guide h2 .border {
  width: 180px;
  height: 1px;
  background: #707070;
  margin: 15px auto 0;
}
.guide .inner {
  max-width: 650px;
  margin: 0 auto;
}
.guide .acd {
  padding: 20px 0;
  border-bottom: 1px solid #000;
}
.guide .acd.first {
  border-top: 1px solid #000;
}
.guide .acd .acd_header {
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.guide .acd .acd_header p {
  font-size: 1.6rem;
}
.guide .acd .acd_header p span {
  display: inline-block;
  margin-right: 10px;
}
.guide .acd .acd_header p.mongol {
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.guide .acd .acd_header .i_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.guide .acd .acd_header .i_box .one_i {
  display: block;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  position: relative;
}
.guide .acd .acd_header .i_box .one_i::before, .guide .acd .acd_header .i_box .one_i::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  background-color: #000;
  width: 15px;
  height: 2px;
  position: absolute;
  top: 6px;
  left: 1px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.guide .acd .acd_header .i_box .one_i::before {
  width: 2px;
  height: 15px;
  top: 0;
  left: 8px;
}
.guide .acd .acd_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.guide .acd .acd_header.open .i_box .one_i::before {
  content: none;
}
.guide .acd .acd_header.open .i_box .one_i::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.guide .acd .acd_inner {
  display: none;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.guide .acd .acd_inner p {
  font-size: 1.6rem;
}
.guide .acd .acd_inner p.mongol {
  font-family: "PT Serif", serif;
  font-weight: 400;
  margin-top: 15px;
}
.guide .acd .acd_inner img {
  margin-top: 15px;
}
.guide .payment {
  padding-top: 115px;
}
.guide .delivery,
.guide .others {
  padding-top: 260px;
}
.guide .transactions {
  padding-top: 260px;
}
.guide .transactions .transactions_content dl {
  margin-top: 70px;
  border-bottom: 1px solid #000;
}
.guide .transactions .transactions_content dl dt, .guide .transactions .transactions_content dl dd {
  font-size: 1.6rem;
  font-weight: 400;
  padding: 20px 0;
  border-top: 1px solid #000;
}
.guide .transactions .transactions_content dl dt {
  width: 40%;
  float: left;
}
.guide .transactions .transactions_content dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.guide .privacy {
  padding: 260px 0 80px;
}
.guide .privacy .tab__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 50px;
}
.guide .privacy .tab__label {
  width: 40%;
  text-align: center;
  padding: 15px 0;
  border: 1px solid #000;
  border-radius: 35px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  cursor: pointer;
}
.guide .privacy .tab__label p {
  font-size: 1.4rem;
}
.guide .privacy .tab__label p span {
  display: block;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.guide .privacy .tab-content {
  width: 100%;
  display: none;
  padding-top: 70px;
}
.guide .privacy .tab-content p {
  font-size: 1.4rem;
  font-weight: 400;
}
.guide .privacy .tab .tab__switch:checked + .tab__label {
  background: #000;
}
.guide .privacy .tab .tab__switch:checked + .tab__label p {
  color: #fff;
}
.guide .privacy .tab .tab__switch:checked + .tab__label + .tab-content {
  display: block;
}
.guide .privacy .tab .tab__switch {
  display: none;
}
@media screen and (max-width: 768px) {
  .guide {
    padding-top: 175px;
  }
  .guide h1 {
    font-size: 2.4rem;
  }
  .guide h1 span {
    font-size: 1.4rem;
  }
  .guide .link_area {
    margin: 60px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .guide .link_area a {
    width: 100%;
  }
  .guide .inner {
    max-width: 90%;
  }
  .guide .acd .acd_header {
    padding-right: 20px;
  }
  .guide .payment {
    padding-top: 110px;
  }
  .guide .delivery,
  .guide .others {
    padding-top: 160px;
  }
  .guide .transactions {
    padding-top: 160px;
  }
  .guide .transactions .transactions_content dl {
    margin-top: 70px;
    border-bottom: 1px solid #000;
  }
  .guide .transactions .transactions_content dl dt, .guide .transactions .transactions_content dl dd {
    border-top: 1px solid #000;
    display: block;
    width: 100%;
  }
  .guide .transactions .transactions_content dl dt {
    width: 100%;
    float: unset;
    padding: 20px 0 0;
  }
  .guide .transactions .transactions_content dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: none;
    padding: 0 0 20px;
  }
  .guide .privacy {
    padding: 160px 0 80px;
  }
  .guide .privacy .tab__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .guide .privacy .tab__label {
    width: 70%;
  }
}

.is-concept-page header {
  background: transparent;
  position: absolute;
  border-bottom: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.is-concept-page header .logo {
  width: 77px;
  padding: 18px 0;
  max-width: unset;
}
.is-concept-page header .header_nav ul li a {
  color: #fff;
}
.is-concept-page header .header_nav ul li a .arrow::before, .is-concept-page header .header_nav ul li a .arrow::after {
  background-color: #fff;
}
.is-concept-page header .header_nav ul li .nav_child a {
  color: #000;
}
.is-concept-page header .icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.is-concept-page header .menu-icon .bar {
  background-color: #fff;
}
.is-concept-page header.scrolled-20 {
  opacity: 0;
}
.is-concept-page header.scrolled {
  opacity: 1;
  background: #fff;
  position: fixed;
}
.is-concept-page header.scrolled .logo {
  max-width: 49px;
  padding: 10px 0;
}
.is-concept-page header.scrolled .header_nav ul li a {
  color: #000;
}
.is-concept-page header.scrolled .header_nav ul li a .arrow::before, .is-concept-page header.scrolled .header_nav ul li a .arrow::after {
  background-color: #000;
}
.is-concept-page header.scrolled .icon img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.is-concept-page header.scrolled .menu-icon .bar {
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .is-concept-page header .flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 18px 0;
  }
  .is-concept-page header .logo {
    padding: 0;
  }
  .is-concept-page header .header_nav {
    display: none;
  }
  .is-concept-page header.scrolled .flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
  .is-concept-page header.scrolled .logo {
    max-width: 34px;
    padding: 0;
  }
  .is-concept-page header.scrolled .header_nav {
    display: block;
  }
}

.concept_page .inner {
  max-width: 1060px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .concept_page .inner {
    width: 90%;
  }
}
.concept_page h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.concept_page h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background: #707070;
  width: 180px;
  height: 1px;
}
.concept_page .concept {
  position: relative;
}
.concept_page .concept .flex {
  position: absolute;
  top: 800px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}
.concept_page .concept .flex h1 {
  width: 45%;
  color: #fff;
}
.concept_page .concept .flex h1 span {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  display: block;
  margin-bottom: 70px;
}
.concept_page .concept .flex h1 img {
  width: 292px;
}
.concept_page .concept .flex .right {
  width: 50%;
}
.concept_page .concept .flex .right p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.5;
  color: #fff;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .concept_page .concept .flex {
    top: 150px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
  }
  .concept_page .concept .flex h1 {
    width: 100%;
  }
  .concept_page .concept .flex .right {
    width: 100%;
    margin-top: 60px;
  }
  .concept_page .concept .flex .right p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.concept_page .origin {
  padding: 150px 0 160px;
}
.concept_page .origin .why, .concept_page .origin .how {
  padding-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.concept_page .origin .why .text_area, .concept_page .origin .how .text_area {
  width: 42%;
}
.concept_page .origin .why .text_area h3, .concept_page .origin .how .text_area h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 40px;
}
.concept_page .origin .why .text_area h3 span, .concept_page .origin .how .text_area h3 span {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  display: block;
  margin-bottom: 65px;
}
.concept_page .origin .why .text_area p, .concept_page .origin .how .text_area p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}
.concept_page .origin .why .img, .concept_page .origin .how .img {
  width: 50%;
}
.concept_page .origin .how {
  padding-top: 115px;
}
.concept_page .origin .how .text_area {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  .concept_page .origin {
    padding: 95px 0 150px;
  }
  .concept_page .origin .why, .concept_page .origin .how {
    padding-top: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .concept_page .origin .why .text_area, .concept_page .origin .how .text_area {
    width: 100%;
  }
  .concept_page .origin .why .img, .concept_page .origin .how .img {
    width: 100%;
  }
  .concept_page .origin .how {
    padding-top: 40px;
  }
  .concept_page .origin .how .text_area {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .concept_page .origin .how .img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.concept_page .origin_img .inner_img {
  width: 95%;
  margin: 0 auto;
}
.concept_page .brand {
  padding: 140px 0 170px;
}
.concept_page .brand .brand_logo {
  width: 234px;
  margin: 130px auto 60px;
}
.concept_page .brand .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.concept_page .brand .flex .left, .concept_page .brand .flex .right {
  width: 42%;
}
.concept_page .brand .flex .left h3, .concept_page .brand .flex .right h3 {
  font-size: 2rem;
  font-weight: 400;
  margin: 30px 0 20px;
}
.concept_page .brand .flex .left p, .concept_page .brand .flex .right p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .concept_page .brand .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .concept_page .brand .flex .left, .concept_page .brand .flex .right {
    width: 100%;
  }
  .concept_page .brand .flex .right {
    margin-top: 80px;
  }
}
.concept_page .img_area .inner_img {
  width: 95%;
  margin: 0 auto;
}
.concept_page .product {
  position: relative;
  margin: 20px 0;
}
.concept_page .product .content {
  position: absolute;
  top: 12%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  text-align: center;
}
.concept_page .product .content h2 {
  font-size: 1.8rem;
  font-weight: 400;
}
.concept_page .product .content h2::after {
  display: none;
}
.concept_page .product .content h2 span {
  display: block;
  font-family: "PT Serif", serif;
}
@media screen and (max-width: 768px) {
  .concept_page .product .content h2 {
    font-size: 1.6rem;
  }
}

.about_page .inner {
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about_page .inner {
    width: 90%;
  }
}
.about_page h2 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 100px;
}
.about_page .fv {
  position: relative;
}
.about_page .fv h1 {
  font-size: 2.8rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .about_page .fv h1 {
    font-size: 2.4rem;
    top: 57%;
  }
}
.about_page .member {
  padding-top: 100px;
}
.about_page .member .title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 150px;
}
.about_page .member .title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background: #707070;
  width: 180px;
  height: 1px;
}
.about_page .member .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about_page .member .flex .box {
  width: 45%;
}
.about_page .member .flex .box .img {
  position: relative;
}
.about_page .member .flex .box .img .name_box {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 30px 0 15px;
  width: 180px;
}
.about_page .member .flex .box .img .name_box .post {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.about_page .member .flex .box .img .name_box .name {
  font-size: 1rem;
}
.about_page .member .flex .box .img .name_box .name span {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
}
.about_page .member .flex .box .text {
  font-size: 1.4rem;
  margin: 50px 0;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}
.about_page .member .flex .box .mongol {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .about_page .member {
    padding-top: 80px;
  }
  .about_page .member .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about_page .member .flex .box {
    width: 100%;
    margin-bottom: 100px;
  }
  .about_page .member .flex .box .img .name_box .post {
    font-size: 1.4rem;
  }
  .about_page .member .flex .box .img .name_box .name {
    font-size: 1rem;
  }
  .about_page .member .flex .box .img .name_box .name span {
    font-size: 1.8rem;
  }
}
.about_page .origin {
  padding: 260px 0;
}
.about_page .origin .img {
  width: 410px;
  margin: 0 auto 100px;
}
.about_page .origin .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
.about_page .origin .flex .text {
  width: 45%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
.about_page .origin .flex .text.mongol {
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .about_page .origin {
    padding: 0 0 200px;
  }
  .about_page .origin .img {
    width: 100%;
  }
  .about_page .origin .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about_page .origin .flex .text {
    width: 100%;
    font-size: 1.4rem;
  }
}
.about_page .story .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about_page .story .box .img {
  width: 50%;
  padding: 0 70px 70px 0;
  border-right: 1px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.about_page .story .box .text_box {
  width: 50%;
  padding-left: 70px;
}
.about_page .story .box .text_box h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.about_page .story .box .text_box .text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .about_page .story .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 70px;
  }
  .about_page .story .box .img {
    width: 100%;
    padding: 0 0 40px;
    border-right: none;
  }
  .about_page .story .box .text_box {
    width: 100%;
    padding-left: 0;
  }
}
.about_page .about_img {
  padding: 200px 0 0;
}
@media screen and (max-width: 768px) {
  .about_page .about_img {
    padding: 110px 0 0;
  }
}
.about_page .company {
  padding: 150px 0;
}
.about_page .company .title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 150px;
}
.about_page .company .title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background: #707070;
  width: 180px;
  height: 1px;
}
.about_page .company dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 650px;
  margin: 0 auto;
  border-top: 1px solid #000;
}
.about_page .company dl.last {
  border-bottom: 1px solid #000;
}
.about_page .company dl dt, .about_page .company dl dd {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  padding: 25px 0;
}
.about_page .company dl dt {
  width: 35%;
}
.about_page .company dl dd {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .about_page .company {
    padding: 110px 0 150px;
  }
  .about_page .company .title {
    margin-bottom: 130px;
  }
  .about_page .company dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about_page .company dl dt, .about_page .company dl dd {
    padding: 0;
  }
  .about_page .company dl dt {
    width: 100%;
    padding: 25px 0 10px;
  }
  .about_page .company dl dd {
    width: 100%;
    padding: 0 0 25px;
  }
}

.contact {
  padding: 150px 0 240px;
}
.contact .inner {
  max-width: 650px;
  margin: 0 auto;
}
.contact h1 {
  text-align: center;
  font-size: 2.8rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}
.contact .form table {
  width: 100%;
  margin: 80px auto 75px;
}
.contact .form table th {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 500;
}
.contact .form table th span {
  color: #E03F3F;
}
.contact .form table td {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.contact .form table td select, .contact .form table td input, .contact .form table td textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #D1D1D1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 1.6rem;
  font-weight: 500;
}
.contact .form .privacy {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 1.4rem;
  margin-bottom: 85px;
}
.contact .form .privacy a {
  color: #000;
  display: block;
  text-decoration: underline;
}
.contact .form .contact_submit input {
  font-size: 1.4rem;
  color: #000;
  padding: 10px 0;
  border: 1px solid #000;
  border-radius: 25px;
  text-align: center;
  background: none;
  width: 100%;
}
.contact .form .contact_submit input:hover {
  color: #fff;
  background: #000;
}
.contact .form .contact_submit .wpcf7-spinner {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 175px 0 240px;
  }
  .contact .inner {
    max-width: 90%;
  }
  .contact h1 {
    font-size: 2.4rem;
  }
  .contact .form table th {
    font-size: 1.4rem;
  }
  .contact .form table td select, .contact .form table td input, .contact .form table td textarea {
    font-size: 1.4rem;
  }
  .contact .form .privacy {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.thanks {
  padding: 150px 0 240px;
}
.thanks .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.thanks h1 {
  text-align: center;
  font-size: 2.8rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}
.thanks .info {
  font-size: 1.5rem;
  text-align: center;
  margin: 50px 0 35px;
}
@media screen and (max-width: 768px) {
  .thanks {
    padding: 175px 0 240px;
  }
  .thanks .inner {
    max-width: 90%;
  }
  .thanks h1 {
    font-size: 2.4rem;
  }
}

.page-notfound {
  padding: 150px 0 240px;
}
.page-notfound .inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-notfound h1 {
  text-align: center;
  font-size: 2.8rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}
.page-notfound h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 30px 0;
}
.page-notfound p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-notfound .inner {
    max-width: 90%;
  }
}/*# sourceMappingURL=style.css.map */