@charset "UTF-8";
/*
	Name: JUNKAN
	Author: Takumi Matsuyama
*/
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, 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, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

q, blockquote {
  quotes: none;
}

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

a, a:hover, a:visited {
  text-decoration: none;
}

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

a img {
  border: none;
}

a, a:hover, a:visited {
  text-decoration: none;
}

button {
  padding: 0;
  background: none;
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

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

/* フォント読み込み待ち */
html.wf-active,
html.loading-delay {
  visibility: visible;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 53%;
  }
}
@media only screen and (max-width: 796px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 320px) {
  html {
    font-size: 53%;
  }
}

@font-face {
  font-family: "RM Neue Regular";
  src: url("./assets/font/RMNeue-Regular.woff2") format("woff2"), url("./assets/font/RMNeue-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RM Neue SemiBold";
  src: url("./assets/font/RMNeue-SemiBold.woff2") format("woff2"), url("./assets/font/RMNeue-SemiBold.woff") format("woff");
  /*font-weight: 600;*/
  font-style: normal;
  font-display: swap;
}
body, h1, h2, h3, h4, h5, a, b, p, span, button {
  font-family: "RM Neue Regular", "こぶりなゴシック W6 JIS2004", "Koburina Gothic W6 JIS2004", "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック Medium", YuGothic, YuGothicM, system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", メイリオ, Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  color: #1A1A1A;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
}
@media only screen and (max-width: 796px) {
  body, h1, h2, h3, h4, h5, a, b, p, span, button {
    font-size: 1.3rem;
  }
}

.noto {
  font-family: "Noto Sans JP";
  font-feature-settings: initial;
  -webkit-font-feature-settings: initial;
}

.noto_title {
  font-family: "Noto Sans JP";
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}

b,
strong,
.semi {
  font-family: "RM Neue SemiBold";
  font-weight: 700;
}

/*
 * Common 
 */
body {
  position: relative;
  background-color: #000000;
  opacity: 0;
}

.default {
  background-color: #EBE5D8;
  opacity: 1;
}

.no_scroll {
  overflow: hidden;
}

.color_bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("noise.png");
  background-size: auto;
  background-repeat: repeat;
  background-color: rgba(154, 28, 254, 0);
  transition: background-color 0.8s ease-in-out;
  z-index: -1;
}

.bgColor:before {
  /*background-color: rgba(154, 28, 254, 0.07);*/
}

.fade_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fade {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  background-color: #000000;
  animation: transition_fade 0.6s 0.4s ease-in-out forwards;
  z-index: 50;
}

@keyframes transition_fade {
  0% {
    opacity: 1;
    z-index: 50;
  }
  99% {
    opacity: 0;
    z-index: 50;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
.fade_transition {
  animation: fade_transition 0.6s ease-in-out forwards;
}

@keyframes fade_transition {
  0% {
    opacity: 0;
    z-index: 50;
  }
  100% {
    opacity: 1;
  }
}
.has-scroll-smooth {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.c-scrollbar {
  opacity: 0 !important;
}

.flex {
  display: flex;
  
  
  flex-wrap: wrap;
  
  
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
}

.flex-start {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
}

.flex-end {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.align-center {
  align-items: center;
  -webkit-align-items: center;
  
  -ms-align-items: center;
  
}

.align-start {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  
  -ms-align-items: flex-start;
  
}

.align-end {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  
  -ms-align-items: flex-end;
  
}

.inline {
  display: inline-block;
}

.block {
  display: block;
}

header .header_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
header .fixed_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
header .fixed_header.animation .logo_wrap img {
  opacity: 0;
  transform: translateY(30%);
  animation: show_up 0.6s 0.8s ease-in-out forwards;
}
header .fixed_header.animation .logo_wrap .text {
  opacity: 0;
  transform: translateY(30%);
  animation: show_up 0.6s 1s ease-in-out forwards;
}
header .fixed_header.animation .menu_list li {
  opacity: 0;
  transform: translateY(20%);
}
header .fixed_header.animation .menu_list li:nth-last-of-type(0) {
  animation: show_up 0.6s 0.8s ease-in-out forwards;
}
header .fixed_header.animation .menu_list li:nth-last-of-type(1) {
  animation: show_up 0.6s 0.9s ease-in-out forwards;
}
header .fixed_header.animation .menu_list li:nth-last-of-type(2) {
  animation: show_up 0.6s 1s ease-in-out forwards;
}
header .fixed_header.animation .menu_list li:nth-last-of-type(3) {
  animation: show_up 0.6s 1.1s ease-in-out forwards;
}
header .fixed_header.animation .menu_list li:nth-last-of-type(4) {
  animation: show_up 0.6s 1.2s ease-in-out forwards;
}
header .fixed_header.animation .menu_list li:nth-last-of-type(5) {
  animation: show_up 0.6s 1.3s ease-in-out forwards;
}
header .fixed_header.animation .menu_list li:nth-last-of-type(6) {
  animation: show_up 0.6s 1.4s ease-in-out forwards;
}
header .fixed_header.animation .menu_list li:nth-last-of-type(7) {
  animation: show_up 0.6s 1.5s ease-in-out forwards;
}
@keyframes show_up {
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
header .header_element_wrap {
  overflow: hidden;
}
header .header_element {
  position: absolute;
  top: 3rem;
}
@media only screen and (max-width: 796px) {
  header .header_element {
    top: 2rem;
  }
}
header .show {
  transform: translate3d(0, 0, 0);
}
header .logo_wrap {
  left: 3rem;
  width: 18vw;
}
header .logo_wrap .smart {
  display: none;
}
header .logo_wrap .text {
  padding-top: 1.2rem;
}
@media only screen and (max-width: 796px) {
  header .logo_wrap {
    left: 2rem;
    width: 20vw;
  }
  header .logo_wrap .not_smart {
    display: none;
  }
  header .logo_wrap .smart {
    display: block;
  }
  header .logo_wrap .text {
    display: block;
    padding-top: 0.4rem;
  }
}
header .menu_button {
  position: absolute;
  top: 3rem;
  right: 3rem;
  padding: 0.8rem 0.6rem;
  display: block;
  width: fit-content;
  background-color: #1A1A1A;
  border-radius: 10rem;
  transform: translateX(6rem);
  transition: transform 0.2s ease-in-out;
  opacity: 0;
  z-index: 1;
}
header .menu_button.moved {
  transform: translateX(0);
}
header .menu_button .menu_button_title {
  width: 1.5rem;
  font-family: "こぶりなゴシック W6 JIS2004", "Koburina Gothic W6 JIS2004";
  /*font-weight: 600;*/
  line-height: 1;
  color: #ffffff;
}
@media only screen and (max-width: 796px) {
  header .menu_button {
    top: 2rem;
    right: 2rem;
    width: 2.5rem;
  }
  header .menu_button .menu_button_title {
    width: 1.3rem;
  }
}
header nav {
  right: 0;
  margin-right: 3rem;
  overflow: hidden;
}
header nav.en {
  min-height: 13rem;
}
header nav.en.moved {
  min-height: auto;
}
header nav .menu_list {
  flex-wrap: nowrap;
  
  
  transform: translateX(-1%);
  transition: transform 0.2s ease-in-out;
}
header nav .menu_list.moved {
  transform: translateX(-101%);
  transition: none;
}
header nav .menu_list.return {
  margin-right: 6rem;
  transform: translateX(-1%);
  transition: none;
}
header nav .menu_list li {
  margin-left: 1.15rem;
}
header nav .menu_list li a, header nav .menu_list li .product_menu {
  position: relative;
  display: block;
  width: 100%;
  line-height: 1.3;
  letter-spacing: 0.2rem;
}
header nav .menu_list li .product_menu_button {
  position: relative;
  display: block;
  margin: 0;
  width: 2.2rem;
  min-height: 10rem;
  line-height: 1;
  letter-spacing: -0.06rem;
}
header nav .menu_list li .product_menu_button .product_menu {
  position: absolute;
  top: 0;
  right: 0;
}
header nav .menu_list li .product_menu i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.5rem;
  margin: auto;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background-image: url("menu_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
header nav .menu_list li .product_menu .open {
  transform: rotate(180deg);
}
header nav .menu_list li.language-switch {
	margin-left: 1.3rem;
}
header nav .menu_list li.language-switch .lang {
  /*font-weight: 600;*/
  line-height: 1.1;
   opacity: 0.6;
/*   order: 1; */
}
header nav .menu_list li.language-switch .current {
  opacity: 1;
/*   order: -1; */
}
header nav .menu_list li.language-switch span {
  position: relative;
  display: block;
  margin: 0.6rem 0;
  /*font-weight: 600;*/
  line-height: 1.1;
/*   order: 0; */
}
header nav .menu_list li .cart_button {
  position: relative;
  display: inline-block;
  width: initial;
  line-height: 1;
  letter-spacing: -0.06rem;
}
header nav .menu_list li .no_cart_button {
  position: relative;
  display: inline-block;
  margin: 0;
  width: 2rem;
  min-height: 4.6rem;
  line-height: 1;
  letter-spacing: -0.06rem;
}
header nav .menu_list li .no_cart_button .text {
  position: absolute;
  top: 0;
  right: -0.5rem;
  font-family: "こぶりなゴシック W6 JIS2004", "Koburina Gothic W6 JIS2004";
  /*font-weight: 600;*/
  text-align: initial;
}
header nav .menu_list li .cart_num {
  position: absolute;
  left: -0.25rem;
  right: -0.25rem;
  bottom: -2.4rem;
  margin: auto;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  line-height: 2rem;
  /* color: #ffffff; */
  text-align: center;
  writing-mode: initial;
  -webkit-writing-mode: initial;
  -ms-writing-mode: initial;
  /* background-color: #1A1A1A; */
  /* border-radius: 50%; */
}
header nav .menu_list li:nth-of-type(4) {
  margin-left: 3.5rem;
}
header nav .menu_list li:nth-of-type(n+4) a, header nav .menu_list li:nth-of-type(n+4) .product_menu {
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
}
@media only screen and (max-width: 796px) {
  header nav {
    margin-right: 2rem;
  }
  header nav .menu_list li {
    margin-left: 0.88rem;
  }
  header nav .menu_list li a {
    font-size: 1.2rem;
  }
  header nav .menu_list li.language-switch {
	margin-left: 1.1rem;
  }
  header nav .menu_list li .no_cart_button {
    font-size: 1.2rem;
    min-height: 3.7rem;
  }
  header nav .menu_list li .no_cart_button .text {
    right: -0.25rem;
    font-size: 1.2rem;
  }
  header nav .menu_list li .cart_num {
    right: -0.5rem;
  }
  header nav .menu_list li:nth-of-type(4) {
    margin-left: 2.4rem;
  }
  header nav .menu_list li:nth-of-type(n+4) a, header nav .menu_list li:nth-of-type(n+4) .product_menu {
    /*font-size: 1.8rem;*/
  }
  header nav .menu_list li:nth-of-type(n+4) .product_menu {
    width: initial;
  }
  header nav .menu_list li:nth-of-type(n+4) .product_menu i {
    left: 0;
    width: 2rem;
  }
}
header .opend_header {
  position: fixed;
  top: 0;
  z-index: 8;
}
header .menu_opend_header {
  position: absolute;
  width: 100vw;
  height: 22rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.9s 0.1s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.1s 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #EBE6D7;
}
header .menu_opend_header.show {
  opacity: 1;
  transform: translateX(0%);
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 796px) {
  header .menu_opend_header {
    height: 16rem;
  }
}
header .product_menu_view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  transform: translateY(-108%);
  background-color: #EBE6D7;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (max-width: 796px) {
  header .product_menu_view {
    overflow-y: scroll;
  }
}
header .product_menu_view.show {
  transform: translateX(0%);
}
header .product_menu_view.show .circle_img_wrap {
  opacity: 1;
  transform: translateX(0%);
}
header .product_menu_view.show .product_menu_wrap {
  opacity: 1;
  transform: translateX(0%);
}
header .product_menu_view .circle_img_wrap {
  position: absolute;
  left: 5vw;
  bottom: 3.5rem;
  width: 39vw;
  height: 39vw;
  transition: transform 0.8s 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s 0.4s cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
header .product_menu_view .circle_img_wrap .mv_img {
  position: absolute;
  top: 10rem;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
  height: calc(39vw - 20rem);
}
header .product_menu_view .circle_img_wrap .circle_img {
  margin: auto;
  width: auto;
  height: 100%;
  animation: circle 120s linear infinite;
}
@media only screen and (max-width: 796px) {
  header .product_menu_view .circle_img_wrap {
    display: none;
  }
}
header .product_menu_view .product_menu_wrap {
  position: absolute;
  top: 22rem;
  right: 2vw;
  bottom: 0;
  overflow: hidden;
  transition: transform 0.8s 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s 0.4s cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
header .product_menu_view .product_menu_wrap h3 {
  display: block;
  width: 100%;
  font-size: 2.6rem;
  line-height: 1.5;
  /*font-weight: 600;*/
}
header .product_menu_view .product_menu_wrap .to_all_wrap {
  margin-top: 5rem;
  padding-left: 2rem;
  width: calc(15vw - 2rem);
  border-left: 1px solid #1A1A1A;
}
header .product_menu_view .product_menu_wrap .to_all_wrap a {
  margin-top: 2.4rem;
}
@media only screen and (max-width: 796px) {
  header .product_menu_view .product_menu_wrap {
    top: 15rem;
    left: 2rem;
    right: 2rem;
    overflow: initial;
  }
  header .product_menu_view .product_menu_wrap::-webkit-scrollbar {
    display: none;
  }
  header .product_menu_view .product_menu_wrap h3 {
    width: initial;
    font-size: 1.6rem;
  }
  header .product_menu_view .product_menu_wrap .to_all_wrap {
    margin-top: 3.5rem;
    padding-left: 0;
    padding-bottom: 1.2rem;
    width: 100%;
    border-left: none;
    border-bottom: 1px solid #1A1A1A;
  }
  header .product_menu_view .product_menu_wrap .to_all_wrap a {
    margin-top: 0;
  }
}
header .product_menu_view .product_menu_wrap .list_wrap {
  position: relative;
  padding: 5rem 0;
  width: 30vw;
  height: calc(100% - 8.8rem);
  overflow-y: scroll;
}
header .product_menu_view .product_menu_wrap .list_wrap::-webkit-scrollbar {
  display: none;
}
header .product_menu_view .product_menu_wrap .list_wrap h3 {
  position: relative;
  margin-left: 2rem;
}
header .product_menu_view .product_menu_wrap .list_wrap h3:after {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  bottom: 0;
  display: block;
  width: 1px;
  height: auto;
  background-color: #1A1A1A;
}
header .product_menu_view .product_menu_wrap .list_wrap ul {
  position: relative;
  margin-left: 2rem;
  padding-top: 2.7rem;
}
header .product_menu_view .product_menu_wrap .list_wrap ul:after {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  bottom: 0;
  display: block;
  width: 1px;
  height: auto;
  background-color: #1A1A1A;
}
header .product_menu_view .product_menu_wrap .list_wrap ul li {
  margin-bottom: 0.2rem;
}
header .product_menu_view .product_menu_wrap .list_wrap ul li a .text_wrap h4 {
  font-size: 1.3rem;
  line-height: 1.75;
}
header .product_menu_view .product_menu_wrap .list_wrap ul li a .text_wrap .copy,
header .product_menu_view .product_menu_wrap .list_wrap ul li a .text_wrap .price {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.6);
}
header .product_menu_view .product_menu_wrap .list_wrap ul li a .img_wrap {
  width: 7rem;
}
header .product_menu_view .product_menu_wrap .list_wrap .to_all {
  position: relative;
  margin: 1.2rem 0 1.5rem 2rem;
}
header .product_menu_view .product_menu_wrap .list_wrap .to_all:after {
  content: "";
  position: absolute;
  top: -1.3rem;
  left: -2rem;
  bottom: -1.5rem;
  display: block;
  width: 1px;
  height: auto;
  background-color: #1A1A1A;
}
@media only screen and (max-width: 796px) {
  header .product_menu_view .product_menu_wrap .list_wrap {
    padding: 0;
    padding-left: 0;
    width: 100%;
    height: calc(100% - 10rem);
    overflow-y: initial;
  }
  header .product_menu_view .product_menu_wrap .list_wrap h3 {
    margin-left: 0;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #1A1A1A;
  }
  header .product_menu_view .product_menu_wrap .list_wrap h3:after {
    content: none;
  }
  header .product_menu_view .product_menu_wrap .list_wrap ul {
    margin-top: 0.4rem;
    margin-left: 0;
  }
  header .product_menu_view .product_menu_wrap .list_wrap ul:after {
    content: none;
  }
  header .product_menu_view .product_menu_wrap .list_wrap ul li {
    margin-bottom: 0;
  }
  header .product_menu_view .product_menu_wrap .list_wrap ul li a {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  }
  header .product_menu_view .product_menu_wrap .list_wrap ul li a .img_wrap {
    width: 6rem;
  }
  header .product_menu_view .product_menu_wrap .list_wrap .to_all {
    display: block;
    margin: 1.6rem 0 1rem auto;
    width: fit-content;
  }
  header .product_menu_view .product_menu_wrap .list_wrap .to_all:after {
    content: none;
  }
}
header .no_cart_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease-in-out;
}
header .no_cart_wrap .no_cart {
  position: fixed;
  top: 0;
  right: 0;
  margin-left: auto;
  width: 48rem;
  height: 100vh;
  background-color: #EBE5D8;
  transform: translateX(100%);
  transition: transform 0.4s 0.2s ease-in-out;
}
header .no_cart_wrap .no_cart .close_x_button {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("close.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
header .no_cart_wrap .no_cart .text_wrap {
  margin: 9.6rem 3rem;
  padding-left: 2rem;
  width: calc(100% - 2rem);
  border-left: 1px solid #1A1A1A;
}
header .no_cart_wrap .no_cart .text_wrap h5 {
  font-size: 2.6rem;
  line-height: 1.5;
  /*font-weight: 600;*/
}
header .no_cart_wrap .no_cart .text_wrap .text {
  margin-top: 1.2rem;
}
header .no_cart_wrap .no_cart .text_wrap button {
  margin-top: 6rem;
  font-size: 1.3rem;
}
@media only screen and (max-width: 796px) {
  header .no_cart_wrap .no_cart {
    width: 100vw;
    height: 50vh;
  }
  header .no_cart_wrap .no_cart .text_wrap {
    margin: 6rem 2.4rem;
    margin-top: 12rem;
    padding-left: 1.5rem;
    width: calc(100% - 1.5rem);
  }
  header .no_cart_wrap .no_cart .text_wrap h5 {
    font-size: 2.2rem;
  }
  header .no_cart_wrap .no_cart .text_wrap .text {
    margin-top: 0.8rem;
  }
  header .no_cart_wrap .no_cart .text_wrap button {
    margin-top: 3.5rem;
    font-size: 1.1rem;
  }
}
header .no_cart_wrap.open {
  opacity: 1;
  z-index: 70;
  transition-delay: 0.2s;
}
header .no_cart_wrap.open .no_cart {
  z-index: 70;
  transform: translateX(0);
  transition-delay: 0s;
}

main {
  position: relative;
}

footer {
  position: relative;
  padding: 5rem 3rem 3.5rem;
  background-color: #000000;
  overflow: hidden;
}
@media only screen and (max-width: 796px) {
  footer {
    padding: 5rem 5vw 3.5rem;
  }
}
footer h3, footer a, footer span {
  color: #ffffff;
}
footer nav a {
  color: rgba(255, 255, 255, 0.6);
}
footer nav a:hover {
  color: white;
}
footer .footer_wrap .info_wrap {
  width: 30vw;
}
@media only screen and (max-width: 796px) {
  footer .footer_wrap .info_wrap {
    width: 70vw;
  }
}
footer .footer_wrap .menu_wrap {
  width: 48vw;
}
@media only screen and (max-width: 796px) {
  footer .footer_wrap .menu_wrap {
    width: 100vw;
  }
}
footer .footer_wrap .sub_wrap h3 {
  font-size: 3.5rem;
  line-height: 1.2;
}
@media only screen and (max-width: 796px) {
  footer .footer_wrap .sub_wrap h3 {
    margin-top: 1.3rem;
    font-size: 2.2rem;
  }
}
footer .footer_wrap .info_wrap .sns_wrap {
  margin-top: 7.4rem;
  padding: 3rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
}
@media only screen and (max-width: 796px) {
  footer .footer_wrap .info_wrap .sns_wrap {
    margin-top: 3.5rem;
    padding: 3rem;
  }
}
footer .footer_wrap .info_wrap .sns_wrap ul li {
  margin-right: 1.2rem;
}
footer .footer_wrap .info_wrap .sns_wrap ul li .text {
  line-height: 1.2;
}
footer .footer_wrap .info_wrap .sns_wrap ul li a {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
footer .footer_wrap .info_wrap .sns_wrap ul li a img {
  height: 100%;
}
footer .footer_wrap .info_wrap .sns_wrap ul li:first-of-type {
  margin-right: 2rem;
}
footer .footer_wrap .info_wrap .sns_wrap ul li:last-of-type {
  margin-right: 0;
}
footer .footer_wrap .info_wrap nav {
  margin-top: auto;
  width: 100%;
}
footer .footer_wrap .info_wrap nav ul li {
  margin-right: 2rem;
}
footer .footer_wrap .info_wrap nav ul li a {
  font-size: 1.1rem;
  line-height: 1.5;
}
footer .footer_wrap .info_wrap nav ul li:last-of-type {
  margin-right: 0;
}
footer .footer_wrap .menu_wrap nav {
  margin-top: 7.4rem;
  margin-bottom: 6rem;
  width: 100%;
}
footer .footer_wrap .menu_wrap nav .nav_wrap {
  width: 31%;
}
footer .footer_wrap .menu_wrap nav .nav_wrap .list_wrap {
  padding-left: 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
footer .footer_wrap .menu_wrap nav .nav_wrap .list_wrap ul li a {
  font-size: 1.3rem;
}
footer .footer_wrap .menu_wrap .right {
  margin-top: auto;
  font-size: 1.1rem;
  line-height: 1.3rem;
}
@media only screen and (max-width: 796px) {
  footer .footer_wrap .menu_wrap nav {
    margin-top: 3.5rem;
    margin-bottom: 0;
  }
  footer .footer_wrap .menu_wrap nav .nav_wrap {
    margin-bottom: 3.5rem;
    width: 48%;
  }
  footer .footer_wrap .menu_wrap nav .nav_wrap .list_wrap ul li a {
    font-size: 1.1rem;
  }
  footer .footer_wrap .menu_wrap .right {
    margin-top: 3.5rem;
    font-size: 1.1rem;
  }
}
footer .footer_text {
  padding-top: 7.2rem;
}
footer .footer_text .links {
  margin-top: 3.5rem;
}
@media only screen and (max-width: 796px) {
  footer .footer_text {
    padding-top: 3.5rem;
  }
  footer .footer_text .links {
    margin-top: 1.5rem;
  }
}

.pswp,
.screen-reader-text {
  display: none;
}

/*
 * Item 
 */
.deco_wrap {
  position: relative;
  padding: 6rem;
  width: calc(30vw - 12rem);
  overflow: hidden;
}
.deco_wrap svg {
  mix-blend-mode: difference;
  stroke-dashoffset: 600;
  stroke-dasharray: 600;
  transition: all 0.8s ease-in-out;
}
.deco_wrap .no_mask {
  stroke-dashoffset: 1200;
}
@media only screen and (max-width: 796px) {
  .deco_wrap {
    padding: 2.4rem;
    width: calc(44vw - 4.8rem);
  }
  .deco_wrap svg path {
    stroke-width: 2px;
  }
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.vertical {
  font-feature-settings: initial;
  -webkit-font-feature-settings: initial;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
}

.with_arrow {
  position: relative;
  padding-left: 3.3rem;
  display: inline-block;
  line-height: 2.4rem;
}
.with_arrow:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #426666;
  opacity: 0;
  transition: transform 0.1s ease-out;
}
.with_arrow i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  overflow: hidden;
  border: 1px solid #426666;
  border-radius: 50%;
  z-index: 1;
}
.with_arrow i:before, .with_arrow i:after {
  content: "";
  position: absolute;
  top: calc(50% - 1.2rem);
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-out;
}
.with_arrow i:before {
  transform: translateX(-100%);
  background-image: url("arrow.svg");
}
.with_arrow i:after {
  background-image: url("arrow_black.svg");
}
.with_arrow:hover:before {
  opacity: 1;
}
.with_arrow:hover i:before {
  transform: translateX(0);
}
.with_arrow:hover i:after {
  transform: translateX(100%);
}

.text_arrow {
  position: relative;
  padding: 1rem 1.6rem;
  padding-right: 4rem;
  display: inline-block;
  line-height: 1;
  color:#426666;
  background-color: #ffffff;
  border-radius: 10rem;
  z-index: 0;
}
.text_arrow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #426666;
  border-radius: 10rem;
  opacity: 0;
  z-index: -1;
  transition: transform 0.1s ease-out;
}
.text_arrow i {
  position: absolute;
  top: -0.1rem;
  right: 1.6rem;
  bottom: 0;
  margin: auto 0;
  display: block;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  z-index: 1;
}
.text_arrow i:before, .text_arrow i:after {
  content: "";
  position: absolute;
  top: calc(50% - 1rem);
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-out;
}
.text_arrow i:before {
  transform: translateX(-100%);
  background-image: url("arrow.svg");
}
.text_arrow i:after {
  background-image: url("arrow_black.svg");
}
.text_arrow:hover {
  color: #ffffff;
}
.text_arrow:hover:before {
  opacity: 1;
}
.text_arrow:hover i:before {
  transform: translateX(0);
}
.text_arrow:hover i:after {
  transform: translateX(100%);
}

.ratio_fixed {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  z-index: 0;
}
.ratio_fixed iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.ratio_fixed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ratio_fixed img {
  position: absolute;
  top: 50%;
  left: 50%;
/*   width: auto; */
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  transition: transform 0.4s ease-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.ratio_fixed svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.product a .product_img, .product div .product_img {
  position: relative;
  padding-top: 133%;
  overflow: hidden;
  z-index: 0;
}
.product a .product_img:after, .product div .product_img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F8F5F4;
  /*border-radius: 4rem;*/
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.product a .product_img .view_detail, .product div .product_img .view_detail {
  position: absolute;
  right: 2rem;
  bottom: 2.4rem;
  font-size: 1.3rem;
  z-index: 0;
}
.product a .product_img img, .product div .product_img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  transition: transform 0.2s ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 2;
}
@media only screen and (max-width: 796px) {
  .product a .product_img:after, .product div .product_img:after {
    /*border-radius: 3rem;*/
  }
  .product a .product_img .view_detail, .product div .product_img .view_detail {
    right: 1.5rem;
    bottom: 2rem;
    font-size: 1.1rem;
  }
}
.product a .info_wrap, .product div .info_wrap {
  padding: 0 2rem;
  height: 7.5rem;
  border-top: 1px solid #1A1A1A;
}
.product a .info_wrap .detail_wrap, .product div .info_wrap .detail_wrap {
  width: calc(100% - 9.6rem);
}
.product a .info_wrap .detail_wrap .name, .product div .info_wrap .detail_wrap .name {
  font-size: 1.3rem;
  line-height: 1.5;
  /*font-weight: 600;*/
  -webkit-line-clamp: 2;
}
.product a .info_wrap .detail_wrap .price, .product div .info_wrap .detail_wrap .price {
  font-size: 1.3rem;
  line-height: 1.75;
}
.product a .info_wrap .color_list li, .product div .info_wrap .color_list li {
  margin-left: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
}
.product a .info_wrap .color_list li:first-of-type, .product div .info_wrap .color_list li:first-of-type {
  margin-left: 0;
}
@media only screen and (max-width: 796px) {
  .product a .info_wrap, .product div .info_wrap {
    padding: 1.6rem 5vw;
    height: auto;
  }
}
.product a .only_arrow, .product div .only_arrow {
  position: relative;
  padding-right: 2.4rem;
  display: inline-block;
  line-height: 1;
  z-index: 0;
}
.product a .only_arrow i, .product div .only_arrow i {
  position: absolute;
  top: -0.1rem;
  right: 0;
  bottom: 0;
  margin: auto 0;
  display: block;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  z-index: 1;
}
.product a .only_arrow i:before, .product a .only_arrow i:after, .product div .only_arrow i:before, .product div .only_arrow i:after {
  content: "";
  position: absolute;
  top: calc(50% - 1rem);
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-out;
}
.product a .only_arrow i:before, .product div .only_arrow i:before {
  transform: translateX(-100%);
  background-image: url("arrow_black.svg");
}
.product a .only_arrow i:after, .product div .only_arrow i:after {
  background-image: url("arrow_black.svg");
}
.product a:hover .product_img:after, .product div:hover .product_img:after {
  background: linear-gradient(#F8F5F4 61%, rgba(248, 245, 244, 0) 100%);
  border-radius: 0;
}
.product a:hover .product_img .view_detail, .product div:hover .product_img .view_detail {
  z-index: 2;
}
.product a:hover .only_arrow i:before, .product div:hover .only_arrow i:before {
  transform: translateX(0);
}
.product a:hover .only_arrow i:after, .product div:hover .only_arrow i:after {
  transform: translateX(100%);
}

.prev-button,
.next-button,
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: calc(50% - 3.75rem) !important;
  width: 6rem !important;
  height: 6rem !important;
  border: 1px solid rgba(26, 26, 26, 0.2) !important;
  border-radius: 50% !important;
  background-color: #ffffff;
  z-index: 500;
}
.prev-button:after,
.next-button:after,
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("arrow_black.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 796px) {
  .prev-button,
.next-button,
.swiper-button-prev,
.swiper-button-next {
    display: none !important;
    opacity: 0 !important;
  }
}

.prev-button,
.swiper-button-prev {
  left: 1rem !important;
}
.prev-button:after,
.swiper-button-prev:after {
  transform: rotate(180deg);
}

.next-button,
.swiper-button-next {
  right: 1rem !important;
}
.swiper-button-disabled {
  display: none !important;
  opacity: 0 !important;
}

.under_line {
  position: relative;
  padding: 0.2rem 0;
  font-size: inherit;
  line-height: inherit;
}
.under_line:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1A1A1A;
  transition: transform 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform-origin: left;
  -webkit-transform-origin: left;
}
.under_line:hover:after {
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: right;
  -webkit-transform-origin: right;
}

.home .loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  z-index: 100;
  animation: fade_animation 0.5s 6s ease-in-out forwards;
}
@keyframes fade_animation {
  100% {
    opacity: 0;
    z-index: -1;
  }
}
.home .loading .dot_wrap {
  margin: auto;
  width: 57vw;
  height: 2rem;
}
@media only screen and (max-width: 1200px) {
  .home .loading .dot_wrap {
    width: 50vw;
  }
}
@media only screen and (max-width: 1080px) {
  .home .loading .dot_wrap {
    width: 55vw;
  }
}
@media only screen and (max-width: 796px) {
  .home .loading .dot_wrap {
    width: 44vw;
  }
}
@media only screen and (max-width: 600px) {
  .home .loading .dot_wrap {
    width: 90vw;
    height: 1.5rem;
  }
}
.home .loading .dot_wrap .dot {
  width: 1.5rem;
  height: 1.5rem;
  width: 15px;
  height: 15px;
  opacity: 0;
  transform: translateX(-2.4rem);
  background-color: #ffffff;
  border-radius: 50%;
  animation: dot_animation 1.6s ease-in-out forwards;
}
.home .loading .dot_wrap .dot:first-of-type {
  margin-right: 9.6rem;
  animation-delay: 2s;
}
.home .loading .dot_wrap .dot:nth-of-type(2) {
  margin-right: 9rem;
  animation-delay: 2.15s;
}
.home .loading .dot_wrap .dot:nth-of-type(3) {
  margin-right: 7.2rem;
  animation-delay: 2.3s;
}
.home .loading .dot_wrap .dot:nth-of-type(4) {
  margin-right: 6rem;
  animation: dot_animation_2 1.6s 2.45s ease-in-out forwards;
}
.home .loading .dot_wrap .dot:nth-of-type(5) {
  margin-right: 4.6rem;
  animation: dot_animation_2 1.6s 2.6s ease-in-out forwards;
}
.home .loading .dot_wrap .dot:nth-of-type(6) {
  margin-right: 3.5rem;
  animation: dot_animation_2 1.6s 2.75s ease-in-out forwards;
}
.home .loading .dot_wrap .dot:nth-of-type(7) {
  margin-right: 2.7rem;
  animation: dot_animation_3 1.6s 2.9s ease-in-out forwards;
}
.home .loading .dot_wrap .dot:nth-of-type(8) {
  margin-right: 2.2rem;
  animation: dot_animation_3 1.6s 3.05s ease-in-out forwards;
}
.home .loading .dot_wrap .dot:nth-of-type(9) {
  margin-right: 1rem;
  transform: translateX(-0.5rem);
  animation-name: dot_animation_no;
  animation: dot_animation_no 0.8s 3.2s ease-in-out forwards, dot_animation_up 0.4s 5.7s ease-in-out forwards;
}
.home .loading .dot_wrap .dot:nth-of-type(10) {
  margin-right: 1rem;
  transform: translateX(-0.5rem);
  animation: dot_animation_no 0.8s 3.3s ease-in-out forwards, dot_animation_up 0.4s 5.7s ease-in-out forwards;
}
.home .loading .dot_wrap .dot:last-of-type {
  margin-right: 2.4rem;
  transform: translateX(-0.5rem);
  animation: dot_animation_no 0.8s 3.4s ease-in-out forwards, dot_animation_up 0.4s 5.7s ease-in-out forwards;
}
@media only screen and (max-width: 1400px) {
  .home .loading .dot_wrap .dot {
    width: 13px;
    height: 13px;
  }
  .home .loading .dot_wrap .dot:first-of-type {
    margin-right: 6.9rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(2) {
    margin-right: 5.5rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(3) {
    margin-right: 4.9rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(4) {
    margin-right: 3.7rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(5) {
    margin-right: 3rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(6) {
    margin-right: 2.4rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(7) {
    margin-right: 1.9rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(8) {
    margin-right: 1.3rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(9) {
    margin-right: 0.6rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(10) {
    margin-right: 0.6rem;
  }
  .home .loading .dot_wrap .dot:last-of-type {
    margin-right: 1.5rem;
  }
}
@media only screen and (max-width: 1200px) {
  .home .loading .dot_wrap .dot {
    width: 12px;
    height: 12px;
  }
  .home .loading .dot_wrap .dot:first-of-type {
    margin-right: 6rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(2) {
    margin-right: 5rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(3) {
    margin-right: 4.4rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(4) {
    margin-right: 3.3rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(5) {
    margin-right: 2.4rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(6) {
    margin-right: 2rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(7) {
    margin-right: 1.6rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(8) {
    margin-right: 1rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(9) {
    margin-right: 0.4rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(10) {
    margin-right: 0.4rem;
  }
  .home .loading .dot_wrap .dot:last-of-type {
    margin-right: 1.2rem;
  }
}
@media only screen and (max-width: 1050px) {
  .home .loading .dot_wrap .dot {
    width: 10px;
    height: 10px;
  }
  .home .loading .dot_wrap .dot:first-of-type {
    margin-right: 5.5rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(2) {
    margin-right: 4.6rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(3) {
    margin-right: 3.9rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(4) {
    margin-right: 2.7rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(5) {
    margin-right: 2.2rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(6) {
    margin-right: 1.9rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(7) {
    margin-right: 1.3rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(8) {
    margin-right: 0.8rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(9) {
    margin-right: 0.2rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(10) {
    margin-right: 0.2rem;
  }
  .home .loading .dot_wrap .dot:last-of-type {
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 796px) {
  .home .loading .dot_wrap .dot {
    width: 6px;
    height: 6px;
  }
  .home .loading .dot_wrap .dot:first-of-type {
    margin-right: 3.5rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(2) {
    margin-right: 3rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(3) {
    margin-right: 2.7rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(4) {
    margin-right: 2.4rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(5) {
    margin-right: 1.9rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(6) {
    margin-right: 1.5rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(7) {
    margin-right: 1.3rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(8) {
    margin-right: 0.9rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(9) {
    margin-right: 0.2rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(10) {
    margin-right: 0.2rem;
  }
  .home .loading .dot_wrap .dot:last-of-type {
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 375px) {
  .home .loading .dot_wrap .dot {
    width: 4px;
    height: 4px;
  }
  .home .loading .dot_wrap .dot:first-of-type {
    margin-right: 3rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(2) {
    margin-right: 2.4rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(3) {
    margin-right: 2rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(4) {
    margin-right: 1.9rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(5) {
    margin-right: 1.5rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(6) {
    margin-right: 1.3rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(7) {
    margin-right: 1rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(8) {
    margin-right: 0.8rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(9) {
    margin-right: 0.2rem;
  }
  .home .loading .dot_wrap .dot:nth-of-type(10) {
    margin-right: 0.2rem;
  }
  .home .loading .dot_wrap .dot:last-of-type {
    margin-right: 1rem;
  }
}
@keyframes dot_animation {
  0% {
    transform: translateX(-2.2rem);
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translateX(-0.2rem);
  }
  72% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateX(0.2rem);
  }
}
@keyframes dot_animation_2 {
  0% {
    transform: translateX(-1.5rem);
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translateX(-0.2rem);
  }
  72% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateX(0.2rem);
  }
}
@keyframes dot_animation_3 {
  0% {
    transform: translateX(-0.9rem);
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translateX(-0.2rem);
  }
  72% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateX(0.2rem);
  }
}
@keyframes dot_animation_no {
  0% {
    transform: translateX(-0.5rem);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes dot_animation_up {
  100% {
    opacity: 0;
    transform: translateY(-1.2rem);
  }
}
.home .loading .dot_wrap h1 {
  width: 11.2rem;
  opacity: 0;
  animation: dot_animation_logo 0.4s 4.6s ease-in-out forwards, dot_animation_up 0.4s 5.7s ease-in-out forwards;
}
@keyframes dot_animation_logo {
  0% {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 1050px) {
  .home .loading .dot_wrap h1 {
    width: 10rem;
  }
}
@media only screen and (max-width: 796px) {
  .home .loading .dot_wrap h1 {
    width: 7rem;
  }
}
.home .mv {
  position: relative;
  /*margin-top: 15rem;*/
  height: calc(100vh - 0rem);
  opacity: 0;
  overflow: hidden;
}
.home .mv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*z-index: -1;*/
  background-image: url("bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.home .mv .circle_wrap {
  position: relative;
  margin-left: 3vw;
  width: 81vh;
/*   height: 81vh; */
	height: 100%;
}
.home .mv .circle_wrap .mv_img_wrap {
  position: relative;
  margin: auto;
  display: block;
  width: fit-content;
  height: 100%;
}
.home .mv .circle_wrap .mv_img_wrap .mv_img {
  margin: auto;
  width: auto;
  height: 100%;
}
.home .mv .circle_wrap .circle_img {
  position: absolute;
  top: 4.5vh;
  left: 0;
  right: 0;
  bottom: 4.5vh;
  margin: auto;
  width: auto;
  height: 72vh;
  animation: circle_re 70s linear infinite;
}
@keyframes circle_re {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(315deg);
  }
}
@media only screen and (max-width: 796px) {
  .home .mv {
    /*margin-top: 12rem;*/
    height: calc(100vh - 0rem);
  }
  .home .mv .circle_wrap {
    margin: auto;
    width: 90vw;
    height: 98vw;
    max-width: 98vw;
    max-height: 98vw;
    overflow: hidden;
  }
  .home .mv .circle_wrap .mv_img {
    margin: auto;
    width: 73vw;
    height: auto;
  }
  .home .mv .circle_wrap .circle_img {
    top: 1.3rem;
    bottom: 1.3rem;
    width: 90vw;
    height: 90vw;
    max-width: 100%;
    max-height: 100%;
  }
}
.home .mv.animation .bg {
  transform: scale(1.1);
  animation: bg_animation 2.5s ease-in-out forwards;
}
@keyframes bg_animation {
  100% {
    transform: scale(1);
  }
}
.home .mv.animation .mv_img_wrap .mv_img {
  opacity: 0;
  animation: fade 1.2s 0.4s ease-in-out forwards;
}
@keyframes fade {
  100% {
    opacity: 1;
  }
}
.home .mv.animation .mv_img_wrap:before, .home .mv.animation .mv_img_wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}
@media only screen and (max-width: 796px) {
  .home .mv.animation .mv_img_wrap:before, .home .mv.animation .mv_img_wrap:after {
    content: none;
  }
}
.home .mv.animation .mv_img_wrap:before {
  left: -1px;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: line_up 1.6s 0.8s cubic-bezier(0.75, 0.1, 0, 1) forwards, line_up_to 1.6s 2.2s cubic-bezier(0.7, 0.1, 0.8, 0.1) forwards;
}
@keyframes line_up {
  100% {
    transform: scaleY(1);
  }
}
@keyframes line_up_to {
  0% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }
}
.home .mv.animation .mv_img_wrap:after {
  right: -1px;
  transform: scaleY(0);
  transform-origin: top;
  animation: line_down 1.6s 0.8s cubic-bezier(0.75, 0.1, 0, 1) forwards, line_down_to 1.6s 2.2s cubic-bezier(0.7, 0.1, 0.8, 0.1) forwards;
}
@keyframes line_down {
  100% {
    transform: scaleY(1);
  }
}
@keyframes line_down_to {
  0% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.home .mv.animation .circle_img path {
  opacity: 0;
  fill: transparent;
  stroke: #ffffff;
}
.home .mv.animation .circle_img path:nth-of-type(0) {
  animation: circle_show_up 0.01s 1.6s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(1) {
  animation: circle_show_up 0.01s 1.61s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(2) {
  animation: circle_show_up 0.01s 1.62s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(3) {
  animation: circle_show_up 0.01s 1.63s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(4) {
  animation: circle_show_up 0.01s 1.64s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(5) {
  animation: circle_show_up 0.01s 1.65s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(6) {
  animation: circle_show_up 0.01s 1.66s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(7) {
  animation: circle_show_up 0.01s 1.67s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(8) {
  animation: circle_show_up 0.01s 1.68s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(9) {
  animation: circle_show_up 0.01s 1.69s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(10) {
  animation: circle_show_up 0.01s 1.7s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(11) {
  animation: circle_show_up 0.01s 1.71s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(12) {
  animation: circle_show_up 0.01s 1.72s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(13) {
  animation: circle_show_up 0.01s 1.73s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(14) {
  animation: circle_show_up 0.01s 1.74s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(15) {
  animation: circle_show_up 0.01s 1.75s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(16) {
  animation: circle_show_up 0.01s 1.76s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(17) {
  animation: circle_show_up 0.01s 1.77s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(18) {
  animation: circle_show_up 0.01s 1.78s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(19) {
  animation: circle_show_up 0.01s 1.79s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(20) {
  animation: circle_show_up 0.01s 1.8s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(21) {
  animation: circle_show_up 0.01s 1.81s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(22) {
  animation: circle_show_up 0.01s 1.82s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(23) {
  animation: circle_show_up 0.01s 1.83s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(24) {
  animation: circle_show_up 0.01s 1.84s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(25) {
  animation: circle_show_up 0.01s 1.85s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(26) {
  animation: circle_show_up 0.01s 1.86s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(27) {
  animation: circle_show_up 0.01s 1.87s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(28) {
  animation: circle_show_up 0.01s 1.88s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(29) {
  animation: circle_show_up 0.01s 1.89s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(30) {
  animation: circle_show_up 0.01s 1.9s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(31) {
  animation: circle_show_up 0.01s 1.91s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(32) {
  animation: circle_show_up 0.01s 1.92s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(33) {
  animation: circle_show_up 0.01s 1.93s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(34) {
  animation: circle_show_up 0.01s 1.94s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(35) {
  animation: circle_show_up 0.01s 1.95s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(36) {
  animation: circle_show_up 0.01s 1.96s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(37) {
  animation: circle_show_up 0.01s 1.97s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(38) {
  animation: circle_show_up 0.01s 1.98s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(39) {
  animation: circle_show_up 0.01s 1.99s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(40) {
  animation: circle_show_up 0.01s 2s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(41) {
  animation: circle_show_up 0.01s 2.01s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(42) {
  animation: circle_show_up 0.01s 2.02s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(43) {
  animation: circle_show_up 0.01s 2.03s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(44) {
  animation: circle_show_up 0.01s 2.04s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(45) {
  animation: circle_show_up 0.01s 2.05s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(46) {
  animation: circle_show_up 0.01s 2.06s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(47) {
  animation: circle_show_up 0.01s 2.07s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(48) {
  animation: circle_show_up 0.01s 2.08s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(49) {
  animation: circle_show_up 0.01s 2.09s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(50) {
  animation: circle_show_up 0.01s 2.1s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(51) {
  animation: circle_show_up 0.01s 2.11s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(52) {
  animation: circle_show_up 0.01s 2.12s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(53) {
  animation: circle_show_up 0.01s 2.13s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(54) {
  animation: circle_show_up 0.01s 2.14s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(55) {
  animation: circle_show_up 0.01s 2.15s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(56) {
  animation: circle_show_up 0.01s 2.16s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(57) {
  animation: circle_show_up 0.01s 2.17s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(58) {
  animation: circle_show_up 0.01s 2.18s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(59) {
  animation: circle_show_up 0.01s 2.19s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(60) {
  animation: circle_show_up 0.01s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(61) {
  animation: circle_show_up 0.01s 2.21s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(62) {
  animation: circle_show_up 0.01s 2.22s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(63) {
  animation: circle_show_up 0.01s 2.23s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(64) {
  animation: circle_show_up 0.01s 2.24s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(65) {
  animation: circle_show_up 0.01s 2.25s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(66) {
  animation: circle_show_up 0.01s 2.26s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(67) {
  animation: circle_show_up 0.01s 2.27s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(68) {
  animation: circle_show_up 0.01s 2.28s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
.home .mv.animation .circle_img path:nth-of-type(69) {
  animation: circle_show_up 0.01s 2.29s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_fill_up 1.2s 2.2s cubic-bezier(0.75, 0.1, 0, 1) forwards;
}
@keyframes circle_show_up {
  100% {
    opacity: 1;
  }
}
@keyframes circle_fill_up {
  100% {
    fill: #ffffff;
    stroke: transparent;
  }
}
.home .mv.animation .circle_line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: 64vh;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transform: rotate(-90deg);
  animation: circle_line_animation 1.8s 0.8s cubic-bezier(0.75, 0.1, 0, 1) forwards, circle_line_animation_re 1.6s 2.5s cubic-bezier(1, 0, 0.42, 1) forwards;
}
@keyframes circle_line_animation {
  0% {
    stroke-dashoffset: 1200;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes circle_line_animation_re {
  0% {
    stroke-dashoffset: 0;
    transform: scale(-1, 1) rotate(-90deg);
  }
  100% {
    stroke-dashoffset: 1200;
    transform: scale(-1, 1) rotate(-90deg);
  }
}
@media only screen and (max-width: 796px) {
  .home .mv.animation .circle_line {
    top: 3rem;
    bottom: 3rem;
    width: calc(90vw - 5rem);
    height: calc(90vw - 5rem);
    max-width: calc(100% - 5rem);
    max-height: calc(100% - 5rem);
  }
}
.home .about {
  position: relative;
  padding: 18rem 10.1vw 37.2rem 10.6vw;
  background-color: #EBE5D8;
}
.home .about:before {
  height: 100%;
  z-index: 0;
}
@media only screen and (max-width: 796px) {
  .home .about {
    padding: 8rem 5vw;
  }
}
.home .about .upper .text_wrap {
  position: relative;
  width: 50%;
}
.home .about .upper .text_wrap h2 {
  font-size: 4.8rem;
  line-height: 1.25;
  /*font-weight: 600;*/
}
.home .about .upper .text_wrap .en {
  position: absolute;
  left: -8.6rem;
  margin-right: 1rem;
  padding: 0.6rem 1rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: right;
}
@media only screen and (max-width: 796px) {
  .home .about .upper .text_wrap {
    margin-left: auto;
    width: auto;
    order: -1;
  }
  .home .about .upper .text_wrap h2 {
    font-size: 2.7rem;
  }
  .home .about .upper .text_wrap .en {
    position: relative;
    left: initial;
    margin-right: 0;
    padding: 0.4rem 1rem;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .home .about .upper .deco_wrap {
    margin-left: 15vw;
  }
  .home .about .upper .deco_wrap svg {
    transform: rotate(180deg);
  }
  .home .about .upper .deco_wrap .re {
    stroke-dashoffset: 600;
  }
  .home .about .upper .deco_wrap .re.no_mask {
    stroke-dashoffset: 0;
  }
}
.home .about .lower {
  margin-top: -12rem;
}
.home .about .lower .text_wrap {
  width: 31vw;
}
.home .about .lower .text_wrap .dot {
  width: 2.4rem;
}
.home .about .lower .text_wrap .text {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  line-height: 1.75;
  /*font-weight: 600;*/
}
.home .about .lower .text_wrap a {
  margin-top: 3rem;
}
.home .about .lower .img_wrap {
  width: 39vw;
}
.home .about .lower .img_wrap .ratio_fixed {
  padding-top: 120%;
}
@media only screen and (max-width: 796px) {
  .home .about .lower {
    margin-top: -4rem;
  }
  .home .about .lower .text_wrap {
    width: 100%;
  }
  .home .about .lower .text_wrap .text {
    font-size: 1.5rem;
  }
  .home .about .lower .text_wrap a {
    margin-top: 1.6rem;
  }
  .home .about .lower .img_wrap {
    margin-top: 8rem;
    margin-left: auto;
    width: 74%;
  }
  .home .about .lower .img_wrap .ratio_fixed {
    padding-top: 120%;
  }
}
.home .about .deco {
  position: absolute;
  left: 3rem;
  bottom: 6rem;
}
@media only screen and (max-width: 796px) {
  .home .about .deco {
    left: 5vw;
    bottom: 0;
  }
}
.home .series {
  padding: 0 2vw;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}
@media only screen and (max-width: 796px) {
  .home .series {
    padding: 0 1.5rem;
  }
}
.home .series .border {
  border-left: 1px solid #1A1A1A;
  border-right: 1px solid #1A1A1A;
}
.home .series .upper .title_wrap {
  padding: 3rem 3.5rem;
  width: calc(32.3vw - 7.2rem);
}
.home .series .upper .title_wrap h4 {
  font-size: 3.5rem;
  line-height: 1;
}
.home .series .upper .title_wrap a {
  font-size: 1.3rem;
  height: fit-content;
}
.home .series .upper .title_wrap .text_wrap {
  margin-top: auto;
  width: 100%;
}
.home .series .upper .title_wrap .text_wrap h5 {
  font-size: 2.6rem;
  line-height: 1.5;
}
.home .series .upper .title_wrap .text_wrap .text {
  margin-top: 1.6rem;
  line-height: 1.75;
}
@media only screen and (max-width: 796px) {
  .home .series .upper .title_wrap {
    padding: 1.6rem 2rem;
    width: calc(100% - 4rem);
  }
  .home .series .upper .title_wrap h4 {
    font-size: 2.2rem;
  }
  .home .series .upper .title_wrap .text_wrap {
    margin-top: 3rem;
    width: 100%;
  }
  .home .series .upper .title_wrap .text_wrap h5 {
    font-size: 1.6rem;
  }
  .home .series .upper .title_wrap .text_wrap .text {
    margin-top: 1.3rem;
  }
}
.home .series .upper .img_wrap {
  padding: 3rem;
  width: calc(63.5vw - 6rem);
  border-left: 1px solid #1A1A1A;
}
.home .series .upper .img_wrap .inner_wrap {
  position: relative;
  overflow: hidden;
}
.home .series .upper .img_wrap .inner_wrap .ratio_fixed {
  padding-top: 72%;
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.home .series .upper .img_wrap .inner_wrap .text_wrap {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30.9vw;
  height: 10rem;
  text-align: center;
}
.home .series .upper .img_wrap .inner_wrap .text_wrap .dot {
  width: 2.4rem;
}
.home .series .upper .img_wrap .inner_wrap .text_wrap .text {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #ffffff;
}
.home .series .upper .img_wrap .inner_wrap .text_wrap .to_all {
  margin: 2.4rem auto 0;
  font-size: 1.3rem;
  /*font-weight: 600;*/
}
.home .series .upper .img_wrap .inner_wrap:hover .ratio_fixed {
  transform: scale(1.08);
}
.home .series .upper .img_wrap .inner_wrap:hover .text_wrap .to_all {
  color: #ffffff;
}
.home .series .upper .img_wrap .inner_wrap:hover .text_wrap .to_all:before {
  opacity: 1;
}
.home .series .upper .img_wrap .inner_wrap:hover .text_wrap .to_all i:before {
  transform: translateX(0);
}
.home .series .upper .img_wrap .inner_wrap:hover .text_wrap .to_all i:after {
  transform: translateX(100%);
}
@media only screen and (max-width: 796px) {
  .home .series .upper .img_wrap {
    padding: 1.6rem;
    width: 100%;
    border-top: 1px solid #1A1A1A;
    border-left: none;
  }
  .home .series .upper .img_wrap .inner_wrap .ratio_fixed {
    padding-top: 79%;
  }
  .home .series .upper .img_wrap .inner_wrap .text_wrap {
    width: 90%;
    height: 11.1rem;
  }
  .home .series .upper .img_wrap .inner_wrap .text_wrap .text {
    font-size: 1.1rem;
    line-height: 1.3rem;
    margin-top: -3rem;
  }
}
.home .series .lower .text_wrap {
  padding: 3rem 3.5rem;
  border-top: 1px solid #1A1A1A;
}
.home .series .lower .text_wrap h5 {
  font-size: 2.1rem;
}
.home .series .lower .product_list {
  border-top: 1px solid #1A1A1A;
}
.home .series .lower .product_list .product {
  width: calc(25% - 0.75px);
  border-left: 1px solid #1A1A1A;
}
.home .series .lower .product_list .product:first-of-type {
  border-left: none;
}
@media only screen and (max-width: 796px) {
  .home .series .lower .text_wrap {
    padding: 1.6rem;
  }
  .home .series .lower .text_wrap h5 {
    margin-bottom: 0.8rem;
    width: 100%;
    font-size: 1.9rem;
  }
  .home .series .lower .product_list .product {
    width: calc(50% - 0.5px);
  }
  .home .series .lower .product_list .product a .product_img:after {
    /*border-radius: 2rem;*/
  }
  .home .series .lower .product_list .product a .info_wrap .detail_wrap {
    width: 100%;
  }
  .home .series .lower .product_list .product a .info_wrap .color_list {
    margin-bottom: 1.2rem;
    order: -1;
  }
  .home .series .lower .product_list .product:nth-of-type(2n-1) {
    border-left: none;
  }
  .home .series .lower .product_list .product:nth-of-type(n+3) {
    border-top: 1px solid #1A1A1A;
  }
}
.home .story {
  margin-top: 18rem;
}
@media only screen and (max-width: 796px) {
  .home .story {
    margin-top: 10.8rem;
  }
}
.home .story .title_wrap {
  margin: auto;
  padding: 2.4rem 3rem 0;
  border-top: 1px solid #1A1A1A;
}
.home .story .title_wrap h5 {
  line-height: 1;
}
.home .story .title_wrap .text_wrap {
  width: calc(50vw - 3rem);
}
.home .story .title_wrap .text_wrap .dot {
  width: 2.4rem;
}
.home .story .title_wrap .text_wrap .text {
  width: 24vw;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
}
@media only screen and (max-width: 796px) {
  .home .story .title_wrap {
    margin: auto 1.5rem;
    padding: 1.6rem 0 0;
  }
  .home .story .title_wrap h5 {
    font-size: 1.2rem;
  }
  .home .story .title_wrap .text_wrap {
    margin-top: 1.2rem;
    width: 100%;
  }
  .home .story .title_wrap .text_wrap .text {
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.3rem;
  }
}
.home .story .visual_wrap {
  margin-top: 9.6rem;
}
@media only screen and (max-width: 796px) {
  .home .story .visual_wrap {
    margin-top: 4.8rem;
  }
}
.home .story .visual_wrap h4 {
  position: relative;
  margin: auto;
  padding: 0 3rem;
  font-size: 3.5rem;
  /*font-weight: 600;*/
  line-height: 1;
}
.home .story .visual_wrap h4 .ja {
  margin-top: 1.6rem;
  font-size: 3.5rem;
  /*font-weight: 600;*/
  line-height: 1;
}
.home .story .visual_wrap h4 .en {
  position: relative;
  margin-top: -0.7rem;
  padding-right: 13.9rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
  vertical-align: middle;
}
.home .story .visual_wrap h4 .en:after {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 1.2rem;
  display: block;
  width: 11.2rem;
  height: 0.1rem;
  background-color: rgba(26, 26, 26, 0.2);
}
@media only screen and (max-width: 796px) {
  .home .story .visual_wrap h4 {
    padding: 0 2rem;
    font-size: 1.9rem;
    line-height: 1.5;
  }
  .home .story .visual_wrap h4 br {
    display: none;
  }
  .home .story .visual_wrap h4 .ja {
    display: initial;
    margin-top: 0;
    font-size: 1.9rem;
    line-height: 1.5;
  }
  .home .story .visual_wrap h4 .en {
    margin-top: -0.6rem;
    padding-right: 6.6rem;
    font-size: 1.1rem;
    line-height: 1.3rem;
  }
  .home .story .visual_wrap h4 .en:after {
    top: 0.6rem;
    width: 4.2rem;
  }
}
.home .story .visual_wrap .kv {
  position: relative;
  margin-top: 9.6rem;
  height: 56.4vw;
  overflow: hidden;
}
.home .story .visual_wrap .kv video {
  width: auto;
  height: 100%;
}
.home .story .visual_wrap .kv .text_wrap {
  position: absolute;
  right: 3rem;
  bottom: 9.6rem;
  padding-left: 3.5rem;
  width: calc(50vw - 6.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.home .story .visual_wrap .kv .text_wrap .text {
  font-size: 2.6rem;
  line-height: 1.5;
  /*font-weight: 600;*/
  color: #ffffff;
}
.home .story .visual_wrap .kv .text_wrap a {
  margin-top: 3.5rem;
  font-size: 1.3rem;
  /*font-weight: 600;*/
}
@media only screen and (max-width: 796px) {
  .home .story .visual_wrap .kv {
    margin-top: 5rem;
    height: 160vw;
  }
  .home .story .visual_wrap .kv .text_wrap {
    right: 5vw;
    bottom: 3.5rem;
    padding-left: 2.4rem;
    width: calc(90vw - 2.5rem);
  }
  .home .story .visual_wrap .kv .text_wrap .text {
    font-size: 1.6rem;
  }
  .home .story .visual_wrap .kv .text_wrap a {
    margin-top: 2.4rem;
  }
}
.home .top_news {
  padding: 18rem 3rem;
}
@media only screen and (max-width: 796px) {
  .home .top_news {
    padding: 8rem 5vw 8rem;
  }
}
.home .top_news .title_wrap {
  padding-left: 3.5rem;
  border-left: 1px solid #1A1A1A;
}
.home .top_news .title_wrap h4 {
  font-size: 3.5rem;
  line-height: 1.5;
  /*font-weight: 600;*/
}
.home .top_news .title_wrap .text_wrap {
  margin-top: auto;
  width: 100%;
}
.home .top_news .title_wrap .text_wrap .text {
  width: 24vw;
  line-height: 1.75;
}
.home .top_news .title_wrap .text_wrap a {
  margin-top: 3.5rem;
  font-size: 1.3rem;
  /*font-weight: 600;*/
}
@media only screen and (max-width: 796px) {
  .home .top_news .title_wrap {
    padding-left: 2.4rem;
  }
  .home .top_news .title_wrap h4 {
    font-size: 2.2rem;
  }
  .home .top_news .title_wrap .text_wrap {
    margin-top: 3.5rem;
  }
  .home .top_news .title_wrap .text_wrap .text {
    width: 100%;
    font-size: 1.3rem;
  }
  .home .top_news .title_wrap .text_wrap a {
    margin-top: 2.4rem;
  }
}
.home .top_news .list_wrap {
  width: 48vw;
}
.home .top_news .list_wrap .news_list li {
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}
.home .top_news .list_wrap .news_list li a {
  display: block;
  padding: 2.4rem 0;
}
.home .top_news .list_wrap .news_list li a article .article_info {
  margin-bottom: 1.2rem;
}
.home .top_news .list_wrap .news_list li a article .article_info .date {
  margin-right: 0.4rem;
  width: 7rem;
  font-size: 1.3rem;
  line-height: 1;
}
.home .top_news .list_wrap .news_list li a article .article_info .category {
  padding: 0.4rem 0.6rem;
  font-size: 1.1rem;
  line-height: 1;
  border: 1px solid #1A1A1A;
  border-radius: 0.5rem;
}
.home .top_news .list_wrap .news_list li a article .article_info .important {
  color: #ffffff;
  background-color: #1A1A1A;
}
.home .top_news .list_wrap .news_list li a article .title {
  font-size: 1.5rem;
  line-height: 1.5;
  /*font-weight: 600;*/
}
.home .top_news .list_wrap .news_list li:first-of-type a {
  padding-top: 0;
}
@media only screen and (max-width: 796px) {
  .home .top_news .list_wrap {
    margin-top: 3.5rem;
    width: 100%;
  }
  .home .top_news .list_wrap .news_list li a {
    padding: 1.6rem 0;
  }
  .home .top_news .list_wrap .news_list li a article .title {
    font-size: 1.3rem;
  }
}
.home .top_news .button_wrap {
  margin-top: 2.4rem;
  width: 100%;
  text-align: right;
}
.home .top_news .button_wrap a {
  font-size: 1.3rem;
}
@media only screen and (max-width: 796px) {
  .home .top_news .button_wrap {
    margin-top: 1.6rem;
  }
}
.home .instagram {
  padding-bottom: 15rem;
}
@media only screen and (max-width: 796px) {
  .home .instagram {
    padding-bottom: 9.6rem;
  }
}
.home .instagram .title_wrap {
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  margin-left: auto;
  margin-right: 3rem;
  width: calc(50vw - 3rem);
}
.home .instagram .title_wrap .en {
  position: absolute;
  top: 0;
  left: -11rem;
  display: inline-block;
  padding-left: 2rem;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.home .instagram .title_wrap .en:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("instagram_black.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.home .instagram .title_wrap .text_wrap {
  margin-right: auto;
}
.home .instagram .title_wrap .text_wrap h4, .home .instagram .title_wrap .text_wrap a {
  font-size: 3.5rem;
  /*font-weight: 600;*/
  line-height: 1;
}
.home .instagram .title_wrap .text_wrap .with_arrow {
  margin-top: 1.2rem;
  padding-left: 4.2rem;
  line-height: 3.5rem;
}
.home .instagram .title_wrap .text_wrap .with_arrow:before {
  width: 3.5rem;
  height: 3.5rem;
}
.home .instagram .title_wrap .text_wrap .with_arrow i {
  width: 3.5rem;
  height: 3.5rem;
}
.home .instagram .title_wrap .text_wrap .with_arrow i:before, .home .instagram .title_wrap .text_wrap .with_arrow i:after {
  top: calc(50% - 1.75rem);
}
@media only screen and (max-width: 796px) {
  .home .instagram .title_wrap {
    margin-right: 3.5rem;
    width: 62.4vw;
  }
  .home .instagram .title_wrap .en {
    left: -8rem;
    font-size: 1.1rem;
  }
  .home .instagram .title_wrap .text_wrap h4, .home .instagram .title_wrap .text_wrap a {
    font-size: 1.9rem;
  }
  .home .instagram .title_wrap .text_wrap .with_arrow {
    padding-left: 3.3rem;
    line-height: 2.4rem;
  }
  .home .instagram .title_wrap .text_wrap .with_arrow:before {
    width: 2.4rem;
    height: 2.4rem;
  }
  .home .instagram .title_wrap .text_wrap .with_arrow i {
    width: 2.4rem;
    height: 2.4rem;
  }
  .home .instagram .title_wrap .text_wrap .with_arrow i:before, .home .instagram .title_wrap .text_wrap .with_arrow i:after {
    top: calc(50% - 1.2rem);
  }
}
.home .instagram .feed_wrap {
  position: relative;
  margin-top: 6rem;
  height: 25vw;
}
.home .instagram .feed_wrap #sb_instagram.sbi {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 3rem;
}
.home .instagram .feed_wrap #sb_instagram.sbi .sb_instagram_header {
  display: none;
}
.home .instagram .feed_wrap #sb_instagram.sbi #sbi_images {
  display: flex;
  
  
  flex-wrap: wrap;
  
  
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
}
.home .instagram .feed_wrap #sb_instagram.sbi #sbi_images .sbi_item {
  width: 24%;
}
@media only screen and (max-width: 796px) {
  .home .instagram .feed_wrap {
    margin-top: 3.5rem;
    height: 90vw;
  }
  .home .instagram .feed_wrap #sb_instagram.sbi.sbi_disable_mobile {
    padding: 0 2rem;
  }
  .home .instagram .feed_wrap #sb_instagram.sbi.sbi_disable_mobile #sbi_images .sbi_item {
    width: 48%;
  }
  .home .instagram .feed_wrap #sb_instagram.sbi.sbi_disable_mobile #sbi_images .sbi_item:first-of-type, .home .instagram .feed_wrap #sb_instagram.sbi.sbi_disable_mobile #sbi_images .sbi_item:nth-of-type(2) {
    margin-bottom: 1rem !important;
  }
}

.products {
  padding-top: 21rem;
}
@media only screen and (max-width: 796px) {
  .products {
    padding-top: 20rem;
  }
}
.products .list .filter_wrap {
  padding: 0 2vw;
}
.products .list .filter_wrap .series_wrap {
  position: relative;
}
.products .list .filter_wrap .series_wrap h1 button {
  position: relative;
  padding-right: 4.4rem;
  font-size: 3.5rem;
  line-height: 1;
  /*font-weight: 600;*/
}
.products .list .filter_wrap .series_wrap h1 button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("triangle.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.products .list .filter_wrap .series_wrap h1 .open:after {
  transform: rotate(180deg);
}
.products .list .filter_wrap .series_wrap .filter_list {
  position: absolute;
  top: 4.8rem;
  left: -1rem;
  display: none;
  padding: 1.6rem 0;
  width: 35rem;
  background-color: #ffffff;
  border: 1px solid #1A1A1A;
  border-radius: 1.6rem;
  z-index: 2;
}
.products .list .filter_wrap .series_wrap .filter_list li a {
  display: block;
  padding: 1.6rem 2.4rem;
  font-size: 1.8rem;
  line-height: 1;
  /*font-weight: 600;*/
}
.products .list .filter_wrap .series_wrap .filter_list li a:hover {
  background-color: rgba(26, 26, 26, 0.07);
}
.products .list .filter_wrap .series_wrap .filter_list li .active {
  position: relative;
  padding-left: 4.4rem;
}
.products .list .filter_wrap .series_wrap .filter_list li .active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 2.4rem;
  bottom: 0;
  display: block;
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #1A1A1A;
  border-radius: 50%;
}
.products .list .filter_wrap .series_wrap .show {
  display: block;
}
.products .list .filter_wrap .num {
  line-height: 1;
}
@media only screen and (max-width: 796px) {
  .products .list .filter_wrap {
    padding: 0 5vw;
  }
  .products .list .filter_wrap .series_wrap h1 button {
    padding-right: 2.7rem;
    font-size: 2.2rem;
  }
  .products .list .filter_wrap .series_wrap h1 button:after {
    width: 2.2rem;
    height: 2.2rem;
  }
  .products .list .filter_wrap .series_wrap .filter_list {
    top: 2.4rem;
    width: 25rem;
  }
  .products .list .filter_wrap .series_wrap .filter_list li a {
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
  }
}
.products .story .visual_wrap {
  position: relative;
  height: 56.4vw;
  overflow: hidden;
}
.products .story .visual_wrap video {
  width: auto;
  height: 100%;
}
.products .story .visual_wrap .text_wrap {
  position: absolute;
  right: 3rem;
  bottom: 9.6rem;
  padding-left: 3.5rem;
  width: calc(50vw - 6.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.products .story .visual_wrap .text_wrap .text {
  font-size: 2.6rem;
  line-height: 1.5;
  /*font-weight: 600;*/
  color: #ffffff;
}
.products .story .visual_wrap .text_wrap a {
  margin-top: 3.5rem;
  font-size: 1.3rem;
  /*font-weight: 600;*/
}
@media only screen and (max-width: 796px) {
  .products .story .visual_wrap {
    height: 160vw;
  }
  .products .story .visual_wrap .text_wrap {
    right: 5vw;
    bottom: 3.5rem;
    padding-left: 2.4rem;
    width: calc(90vw - 2.5rem);
  }
  .products .story .visual_wrap .text_wrap .text {
    font-size: 1.6rem;
  }
  .products .story .visual_wrap .text_wrap a {
    margin-top: 2.4rem;
  }
}

.product_all .list .list_wrap {
  margin-top: 2.4rem;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  overflow: hidden;
}
.product_all .list .list_wrap .series_title_wrap {
  margin-left: 2vw;
  width: calc(24vw - 1.5px);
  border-left: 1px solid #1A1A1A;
}
.product_all .list .list_wrap .series_title_wrap .title_wrap {
  position: relative;
  width: 100%;
  height: calc(100% - 7.6rem);
}
.product_all .list .list_wrap .series_title_wrap .title_wrap .inner_wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2.4rem 2rem;
  width: calc(100% - 4rem);
}
.product_all .list .list_wrap .series_title_wrap .title_wrap .inner_wrap h2 {
  font-size: 2.4rem;
  line-height: 1.5;
  /*font-weight: 600;*/
}
.product_all .list .list_wrap .series_title_wrap .title_wrap .inner_wrap .text {
  margin-top: 1.2rem;
  font-size: 1.3rem;
  line-height: 1.75;
}
.product_all .list .list_wrap .series_title_wrap .info_wrap {
  position: relative;
  width: 100%;
  height: 7.5rem;
  border-top: 1px solid #1A1A1A;
}
.product_all .list .list_wrap .series_title_wrap .info_wrap a {
  position: relative;
  margin-left: 2.4rem;
}
.product_all .list .list_wrap .series_title_wrap .info_wrap:before {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: calc(-2vw - 0.1rem);
  display: block;
  width: 2vw;
  height: 0.1rem;
  background-color: #1A1A1A;
}
@media only screen and (max-width: 796px) {
  .product_all .list .list_wrap .series_title_wrap {
    margin: auto;
    padding-bottom: 2rem;
    width: 90vw;
    border: none;
  }
  .product_all .list .list_wrap .series_title_wrap .title_wrap {
    height: initial;
  }
  .product_all .list .list_wrap .series_title_wrap .title_wrap .inner_wrap {
    position: relative;
    bottom: initial;
    padding: 2rem 0;
    width: 100%;
  }
  .product_all .list .list_wrap .series_title_wrap .title_wrap .inner_wrap h2 {
    font-size: 2rem;
  }
  .product_all .list .list_wrap .series_title_wrap .info_wrap {
    margin-top: 1.2rem;
    height: initial;
    border-top: none;
  }
  .product_all .list .list_wrap .series_title_wrap .info_wrap a {
    margin-left: 0;
  }
  .product_all .list .list_wrap .series_title_wrap .info_wrap:before {
    content: none;
  }
}
.product_all .list .list_wrap .product_list {
  padding-right: 2vw;
  width: calc(72vw - 1px);
  border-left: 1px solid #1A1A1A;
}
.product_all .list .list_wrap .product_list .swiper-wrapper {
  padding-right: 2vw;
}
.product_all .list .list_wrap .product_list .swiper-wrapper .swiper-slide {
  position: relative;
  width: calc(24vw - 1px);
  border-right: 1px solid #1A1A1A;
}
.product_all .list .list_wrap .product_list .swiper-wrapper .swiper-slide:last-of-type:after {
  content: "";
  position: absolute;
  right: calc(-2vw - 0.1rem);
  bottom: 7.3rem;
  display: block;
  width: 2vw;
  height: 0.1rem;
  background-color: #1A1A1A;
}
@media only screen and (max-width: 796px) {
  .product_all .list .list_wrap .product_list {
    padding: 0;
    width: 100vw;
    border-top: 1px solid #1A1A1A;
  }
  .product_all .list .list_wrap .product_list .swiper-wrapper {
    padding: 0;
  }
  .product_all .list .list_wrap .product_list .swiper-wrapper .swiper-slide {
    width: calc(74vw - 2px);
  }
  .product_all .list .list_wrap .product_list .swiper-wrapper .swiper-slide:first-of-type {
    margin-left: 5vw;
    border-left: 1px solid #1A1A1A;
  }
  .product_all .list .list_wrap .product_list .swiper-wrapper .swiper-slide:first-of-type:before {
    content: "";
    position: absolute;
    left: calc(-5vw - 1px);
    bottom: 7.3rem;
    display: block;
    width: 5vw;
    height: 0.1rem;
    background-color: #1A1A1A;
  }
  .product_all .list .list_wrap .product_list .swiper-wrapper .swiper-slide:last-of-type {
    margin-right: 5vw;
  }
  .product_all .list .list_wrap .product_list .swiper-wrapper .swiper-slide:last-of-type:after {
    right: calc(-5vw - 1px);
    bottom: 7.3rem;
    width: 5vw;
  }
}

.series_all {
  padding-bottom: 0;
}
.series_all .list .list_wrap {
  margin-top: 2.4rem;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  overflow: hidden;
}
.series_all .list .list_wrap .series_list .product {
  width: calc(50vw - 0.5px);
  border-right: 1px solid #1A1A1A;
}
.series_all .list .list_wrap .series_list .product a, .series_all .list .list_wrap .series_list .product div {
  position: relative;
}
.series_all .list .list_wrap .series_list .product a .product_img, .series_all .list .list_wrap .series_list .product div .product_img {
  padding-top: 66%;
}
.series_all .list .list_wrap .series_list .product a .product_img img, .series_all .list .list_wrap .series_list .product div .product_img img {
  width: auto;
  height: 100%;
}
.series_all .list .list_wrap .series_list .product a .info_wrap, .series_all .list .list_wrap .series_list .product div .info_wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-bottom: 2.4rem;
  width: calc(100% - 4rem);
  height: initial;
  z-index: 1;
  border-top: none;
}
.series_all .list .list_wrap .series_list .product a .info_wrap .detail_wrap, .series_all .list .list_wrap .series_list .product div .info_wrap .detail_wrap {
  width: 46%;
}
.series_all .list .list_wrap .series_list .product a .info_wrap .detail_wrap .name, .series_all .list .list_wrap .series_list .product div .info_wrap .detail_wrap .name {
  font-size: 1.5rem;
}
.series_all .list .list_wrap .series_list .product:nth-of-type(2n) {
  border-right: none;
}
.series_all .list .list_wrap .series_list .product:nth-of-type(n+3) {
  border-top: 1px solid #1A1A1A;
}
.series_all .list .list_wrap .series_list .product:first-of-type {
  position: relative;
}
.series_all .list .list_wrap .series_list .product:first-of-type:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}
.series_all .list .list_wrap .series_list .product:first-of-type .info_wrap .detail_wrap h2,
.series_all .list .list_wrap .series_list .product:first-of-type .info_wrap .detail_wrap .description {
  color: #FFFFFF;
}
.series_all .list .list_wrap .series_list .product:first-of-type div .product_img:after, .series_all .list .list_wrap .series_list .product:nth-of-type(even):last-of-type div .product_img:after {
  content: none;
}
.series_all .list .list_wrap .series_list .product:first-of-type div .product_img img, .series_all .list .list_wrap .series_list .product:nth-of-type(even):last-of-type div .product_img img {
  width: 100%;
  height: auto;
}
.series_all .list .list_wrap .series_list .product:first-of-type div .info_wrap .detail_wrap h2, .series_all .list .list_wrap .series_list .product:nth-of-type(even):last-of-type div .info_wrap .detail_wrap h2 {
  font-size: 2.4rem;
  line-height: 1.5;
  /*font-weight: 600;*/
}
.series_all .list .list_wrap .series_list .product:first-of-type div .info_wrap .detail_wrap .description, .series_all .list .list_wrap .series_list .product:nth-of-type(even):last-of-type div .info_wrap .detail_wrap .description {
  margin-top: 1.2rem;
  line-height: 1.75;
}
@media only screen and (max-width: 796px) {
  .series_all .list .list_wrap .series_list .product {
    width: 100vw;
    border-right: none;
  }
  .series_all .list .list_wrap .series_list .product a .product_img, .series_all .list .list_wrap .series_list .product div .product_img {
    padding-top: 90%;
  }
  .series_all .list .list_wrap .series_list .product a .info_wrap, .series_all .list .list_wrap .series_list .product div .info_wrap {
    padding-bottom: 1.6rem;
    width: 90vw;
  }
  .series_all .list .list_wrap .series_list .product a .info_wrap .detail_wrap, .series_all .list .list_wrap .series_list .product div .info_wrap .detail_wrap {
    width: 70%;
  }
  .series_all .list .list_wrap .series_list .product:nth-of-type(n+2) {
    border-top: 1px solid #1A1A1A;
  }
  .series_all .list .list_wrap .series_list .product:first-of-type div .product_img img, .series_all .list .list_wrap .series_list .product:nth-of-type(even):last-of-type div .product_img img {
    width: auto;
    height: 100%;
  }
  .series_all .list .list_wrap .series_list .product:first-of-type div .info_wrap .detail_wrap h2, .series_all .list .list_wrap .series_list .product:nth-of-type(even):last-of-type div .info_wrap .detail_wrap h2 {
    font-size: 2rem;
  }
}

.product_detail {
  min-width: 105rem;
}
@media only screen and (max-width: 796px) {
  .product_detail {
    min-width: initial;
  }
}
.product_detail .fixed_cart_button_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product_detail .fixed_cart_button_wrap .fixed {
  position: fixed;
  right: 0;
  margin-top: calc(100vh - 11.6rem);
  width: 42rem;
  z-index: 5;
  overflow: hidden;
}
@media only screen and (max-width: 796px) {
  .product_detail .fixed_cart_button_wrap .fixed {
    top: initial;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 90vw;
  }
}
.product_detail .fixed_cart_button {
  padding: 1.2rem 0;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 1.6rem 1.6rem 0 0;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
  z-index: 5;
}
@media only screen and (max-width: 796px) {
  .product_detail .fixed_cart_button {
    margin-top: initial;
    padding-bottom: 2.4rem;
    transform: translateY(100%);
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.15);
  }
}
.product_detail .fixed_cart_button.show {
  transform: translateY(0%);
}
@media only screen and (max-width: 796px) {
  .product_detail .fixed_cart_button.show {
    transform: translateY(0);
  }
}
.product_detail .fixed_cart_button .product_img {
  width: 22%;
}
.product_detail .fixed_cart_button .info_wrap {
  width: 39%;
}
.product_detail .fixed_cart_button .info_wrap h3 {
  line-height: 1.5;
}
.product_detail .fixed_cart_button .info_wrap .color {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  line-height: 1;
}
.product_detail .fixed_cart_button .info_wrap .color_list {
  margin-top: 1.2rem;
}
.product_detail .fixed_cart_button .info_wrap .color_list li {
  margin-left: 1.2rem;
  padding: 0.4rem;
  border-radius: 50%;
}
.product_detail .fixed_cart_button .info_wrap .color_list li a {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
}
.product_detail .fixed_cart_button .info_wrap .color_list li:first-of-type {
  margin-left: 0;
}
.product_detail .fixed_cart_button .info_wrap .color_list .now_selected {
  border: 1px solid #1A1A1A;
}
.product_detail .fixed_cart_button .button_wrap {
  margin-right: 2rem;
  width: 30%;
  text-align: center;
  background-color: #1A1A1A;
  border-radius: 10rem;
}
.product_detail .fixed_cart_button .button_wrap:hover {
  background-color: #000000;
}
.product_detail .fixed_cart_button .button_wrap a {
  padding: 1rem 0;
  font-size: 1.3rem;
  line-height: 1;
  /*font-weight: 600;*/
  color: #FFFFFF;
}
.product_detail .fixed_cart_button .button_wrap a .price {
  margin-top: 0.4rem;
  font-size: 1.1rem;
  line-height: 1;
  color: #FFFFFF;
}
@media only screen and (max-width: 796px) {
  .product_detail .fixed_cart_button .button_wrap a {
    font-size: 1.1rem;
  }
  .product_detail .fixed_cart_button .button_wrap a .price {
    font-size: 1rem;
  }
}
.product_detail .mv {
  /*background-color: #F8F5F4;*/
}
.product_detail .mv .mv_wrap {
  position: relative;
  margin-left: 10vw;
}
@media only screen and (max-width: 796px) {
  .product_detail .mv .mv_wrap {
    margin-left: 0;
    padding-top: 9.6rem;
  }
}
.product_detail .mv .mv_wrap .text_wrap {
  margin-top: 18rem;
  padding: 2.4rem 0 9.6rem;
  width: 39vw;
}
.product_detail .mv .mv_wrap .text_wrap h2 {
  font-size: 1.3rem;
  line-height: 1;
}
.product_detail .mv .mv_wrap .text_wrap h1 {
  margin-top: 1.2rem;
  font-size: 3.5rem;
  line-height: 1.5;
}
.product_detail .mv .mv_wrap .text_wrap .color_wrap {
  margin-top: 2.4rem;
}
.product_detail .mv .mv_wrap .text_wrap .color_wrap .color {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}
.product_detail .mv .mv_wrap .text_wrap .color_wrap .color_list {
  margin-top: 1.6rem;
}
.product_detail .mv .mv_wrap .text_wrap .color_wrap .color_list li {
  margin-left: 1.2rem;
  padding: 0.6rem;
  border-radius: 50%;
}
.product_detail .mv .mv_wrap .text_wrap .color_wrap .color_list li a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}
.product_detail .mv .mv_wrap .text_wrap .color_wrap .color_list li:first-of-type {
  margin-left: 0;
}
.product_detail .mv .mv_wrap .text_wrap .color_wrap .color_list .now_selected {
  border: 1px solid #1A1A1A;
}
.product_detail .mv .mv_wrap .text_wrap .title_wrap .ja, .product_detail .mv .mv_wrap .text_wrap .title_wrap .en {
  font-size: 1.3rem;
  line-height: 1;
}
@media only screen and (max-width: 796px) {
  .product_detail .mv .mv_wrap .text_wrap {
    margin-top: 0;
    padding: 2.4rem 5vw 6rem;
    width: 90vw;
  }
  .product_detail .mv .mv_wrap .text_wrap h2 {
    font-size: 1.1rem;
  }
  .product_detail .mv .mv_wrap .text_wrap h1 {
    font-size: 2.2rem;
  }
  .product_detail .mv .mv_wrap .text_wrap .color_wrap .color_list {
    margin-bottom: 1.2rem;
    order: -1;
  }
  .product_detail .mv .mv_wrap .text_wrap .title_wrap .ja, .product_detail .mv .mv_wrap .text_wrap .title_wrap .en {
    font-size: 1.1rem;
  }
}
.product_detail .mv .mv_wrap .text_wrap .feature_wrap {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}
.product_detail .mv .mv_wrap .text_wrap .feature_wrap .description_wrap {
  margin-top: 2.4rem;
  width: 80%;
}
@media only screen and (max-width: 796px) {
  .product_detail .mv .mv_wrap .text_wrap .feature_wrap .description_wrap {
    width: 100%;
  }
}
.product_detail .mv .mv_wrap .text_wrap .feature_wrap .description_wrap a {
  margin-top: 2.4rem;
  padding: 2.4rem 0;
  width: 100%;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  background-color: #1A1A1A;
  border-radius: 0.6rem;
}
.product_detail .mv .mv_wrap .text_wrap .feature_wrap .description_wrap a:hover {
  background-color: #000000;
}
.product_detail .mv .mv_wrap .text_wrap .feature_wrap .description_wrap .sngle_product_form {
  padding: 0;
}
.product_detail .mv .mv_wrap .text_wrap .feature_wrap .description_wrap .sngle_product_form button {
  margin-top: 2.4rem;
  padding: 2.4rem 0;
  width: 100%;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  background-color: #1A1A1A;
  border-radius: 0.6rem;
}
.product_detail .mv .mv_wrap .text_wrap .feature_wrap .description_wrap .sngle_product_form button:hover {
  background-color: #000000;
}
.product_detail .mv .mv_wrap .text_wrap .notes_wrap {
  margin-top: 4.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}
.product_detail .mv .mv_wrap .text_wrap .notes_wrap .detail_wrap {
  margin-top: 2.4rem;
}
.product_detail .mv .mv_wrap .text_wrap .notes_wrap .detail_wrap:first-of-type {
  margin-top: 3.5rem;
}
.product_detail .mv .mv_wrap .text_wrap .notes_wrap .detail_wrap .title {
  font-size: 1.3rem;
  line-height: 1;
}
.product_detail .mv .mv_wrap .text_wrap .notes_wrap .detail_wrap .description {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.6);
  white-space: pre-wrap;
}
@media only screen and (max-width: 796px) {
  .product_detail .mv .mv_wrap .text_wrap .notes_wrap .detail_wrap .title,
.product_detail .mv .mv_wrap .text_wrap .notes_wrap .detail_wrap .description {
    font-size: 1.1rem;
  }
}
.product_detail .mv .mv_wrap .img_wrap {
  position: relative;
  width: 50vw;
  height: 100vh;
}
.product_detail .mv .mv_wrap .img_wrap:before {
  content: "";
  position: fixed;
  top: 0;
  left: calc(10vw - 100%);
  display: block;
  width: 39vw;
  height: 18rem;
  background-color: #F8F5F4;
  border-bottom: 1px solid #1A1A1A;
}
.product_detail .mv .mv_wrap .img_wrap .product_img {
  height: 100%;
}
@media only screen and (max-width: 796px) {
  .product_detail .mv .mv_wrap .img_wrap {
    width: 100%;
    height: initial;
    order: -1;
  }
  .product_detail .mv .mv_wrap .img_wrap:before {
    content: none;
  }
}
.product_detail .product_visual {
  position: relative;
  height: 56.25vw;
}
.product_detail .product_visual .visual_list {
  width: auto;
  height: 100%;
}
.product_detail .product_visual .visual_list .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.13, 0.93, 0.01, 0.66);
}
.product_detail .product_visual .visual_list .swiper-wrapper .swiper-slide {
  margin-left: -0.5%;
  width: 100%;
  height: 100%;
}
.product_detail .product_visual .visual_list .swiper-wrapper .swiper-slide .product_img {
  padding-top: 100%;
}
.product_detail .product_visual .visual_list .swiper-wrapper .swiper-slide .product_img img {
	width: auto;
  max-width: initial;
  transition: none;
}
.product_detail .product_visual .visual_list .prev-button {
  left: 10vw !important;
}
.product_detail .product_visual .visual_list .next-button {
  right: 10vw !important;
}
.product_detail .product_visual .nav_wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.8rem;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  margin: auto;
  width: fit-content;
  height: 6.9rem;
  border-radius: 10rem;
  z-index: 1;
}
.product_detail .product_visual .nav_wrap .nav_list {
  margin: 1.2rem 2rem;
}
.product_detail .product_visual .nav_wrap .nav_list .swiper-slide {
  position: relative;
  margin-right: 0.4rem;
  padding: 0.7rem;
  width: 3rem !important;
  height: 3rem;
  cursor: pointer;
}
.product_detail .product_visual .nav_wrap .nav_list .swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  opacity: 0;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 50%;
}
.product_detail .product_visual .nav_wrap .nav_list .swiper-slide svg {
  position: absolute;
  top: 0;
  left: 0;
}
.product_detail .product_visual .nav_wrap .nav_list .swiper-slide .animation_circle {
  position: absolute;
  top: -1px;
  left: -1px;
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  transition: stroke-dashoffset 4s cubic-bezier(0.55, 0.05, 0.22, 0.99) -2s;
}
.product_detail .product_visual .nav_wrap .nav_list .swiper-slide .product_img {
  padding-top: 100%;
  border-radius: 50%;
}
.product_detail .product_visual .nav_wrap .nav_list .swiper-slide:last-of-type {
  margin-right: 0;
}
.product_detail .product_visual .nav_wrap .nav_list .active:before {
  opacity: 1;
}
.product_detail .product_visual .nav_wrap .nav_list .active .animation_circle {
  transition-duration: 16s;
  transition-delay: -1s;
  stroke-dashoffset: 0;
}
@media only screen and (max-width: 796px) {
  .product_detail .product_visual {
    height: 133vw;
  }
  .product_detail .product_visual .visual_list .swiper-wrapper .swiper-slide {
    margin-left: 0;
  }
  .product_detail .product_visual .visual_list .swiper-wrapper .swiper-slide .product_img {
    padding-top: 133vw;
  }
  .product_detail .product_visual .visual_list .prev-button,
.product_detail .product_visual .visual_list .next-button {
    display: none;
  }
  .product_detail .product_visual .nav_wrap {
    bottom: 2.4rem;
    height: 5.1rem;
  }
  .product_detail .product_visual .nav_wrap .nav_list {
    margin: 0.8rem 1.6rem;
  }
  .product_detail .product_visual .nav_wrap .nav_list .swiper-slide {
    padding: 0.5rem;
    width: 2.5rem !important;
    height: 2.5rem;
  }
}
.product_detail .information {
  padding: 9.6rem 3rem;
}
@media only screen and (max-width: 796px) {
  .product_detail .information {
    padding: 4.8rem 5vw;
  }
}
.product_detail .information video {
  width: auto;
  height: 100%;
}
.product_detail .information .video_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  z-index: -1;
  background-color: #EBE5D8;
}
.product_detail .information .video_modal .close_button {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 6rem;
  height: 6rem;
  background-image: url("close.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 796px) {
  .product_detail .information .video_modal .close_button {
    top: 5vw;
    right: 5vw;
  }
}
.product_detail .information .video_modal .modal_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 72vw;
  height: 69vh;
}
.product_detail .information .video_modal .modal_wrap .video_wrap {
  position: relative;
  padding-top: 69vh;
  overflow: hidden;
}
@media only screen and (max-width: 796px) {
  .product_detail .information .video_modal .modal_wrap {
    width: 90vw;
    height: 33vh;
  }
  .product_detail .information .video_modal .modal_wrap .video_wrap {
    padding-top: 33vh;
  }
}
.product_detail .information .play {
  opacity: 1;
  z-index: 10;
}
.product_detail .information .video_button {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
}
.product_detail .information .video_button .ratio_fixed {
  background-color: #000;
}
.product_detail .information .video_button .title_wrap {
  position: absolute;
  top: 0;
  left: 6rem;
  bottom: 0;
  margin: auto;
  width: 30%;
  text-align: left;
  z-index: 1;
}
.product_detail .information .video_button .title_wrap h3 {
  font-size: 5.5rem;
  line-height: 1.25;
  color: #ffffff;
}
.product_detail .information .video_button .title_wrap .text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #ffffff;
}
.product_detail .information .video_button .triangle {
  position: absolute;
  top: 0;
  right: 3rem;
  bottom: 0;
  margin: auto;
  width: 25vw;
  height: 25vw;
  z-index: 1;
}
.product_detail .information .video_button .triangle .circle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.product_detail .information .video_button .triangle .circle_animation {
  stroke-dasharray: 1200;
  animation: default_circle_animation 1s ease-out forwards;
}
@keyframes default_circle_animation {
  0% {
    stroke-dashoffset: 0;
    transform: rotate(20deg);
  }
  100% {
    stroke-dashoffset: 1200;
    transform: rotate(-180deg);
  }
}
.product_detail .information .video_button .triangle .triangle_button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
  border-radius: 50%;
  z-index: 0;
}
.product_detail .information .video_button .triangle .triangle_button i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  overflow: hidden;
  z-index: 1;
}
.product_detail .information .video_button .triangle .triangle_button i:before, .product_detail .information .video_button .triangle .triangle_button i:after {
  content: "";
  position: absolute;
  top: calc(50% - 2.4rem);
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-out;
}
.product_detail .information .video_button .triangle .triangle_button i:before {
  transform: translateX(-100%);
  background-image: url("play.svg");
}
.product_detail .information .video_button .triangle .triangle_button i:after {
  background-image: url("play.svg");
}
.product_detail .information .video_button:hover .triangle .circle_animation {
  animation: circle_animation 1s ease-out forwards;
}
@keyframes circle_animation {
  0% {
    stroke-dashoffset: 1200;
    transform: rotate(-180deg);
  }
  100% {
    stroke-dashoffset: 0;
    transform: rotate(20deg);
  }
}
.product_detail .information .video_button:hover .triangle .triangle_button i:before {
  transform: translateX(0);
}
.product_detail .information .video_button:hover .triangle .triangle_button i:after {
  transform: translateX(100%);
}
@media only screen and (max-width: 796px) {
  .product_detail .information .video_button .ratio_fixed {
    padding-top: 70%;
  }
  .product_detail .information .video_button .title_wrap {
    left: 2rem;
    width: 55%;
  }
  .product_detail .information .video_button .title_wrap h3 {
    font-size: 2.2rem;
  }
  .product_detail .information .video_button .title_wrap .text {
    font-size: 1.3rem;
  }
}
.product_detail .information ul {
  position: relative;
  margin-top: 9.6rem;
  display: block;
  z-index: 1;
}
.product_detail .information ul li .img_wrap {
  width: 48%;
}
.product_detail .information ul li .img_wrap .ratio_fixed {
  padding-top: 100%;
}
.product_detail .information ul li .text_wrap {
  padding-left: 3rem;
  width: calc(48% - 3rem);
}
.product_detail .information ul li .text_wrap .inner_wrap {
  width: 77.5%;
}
.product_detail .information ul li .text_wrap .inner_wrap .sub_title {
  font-size: 1.3rem;
  line-height: 1;
}
.product_detail .information ul li .text_wrap .inner_wrap h4 {
  margin-top: 1.6rem;
  font-size: 2.6rem;
  line-height: 1.5;
}
.product_detail .information ul li .text_wrap .inner_wrap .description {
  margin-top: 1.6rem;
}
.product_detail .information ul li .text_wrap .inner_wrap .description p {
  font-family: "Noto Sans JP";
}
.product_detail .information ul li .text_wrap .inner_wrap .description p:not(:first-of-type) {
  margin-top: 1.6rem;
}
.product_detail .information ul li .text_wrap .inner_wrap .description a {
  text-decoration: underline;
  text-underline-offset: 0.4rem;
}
.product_detail .information ul li:not(:first-of-type) {
  margin-top: 3rem;
}
.product_detail .information ul li:nth-of-type(2n) .text_wrap {
  order: -1;
}
@media only screen and (max-width: 796px) {
  .product_detail .information ul {
    margin-top: 4.8rem;
  }
  .product_detail .information ul li .img_wrap {
    width: 100%;
  }
  .product_detail .information ul li .text_wrap {
    padding-left: 0;
    width: 100%;
  }
  .product_detail .information ul li .text_wrap .inner_wrap {
    width: 100%;
  }
  .product_detail .information ul li .text_wrap .inner_wrap .sub_title {
    margin-top: 2rem;
    font-size: 1.1rem;
  }
  .product_detail .information ul li .text_wrap .inner_wrap h4 {
    margin-top: 1.2rem;
    font-size: 1.6rem;
  }
  .product_detail .information ul li .text_wrap .inner_wrap .description {
    margin-top: 1.2rem;
  }
  .product_detail .information ul li .text_wrap .inner_wrap .description p:not(:first-of-type) {
    margin-top: 1.2rem;
  }
  .product_detail .information ul li:nth-of-type(2n) .text_wrap {
    order: 1;
  }
}
.product_detail .related {
  padding: 15rem 0 13.9rem;
}
.product_detail .related h3 {
  padding-left: 3rem;
  font-size: 3.5rem;
  line-height: 1;
}
.product_detail .related .related_list {
  margin-top: 2.4rem;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}
.product_detail .related .related_list .swiper-wrapper {
  padding: 0 3rem;
  width: calc(100vw - 6rem);
}
.product_detail .related .related_list .swiper-wrapper .swiper-slide {
  width: calc(24vw - 2px);
  border-right: 1px solid #1A1A1A;
}
.product_detail .related .related_list .swiper-wrapper .swiper-slide:first-of-type {
  border-left: 1px solid #1A1A1A;
}
.product_detail .related .related_list .swiper-wrapper .swiper-slide:first-of-type:before {
  content: "";
  position: absolute;
  left: calc(-3rem - 1px);
  bottom: 7.5rem;
  display: block;
  width: 3rem;
  height: 0.1rem;
  background-color: #1A1A1A;
}
.product_detail .related .related_list .swiper-wrapper .swiper-slide:last-of-type:after {
  content: "";
  position: absolute;
  right: calc(-3rem - 1px);
  bottom: 7.5rem;
  display: block;
  width: 3rem;
  height: 0.1rem;
  background-color: #1A1A1A;
}
@media only screen and (max-width: 796px) {
  .product_detail .related {
    padding: 7.2rem 0 9.6rem;
  }
  .product_detail .related h3 {
    padding-left: 5vw;
    font-size: 2.2rem;
  }
  .product_detail .related .related_list {
    margin-top: 2rem;
    padding: 0;
    width: 100vw;
  }
  .product_detail .related .related_list .swiper-wrapper {
    padding: 0;
    width: initial;
  }
  .product_detail .related .related_list .swiper-wrapper .swiper-slide {
    position: relative;
    width: calc(74vw - 2px);
  }
  .product_detail .related .related_list .swiper-wrapper .swiper-slide:first-of-type {
    margin-left: 5vw;
  }
  .product_detail .related .related_list .swiper-wrapper .swiper-slide:first-of-type:before {
    left: calc(-5vw - 1px);
    bottom: 7.3rem;
    width: 5vw;
  }
  .product_detail .related .related_list .swiper-wrapper .swiper-slide:last-of-type {
    margin-right: 5vw;
  }
  .product_detail .related .related_list .swiper-wrapper .swiper-slide:last-of-type:after {
    right: calc(-5vw - 1px);
    bottom: 7.3rem;
    width: 5vw;
  }
}

.page_main {
  padding: 21rem 2vw 15rem 2vw;
}
@media only screen and (max-width: 796px) {
  .page_main {
    padding: 20rem 5vw 7.2rem;
  }
}
.page_main .title_wrap h1 {
  font-size: 3.5rem;
  line-height: 1;
  /*font-weight: 600;*/
}
@media only screen and (max-width: 796px) {
  .page_main .title_wrap h1 {
    font-size: 2.2rem;
  }
}
.page_main .list_wrap {
  margin-top: 6rem;
}
@media only screen and (max-width: 796px) {
  .page_main .list_wrap {
    margin-top: 3.5rem;
  }
}
.page_main .list_wrap .cart_list .half_wrap {
  width: 49%;
}
@media only screen and (max-width: 796px) {
  .page_main .list_wrap .cart_list .half_wrap {
    width: 100%;
  }
}
.page_main .list_wrap .cart_list li {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}
.page_main .list_wrap .cart_list li .product {
  width: 66%;
}
.page_main .list_wrap .cart_list li .product .product_img {
  width: 22%;
}
.page_main .list_wrap .cart_list li .product .detail_wrap {
  margin-left: 5%;
  width: 48%;
}
.page_main .list_wrap .cart_list li .product .detail_wrap .name {
  line-height: 1;
  /*font-weight: 600;*/
}
.page_main .list_wrap .cart_list li .product .detail_wrap button {
  margin-top: 1.5rem;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 0.8rem;
}
.page_main .list_wrap .cart_list li .price {
  width: 24%;
  line-height: 1;
}
.page_main .list_wrap .cart_list li .num {
  width: 15%;
}
.page_main .list_wrap .cart_list li .num input {
  display: block;
  padding: 1.2rem;
  width: calc(100% - 2.4rem);
  font-size: 1.5rem;
  line-height: 1;
  outline: none;
  border: 1px solid rgba(26, 26, 26, 0.2);
}
.page_main .list_wrap .cart_list li .subtotal {
  width: 25%;
  font-size: 2.4rem;
  line-height: 1;
  text-align: right;
}
.page_main .list_wrap .cart_list li .yen {
  margin-left: 0.4rem;
  line-height: 1;
  /*font-weight: 600;*/
}
.page_main .list_wrap .cart_list li:first-of-type {
  padding-bottom: 1.2rem;
}
.page_main .list_wrap .cart_list li.subtotal_wrap {
  margin-left: auto;
  padding: 2.4rem 0 0.6rem;
  border-bottom: none;
}
.page_main .list_wrap .cart_list li.subtotal_wrap .title {
  /*font-weight: 600;*/
}
.page_main .list_wrap .cart_list li.subtotal_wrap .subtotal {
  font-size: 1.5rem;
}
.page_main .list_wrap .cart_list li.postage_wrap {
  margin-left: auto;
  padding: 0.6rem 0 2.4rem;
}
.page_main .list_wrap .cart_list li.postage_wrap .title {
  /*font-weight: 600;*/
}
.page_main .list_wrap .cart_list li.total_wrap {
  margin-left: auto;
  padding: 3.5rem 0 6rem;
  border-bottom: none;
}
.page_main .list_wrap .cart_list li.total_wrap .total {
  font-size: 2.4rem;
  line-height: 1;
  /*font-weight: 600;*/
}
@media only screen and (max-width: 796px) {
  .page_main .list_wrap .cart_list li {
    padding: 1.2rem 0;
  }
  .page_main .list_wrap .cart_list li .product {
    margin-bottom: 1.2rem;
    width: 74%;
  }
  .page_main .list_wrap .cart_list li .product .product_img {
    width: 30%;
  }
  .page_main .list_wrap .cart_list li .product .detail_wrap {
    width: 65%;
  }
  .page_main .list_wrap .cart_list li .product .detail_wrap .name {
    font-size: 1.5rem;
  }
  .page_main .list_wrap .cart_list li .product .detail_wrap button {
    font-size: 1.3rem;
  }
  .page_main .list_wrap .cart_list li .price {
    margin-bottom: 1.2rem;
    width: 25%;
    text-align: right;
  }
  .page_main .list_wrap .cart_list li .num {
    position: relative;
    width: 48%;
  }
  .page_main .list_wrap .cart_list li .num:before {
    content: "数量";
    position: absolute;
    top: 0;
    left: 2.4rem;
    bottom: 0;
    display: block;
    margin: auto;
    height: 1.3rem;
    font-size: 1.3rem;
    line-height: 1;
  }
  .page_main .list_wrap .cart_list li .num input {
    margin-left: auto;
    padding: 0.8rem;
    width: calc(48% - 1.6rem);
  }
  .page_main .list_wrap .cart_list li .yen {
    font-size: 1.5rem;
  }
  .page_main .list_wrap .cart_list li:first-of-type {
    display: none;
  }
  .page_main .list_wrap .cart_list li:nth-of-type(2) {
    border-top: 1px solid rgba(26, 26, 26, 0.2);
  }
}
.page_main .list_wrap .last {
  padding-top: 3.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}
.page_main .list_wrap .last .back i:before {
  transform: translateX(100%) rotate(180deg);
}
.page_main .list_wrap .last .back i:after {
  transform: rotate(180deg);
}
.page_main .list_wrap .last .back:hover i:before {
  transform: translateX(0) rotate(180deg);
}
.page_main .list_wrap .last .back:hover i:after {
  transform: translateX(-100%) rotate(180deg);
}
.page_main .list_wrap .last .payment {
  padding: 2.4rem 0;
  width: 30vw;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  background-color: #1A1A1A;
  border-radius: 0.6rem;
}
.page_main .list_wrap .last .payment:hover {
  background-color: #000000;
}
@media only screen and (max-width: 796px) {
  .page_main .list_wrap .last .back {
    margin-top: 2.4rem;
  }
  .page_main .list_wrap .last .payment {
    padding: 1.5rem 0;
    width: 100%;
    order: -1;
  }
}

.news_all .list {
  padding: 21rem 2vw 11rem 2vw;
}
@media only screen and (max-width: 796px) {
  .news_all .list {
    padding: 20rem 5vw 7.2rem;
  }
}
.news_all .list .title_wrap .border {
  padding-left: 2rem;
  padding-bottom: 1.6rem;
  border-left: 1px solid #1A1A1A;
}
.news_all .list .title_wrap .border h1 {
  font-size: 3.5rem;
  line-height: 1;
  /*font-weight: 600;*/
}
.news_all .list .title_wrap .border .category_list {
  margin-top: 6rem;
}
.news_all .list .title_wrap .border .category_list li {
  margin-bottom: 2.4rem;
  width: 100%;
}
.news_all .list .title_wrap .border .category_list li:last-of-type {
  margin-bottom: 0;
}
.news_all .list .title_wrap .border .category_list li a {
  display: block;
  line-height: 1;
  color: rgba(26, 26, 26, 0.4);
}
.news_all .list .title_wrap .border .category_list li .active {
  color: #1A1A1A;
}
@media only screen and (max-width: 796px) {
  .news_all .list .title_wrap {
    width: 100%;
  }
  .news_all .list .title_wrap .border {
    padding-left: 0;
    padding-bottom: 2rem;
    border-left: none;
    border-bottom: 1px solid #1A1A1A;
  }
  .news_all .list .title_wrap .border h1 {
    font-size: 2.2rem;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
    writing-mode: initial;
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
  }
  .news_all .list .title_wrap .border .category_list {
    margin-top: 3.5rem;
  }
  .news_all .list .title_wrap .border .category_list li {
    margin-right: 2.4rem;
    margin-bottom: 0;
    width: auto;
  }
  .news_all .list .title_wrap .border .category_list li:last-of-type {
    margin-right: 0;
  }
  .news_all .list .title_wrap .border .category_list li a {
    display: inline-block;
  }
}
.news_all .list .list_wrap {
  width: 48vw;
}
@media only screen and (max-width: 796px) {
  .news_all .list .list_wrap {
    width: 100%;
  }
}
.news_all .list .list_wrap .news_list li {
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}
.news_all .list .list_wrap .news_list li a {
  display: block;
  padding: 2.4rem 0;
}
.news_all .list .list_wrap .news_list li a article .article_info {
  margin-bottom: 1.2rem;
}
.news_all .list .list_wrap .news_list li a article .article_info .date {
  margin-right: 0.4rem;
  width: 7rem;
  font-size: 1.3rem;
  line-height: 1;
}
.news_all .list .list_wrap .news_list li a article .article_info .category {
  padding: 0.4rem 0.6rem;
  font-size: 1.1rem;
  line-height: 1;
  border: 1px solid #1A1A1A;
  border-radius: 0.5rem;
}
.news_all .list .list_wrap .news_list li a article .article_info .important {
  color: #ffffff;
  background-color: #1A1A1A;
}
.news_all .list .list_wrap .news_list li a article .title {
  font-size: 1.5rem;
  line-height: 1.5;
  /*font-weight: 600;*/
}
.news_all .list .list_wrap .news_list li:first-of-type a {
  padding-top: 0;
}
@media only screen and (max-width: 796px) {
  .news_all .list .list_wrap .news_list {
    margin-top: 3.5rem;
  }
  .news_all .list .list_wrap .news_list li a {
    padding: 1.6rem 0;
  }
  .news_all .list .list_wrap .news_list li a article .title {
    font-size: 1.3rem;
  }
}
.news_all .list .list_wrap .pagination_wrap {
  margin-top: 3.5rem;
}
.news_all .list .list_wrap .pagination_wrap .pagination .nav-links {
  display: flex;
  
  
  align-items: center;
  -webkit-align-items: center;
  
  -ms-align-items: center;
  
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
}
.news_all .list .list_wrap .pagination_wrap .pagination .nav-links a, .news_all .list .list_wrap .pagination_wrap .pagination .nav-links .current {
  margin-left: 3.5rem;
  line-height: 1;
  opacity: 0.4;
}
.news_all .list .list_wrap .pagination_wrap .pagination .nav-links .prev {
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("pager.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  opacity: 1;
}
.news_all .list .list_wrap .pagination_wrap .pagination .nav-links .current {
  opacity: 1;
}
.news_all .list .list_wrap .pagination_wrap .pagination .nav-links .next {
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("pager.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
}

.news .inner_wrap {
  padding: 21rem 0 15rem 2vw;
}
@media only screen and (max-width: 796px) {
  .news .inner_wrap {
    padding: 20rem 0 7.2rem 5vw;
  }
}
.news .inner_wrap .pagination_wrap {
  margin-right: 2vw;
}
@media only screen and (max-width: 796px) {
  .news .inner_wrap .pagination_wrap {
    margin-right: 5vw;
  }
}
.news .inner_wrap .pagination_wrap .to_top {
  position: relative;
  padding: 0.3rem 0 0.3rem 2.2rem;
  font-size: 1.3rem;
  line-height: 1;
  /*font-weight: 600;*/
  z-index: 0;
}
.news .inner_wrap .pagination_wrap .to_top i {
  position: absolute;
  top: -0.1rem;
  left: 0;
  bottom: 0;
  margin: auto 0;
  display: block;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  z-index: 1;
}
.news .inner_wrap .pagination_wrap .to_top i:before, .news .inner_wrap .pagination_wrap .to_top i:after {
  content: "";
  position: absolute;
  top: calc(50% - 1rem);
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-out;
}
.news .inner_wrap .pagination_wrap .to_top i:before {
  transform: translateX(100%) rotate(180deg);
  background-image: url("arrow_black.svg");
}
.news .inner_wrap .pagination_wrap .to_top i:after {
  transform: rotate(180deg);
  background-image: url("arrow_black.svg");
}
.news .inner_wrap .pagination_wrap .to_top:hover i:before {
  transform: translateX(0) rotate(180deg);
}
.news .inner_wrap .pagination_wrap .to_top:hover i:after {
  transform: translateX(-100%) rotate(180deg);
}
.news .inner_wrap .pagination_wrap .navigation .nav-links {
  display: flex;
  
  
  align-items: center;
  -webkit-align-items: center;
  
  -ms-align-items: center;
  
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
}
.news .inner_wrap .pagination_wrap .navigation .nav-links a {
  margin-left: 1.2rem;
  line-height: 1;
  opacity: 0.4;
}
.news .inner_wrap .pagination_wrap .navigation .nav-links .nav-previous a {
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("pager.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  opacity: 1;
}
.news .inner_wrap .pagination_wrap .navigation .nav-links .nav-next a {
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("pager.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
}
.news .inner_wrap .title_wrap {
  width: 33vw;
}
.news .inner_wrap .title_wrap .top_pagination {
  display: none;
}
.news .inner_wrap .title_wrap .border {
  padding-left: 3.5rem;
  border-left: 1px solid #1A1A1A;
}
.news .inner_wrap .title_wrap .border .article_info .date {
  margin-right: 0.4rem;
  width: 7rem;
  font-size: 1.3rem;
  line-height: 1;
}
.news .inner_wrap .title_wrap .border .article_info .category {
  padding: 0.4rem 0.6rem;
  font-size: 1.1rem;
  line-height: 1;
  border: 1px solid #1A1A1A;
  border-radius: 0.5rem;
}
.news .inner_wrap .title_wrap .border .article_info .important {
  color: #ffffff;
  background-color: #1A1A1A;
}
.news .inner_wrap .title_wrap .border h1 {
  margin-top: 1.6rem;
  font-size: 3.5rem;
  line-height: 1.5;
  /*font-weight: 600;*/
}
.news .inner_wrap .title_wrap .border .share_wrap {
  margin-top: 12rem;
}
.news .inner_wrap .title_wrap .border .share_wrap .en {
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.6);
}
.news .inner_wrap .title_wrap .border .share_wrap .sns_list {
  margin-top: 1.2rem;
}
.news .inner_wrap .title_wrap .border .share_wrap .sns_list li {
  margin-right: 0.8rem;
}
.news .inner_wrap .title_wrap .border .share_wrap .sns_list li:last-of-type {
  margin-right: 0;
}
.news .inner_wrap .title_wrap .border .share_wrap .sns_list li a {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid #1A1A1A;
  border-radius: 50%;
}
.news .inner_wrap .title_wrap .border .share_wrap .sns_list li a svg {
  display: block;
  margin: auto;
  width: 2.4rem;
  height: 2.4rem;
}
.news .inner_wrap .title_wrap .border .share_wrap .sns_list li a:hover {
  background-color: #1A1A1A;
}
.news .inner_wrap .title_wrap .border .share_wrap .sns_list li a:hover svg path {
  fill: #ffffff;
}
@media only screen and (max-width: 796px) {
  .news .inner_wrap .title_wrap {
    margin-right: auto;
    width: 90vw;
  }
  .news .inner_wrap .title_wrap .top_pagination {
    display: flex;
    
    
  }
  .news .inner_wrap .title_wrap .border {
    margin-top: 3rem;
    padding-left: 0;
    padding-bottom: 2rem;
    border-left: none;
    border-bottom: 1px solid #1A1A1A;
  }
  .news .inner_wrap .title_wrap .border h1 {
    margin-top: 1.2rem;
    font-size: 2.2rem;
  }
  .news .inner_wrap .title_wrap .border .share_wrap {
    margin-top: 3.5rem;
  }
}
.news .inner_wrap .contents_wrap {
  width: 49vw;
}
.news .inner_wrap .contents_wrap .thumbnail_wrap {
  margin-top: 1.2rem;
  margin-bottom: 7.2rem;
}
.news .inner_wrap .contents_wrap .sentence_wrap {
  margin-right: auto;
  margin-bottom: 7.2rem;
  width: 39vw;
}
.news .inner_wrap .contents_wrap .sentence_wrap h2 {
  margin-top: 7.2rem;
  font-size: 2.6rem;
  line-height: 1.5;
  /*font-weight: 600;*/
}
.news .inner_wrap .contents_wrap .sentence_wrap p {
  font-family: "Noto Sans JP";
  margin-top: 2.4rem;
  font-feature-settings: initial;
}
.news .inner_wrap .contents_wrap .sentence_wrap a {
  font-family: "Noto Sans JP";
  font-feature-settings: initial;
  text-decoration: underline;
}
.news .inner_wrap .contents_wrap .bottom_pagination {
  padding-top: 2.4rem;
  border-top: 1px solid #1A1A1A;
}
@media only screen and (max-width: 796px) {
  .news .inner_wrap .contents_wrap {
    width: 95vw;
  }
  .news .inner_wrap .contents_wrap .top_pagination {
    display: none;
  }
  .news .inner_wrap .contents_wrap .thumbnail_wrap {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }
  .news .inner_wrap .contents_wrap .sentence_wrap {
    margin-right: auto;
    margin-bottom: 3.5rem;
    width: 90vw;
  }
  .news .inner_wrap .contents_wrap .sentence_wrap h2 {
    margin-top: 3.5rem;
    font-size: 1.6rem;
  }
  .news .inner_wrap .contents_wrap .sentence_wrap p {
    margin-top: 1.6rem;
  }
  .news .inner_wrap .contents_wrap .bottom_pagination {
    margin-right: 5vw;
  }
}

.under_line_news:after {
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: right;
  -webkit-transform-origin: right;
}
.under_line_news:hover:after {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform-origin: left;
  -webkit-transform-origin: left;
}

.about .mv {
  /*margin-top: 15rem;*/
}
@media only screen and (max-width: 796px) {
  .about .mv {
    /*margin-top: 12rem;*/
  }
  .about .mv .ratio_fixed {
    padding-top: 146%;
  }
}
.about .concept {
  position: relative;
}
.about .concept .img_wrap .circle_wrap {
  position: relative;
  margin-top: 12rem;
  margin-left: 10vw;
  width: 30vw;
  height: 30vw;
  overflow: hidden;
}
.about .concept .img_wrap .circle_wrap .concept_img {
  position: absolute;
  top: 3.5rem;
  left: 0;
  right: 0;
  bottom: 3.5rem;
  margin: auto;
  width: auto;
  height: calc(100% - 7rem);
}
.about .concept .img_wrap .circle_wrap .circle_img {
  margin: auto;
  width: 100%;
  animation: circle 120s linear infinite;
}
@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 796px) {
  .about .concept .img_wrap {
    width: 100%;
  }
  .about .concept .img_wrap .circle_wrap {
    margin: auto;
    margin-top: 6rem;
    width: 80vw;
    height: 80vw;
  }
  .about .concept .img_wrap .circle_wrap .concept_img {
    top: 2.5rem;
    bottom: 2.5rem;
    height: calc(100% - 5rem);
  }
}
.about .concept .text_wrap {
  margin-top: -10rem;
  padding: 18rem 8vw 18rem 10vw;
  width: 31vw;
  background-color: #000000;
}
.about .concept .text_wrap .ja {
  font-size: 1.3rem;
  /*font-weight: 600;*/
  line-height: 1;
  color: #FFFFFF;
}
.about .concept .text_wrap h1 {
  margin-top: 1.6rem;
  font-size: 5.5rem;
  line-height: 1.4;
  /*font-weight: 600;*/
  color: #FFFFFF;
}
.about .concept .text_wrap .text {
  margin-top: 3.5rem;
  font-size: 1.7rem;
  color: #FFFFFF;
}
@media only screen and (max-width: 796px) {
  .about .concept .text_wrap {
    margin-top: -8rem;
    margin-left: auto;
    padding: 4.8rem 3.5rem;
    width: calc(94vw - 7rem);
    order: -1;
  }
  .about .concept .text_wrap h1 {
    margin-top: 1.2rem;
    font-size: 2.5rem;
  }
  .about .concept .text_wrap .text {
    margin-top: 2.4rem;
    font-size: 1.3rem;
  }
}
.about .core {
  padding: 15rem 10rem;
}
.about .core ul li {
  padding: 2.4rem 0 8rem;
  border-top: 1px solid #1A1A1A;
}
.about .core ul li:last-of-type {
  border-bottom: 1px solid #1A1A1A;
}
.about .core ul li .type_wrap {
  width: 51%;
}
.about .core ul li .type_wrap .ja {
  line-height: 1;
  /*font-weight: 600;*/
}
.about .core ul li .en_wrap {
  margin-right: auto;
  width: 30%;
}
.about .core ul li .en_wrap .dot {
  width: 2.4rem;
}
.about .core ul li .en_wrap .text {
  font-size: 1.2rem;
  line-height: 1.2;
}
.about .core ul li .title_wrap {
  margin-top: 6rem;
  width: 39%;
}
.about .core ul li .title_wrap h3 {
  font-size: 2.6rem;
  line-height: 1.5;
}
.about .core ul li .sentence_wrap {
  margin-top: 6rem;
  width: 49%;
}
.about .core ul li .sentence_wrap .text {
  line-height: 1.75;
}
@media only screen and (max-width: 796px) {
  .about .core {
    padding: 8.5rem 3.5rem;
  }
  .about .core ul li {
    padding: 1.6rem 0 4.8rem;
  }
  .about .core ul li .type_wrap {
    width: 100%;
  }
  .about .core ul li .type_wrap .ja {
    font-size: 1.5rem;
  }
  .about .core ul li .en_wrap {
    width: 100%;
  }
  .about .core ul li .en_wrap .dot {
    margin-top: 1.6rem;
  }
  .about .core ul li .title_wrap {
    margin-top: 3.5rem;
    width: 100%;
  }
  .about .core ul li .title_wrap h3 {
    font-size: 1.6rem;
  }
  .about .core ul li .sentence_wrap {
    margin-top: 1.6rem;
    width: 100%;
  }
}
.about .info {
  /*margin-bottom: 15rem;
  margin-left: 2vw;*/
  padding: 0rem 10rem 15rem 10rem;
  /*background: linear-gradient(0deg, rgba(23, 38, 36, 0.05), rgba(23, 38, 36, 0.05));*/
}
.about .info .inner_wrap {
  padding-top: 2.4rem;
  border-top: 1px solid #1A1A1A;
}
.about .info .inner_wrap .half {
  width: 49%;
}
.about .info .inner_wrap h2 {
  font-size: 2.6rem;
  line-height: 1.5;
}
.about .info .inner_wrap .en {
  font-size: 1.2rem;
  line-height: 1.2;
}
.about .info .inner_wrap ul {
  margin-top: 8rem;
}
.about .info .inner_wrap ul li {
  padding: 2.4rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}
.about .info .inner_wrap ul li:last-of-type {
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}
.about .info .inner_wrap ul li .title {
  margin-right: 2rem;
  width: 16%;
  line-height: 1.5;
  /*font-weight: 600;*/
}
.about .info .inner_wrap ul li .content {
  display: block;
  width: 80%;
  line-height: 1.5;
}
@media only screen and (max-width: 796px) {
  .about .info {
    /*margin-bottom: 7.2rem;
    margin-left: 5vw;*/
    padding: 0rem 3.5rem 8.8rem 3.5rem;
    /*background: linear-gradient(0deg, rgba(23, 38, 36, 0.05), rgba(23, 38, 36, 0.05));*/
  }
  .about .info .inner_wrap {
    padding-top: 1.6rem;
  }
  .about .info .inner_wrap .half {
    width: 100%;
  }
  .about .info .inner_wrap h2 {
    font-size: 1.6rem;
  }
  .about .info .inner_wrap ul {
    margin-top: 3.5rem;
  }
  .about .info .inner_wrap ul li {
    padding: 1.6rem 0;
  }
  .about .info .inner_wrap ul li .title {
    margin-right: 1rem;
    width: 36%;
    font-size: 1.3rem;
  }
  .about .info .inner_wrap ul li .content {
    width: 60%;
    font-size: 1.3rem;
  }
  .about .info .inner_wrap ul:last-of-type {
    margin-top: 0;
  }
  .about .info .inner_wrap ul:last-of-type li:first-of-type {
    border-top: none;
  }
}

.story svg {
  mix-blend-mode: initial;
}
.story .mv {
  position: relative;
  margin-top: 15rem;
  z-index: 1;
}
.story .mv h1 {
  position: absolute;
  right: 6rem;
  bottom: -18.4rem;
  font-size: 3.5rem;
  line-height: 4.8rem;
  /*font-weight: 600;*/
  color: #ffffff;
}
.story .mv h1.en {
  bottom: -20rem;
}
@media only screen and (max-width: 796px) {
  .story .mv {
    margin-top: 12rem;
  }
  .story .mv .ratio_fixed {
    padding-top: 146%;
  }
  .story .mv h1 {
    right: 5vw;
    bottom: -11.6rem;
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
.story .concept {
  position: relative;
  padding: 18rem 18vw 18rem 0;
}
@media only screen and (max-width: 796px) {
  .story .concept {
    padding: 8rem 5vw 10.8rem;
  }
}
.story .concept .img_wrap {
  width: 33vw;
  overflow: hidden;
}
@media only screen and (max-width: 796px) {
  .story .concept .img_wrap {
    display: none;
  }
}
.story .concept .title_wrap {
  position: absolute;
  top: -9.6rem;
  right: 6rem;
  min-width: 24rem;
}
.story .concept .title_wrap h2 {
  font-size: 3.5rem;
  line-height: 4.8rem;
  /*font-weight: 600;*/
}
@media only screen and (max-width: 796px) {
  .story .concept .title_wrap {
    top: -6rem;
    right: 5vw;
    min-width: 14rem;
  }
  .story .concept .title_wrap h2 {
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 320px) {
  .story .concept .title_wrap {
    top: -5.3rem;
    min-width: 13.3rem;
  }
}
.story .concept .text_wrap {
  position: relative;
  padding-top: 30rem;
  width: 31vw;
}
.story .concept .text_wrap .deco_wrap {
  position: absolute;
  left: 0;
  width: 20rem;
}
.story .concept .text_wrap .upper_deco {
  top: -8rem;
}
.story .concept .text_wrap .lower_deco {
  margin-top: 5rem;
}
.story .concept .text_wrap .lower_deco svg {
  transform: rotate(180deg);
}
.story .concept .text_wrap .lower_deco .re {
  stroke-dashoffset: 600;
}
.story .concept .text_wrap .lower_deco .re.no_mask {
  stroke-dashoffset: 0;
}
.story .concept .text_wrap .sentense_wrap .dot {
  width: 2.4rem;
}
.story .concept .text_wrap .sentense_wrap .text {
  margin-top: 2.4rem;
  font-size: 1.7rem;
}
@media only screen and (max-width: 796px) {
  .story .concept .text_wrap {
    padding-top: 0;
    width: 100%;
  }
  .story .concept .text_wrap .deco_wrap {
    width: 11.5rem;
  }
  .story .concept .text_wrap .upper_deco {
    position: relative;
    top: 0;
  }
  .story .concept .text_wrap .lower_deco {
    left: 27vw;
    margin-top: 3.5rem;
  }
  .story .concept .text_wrap .sentense_wrap {
    margin-top: 3.5rem;
  }
  .story .concept .text_wrap .sentense_wrap .text {
    font-size: 1.3rem;
  }
}
.story .prologue {
  position: relative;
  padding: 12rem 0 15rem;
  overflow-x: hidden;
  overscroll-behavior: none;
}
@media only screen and (max-width: 796px) {
  .story .prologue {
    padding: 6rem 5vw 9.6rem;
    overflow: initial;
    overscroll-behavior: initial;
  }
}
.story .prologue .en_title {
  display: block;
  margin: auto;
  font-size: 1.3rem;
  line-height: 1.6rem;
  text-align: center;
}
@media only screen and (max-width: 796px) {
  .story .prologue .en_title {
    font-size: 1.2rem;
    line-height: 1.2;
    text-align: left;
  }
}
.story .prologue .top_title {
  position: absolute;
  top: 12.4rem;
  left: 0;
  right: 0;
  margin-left: -2rem;
}
@media only screen and (max-width: 796px) {
  .story .prologue .top_title {
    position: relative;
    top: 0;
    margin-left: 0;
  }
}
.story .prologue .title_wrap h2 {
  margin-left: 6rem;
  font-size: 3.5rem;
  line-height: 1.5;
  /*font-weight: 600;*/
}
@media only screen and (max-width: 796px) {
  .story .prologue .title_wrap h2 {
    margin-top: 4rem;
    margin-left: 0;
    font-size: 2.2rem;
  }
}
.story .prologue .horizontal_wrap {
  position: relative;
  left: 0;
  margin-top: 12rem;
  height: 100vh;
}
.story .prologue .horizontal_wrap .en_title {
  position: absolute;
  top: 0;
  left: 6rem;
  bottom: 0;
}
.story .prologue .horizontal_wrap .story_list {
  position: relative;
  flex-wrap: nowrap;
  
  
  margin: auto;
  padding: 0 25rem;
  height: calc(100vh - 27rem);
  max-height: 46rem;
  counter-reset: number 0;
}
.story .prologue .horizontal_wrap .story_list li {
  position: relative;
  margin-right: 12rem;
  width: 42rem;
  min-width: 42rem;
  height: 100%;
}
.story .prologue .horizontal_wrap .story_list li svg {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 9rem;
}
.story .prologue .horizontal_wrap .story_list li svg path {
  stroke: #1A1A1A;
}
.story .prologue .horizontal_wrap .story_list li:nth-of-type(odd) svg {
  top: -10.8rem;
}
.story .prologue .horizontal_wrap .story_list li:nth-of-type(even) svg {
  bottom: -10.8rem;
  transform: rotate(180deg);
}
.story .prologue .horizontal_wrap .story_list li:last-of-type {
  margin-right: 0;
}
.story .prologue .horizontal_wrap .story_list li .text_wrap {
  position: relative;
  padding-top: 3rem;
  padding-left: 3.5rem;
  height: calc(100% - 3rem);
  border-left: 1px solid #1A1A1A;
}
.story .prologue .horizontal_wrap .story_list li .text_wrap:before {
  counter-increment: number 1;
  content: counter(number);
  position: absolute;
  top: 0;
  left: 3.5rem;
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: rgba(26, 26, 26, 0.6);
}
.story .prologue .horizontal_wrap .story_list li .text_wrap h3 {
  font-size: 2.2rem;
  line-height: 1.5;
  /*font-weight: 600;*/
}
.story .prologue .horizontal_wrap .story_list li .text_wrap .text {
  margin-top: auto;
}
@media only screen and (max-width: 796px) {
  .story .prologue .horizontal_wrap {
    margin-top: 6rem;
    left: initial;
    height: initial;
  }
  .story .prologue .horizontal_wrap .en_title {
    display: none;
  }
  .story .prologue .horizontal_wrap .story_list {
    display: block;
    padding: 0;
    height: initial;
    max-height: initial;
  }
  .story .prologue .horizontal_wrap .story_list li {
    margin-top: 1.3rem;
    margin-right: 0;
    width: 100%;
    min-width: initial;
    height: initial;
  }
  .story .prologue .horizontal_wrap .story_list li svg {
    left: initial;
    width: 16rem;
    height: 3.5rem;
  }
  .story .prologue .horizontal_wrap .story_list li svg path {
    stroke-width: 2px;
  }
  .story .prologue .horizontal_wrap .story_list li:nth-of-type(odd) {
    padding-top: 0;
    padding-bottom: 18rem;
  }
  .story .prologue .horizontal_wrap .story_list li:nth-of-type(odd) svg {
    top: initial;
    right: -6rem;
    bottom: 7rem;
    transform: rotate(90deg);
  }
  .story .prologue .horizontal_wrap .story_list li:nth-of-type(even) {
    padding-bottom: 18rem;
  }
  .story .prologue .horizontal_wrap .story_list li:nth-of-type(even) svg {
    left: -6rem;
    bottom: 7rem;
    transform: rotate(-90deg);
  }
  .story .prologue .horizontal_wrap .story_list li:last-of-type {
    padding-bottom: 0;
  }
  .story .prologue .horizontal_wrap .story_list li:last-of-type svg {
    display: none;
  }
  .story .prologue .horizontal_wrap .story_list li .text_wrap {
    padding-left: 2rem;
  }
  .story .prologue .horizontal_wrap .story_list li .text_wrap:before {
    left: 2rem;
    font-size: 1.6rem;
  }
  .story .prologue .horizontal_wrap .story_list li .text_wrap h3 {
    font-size: 1.6rem;
  }
  .story .prologue .horizontal_wrap .story_list li .text_wrap .text {
    margin-top: 2.4rem;
  }
}
.story .sns {
  padding: 16rem 10vw 22rem;
  background-image: url("./assets/image/story/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 796px) {
  .story .sns {
    padding: 18rem 0;
    overflow: hidden;
  }
}
.story .sns .title_wrap {
  text-align: center;
}
.story .sns .title_wrap h2 {
  font-size: 5.5rem;
  line-height: 1;
  color: #FCD500;
}
@media only screen and (max-width: 796px) {
  .story .sns .title_wrap h2 {
    font-size: 3.3rem;
  }
}
.story .sns .title_wrap .text {
  margin-top: 1.6rem;
  color: #ffffff;
}
.story .sns .sns_list {
  flex-wrap: nowrap;
  
  
  margin-top: 6rem;
}
.story .sns .sns_list li {
  width: calc(35% - 2px);
}
.story .sns .sns_list li:not(:first-of-type) {
  margin-left: -2%;
}
.story .sns .sns_list li a {
  display: block;
  padding: 5rem 0;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(248, 245, 244, 0.2);
  border-radius: 20rem;
}
.story .sns .sns_list li a svg {
  width: 4.8rem;
}
.story .sns .sns_list li a .en {
  margin-top: 1.2rem;
  font-size: 1.7rem;
  line-height: 2rem;
  color: #ffffff;
}
.story .sns .sns_list li a:hover {
  background-color: #F8F5F4;
}
.story .sns .sns_list li a:hover svg path {
  fill: #1A1A1A;
}
.story .sns .sns_list li a:hover .en {
  color: #1A1A1A;
}
@media only screen and (max-width: 796px) {
  .story .sns .sns_list {
    margin-top: 3.5rem;
    padding: 0 5vw;
    display: block;
    white-space: nowrap;
    overflow-x: scroll;
  }
  .story .sns .sns_list::-webkit-scrollbar {
    display: none;
  }
  .story .sns .sns_list li {
    display: inline-block;
    width: 60vw;
  }
  .story .sns .sns_list li:not(:first-of-type) {
    margin-left: -5vw;
  }
  .story .sns .sns_list li a {
    padding: 3rem 0;
  }
  .story .sns .sns_list li a svg {
    width: 3.5rem;
  }
  .story .sns .sns_list li a .en {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}

.contact {
  padding: 22rem 3rem 15rem;
}
.contact .recaptcha_policy {
	height: 0;
	visibility: hidden;
}
.contact .title_wrap {
  width: 33%;
}
.contact .title_wrap .text_wrap {
  padding-left: 2rem;
  border-left: 1px solid #1A1A1A;
}
.contact .title_wrap .text_wrap h1 {
  margin-bottom: 6rem;
  font-size: 3.5rem;
  line-height: 1;
  /*font-weight: 600;*/
}
.contact .title_wrap .text_wrap .text {
  padding-bottom: 2.4rem;
  font-size: 1.3rem;
}
.contact .form_wrap {
  width: 49%;
}
.contact .form_wrap .wpcf7 label,
.contact .form_wrap .wpcf7 input,
.contact .form_wrap .wpcf7 textarea {
  margin: 0;
  font-family: "こぶりなゴシック W6 JIS2004", "Koburina Gothic W6 JIS2004";
  border: none;
  border-radius: 0.3rem;
  outline: none;
}
.contact .form_wrap .wpcf7 input[type=checkbox]:checked {
  background-color: #ffffff !important;
}
.contact .form_wrap .wpcf7 .form_item_wrap {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}
.contact .form_wrap .wpcf7 .form_item_wrap label {
  margin: 1.8rem 0;
  line-height: 1.5;
  /*font-weight: 600;*/
}
.contact .form_wrap .wpcf7 .form_item_wrap .asterisk {
  position: relative;
}
.contact .form_wrap .wpcf7 .form_item_wrap .asterisk:after {
  content: "*";
  position: absolute;
  top: 0;
  right: -1.2rem;
  display: block;
  color: #E71113;
}
.contact .form_wrap .wpcf7 .form_item_wrap .wpcf7-form-control-wrap {
  width: 80%;
}
.contact .form_wrap .wpcf7 .form_item_wrap input,
.contact .form_wrap .wpcf7 .form_item_wrap textarea {
  padding: 1.5rem 2rem;
  width: calc(100% - 4rem);
}
.contact .form_wrap .wpcf7 .acceptance_wrap {
  padding: 5rem 0 5rem 20%;
  width: 80%;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}
.contact .form_wrap .wpcf7 .acceptance_wrap span,
.contact .form_wrap .wpcf7 .acceptance_wrap input {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
}
.contact .form_wrap .wpcf7 .acceptance_wrap input[type=checkbox]:checked {
  background-color: #ffffff !important;
}
.contact .form_wrap .wpcf7 .acceptance_wrap .wpcf7-list-item {
  margin: 0;
  background-color: #ffffff !important;
}
.contact .form_wrap .wpcf7 .acceptance_wrap label {
  margin-left: 1.2rem;
  line-height: 1.5;
}
.contact .form_wrap .wpcf7 .acceptance_wrap label a {
  text-decoration: underline;
}
.contact .form_wrap .wpcf7 .wpcf7-submit {
  margin-left: 20%;
  padding: 2rem 0;
  width: 60%;
  color: #ffffff;
  line-height: 1.5;
  /*font-weight: 600;*/
  cursor: pointer;
  background-color: #1A1A1A;
}

.thanks {
  padding-right: 10vw;
}
.thanks .sentense_wrap {
  width: 49%;
}
.thanks .sentense_wrap .text a {
  text-decoration: underline;
}

.contact {
  padding: 22rem 10vw 15rem 3rem;
}
@media only screen and (max-width: 796px) {
  .contact {
    padding: 20rem 5vw 7.2rem;
  }
}
.contact .title_wrap {
  width: 33%;
}
.contact .title_wrap .text_wrap {
  padding-left: 2rem;
  border-left: 1px solid #1A1A1A;
}
.contact .title_wrap .text_wrap h1 {
  margin-bottom: 6rem;
  font-size: 3.5rem;
  line-height: 1;
  /*font-weight: 600;*/
}
.contact .title_wrap .text_wrap .text {
  padding-bottom: 2.4rem;
  font-size: 1.3rem;
}
@media only screen and (max-width: 796px) {
  .contact .title_wrap {
    width: 100%;
  }
  .contact .title_wrap .text_wrap {
    padding-left: 0;
    padding-bottom: 2rem;
    border-left: none;
    border-bottom: 1px solid #1A1A1A;
  }
  .contact .title_wrap .text_wrap h1 {
    margin-bottom: 3.5rem;
    font-size: 2.2rem;
  }
  .contact .title_wrap .text_wrap .text {
    padding-bottom: 1.6rem;
  }
}
.contact .form_wrap {
  width: 49%;
}
@media only screen and (max-width: 796px) {
  .contact .form_wrap {
    width: 100%;
  }
}
.contact .form_wrap .wpcf7 label,
.contact .form_wrap .wpcf7 input,
.contact .form_wrap .wpcf7 textarea {
  margin: 0;
  font-family: "こぶりなゴシック W6 JIS2004", "Koburina Gothic W6 JIS2004";
  border: none;
  border-radius: 0.3rem;
  outline: none;
}
.contact .form_wrap .wpcf7 input[type=checkbox]:checked {
  background-color: #ffffff !important;
}
.contact .form_wrap .wpcf7 .form_item_wrap {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}
.contact .form_wrap .wpcf7 .form_item_wrap label {
  margin: 1.8rem 0;
  line-height: 1.5;
  /*font-weight: 600;*/
}
.contact .form_wrap .wpcf7 .form_item_wrap .asterisk {
  position: relative;
}
.contact .form_wrap .wpcf7 .form_item_wrap .asterisk:after {
  content: "*";
  position: absolute;
  top: 0;
  right: -1.2rem;
  display: block;
  color: #E71113;
}
.contact .form_wrap .wpcf7 .form_item_wrap .wpcf7-form-control-wrap {
  width: 80%;
}
.contact .form_wrap .wpcf7 .form_item_wrap input,
.contact .form_wrap .wpcf7 .form_item_wrap textarea {
  padding: 1.5rem 2rem;
  width: calc(100% - 4rem);
}
@media only screen and (max-width: 796px) {
  .contact .form_wrap .wpcf7 .form_item_wrap {
    padding: 2.4rem 0;
  }
  .contact .form_wrap .wpcf7 .form_item_wrap label {
    margin: 0;
    margin-right: auto;
  }
  .contact .form_wrap .wpcf7 .form_item_wrap .asterisk {
    position: relative;
  }
  .contact .form_wrap .wpcf7 .form_item_wrap .asterisk:after {
    content: "*";
    position: absolute;
    top: 0;
    right: -1.2rem;
    display: block;
    color: #E71113;
  }
  .contact .form_wrap .wpcf7 .form_item_wrap .wpcf7-form-control-wrap {
    margin-top: 1.2rem;
    width: 100%;
  }
  .contact .form_wrap .wpcf7 .form_item_wrap input,
.contact .form_wrap .wpcf7 .form_item_wrap textarea {
    padding: 1.1rem 1.5rem;
    width: calc(100% - 3rem);
  }
}
.contact .form_wrap .wpcf7 .acceptance_wrap {
  padding: 5rem 0 5rem 20%;
  width: 80%;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}
.contact .form_wrap .wpcf7 .acceptance_wrap span,
.contact .form_wrap .wpcf7 .acceptance_wrap input {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
}
.contact .form_wrap .wpcf7 .acceptance_wrap input[type=checkbox]:checked {
  background-color: #ffffff !important;
}
.contact .form_wrap .wpcf7 .acceptance_wrap .wpcf7-list-item {
  margin: 0;
  background-color: #ffffff !important;
}
.contact .form_wrap .wpcf7 .acceptance_wrap label {
  margin-left: 1.2rem;
  line-height: 1.5;
}
.contact .form_wrap .wpcf7 .acceptance_wrap label a {
  text-decoration: underline;
}
@media only screen and (max-width: 796px) {
  .contact .form_wrap .wpcf7 .acceptance_wrap {
    padding: 2.5rem 0;
    width: 100%;
  }
  .contact .form_wrap .wpcf7 .acceptance_wrap span,
.contact .form_wrap .wpcf7 .acceptance_wrap input {
    width: 2.4rem;
    height: 2.4rem;
  }
  .contact .form_wrap .wpcf7 .acceptance_wrap label {
    margin-left: 0.8rem;
  }
}
.contact .form_wrap .wpcf7 .wpcf7-submit {
  margin-left: 20%;
  padding: 2rem 0;
  width: 60%;
  color: #ffffff;
  line-height: 1.5;
  /*font-weight: 600;*/
  cursor: pointer;
  background-color: #1A1A1A;
}
.contact .form_wrap .wpcf7 .wpcf7-submit:hover {
  background-color: #000000;
}
@media only screen and (max-width: 796px) {
  .contact .form_wrap .wpcf7 .wpcf7-submit {
    margin-left: 0;
    padding: 1.5rem 0;
    width: 100%;
  }
}

.thanks {
  padding-right: 10vw;
}
.thanks .sentense_wrap {
  width: 49%;
}
.thanks .sentense_wrap .text a {
  text-decoration: underline;
}
@media only screen and (max-width: 796px) {
  .thanks {
    padding-right: 5vw;
  }
  .thanks .sentense_wrap {
    margin-top: 3.5rem;
    width: 100%;
  }
}

.document {
  padding: 22rem 10vw 15rem 3rem;
}
@media only screen and (max-width: 796px) {
  .document {
    padding: 20rem 5vw 7.2rem;
  }
}
.document .title_wrap {
  width: 33%;
}
.document .title_wrap .text_wrap h1 {
  margin-bottom: 6rem;
  font-size: 3.5rem;
  line-height: 1;
  /*font-weight: 600;*/
}
.document .title_wrap .text_wrap .text {
  padding-bottom: 2.4rem;
  font-size: 1.3rem;
}
@media only screen and (max-width: 796px) {
  .document .title_wrap {
    width: 100%;
  }
  .document .title_wrap .text_wrap h1 {
    margin-bottom: 3.5rem;
    font-size: 2.2rem;
  }
  .document .title_wrap .text_wrap .text {
    padding-bottom: 2.4rem;
    font-size: 1.3rem;
  }
}
.document .contents_wrap {
  width: 53%;
}
@media only screen and (max-width: 796px) {
  .document .contents_wrap {
    width: 100%;
  }
}

.guide .title_wrap .text_wrap {
  padding-left: 2rem;
  padding-bottom: 2.4rem;
  border-left: 1px solid #1A1A1A;
}
.guide .title_wrap .text_wrap ul li {
  width: 100%;
  padding-bottom: 2.4rem;
}
.guide .title_wrap .text_wrap ul li:last-of-type {
  padding-bottom: 0;
}
.guide .title_wrap .text_wrap ul li a {
  display: block;
  line-height: 1;
  color: rgba(26, 26, 26, 0.4);
}
.guide .title_wrap .text_wrap ul li .active {
  color: #1a1a1a;
}
@media only screen and (max-width: 796px) {
  .guide .title_wrap {
    margin-bottom: 3.5rem;
  }
  .guide .title_wrap .text_wrap {
    padding-left: 0;
    padding-bottom: 2rem;
    border-left: none;
    border-bottom: 1px solid #1A1A1A;
  }
  .guide .title_wrap .text_wrap ul li {
    padding-bottom: 1.6rem;
  }
  .guide .title_wrap .text_wrap ul li a {
    color: #1a1a1a;
  }
}
.guide .contents_wrap {
  margin-left: auto;
}
.guide .contents_wrap .block_wrap {
  margin-bottom: 9.6rem;
}
.guide .contents_wrap .block_wrap:last-of-type {
  margin-bottom: 0;
}
.guide .contents_wrap .block_wrap h2 {
  margin-bottom: 4.8rem;
  font-size: 2.6rem;
  /*font-weight: 600;*/
  line-height: 1.5;
}
.guide .contents_wrap .block_wrap .sentense_wrap {
  margin-bottom: 4.8rem;
}
.guide .contents_wrap .block_wrap .sentense_wrap h3 {
  margin-bottom: 2.4rem;
  font-size: 1.8rem;
  /*font-weight: 600;*/
  line-height: 1.5;
}
.guide .contents_wrap .block_wrap .sentense_wrap .text {
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 796px) {
  .guide .contents_wrap .block_wrap {
    margin-bottom: 4.8rem;
  }
  .guide .contents_wrap .block_wrap h2 {
    margin-bottom: 2.4rem;
    font-size: 2rem;
  }
  .guide .contents_wrap .block_wrap .sentense_wrap {
    margin-bottom: 2.4rem;
  }
  .guide .contents_wrap .block_wrap .sentense_wrap h3 {
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
  }
  .guide .contents_wrap .block_wrap .sentense_wrap .text {
    margin-bottom: 1.6rem;
  }
}

.notation .contents_wrap ul li {
  padding: 2.4rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}
.notation .contents_wrap ul li:last-of-type {
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
}
.notation .contents_wrap ul li .title {
  width: 31%;
  /*font-weight: 600;*/
  line-height: 1.5;
}
.notation .contents_wrap ul li .text {
  width: 66%;
  line-height: 1.5;
}
@media only screen and (max-width: 796px) {
  .notation .contents_wrap ul li {
    padding: 1.6rem 0;
  }
}

.privacy .contents_wrap .sentense_wrap {
  margin-bottom: 4.8rem;
}
.privacy .contents_wrap .sentense_wrap:last-of-type {
  margin-bottom: 0;
}
.privacy .contents_wrap .sentense_wrap h2 {
  margin-bottom: 2.4rem;
  font-size: 1.8rem;
  /*font-weight: 600;*/
  line-height: 1.5;
}
.privacy .contents_wrap .sentense_wrap .text {
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 796px) {
  .privacy .contents_wrap .sentense_wrap {
    margin-bottom: 3.5rem;
  }
  .privacy .contents_wrap .sentense_wrap h2 {
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
  }
  .privacy .contents_wrap .sentense_wrap .text {
    margin-bottom: 1.6rem;
  }
}