@charset "UTF-8";
/* ==============================
 Foundation
============================== */
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

* {
  min-height: 0vw;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  background-color: #F4F4F4;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
  width: 100%;
}

/* ==============================
Component
============================== */
.hide {
  display: none;
}

.block {
  display: block;
}

@media screen and (max-width: 1270px) {
  .l_hide {
    display: none !important;
  }
  .l_block {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .m_hide {
    display: none !important;
  }
  .m_block {
    display: block !important;
  }
}
@media screen and (max-width: 480px) {
  .s_hide {
    display: none !important;
  }
  .s_block {
    display: block !important;
  }
}
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes left-in {
  0% {
    visibility: visible;
    transform: translateX(0);
  }
  25% {
    visibility: hidden;
    transform: translateX(102%);
  }
  50% {
    visibility: hidden;
    transform: translateX(-102%);
  }
  100% {
    visibility: visible;
    transform: translateX(0);
  }
}
@keyframes rotation {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.flow_up {
  animation: flowUp 60s linear infinite;
}

@keyframes flowUp {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -50%, 0);
  }
}
.flow_down {
  animation: flowDown 60s linear infinite;
}

@keyframes flowDown {
  0% {
    transform: translate3d(0, -50%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes flow-images-md {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-233.375rem, 0, 0);
  }
}
@keyframes flow-images-sm {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-76.3846153846rem, 0, 0);
  }
}
/* ==============================
Lib
============================== */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* ==============================
Layout
============================== */
.inner {
  padding-left: 7.813vw;
}
@media screen and (max-width: 1270px) {
  .inner {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    padding: 0 0 0 16px;
  }
}

#header .header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  padding: 50px 30px;
  mix-blend-mode: difference;
  z-index: 99;
}
@media screen and (max-width: 480px) {
  #header .header_wrap {
    padding: 0;
  }
}
#header .nav_menu {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 480px) {
  #header .nav_menu {
    display: none;
  }
}
#header .nav_menu__item a {
  transition: all 0.4s;
  opacity: 0.7;
}
#header .nav_menu__item a:hover {
  opacity: 1;
}
#header .logoarea {
  position: absolute;
  bottom: 50px;
}
@media screen and (max-width: 480px) {
  #header .logoarea {
    left: 16px;
    bottom: 30px;
  }
}
#header .logoarea_logo {
  width: 200px;
}
@media screen and (max-width: 480px) {
  #header .logoarea_logo {
    width: 100px;
  }
}
#header .logoarea_sns {
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 480px) {
  #header .logoarea_sns {
    margin-top: 10px;
  }
}
#header .logoarea_sns li {
  width: 35px;
  margin-right: 1rem;
}
@media screen and (max-width: 480px) {
  #header .logoarea_sns li {
    width: 30px;
    margin-right: 10px;
  }
}

.header.active .logoarea {
  display: none;
}
.header_nav_button {
  display: none;
  position: fixed;
  cursor: pointer;
  z-index: 99;
}
@media screen and (max-width: 480px) {
  .header_nav_button {
    display: block;
    width: 32px;
    left: auto;
    left: 16px;
    top: 30px;
    transform: none;
  }
}
.header_nav_button_inner {
  width: 100%;
  height: 15px;
}
.header_nav_button_inner span {
  background: #fff;
  height: 1px;
  position: absolute;
  left: 0;
  transition: width 0.1s 0.2s ease, transform 0.3s ease, top 0.3s ease;
}
.header_nav_button_inner span:nth-of-type(1) {
  top: 7px;
  width: 100%;
}
.header_nav_button_inner span:nth-of-type(2) {
  top: 14px;
  width: 50%;
}
.header_nav_button::after {
  content: "MENU";
  display: inline-block;
  letter-spacing: 0.1em;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 10px;
  font-weight: 300;
  color: #fff;
}
.header_nav_button.button-active span {
  transition: width 0.1s ease, transform 0.3s 0.1s ease, top 0.3s 0.1s ease;
}
.header_nav_button.button-active span:nth-of-type(1) {
  transform: rotate(-145deg);
}
.header_nav_button.button-active span:nth-of-type(2) {
  top: 7px;
  transform: rotate(145deg);
  width: 100%;
}
.header_nav_button.button-active::after {
  content: "CLOSE";
}
.header-gmenu {
  position: fixed;
  left: 0;
  width: 100%;
  background: #3B3B3B;
  color: #fff;
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: all 0.44s;
  z-index: -1;
  opacity: 0;
  mix-blend-mode: normal;
}
.header-gmenu.panelopen {
  z-index: 98;
  opacity: 1;
}
.header-gmenu_inner {
  padding: 100px 16px 50px;
}
.header-gmenu_inner .list {
  line-height: normal;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: #fff 1px solid;
}
.header-gmenu_inner .list_item {
  margin-bottom: 30px;
}
.header-gmenu_inner .list_item:last-child {
  margin-bottom: 0;
}
.header-gmenu_inner .list_item .en {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 12px;
  text-transform: capitalize;
}
.header-gmenu_inner .list_item .ja {
  margin-top: 5px;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 16px;
  color: #fff;
}
.header-gmenu_inner .sub_list {
  display: flex;
  flex-wrap: wrap;
}
.header-gmenu_inner .sub_list li {
  margin-bottom: 10px;
  width: 50%;
}
.header-gmenu_inner .sns_list {
  display: flex;
  margin-top: 10px;
}
.header-gmenu_inner .sns_list li {
  margin-right: 20px;
}
.header-gmenu_contact {
  background-image: url(../../assets/img/top/004_8411.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 20px 0;
}
.header-gmenu_contact .ttl {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 16px;
  color: #fff;
}
.header-gmenu_contact .contact_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header-gmenu_contact .contact_inner .contact_btn {
  display: inline-block;
  width: 66.66%;
  border: #fff solid 1px;
  margin: 10px 0;
}

.takeout {
  position: fixed;
  bottom: 50px;
  right: 30px;
  background-color: #3B3B3B;
  border-radius: 20px;
  width: 185px;
  color: #fff;
  padding: 10px 0;
  z-index: 100;
}
@media screen and (max-width: 480px) {
  .takeout {
    right: 16px;
    bottom: 30px;
  }
}
.takeout a {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: normal;
}
.takeout .icon {
  width: 17px;
}
.takeout_txt {
  margin-left: 20px;
  text-transform: uppercase;
  font-family: "ten-mincho", serif;
  font-weight: 400;
}

.footer {
  background-color: #3B3B3B;
  color: #fff;
  padding-top: 65px;
}
.footer_inner {
  display: flex;
  flex-direction: column;
  padding-bottom: 65px;
}
@media screen and (max-width: 480px) {
  .footer_inner {
    padding-right: 16px;
  }
}
.footer_top {
  display: flex;
  align-items: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .footer_top {
    flex-direction: column;
    padding-bottom: 20px;
  }
}
.footer_top__left {
  width: 213px;
  margin-right: 100px;
}
@media screen and (max-width: 480px) {
  .footer_top__left {
    display: none;
  }
}
.footer_top__right {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
}
.footer_top__right .list {
  margin-top: 2.5em;
  display: flex;
}
@media screen and (max-width: 480px) {
  .footer_top__right .list {
    flex-wrap: wrap;
  }
}
.footer_top__right .list_item {
  margin-right: 100px;
}
@media screen and (max-width: 1270px) {
  .footer_top__right .list_item {
    margin-right: 3.659vw;
  }
}
@media screen and (max-width: 480px) {
  .footer_top__right .list_item {
    width: calc(50% - 30px);
    margin-right: 30px;
  }
}
.footer_top__right .list_item li {
  margin-bottom: 2.5em;
}
.footer_top__right .list_item li a {
  opacity: 0.7;
  transition: all 0.4s;
}
.footer_top__right .list_item li a:hover {
  opacity: 1;
}
.footer_top__right .list_item li .en {
  line-height: normal;
}
.footer_top__right .list_item li .ja {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  color: #fff;
  margin-top: 5px;
  line-height: normal;
  font-size: 14px;
}
.footer_top__right .list_item li .category {
  margin-top: 1em;
  margin-left: 30px;
}
.footer_top__right .list_item li .category_item {
  position: relative;
  margin-bottom: 10px;
  line-height: normal;
}
.footer_top__right .list_item li .category_item::before {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
}
.footer_btm {
  display: flex;
}
@media screen and (max-width: 480px) {
  .footer_btm {
    flex-direction: column;
  }
}
.footer_btm p {
  width: 213px;
  margin-right: 100px;
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .footer_btm p {
    width: auto;
    margin-right: 0;
    margin-bottom: 1em;
  }
}
.footer_btm ul {
  display: flex;
}
@media screen and (max-width: 480px) {
  .footer_btm ul {
    flex-direction: column;
  }
}
.footer_btm ul li {
  margin-right: 100px;
}
@media screen and (max-width: 1270px) {
  .footer_btm ul li {
    margin-right: 3.659vw;
  }
}
.footer_btm ul li a {
  opacity: 0.7;
  transition: all 0.4s;
}
.footer_btm ul li a:hover {
  opacity: 1;
}
.footer .copyright {
  background-color: #F4F4F4;
  padding: 20px 0;
  text-align: center;
  color: #3B3B3B;
  font-weight: 700;
}

.kv {
  width: 100%;
  height: 100vh;
  background: url(../../assets/img/kv/top_kv.png) no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 480px) {
  .kv {
    background-image: url(../../assets/img/kv/top_kv_sp.png);
  }
}
.kv_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20.833vw;
  height: 20.833vw;
}
@media screen and (max-width: 1270px) {
  .kv_logo {
    width: 36.585vw;
    height: 36.585vw;
  }
}
@media screen and (max-width: 480px) {
  .kv_logo {
    width: 64.103vw;
    height: 64.103vw;
  }
}

.page {
  background: url(../../assets/img/kv/contact.png) no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: end;
}
@media screen and (max-width: 480px) {
  .page {
    background-image: url(../../assets/img/kv/contact_sp.png);
  }
}
.page_inner {
  width: 68.75vw;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .page_inner {
    width: 100%;
    margin: 0;
    padding: 0 16px 100px;
  }
}
.page_ttlarea {
  border-bottom: solid 1px #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .page_ttlarea {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.page_ttl {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 80px;
  color: #fff;
  text-transform: capitalize;
  line-height: normal;
}
@media screen and (max-width: 480px) {
  .page_ttl {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 8px;
  }
}
.page_jattl {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  color: #fff;
  font-size: 20px;
  line-height: normal;
}
@media screen and (max-width: 480px) {
  .page_jattl {
    font-size: 14px;
    line-height: 1;
  }
}
.page .aioseo-breadcrumbs {
  color: #fff;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
}
@media screen and (max-width: 480px) {
  .page .aioseo-breadcrumbs {
    font-size: 12px;
  }
}
.page .aioseo-breadcrumb-separator {
  margin: 0 20px;
}
.page.about {
  background-image: url(../../assets/img/kv/about.png);
}
@media screen and (max-width: 480px) {
  .page.about {
    background-image: url(../../assets/img/kv/about_sp.png);
  }
}
.page.menu {
  background-image: url(../../assets/img/kv/menu.png);
}
@media screen and (max-width: 480px) {
  .page.menu {
    background-image: url(../../assets/img/kv/menu_sp.png);
  }
}
.page.partner {
  background-image: url(../../assets/img/kv/partner.png);
}
@media screen and (max-width: 480px) {
  .page.partner {
    background-image: url(../../assets/img/kv/partner_sp.png);
  }
}
.page.news {
  background-image: url(../../assets/img/kv/news.png);
}
@media screen and (max-width: 480px) {
  .page.news {
    background-image: url(../../assets/img/kv/news_sp.png);
  }
}
.page.taxonomy {
  background-image: url(../../assets/img/kv/taxonomy.png);
}
@media screen and (max-width: 480px) {
  .page.taxonomy {
    background-image: url(../../assets/img/kv/taxonomy_sp.png);
  }
}
.page.reserve {
  background-image: url(../../assets/img/kv/takeout.png);
}
@media screen and (max-width: 480px) {
  .page.reserve {
    background-image: url(../../assets/img/kv/takeout_sp.png);
  }
}

/* ==============================
Pages
============================== */
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #3B3B3B;
  text-align: center;
  color: #fff;
}
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo svg {
  width: 300px;
}

#mask path {
  fill-opacity: 0;
  transition: fill-opacity 0.5s;
  fill: none;
  stroke: #fff;
}

#mask.done path {
  fill: #fff;
  fill-opacity: 1;
  stroke: none;
}

.mainactive {
  opacity: 0;
}

.header_news {
  position: absolute;
  top: 50px;
  right: 30px;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  z-index: 97;
}
@media screen and (max-width: 480px) {
  .header_news {
    top: 30px;
    right: auto;
    right: 16px;
    font-weight: 300;
  }
}
.header_news a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .header_news a {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
}
@media screen and (max-width: 480px) {
  .header_news time {
    font-size: 11px;
  }
}
.header_news__ttl {
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .header_news__ttl {
    margin-left: 0;
    font-size: 11px;
  }
}

.topabout {
  margin-top: 250px;
  margin-bottom: 200px;
  display: flex;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 480px) {
  .topabout {
    margin: 200px 0 100px;
    flex-direction: column-reverse;
  }
}
.topabout_left {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .topabout_left {
    padding-right: 16px;
  }
}
.topabout_left__ttl {
  width: 61.094vw;
}
@media screen and (max-width: 480px) {
  .topabout_left__ttl {
    display: none;
  }
}
.topabout_left__txt {
  padding-left: 7.813vw;
  margin-top: 4.167vw;
}
@media screen and (max-width: 480px) {
  .topabout_left__txt {
    padding-left: 0;
  }
}
.topabout_left__txt .subttl {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  margin-bottom: 1em;
}
@media screen and (max-width: 480px) {
  .topabout_left__txt .subttl {
    font-size: 24px;
  }
}
.topabout_left__txt p {
  margin-bottom: 1em;
}
.topabout_left__txt .btn_wrap {
  margin-top: 2rem;
}
.topabout_left__txt .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.topabout_left__txt .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.topabout_left__txt .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.topabout_left__txt .btn_wrap .btn:hover {
  opacity: 0.7;
}
.topabout_left__txt .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.topabout_left__txt .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}
.topabout_video {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 480px) {
  .topabout_video {
    position: static;
  }
}
.topabout_video__spttl {
  display: none;
}
@media screen and (max-width: 480px) {
  .topabout_video__spttl {
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
  }
}
.topabout_video__circle {
  position: absolute;
  top: -25%;
  left: -25%;
  z-index: -1;
  animation: 40s linear infinite rotation;
}
@media screen and (max-width: 480px) {
  .topabout_video__circle {
    width: 89.744vw;
    height: 89.744vw;
    top: -30%;
    left: -50%;
  }
}
.topabout_video video {
  width: 38.021vw;
  height: 40.104vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
@media screen and (max-width: 480px) {
  .topabout_video video {
    width: 100%;
    height: 98.974vw;
  }
}

.topnews {
  overflow-x: clip;
  position: relative;
  margin-bottom: 200px;
}
@media screen and (max-width: 1270px) {
  .topnews {
    margin-bottom: 100px;
  }
}
.topnews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E1E1E1;
  width: 21.458vw;
  height: 40.521vw;
}
@media screen and (max-width: 480px) {
  .topnews::before {
    width: 30vw;
    height: 100.769vw;
    z-index: -1;
  }
}
.topnews_ttl {
  text-align: center;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 32px;
  margin: 1em 0;
}
.topnews_list__wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.topnews_list__wrap .thum img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 20.833vw;
  height: 20.833vw;
  border-radius: 50%;
}
@media screen and (max-width: 480px) {
  .topnews_list__wrap .thum img {
    width: 63.077vw;
    height: 63.077vw;
  }
}
.topnews_list__wrap .txt {
  margin-top: 1.5em;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: end;
}
@media screen and (max-width: 480px) {
  .topnews_list__wrap .txt {
    flex-direction: column;
    align-items: flex-start;
  }
}
.topnews_list__wrap .txt time {
  font-size: 14px;
}
.topnews_list__wrap .txt .ttl {
  margin-left: 1em;
}
@media screen and (max-width: 480px) {
  .topnews_list__wrap .txt .ttl {
    margin-left: 0;
  }
}
.topnews_list__wrap .category {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.topnews_list .arrow-prev {
  width: 9px;
  height: 18px;
  background: url(../../assets/img/top/arrow.png);
  position: absolute;
  right: 13.021vw;
  top: -53px;
}
@media screen and (max-width: 480px) {
  .topnews_list .arrow-prev {
    display: none !important;
  }
}
.topnews_list .arrow-next {
  width: 9px;
  height: 18px;
  transform: rotate(180deg);
  background: url(../../assets/img/top/arrow.png);
  position: absolute;
  right: 10.417vw;
  top: -53px;
}
@media screen and (max-width: 480px) {
  .topnews_list .arrow-next {
    display: none !important;
  }
}
.topnews_list .slick-list {
  padding-left: 0 !important;
  padding-right: 250px !important;
}
@media screen and (max-width: 1270px) {
  .topnews_list .slick-list {
    padding-right: 280px !important;
  }
}
@media screen and (max-width: 480px) {
  .topnews_list .slick-list {
    padding-right: 100px !important;
  }
}
.topnews .btn_wrap {
  text-align: right;
  padding-right: 150px;
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .topnews .btn_wrap {
    padding-right: 76px;
  }
}
.topnews .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.topnews .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.topnews .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.topnews .btn_wrap .btn:hover {
  opacity: 0.7;
}
.topnews .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.topnews .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}

.flowarea {
  margin-bottom: 150px;
}
@media screen and (max-width: 1270px) {
  .flowarea {
    margin-bottom: 100px;
  }
}
.flowarea .slick2-img {
  margin-right: 5.208vw;
}
@media screen and (max-width: 480px) {
  .flowarea .slick2-img {
    margin-right: 32px;
  }
}
.flowarea .slick2-img img {
  width: 10.417vw;
  height: 10.417vw;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1270px) {
  .flowarea .slick2-img img {
    width: 14.634vw;
    height: 14.634vw;
  }
}
@media screen and (max-width: 480px) {
  .flowarea .slick2-img img {
    width: 100px;
    height: 100px;
  }
}
.flowarea .text {
  margin-top: 1rem;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 4.583vw;
  color: #fff;
}
@media screen and (max-width: 1270px) {
  .flowarea .text {
    font-size: 80px;
  }
}
@media screen and (max-width: 480px) {
  .flowarea .text {
    line-height: normal;
    margin-top: 0;
    font-size: 9.744vw;
  }
}

.topmenu {
  padding: 0 1.563vw 0 15.625vw;
  margin-bottom: 220px;
  overflow-x: clip;
}
@media screen and (max-width: 1270px) {
  .topmenu {
    padding: 0 32px;
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 480px) {
  .topmenu {
    margin-bottom: 100px;
  }
}
.topmenu_list__item {
  position: relative;
  background-color: #fff;
  border-radius: 22.917vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.646vw 0;
  margin-bottom: 120px;
}
@media screen and (max-width: 1270px) {
  .topmenu_list__item {
    padding: 6.829vw 8.537vw 6.829vw 8.537vw;
    align-items: flex-start;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 480px) {
  .topmenu_list__item {
    flex-direction: column;
    padding: 30.769vw 8.205vw;
    border-radius: 51.282vw;
  }
}
.topmenu_list__item.item1::before {
  content: "";
  position: absolute;
  left: -4.167vw;
  bottom: -1.042vw;
  width: 9.844vw;
  height: 10.052vw;
  background: url(../../assets/img/top/topmenu_item1.png);
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .topmenu_list__item.item1::before {
    width: 25.641vw;
    height: 25.641vw;
  }
}
.topmenu_list__item.item1::after {
  content: "";
  position: absolute;
  right: -1.562vw;
  top: 0;
  width: 7.865vw;
  height: 7.552vw;
  background: url(../../assets/img/top/topmenu_item1.png);
  background-size: contain;
  z-index: -1;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .topmenu_list__item.item1::after {
    width: 25.641vw;
    height: 25.641vw;
  }
}
.topmenu_list__item.item2 {
  flex-direction: row-reverse;
}
@media screen and (max-width: 480px) {
  .topmenu_list__item.item2 {
    flex-direction: column;
  }
}
.topmenu_list__item.item2::before {
  content: "";
  position: absolute;
  left: -4.167vw;
  bottom: -1.042vw;
  width: 7.5vw;
  height: 7.5vw;
  background: url(../../assets/img/top/topmenu_item2.png);
  z-index: -1;
  background-size: contain;
  transform: rotate(100deg);
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .topmenu_list__item.item2::before {
    width: 25.641vw;
    height: 25.641vw;
  }
}
.topmenu_list__item.item2::after {
  content: "";
  position: absolute;
  right: -1.562vw;
  top: 0;
  width: 6.823vw;
  height: 6.823vw;
  background: url(../../assets/img/top/topmenu_item2.png);
  background-size: contain;
  z-index: -1;
  transform: rotate(171deg);
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .topmenu_list__item.item2::after {
    width: 25.641vw;
    height: 25.641vw;
  }
}
.topmenu_list__item.item2 .left {
  margin-left: 2.604vw;
  margin-right: 0;
}
@media screen and (max-width: 1270px) {
  .topmenu_list__item.item2 .left {
    margin-left: 32px;
  }
}
@media screen and (max-width: 480px) {
  .topmenu_list__item.item2 .left {
    margin-left: 0;
  }
}
.topmenu_list__item.item3::before {
  content: "";
  position: absolute;
  left: -4.167vw;
  bottom: -1.042vw;
  width: 9.844vw;
  height: 10.052vw;
  background: url(../../assets/img/top/topmenu_item1.png);
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .topmenu_list__item.item3::before {
    width: 25.641vw;
    height: 25.641vw;
  }
}
.topmenu_list__item.item3::after {
  content: "";
  position: absolute;
  right: -1.562vw;
  top: 0;
  width: 7.865vw;
  height: 7.552vw;
  background: url(../../assets/img/top/topmenu_item1.png);
  background-size: contain;
  z-index: -1;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .topmenu_list__item.item3::after {
    width: 25.641vw;
    height: 25.641vw;
  }
}
.topmenu_list__item .left {
  display: flex;
  margin-right: 2.604vw;
}
@media screen and (max-width: 1270px) {
  .topmenu_list__item .left {
    margin-right: 32px;
  }
}
@media screen and (max-width: 480px) {
  .topmenu_list__item .left {
    margin-right: 0;
  }
}
.topmenu_list__item .left_txt .enname {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 1.667vw;
  text-transform: uppercase;
}
@media screen and (max-width: 1270px) {
  .topmenu_list__item .left_txt .enname {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .topmenu_list__item .left_txt .enname {
    line-height: normal;
    margin-bottom: 10px;
  }
}
.topmenu_list__item .left_txt .name {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 0.833vw;
}
@media screen and (max-width: 1270px) {
  .topmenu_list__item .left_txt .name {
    font-size: 14px;
  }
}
.topmenu_list__item .left_txt .txt {
  margin-top: 2em;
  font-size: 0.833vw;
}
@media screen and (max-width: 1270px) {
  .topmenu_list__item .left_txt .txt {
    font-size: 14px;
  }
}
.topmenu_list__item .left_txt .btn_wrap {
  margin-top: 3em;
}
@media screen and (max-width: 1270px) {
  .topmenu_list__item .left_txt .btn_wrap {
    margin-top: 2em;
  }
}
.topmenu_list__item .left_txt .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.topmenu_list__item .left_txt .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.topmenu_list__item .left_txt .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.topmenu_list__item .left_txt .btn_wrap .btn:hover {
  opacity: 0.7;
}
.topmenu_list__item .left_txt .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.topmenu_list__item .left_txt .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}
.topmenu_list__item .left_ttl {
  writing-mode: vertical-rl;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 1.25vw;
  line-height: normal;
  letter-spacing: 0.521vw;
  margin-left: 2.604vw;
}
@media screen and (max-width: 1270px) {
  .topmenu_list__item .left_ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .topmenu_list__item .left_ttl {
    margin-left: 20px;
    font-size: 18px;
  }
}
.topmenu_list__item .right {
  width: 34.375vw;
}
@media screen and (max-width: 480px) {
  .topmenu_list__item .right {
    width: 100%;
    margin-top: 50px;
  }
}
.topmenu_list__item .right .slick4 .arrow-prev2 {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 54px;
  height: 100px;
  background: url(../../assets/img/top/arrow2.png);
}
@media screen and (max-width: 1270px) {
  .topmenu_list__item .right .slick4 .arrow-prev2 {
    width: 30px;
  }
}
.topmenu_list__item .right .slick4 .arrow-next2 {
  z-index: 1;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(180deg);
  width: 54px;
  height: 100px;
  background: url(../../assets/img/top/arrow2.png);
}
@media screen and (max-width: 1270px) {
  .topmenu_list__item .right .slick4 .arrow-next2 {
    width: 30px;
  }
}
.topmenu_list__item .right .slick4 img {
  border-radius: 2.083vw;
  height: 34.375vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .topmenu_list__item .right .slick4 img {
    height: 64.103vw;
  }
}

.toptakeout {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  background-color: #fff;
  padding: 4.375vw 30px 4.375vw 7.813vw;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1270px) {
  .toptakeout {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px;
  }
}
@media screen and (max-width: 480px) {
  .toptakeout {
    padding: 50px 0 50px 32px;
  }
}
.toptakeout_left {
  width: calc(70% - 5.208vw);
  margin-right: 5.208vw;
}
@media screen and (max-width: 1270px) {
  .toptakeout_left {
    margin-right: 0;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .toptakeout_left {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 32px;
  }
}
@media screen and (max-width: 1270px) {
  .toptakeout_left .txt_area {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .toptakeout_left .txt_area {
    width: 100%;
  }
}
.toptakeout_left h2 {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 1.667vw;
  text-transform: uppercase;
}
@media screen and (max-width: 1270px) {
  .toptakeout_left h2 {
    font-size: 32px;
  }
}
.toptakeout_left__ttl {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 1.667vw;
}
@media screen and (max-width: 1270px) {
  .toptakeout_left__ttl {
    font-size: 16px;
  }
}
.toptakeout_left .txt {
  margin: 2em 0 3.75em;
}
@media screen and (max-width: 1270px) {
  .toptakeout_left .txt {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1270px) {
  .toptakeout_left .btn_wrap {
    margin-right: 60px;
  }
}
@media screen and (max-width: 480px) {
  .toptakeout_left .btn_wrap {
    margin-top: 30px;
  }
}
.toptakeout_left .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.toptakeout_left .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.toptakeout_left .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.toptakeout_left .btn_wrap .btn:hover {
  opacity: 0.7;
}
.toptakeout_left .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.toptakeout_left .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}
.toptakeout_right {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .toptakeout_right {
    flex: none;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
  }
}
.toptakeout_right li {
  width: calc(33.3333% - 40px);
}
@media screen and (max-width: 1270px) {
  .toptakeout_right li {
    width: calc(33.3333% - 20px);
  }
}
@media screen and (max-width: 480px) {
  .toptakeout_right li {
    flex: none;
    width: 80%;
    max-width: 80%;
    margin-right: 20px;
  }
}
.toptakeout_right li .txt {
  margin-top: 1em;
}
.toptakeout_right li .txt_bold {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 20px;
}

.entxt {
  position: relative;
}
.entxt::before {
  content: "";
  background-image: url(../../../assets/img/top/entxt.png);
  background-position: center;
  background-repeat: repeat-y;
  width: 143px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.topfranchise {
  padding-top: 180px;
  padding-left: 15.625vw;
  display: flex;
  align-items: start;
}
@media screen and (max-width: 1270px) {
  .topfranchise {
    padding-left: 32px;
  }
}
@media screen and (max-width: 480px) {
  .topfranchise {
    padding-top: 100px;
    padding-left: 16px;
    flex-direction: column;
  }
}
.topfranchise_left {
  width: 50%;
  padding-right: 16.458vw;
}
@media screen and (max-width: 1270px) {
  .topfranchise_left {
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .topfranchise_left {
    padding-right: 0;
  }
}
.topfranchise_left h2 {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .topfranchise_left h2 {
    font-size: 24px;
    line-height: normal;
  }
}
.topfranchise_left .ttl {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 40px;
}
@media screen and (max-width: 480px) {
  .topfranchise_left .ttl {
    font-size: 18px;
  }
}
.topfranchise_right {
  width: calc(50% - 16.458vw);
}
@media screen and (max-width: 480px) {
  .topfranchise_right {
    width: auto;
    padding-right: 16px;
    margin-top: 20px;
  }
}
.topfranchise_right .btn_wrap {
  margin-top: 3em;
}
.topfranchise_right .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.topfranchise_right .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.topfranchise_right .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.topfranchise_right .btn_wrap .btn:hover {
  opacity: 0.7;
}
.topfranchise_right .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.topfranchise_right .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}

.topfranchise2 {
  position: relative;
  padding-bottom: 420px;
}
@media screen and (max-width: 1270px) {
  .topfranchise2 {
    padding-bottom: 250px;
  }
}
@media screen and (max-width: 480px) {
  .topfranchise2 {
    padding-bottom: 150px;
  }
}
.topfranchise2 .img {
  width: 12.292vw;
  position: absolute;
  left: 0;
  top: 17.24vw;
}
.topfranchise2 .img2 {
  width: 57.292vw;
  margin: 200px auto 0;
}
@media screen and (max-width: 1270px) {
  .topfranchise2 .img2 {
    margin-top: 100px;
  }
}
.topfranchise2 .img3 {
  width: 20.833vw;
  position: absolute;
  top: 24.063vw;
  right: 15.104vw;
}
.topfranchise2 .img4 {
  width: 12.24vw;
  position: absolute;
  right: 0;
  top: 0;
}

.shopinfo {
  padding-bottom: 150px;
}
@media screen and (max-width: 480px) {
  .shopinfo {
    padding-bottom: 80px;
  }
}
.shopinfo_inner {
  margin: 0 7.813vw;
  background-color: #3B3B3B;
  color: #fff;
  padding: 7.813vw 7.813vw 0;
  border-radius: 50%;
  box-shadow: #fff -80px 75px;
}
@media screen and (max-width: 1270px) {
  .shopinfo_inner {
    margin: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .shopinfo_inner {
    margin: 0 4.103vw;
    padding: 8.205vw 4.103vw 0;
    border-radius: 64.103vw;
  }
}
.shopinfo h2 {
  text-align: center;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .shopinfo h2 {
    font-size: 24px;
    line-height: normal;
  }
}
.shopinfo .ttl {
  text-align: center;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .shopinfo .ttl {
    margin-top: 5px;
    font-size: 14px;
  }
}
.shopinfo .shoplist {
  margin-top: 3.125vw;
}
@media screen and (max-width: 480px) {
  .shopinfo .shoplist {
    margin-top: 20px;
  }
}
.shopinfo .shoplist_item__img {
  width: 68.75vw;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .shopinfo .shoplist_item__img {
    width: auto;
  }
}
.shopinfo .shoplist_item__img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7.813vw;
}
@media screen and (max-width: 480px) {
  .shopinfo .shoplist_item__img img {
    height: 64.103vw;
  }
}
.shopinfo .shoplist_item__info {
  display: flex;
  justify-content: center;
  margin-top: 2.604vw;
  padding-bottom: 7.813vw;
}
@media screen and (max-width: 480px) {
  .shopinfo .shoplist_item__info {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
  }
}
.shopinfo .shoplist_item__info .left {
  margin-right: 4.167vw;
}
.shopinfo .shoplist_item__info .left .name {
  font-size: 32px;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 1270px) {
  .shopinfo .shoplist_item__info .left .name {
    font-size: 18px;
  }
}
.shopinfo .shoplist_item__info .left .btn_wrap {
  margin-top: 50px;
}
@media screen and (max-width: 1270px) {
  .shopinfo .shoplist_item__info .left .btn_wrap {
    margin-top: 30px;
  }
}
.shopinfo .shoplist_item__info .left .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.shopinfo .shoplist_item__info .left .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.shopinfo .shoplist_item__info .left .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.shopinfo .shoplist_item__info .left .btn_wrap .btn:hover {
  opacity: 0.7;
}
.shopinfo .shoplist_item__info .left .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.shopinfo .shoplist_item__info .left .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}
.shopinfo .shoplist_item__info .left .btn_wrap .btn:hover::before {
  background-color: #3B3B3B;
}
.shopinfo .shoplist_item__info .left .btn_wrap .btn:hover::after {
  background-color: #fff;
}
.shopinfo .shoplist_item__info .left .btn_wrap .btn::before {
  border-color: #fff;
  background-color: #fff;
}
.shopinfo .shoplist_item__info .left .btn_wrap .btn::after {
  background-color: #3B3B3B;
}
@media screen and (max-width: 1270px) {
  .shopinfo .shoplist_item__info .right {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .shopinfo .shoplist_item__info .right {
    margin-top: 10px;
    text-align: center;
  }
}
.shopinfo .shoplist_item__info .right p {
  margin-bottom: 5px;
}
.shopinfo .shoplist_item__info .right a {
  text-decoration: underline;
}

.about-intro {
  width: 68.75vw;
  margin: 200px auto 0;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 1270px) {
  .about-intro {
    margin-top: 100px;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .about-intro {
    margin: 80px auto 0;
    width: auto;
    padding: 0 16px;
  }
}
.about-intro .ttl {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  padding-left: 29px;
  margin-right: 150px;
}
@media screen and (max-width: 480px) {
  .about-intro .ttl {
    font-size: 12px;
    padding-left: 20px;
  }
}
.about-intro .ttl::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #3B3B3B;
}
@media screen and (max-width: 480px) {
  .about-intro .ttl::before {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 1270px) {
  .about-intro .ttl {
    margin-right: 0;
  }
}
@media screen and (max-width: 1270px) {
  .about-intro .txtarea {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .about-intro .txtarea {
    margin-top: 10px;
  }
}
.about-intro .txtarea_bold {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  margin-bottom: 36px;
  line-height: normal;
}
@media screen and (max-width: 480px) {
  .about-intro .txtarea_bold {
    font-size: 24px;
  }
}
.about-intro .txtarea_txt {
  font-weight: 500;
}
.about-intro .txtarea .btn_wrap {
  text-align: end;
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .about-intro .txtarea .btn_wrap {
    margin-right: 60px;
  }
}
.about-intro .txtarea .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.about-intro .txtarea .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.about-intro .txtarea .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.about-intro .txtarea .btn_wrap .btn:hover {
  opacity: 0.7;
}
.about-intro .txtarea .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.about-intro .txtarea .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}

.flow_img {
  margin-top: 185px;
  margin-bottom: 250px;
}
@media screen and (max-width: 1270px) {
  .flow_img {
    margin-top: 100px;
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 480px) {
  .flow_img {
    margin-top: 50px;
    margin-bottom: 100px;
  }
}
.flow_img .rotate {
  transform: rotate(3deg);
}
.flow_img .rotate2 {
  transform: rotate(-3deg);
}

.commitment {
  margin-bottom: 25vw;
  padding-left: 15.625vw;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1270px) {
  .commitment {
    flex-direction: column-reverse;
    margin-bottom: 65.854vw;
  }
}
@media screen and (max-width: 480px) {
  .commitment {
    padding-left: 16px;
  }
}
.commitment_txt {
  width: 40.74%;
}
@media screen and (max-width: 1270px) {
  .commitment_txt {
    width: auto;
    margin-top: 2rem;
    padding-right: 32px;
  }
}
@media screen and (max-width: 480px) {
  .commitment_txt {
    padding-right: 16px;
  }
}
.commitment_txt .ttl {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  padding-left: 29px;
}
@media screen and (max-width: 480px) {
  .commitment_txt .ttl {
    font-size: 12px;
    padding-left: 20px;
  }
}
.commitment_txt .ttl::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #3B3B3B;
}
@media screen and (max-width: 480px) {
  .commitment_txt .ttl::before {
    width: 10px;
    height: 10px;
  }
}
.commitment_txt h2 {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  margin-bottom: 2.604vw;
}
@media screen and (max-width: 480px) {
  .commitment_txt h2 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 36px;
  }
}
.commitment_txt .txt {
  margin-bottom: 2.604vw;
}
.commitment_img {
  width: 46.91%;
}
@media screen and (max-width: 1270px) {
  .commitment_img {
    width: auto;
  }
}
.commitment_item {
  position: absolute;
  bottom: -5.208vw;
  left: 7.813vw;
  z-index: -1;
  display: flex;
  align-items: end;
}
@media screen and (max-width: 1270px) {
  .commitment_item {
    width: 100%;
    justify-content: end;
    left: 0;
    bottom: -26.829vw;
  }
}
.commitment_item p {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  color: #fff;
  font-size: 10.417vw;
  line-height: 1;
}
@media screen and (max-width: 1270px) {
  .commitment_item p {
    font-size: 14.634vw;
  }
}
@media screen and (max-width: 480px) {
  .commitment_item p {
    font-size: 70px;
  }
}
.commitment_item img {
  width: 19.792vw;
}
@media screen and (max-width: 1270px) {
  .commitment_item img {
    width: 42.683vw;
    position: absolute;
    top: 12.195vw;
    left: 0;
  }
}

.quality {
  margin-bottom: 27.958vw;
  padding: 0 150px 0 15.625vw;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1270px) {
  .quality {
    flex-direction: column-reverse;
    padding-right: 0;
    margin-bottom: 59.512vw;
  }
}
@media screen and (max-width: 480px) {
  .quality {
    padding-left: 16px;
  }
}
.quality_txt {
  width: 43.39%;
}
@media screen and (max-width: 1270px) {
  .quality_txt {
    width: auto;
    padding-right: 32px;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .quality_txt {
    padding-right: 16px;
  }
}
.quality_txt .ttl {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  padding-left: 29px;
}
@media screen and (max-width: 480px) {
  .quality_txt .ttl {
    font-size: 12px;
    padding-left: 20px;
  }
}
.quality_txt .ttl::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #3B3B3B;
}
@media screen and (max-width: 480px) {
  .quality_txt .ttl::before {
    width: 10px;
    height: 10px;
  }
}
.quality_txt h2 {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  margin-bottom: 2.604vw;
}
@media screen and (max-width: 480px) {
  .quality_txt h2 {
    font-size: 5.641vw;
    margin-bottom: 36px;
    line-height: 1.5;
  }
}
.quality_txt .txt {
  margin-bottom: 2.604vw;
}
.quality_img {
  width: 41.5%;
}
.quality_img img {
  border-radius: 30px;
}
@media screen and (max-width: 1270px) {
  .quality_img img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media screen and (max-width: 1270px) {
  .quality_img {
    width: auto;
  }
}
.quality_item {
  position: absolute;
  bottom: -5.208vw;
  right: 16.667vw;
  z-index: -1;
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
}
@media screen and (max-width: 1270px) {
  .quality_item {
    bottom: -30.208vw;
    right: 36.667vw;
  }
}
.quality_item p {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  color: #fff;
  font-size: 10.417vw;
  line-height: 1;
}
@media screen and (max-width: 1270px) {
  .quality_item p {
    font-size: 14.634vw;
    bottom: -27.208vw;
  }
}
.quality_item2 {
  width: 19.792vw;
  position: absolute;
  right: 30px;
  bottom: -16.146vw;
  z-index: -1;
}
@media screen and (max-width: 1270px) {
  .quality_item2 {
    width: 42.683vw;
    right: 0;
    bottom: -38.146vw;
  }
}

.initiative {
  position: relative;
  display: flex;
  margin-bottom: 14.583vw;
}
@media screen and (max-width: 1270px) {
  .initiative {
    margin-bottom: 16.829vw;
  }
}
.initiative_left {
  position: absolute;
  left: 0;
  top: -9.896vw;
  width: 54.167vw;
}
@media screen and (max-width: 1270px) {
  .initiative_left {
    display: none;
  }
}
.initiative_right {
  width: 92.188vw;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .initiative_right {
    width: 100%;
  }
}
.initiative_ttl {
  background-color: #3B3B3B;
  color: #fff;
  padding: 2.604vw 0 2.604vw 53.646vw;
}
@media screen and (max-width: 1270px) {
  .initiative_ttl {
    padding: 30px 32px 30px 15.625vw;
  }
}
@media screen and (max-width: 480px) {
  .initiative_ttl {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.initiative_ttl .jattl {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .initiative_ttl .jattl {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.initiative_ttl .enttl {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .initiative_ttl .enttl {
    font-size: 32px;
  }
}
.initiative_txt {
  background-color: #fff;
  padding: 2.604vw 7.813vw 7.813vw 53.646vw;
}
@media screen and (max-width: 1270px) {
  .initiative_txt {
    padding: 30px 32px 30px 15.625vw;
  }
}
@media screen and (max-width: 480px) {
  .initiative_txt {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 50px;
  }
}
.initiative_txt .img {
  display: none;
}
@media screen and (max-width: 1270px) {
  .initiative_txt .img {
    display: block;
  }
}
.initiative_txt .top {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1270px) {
  .initiative_txt .top {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .initiative_txt .top {
    font-size: 20px;
    line-height: 1.5;
  }
}

.aboutpartner {
  display: flex;
  align-items: center;
  padding: 0 7.813vw;
  position: relative;
  margin-bottom: 11.198vw;
}
@media screen and (max-width: 1270px) {
  .aboutpartner {
    margin-bottom: 20.122vw;
  }
}
@media screen and (max-width: 480px) {
  .aboutpartner {
    padding: 0 16px;
  }
}
.aboutpartner_left {
  width: 34.1%;
  padding-right: 4.688vw;
}
@media screen and (max-width: 1270px) {
  .aboutpartner_left {
    width: 75%;
  }
}
@media screen and (max-width: 480px) {
  .aboutpartner_left {
    width: 100%;
  }
}
.aboutpartner_left .ttlarea {
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .aboutpartner_left .ttlarea {
    margin: 30px 0;
  }
}
.aboutpartner_left .ttlarea .enttl {
  font-family: "ten-mincho", serif;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .aboutpartner_left .ttlarea .enttl {
    line-height: 14px;
  }
}
.aboutpartner_left .ttlarea .jattl {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .aboutpartner_left .ttlarea .jattl {
    margin-top: 5px;
    font-size: 24px;
  }
}
.aboutpartner_left .btn_wrap {
  margin-top: 50px;
}
.aboutpartner_left .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.aboutpartner_left .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.aboutpartner_left .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.aboutpartner_left .btn_wrap .btn:hover {
  opacity: 0.7;
}
.aboutpartner_left .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.aboutpartner_left .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}
.aboutpartner_left .sp_flow {
  display: none;
}
@media screen and (max-width: 480px) {
  .aboutpartner_left .sp_flow {
    display: block;
  }
}
.aboutpartner_left .sp_flow_inner {
  width: calc(100% - 1rem);
}
.aboutpartner_left .sp_flow_inner img {
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 160px;
}
.aboutpartner_right {
  display: flex;
  width: 60%;
  height: 58.073vw;
  justify-content: space-between;
}
@media screen and (max-width: 1270px) {
  .aboutpartner_right {
    position: absolute;
    right: 0;
    justify-content: flex-end;
    z-index: -1;
  }
}
@media screen and (max-width: 480px) {
  .aboutpartner_right {
    display: none;
  }
}
.aboutpartner_right .loop {
  width: 22.396vw;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 1270px) {
  .aboutpartner_right .loop {
    margin-right: 30px;
  }
}
.aboutpartner_right .loop_list {
  display: flex;
  flex-direction: column;
}
.aboutpartner_right .loop_list li {
  margin-bottom: 50px;
}

.beginning {
  width: 68.75vw;
  margin: 220px auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1270px) {
  .beginning {
    width: auto;
    padding: 0 32px;
    margin: 100px 0;
  }
}
@media screen and (max-width: 480px) {
  .beginning {
    flex-direction: column;
    padding: 0 16px;
    margin: 50px 0;
  }
}
.beginning_left {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .beginning_left {
    width: auto;
  }
}
.beginning_left .ttlarea {
  margin-bottom: 2em;
}
.beginning_left .ttlarea .en {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  padding-left: 29px;
}
@media screen and (max-width: 480px) {
  .beginning_left .ttlarea .en {
    font-size: 12px;
    padding-left: 20px;
  }
}
.beginning_left .ttlarea .en::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #3B3B3B;
}
@media screen and (max-width: 480px) {
  .beginning_left .ttlarea .en::before {
    width: 10px;
    height: 10px;
  }
}
.beginning_left .ttlarea .ja {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .beginning_left .ttlarea .ja {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .beginning_right {
    margin-top: 2rem;
  }
}
.beginning_right .list_item {
  font-weight: 500;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .beginning_right .list_item {
    font-size: 18px;
  }
}
.beginning_right .list_item a {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.beginning_right .list_item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #D3D3D3;
}

.item_inner {
  padding-left: 7.813vw;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1270px) {
  .item_inner {
    padding-left: 3.902vw;
  }
}
@media screen and (max-width: 480px) {
  .item_inner {
    flex-direction: column;
    padding-left: 0;
  }
}
.item_01 {
  background-color: #3B3B3B;
  color: #fff;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  position: sticky;
  top: 5.208vw;
}
@media screen and (max-width: 480px) {
  .item_01 {
    position: static;
    border-radius: 0;
  }
}
.item_01 .item_img {
  width: 33.333%;
}
@media screen and (max-width: 480px) {
  .item_01 .item_img {
    width: auto;
  }
}
.item_01 .item_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-right-radius: 60px;
}
@media screen and (max-width: 480px) {
  .item_01 .item_img img {
    border-radius: 0;
  }
}
.item_01 .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.item_01 .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.item_01 .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.item_01 .btn_wrap .btn:hover {
  opacity: 0.7;
}
.item_01 .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.item_01 .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}
.item_01 .btn_wrap .btn:hover::before {
  background-color: #3B3B3B !important;
}
.item_01 .btn_wrap .btn:hover::after {
  background-color: #fff !important;
}
.item_01 .btn_wrap .btn::before {
  border-color: #fff !important;
  background-color: #fff !important;
}
.item_01 .btn_wrap .btn::after {
  background-color: #3B3B3B !important;
}
.item_02 {
  position: sticky;
  top: 5.208vw;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .item_02 {
    position: static;
  }
}
.item_02 .ja {
  color: #3B3B3B !important;
}
.item_02 .item_content_ttl {
  color: #3B3B3B !important;
}
.item_03 .item_ttlarea {
  padding-left: 3.646vw;
}
.item_03 .item_img img {
  border-bottom-right-radius: 0;
}
@media screen and (max-width: 1270px) {
  .item_03 .item_img img {
    border-top-left-radius: 15px;
  }
}
@media screen and (max-width: 480px) {
  .item_03 .item_img img {
    border-radius: 0;
  }
}
.item_ttlarea {
  width: 33.333%;
  padding: 4.167vw 7.344vw 5.208vw 0;
}
@media screen and (max-width: 1270px) {
  .item_ttlarea {
    padding: 3.659vw 3.659vw 3.659vw 0;
  }
}
@media screen and (max-width: 480px) {
  .item_ttlarea {
    padding: 30px 16px;
    width: auto;
  }
}
.item_ttlarea .ja {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 1270px) {
  .item_ttlarea .ja {
    text-align: center;
    margin-bottom: 5px;
  }
}
.item_ttlarea .en {
  font-size: 50px;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 1270px) {
  .item_ttlarea .en {
    font-size: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .item_ttlarea .en {
    font-size: 24px;
  }
}
@media screen and (max-width: 1270px) {
  .item_ttlarea .slick7 {
    margin-top: 20px;
  }
}
.item_ttlarea .slick7 .slick_inner img {
  height: 16.667vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media screen and (max-width: 1270px) {
  .item_ttlarea .slick7 .slick_inner img {
    height: 21.667vw;
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  .item_ttlarea .slick7 .slick_inner img {
    border-radius: 10px;
    height: 51.282vw;
  }
}
.item_content {
  width: 33.333%;
  padding: 11.146vw 6.042vw 8.594vw 2.188vw;
}
@media screen and (max-width: 1270px) {
  .item_content {
    padding: 3.659vw 1.951vw;
  }
}
@media screen and (max-width: 480px) {
  .item_content {
    width: auto;
    padding: 16px 16px 50px;
  }
}
.item_content_ttl {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 20px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 2em;
}
@media screen and (max-width: 480px) {
  .item_content_ttl {
    font-size: 18px;
    margin-bottom: 1rem;
  }
}
.item_content_txt {
  margin-bottom: 50px;
}
.item_content .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.item_content .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.item_content .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.item_content .btn_wrap .btn:hover {
  opacity: 0.7;
}
.item_content .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.item_content .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}
.item_img {
  width: 33.333%;
}
@media screen and (max-width: 480px) {
  .item_img {
    width: auto;
  }
}
.item_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept {
  width: 68.75vw;
  margin: 200px auto 150px;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 1270px) {
  .concept {
    margin-top: 100px;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .concept {
    margin: 80px auto 50px;
    width: auto;
    padding: 0 16px;
  }
}
.concept .ttl {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  padding-left: 29px;
  margin-right: 150px;
}
@media screen and (max-width: 480px) {
  .concept .ttl {
    font-size: 12px;
    padding-left: 20px;
  }
}
.concept .ttl::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #3B3B3B;
}
@media screen and (max-width: 480px) {
  .concept .ttl::before {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 1270px) {
  .concept .ttl {
    margin-right: 0;
  }
}
@media screen and (max-width: 1270px) {
  .concept .txtarea {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .concept .txtarea {
    margin-top: 10px;
  }
}
.concept .txtarea_bold {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  margin-bottom: 36px;
  line-height: normal;
}
@media screen and (max-width: 480px) {
  .concept .txtarea_bold {
    font-size: 24px;
  }
}
.concept .txtarea_txt {
  font-weight: 500;
}

.conceptflow {
  position: relative;
  width: 100%;
  overflow: clip;
  margin-bottom: 190px;
}
@media screen and (max-width: 480px) {
  .conceptflow {
    margin-bottom: 80px;
  }
}
.conceptflow_container {
  background-image: url(../../assets/img/menu/mokupanconcept.png);
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .conceptflow_container {
    background-size: contain;
  }
}
.conceptflow_wrap {
  width: 461.75rem;
  height: 48.625rem;
  animation: 50s linear infinite flow-images-md;
}
@media screen and (max-width: 480px) {
  .conceptflow_wrap {
    width: 157.3076923077rem;
    height: 24.3076923077rem;
    animation: 30s linear infinite flow-images-sm;
  }
}
.conceptflow_images {
  width: 228.375rem;
  height: 48.625rem;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .conceptflow_images {
    width: 80.9230769231rem;
    height: 24.3076923077rem;
  }
}
.conceptflow_images:nth-child(1) {
  top: 0;
  left: 0;
}
.conceptflow_images:nth-child(2) {
  top: 0;
  right: 0;
}
.conceptflow_images .images {
  position: absolute;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images {
    position: static;
    margin-left: 1.2307692308rem;
  }
}
.conceptflow_images .images:nth-child(1) {
  top: 0;
  left: 13rem;
  width: 16.875rem;
  height: 16.875rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(1) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
    margin-left: 5.5384615385rem;
  }
}
.conceptflow_images .images:nth-child(2) {
  top: 12.1875rem;
  left: 33.625rem;
  width: 26.125rem;
  height: 26.125rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(2) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
  }
}
.conceptflow_images .images:nth-child(3) {
  top: 0;
  left: 69.375rem;
  width: 26.125rem;
  height: 26.125rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(3) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
  }
}
.conceptflow_images .images:nth-child(4) {
  top: 0;
  left: 112.25rem;
  width: 16.875rem;
  height: 16.875rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(4) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
  }
}
.conceptflow_images .images:nth-child(5) {
  bottom: 0;
  left: 162.75rem;
  width: 16.875rem;
  height: 16.875rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(5) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
  }
}
.conceptflow_images .images:nth-child(6) {
  top: 0;
  left: 211.5625rem;
  width: 16.875rem;
  height: 16.875rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(6) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
  }
}
.conceptflow_images .images:nth-child(7) {
  bottom: 0;
  left: 0;
  width: 26.125rem;
  height: 26.125rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(7) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
  }
}
.conceptflow_images .images:nth-child(n+7) {
  margin-top: 1.2307692308rem;
}
.conceptflow_images .images:nth-child(8) {
  bottom: 0;
  left: 63.5rem;
  width: 16.875rem;
  height: 16.875rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(8) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
  }
}
.conceptflow_images .images:nth-child(9) {
  bottom: 0;
  left: 99.25rem;
  width: 26.125rem;
  height: 26.125rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(9) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
  }
}
.conceptflow_images .images:nth-child(10) {
  top: 12.1875rem;
  left: 132.875rem;
  width: 26.125rem;
  height: 26.125rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(10) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
  }
}
.conceptflow_images .images:nth-child(11) {
  top: 0;
  left: 168.625rem;
  width: 26.125rem;
  height: 26.125rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(11) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
  }
}
.conceptflow_images .images:nth-child(12) {
  bottom: 0;
  left: 198.5rem;
  width: 26.125rem;
  height: 26.125rem;
}
@media screen and (max-width: 480px) {
  .conceptflow_images .images:nth-child(12) {
    overflow: hidden;
    width: 11.5384615385rem;
    height: 11.5384615385rem;
  }
}

.menuonline {
  background-color: #3B3B3B;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  margin-bottom: 150px;
}
@media screen and (max-width: 480px) {
  .menuonline {
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}
.menuonline_wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: clip;
  padding: 4.167vw 7.813vw;
}
@media screen and (max-width: 480px) {
  .menuonline_wrap {
    padding: 50px 16px;
    flex-direction: column;
  }
}
.menuonline_wrap::before {
  content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../../assets/img/menu/mokupan_online_store.png) no-repeat center;
  background-size: contain;
  z-index: 1;
}
.menuonline_wrap::after {
  content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../../../assets/img/menu/mokupan_online_store.png) no-repeat center;
  background-size: contain;
  transform: rotate(-180deg);
  z-index: 1;
}
.menuonline_left {
  position: relative;
  z-index: 2;
  width: 60.3%;
}
@media screen and (max-width: 480px) {
  .menuonline_left {
    width: auto;
  }
}
.menuonline_left_img {
  position: relative;
}
.menuonline_left_img .ttl {
  position: absolute;
  top: 0;
  left: 7.813vw;
  writing-mode: vertical-lr;
  background-color: #fff;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  letter-spacing: 10px;
  padding: 18px 0;
  border-radius: 18px;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .menuonline_left_img .ttl {
    font-size: 4.615vw;
  }
}
.menuonline_left_img .txt {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 1.042vw;
  color: #fff;
  font-weight: 500;
  position: absolute;
  right: 2.031vw;
  bottom: 6.406vw;
}
@media screen and (max-width: 480px) {
  .menuonline_left_img .txt {
    font-size: 3.077vw;
    right: 2.564vw;
    bottom: 7.692vw;
  }
}
.menuonline_right {
  width: 39.7%;
  padding-left: 5.208vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .menuonline_right {
    width: auto;
    padding-left: 0;
  }
}
.menuonline_right .ttl {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  color: #fff;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .menuonline_right .ttl {
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 20px;
  }
}
.menuonline_right .txt {
  color: #fff;
  margin-bottom: 50px;
}
.menuonline_right .btn_wrap {
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .menuonline_right .btn_wrap {
    margin-bottom: 5px;
  }
}
.menuonline_right .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.menuonline_right .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.menuonline_right .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.menuonline_right .btn_wrap .btn:hover {
  opacity: 0.7;
}
.menuonline_right .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.menuonline_right .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}
.menuonline_right .btn_wrap .btn:hover::before {
  background-color: #3B3B3B !important;
}
.menuonline_right .btn_wrap .btn:hover::after {
  background-color: #fff !important;
}
.menuonline_right .btn_wrap .btn::before {
  border-color: #fff !important;
  background-color: #fff !important;
}
.menuonline_right .btn_wrap .btn::after {
  background-color: #3B3B3B !important;
}
.menuonline_right .item {
  width: 67px;
}
@media screen and (max-width: 480px) {
  .menuonline_right .item {
    width: 30px;
  }
}
.menuonline_right .item.item2 {
  text-align: right;
  transform: rotate(-180deg);
  margin-right: 0;
  margin-left: auto;
}

.partner-intro {
  width: 68.75vw;
  margin: 200px auto 0;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 1270px) {
  .partner-intro {
    width: auto;
    padding: 0 92px 0 32px;
    margin-top: 100px;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .partner-intro {
    margin: 80px auto 0;
    width: auto;
    padding: 0 16px;
  }
}
.partner-intro .ttl {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  padding-left: 29px;
  margin-right: 150px;
}
@media screen and (max-width: 480px) {
  .partner-intro .ttl {
    font-size: 12px;
    padding-left: 20px;
  }
}
.partner-intro .ttl::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #3B3B3B;
}
@media screen and (max-width: 480px) {
  .partner-intro .ttl::before {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 1270px) {
  .partner-intro .ttl {
    margin-right: 0;
  }
}
@media screen and (max-width: 1270px) {
  .partner-intro .txtarea {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .partner-intro .txtarea {
    margin-top: 10px;
  }
}
.partner-intro .txtarea_bold {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  margin-bottom: 36px;
  line-height: normal;
}
@media screen and (max-width: 480px) {
  .partner-intro .txtarea_bold {
    font-size: 24px;
  }
}
.partner-intro .txtarea_txt {
  font-weight: 500;
}
.partner-intro .txtarea .btn_wrap {
  text-align: end;
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .partner-intro .txtarea .btn_wrap {
    margin-right: 60px;
  }
}
.partner-intro .txtarea .btn_wrap .btn {
  text-transform: capitalize;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  position: relative;
  transition: all 0.4s;
}
.partner-intro .txtarea .btn_wrap .btn::before {
  content: "";
  border: solid 1px #3B3B3B;
  background-color: #3B3B3B;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
.partner-intro .txtarea .btn_wrap .btn::after {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.partner-intro .txtarea .btn_wrap .btn:hover {
  opacity: 0.7;
}
.partner-intro .txtarea .btn_wrap .btn:hover::before {
  background-color: #fff;
}
.partner-intro .txtarea .btn_wrap .btn:hover::after {
  animation: left-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  background-color: #3B3B3B;
}

.partnerlist {
  width: 68.75vw;
  margin: 120px auto 200px;
}
@media screen and (max-width: 1270px) {
  .partnerlist {
    width: auto;
    padding: 0 32px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .partnerlist {
    margin-top: 80px;
    margin-bottom: 50px;
    padding: 0 16px;
  }
}
.partnerlist_ttl {
  text-align: center;
}
.partnerlist_ttl .en {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.5;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .partnerlist_ttl .en {
    font-size: 24px;
  }
}
.partnerlist_ttl .ja {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .partnerlist_ttl .ja {
    font-size: 14px;
  }
}
.partnerlist .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 70px;
}
@media screen and (max-width: 480px) {
  .partnerlist .list {
    margin-top: 30px;
    flex-direction: column;
  }
}
.partnerlist .list_shop {
  width: calc(50% - 3.125vw);
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .partnerlist .list_shop {
    width: auto;
    margin-bottom: 50px;
  }
}
.partnerlist .list_shop_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 20.833vw;
  border-radius: 40px;
}
@media screen and (max-width: 1270px) {
  .partnerlist .list_shop_img img {
    height: 36.585vw;
  }
}
@media screen and (max-width: 480px) {
  .partnerlist .list_shop_img img {
    border-radius: 15px;
    height: 250px;
  }
}
.partnerlist .list_shop_txt {
  margin-top: 1.5em;
}
.partnerlist .list_shop_txt .name {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .partnerlist .list_shop_txt .name {
    font-size: 18px;
  }
}
.partnerlist .list_shop_txt .address {
  font-weight: 500;
}

.banner {
  background: url(../../assets/img/partner/banner.png) no-repeat center;
  background-size: cover;
  padding: 110px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .banner {
    padding: 50px 0;
  }
}
.banner a {
  transition: all 0.4s;
  display: block;
}
@media screen and (max-width: 1270px) {
  .banner a {
    width: 100%;
  }
}
.banner a:hover .banner_content {
  background-color: #fff;
  color: #3B3B3B;
}
.banner_content {
  text-align: center;
  color: #fff;
  border: #fff solid 1px;
  border-radius: 20px;
  width: 60.417vw;
  padding: 32px 0;
  transition: all 0.4s;
  position: relative;
}
@media screen and (max-width: 1270px) {
  .banner_content {
    width: calc(100% - 64px);
    margin: 0 auto;
    padding: 32px;
  }
}
@media screen and (max-width: 480px) {
  .banner_content {
    padding: 10px 16px;
    width: calc(100% - 32px);
    border-radius: 10px;
  }
}
.banner_content .top {
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .banner_content .top {
    font-size: 12px;
  }
}
.banner_content .btm {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1.5;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .banner_content .btm {
    font-size: 32px;
  }
}

.archive {
  width: 68.75vw;
  margin: 80px auto 120px;
}
@media screen and (max-width: 1270px) {
  .archive {
    width: auto;
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .archive {
    margin: 50px auto;
    padding: 0 16px;
  }
}
.archive_list {
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .archive_list {
    margin-bottom: 30px;
  }
}
.archive_item {
  padding: 32px 0;
  border-top: 1px solid #3B3B3B;
}
@media screen and (max-width: 480px) {
  .archive_item {
    padding: 20px 0;
  }
}
.archive_item:last-child {
  border-bottom: 1px solid #3B3B3B;
}
.archive_item a {
  display: inline-block;
  transition: all 0.4s;
}
.archive_item a:hover {
  opacity: 0.7;
}
.archive_item .flex {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 480px) {
  .archive_item .flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
.archive_item .flex time {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 14px;
}
.archive_item .flex .ttl {
  margin-left: 50px;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .archive_item .flex .ttl {
    margin-left: 0;
  }
}
.archive .topic_pager .page-numbers {
  display: flex;
  align-items: center;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 16px;
}
.archive .topic_pager .page-numbers li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.archive .topic_pager .page-numbers a {
  transition: all 0.4s;
}
.archive .topic_pager .page-numbers a:hover {
  opacity: 0.7;
}
.archive .topic_pager .page-numbers .current {
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #3B3B3B;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.single {
  display: flex;
}
@media screen and (max-width: 480px) {
  .single {
    padding-top: 100px;
    flex-direction: column;
  }
}
.single .thum {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 480px) {
  .single .thum {
    width: auto;
  }
}
.single .thum .sticky_item {
  position: sticky;
  top: 0;
}
@media screen and (max-width: 1270px) {
  .single .thum .sticky_item {
    top: 50px;
  }
}
.single .thum .sticky_item img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1270px) {
  .single .thum .sticky_item img {
    height: 42.683vw;
  }
}
@media screen and (max-width: 1270px) {
  .single .thum .sticky_item img {
    height: 89.744vw;
  }
}
.single_txt {
  width: 50%;
  padding: 50px 16px;
}
@media screen and (max-width: 480px) {
  .single_txt {
    width: auto;
    padding: 30px 16px;
  }
}
.single_ttl {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #E1E1E1;
}
@media screen and (max-width: 480px) {
  .single_ttl {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.single_ttl .category {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .single_ttl .category {
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1;
  }
}
.single_ttl .ttl {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
}
@media screen and (max-width: 480px) {
  .single_ttl .ttl {
    line-height: 1;
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.single_ttl time {
  font-family: "ten-mincho", serif;
  font-weight: 400;
}
.single_contents p {
  margin-bottom: 2rem;
}

.backbtn {
  padding: 100px 0;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .backbtn {
    padding: 30px 0;
  }
}
.backbtn a {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 50px;
  transition: all 0.4s;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .backbtn a {
    font-size: 8.205vw;
  }
}
.backbtn a:hover {
  opacity: 0.7;
}
.backbtn a:hover::after {
  transform: scale(1);
}
.backbtn a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #3B3B3B;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.4s;
}

.taxonomy_inner {
  width: 68.75vw;
  margin: 160px auto;
}
@media screen and (max-width: 1270px) {
  .taxonomy_inner {
    width: auto;
    padding: 0 32px;
    margin: 80px auto;
  }
}
@media screen and (max-width: 480px) {
  .taxonomy_inner {
    padding: 0 16px;
  }
}
.taxonomy .menu_nav {
  display: flex;
  align-items: center;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 120px;
}
@media screen and (max-width: 1270px) {
  .taxonomy .menu_nav {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .taxonomy .menu_nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
.taxonomy .menu_nav_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3B3B3B;
  width: 15.26vw;
  height: 15.26vw;
  border-radius: 50%;
}
@media screen and (max-width: 480px) {
  .taxonomy .menu_nav_ttl {
    width: 100%;
    border-radius: 8.974vw;
  }
}
.taxonomy .menu_nav_ttl .ttl {
  color: #fff;
  font-size: 24px;
}
@media screen and (max-width: 1270px) {
  .taxonomy .menu_nav_ttl .ttl {
    font-size: 16px;
  }
}
.taxonomy .menu_nav_list {
  width: calc(100% - 15.26vw);
  display: flex;
  padding-bottom: 16px;
  border-bottom: solid 1px #3B3B3B;
}
@media screen and (max-width: 480px) {
  .taxonomy .menu_nav_list {
    width: auto;
    margin-top: 30px;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
}
.taxonomy .menu_nav_item {
  margin-left: 2.604vw;
}
@media screen and (max-width: 480px) {
  .taxonomy .menu_nav_item {
    width: 50%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.taxonomy .menu_nav_item a.is-current {
  background-color: #3B3B3B;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.taxonomy_list {
  display: flex;
  flex-wrap: wrap;
}
.taxonomy_item {
  width: calc(33.3333% - 1.563vw);
  margin-right: 1.563vw;
  display: flex;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1270px) {
  .taxonomy_item {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .taxonomy_item {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
.taxonomy_item .txt {
  padding: 20px 0 0;
}
.taxonomy_item .txt .ttl {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.taxonomy_item .txt .en_sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .taxonomy_item .txt .en_sp {
    font-family: "ten-mincho", serif;
    font-weight: 400;
    display: block;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1;
    margin-bottom: 15px;
  }
}
.taxonomy_item .en {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 480px) {
  .taxonomy_item .en {
    display: none;
  }
}
.taxonomy_item .zoomIn img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  height: 19.844vw;
}
@media screen and (max-width: 1270px) {
  .taxonomy_item .zoomIn img {
    height: 40.844vw;
  }
}
@media screen and (max-width: 480px) {
  .taxonomy_item .zoomIn img {
    height: 64.103vw;
  }
}
.taxonomy_item .zoomIn a:hover img {
  transform: scale(1.1);
}
.taxonomy_item .mask {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.contact_wrap {
  width: 1024px;
  margin: 120px auto 200px;
}
@media screen and (max-width: 1270px) {
  .contact_wrap {
    width: auto;
    padding: 0 16px;
  }
}
@media screen and (max-width: 768px) {
  .contact_wrap {
    margin: 100px auto;
  }
}
@media screen and (max-width: 480px) {
  .contact_wrap {
    padding: 0;
  }
}
.contact_wrap .contact_inner {
  padding: 80px 50px;
  background-color: #fff;
  border-radius: 70px;
}
@media screen and (max-width: 480px) {
  .contact_wrap .contact_inner {
    padding: 50px 16px 0;
    border-radius: 35px;
  }
}
.contact_wrap .desc {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 16px;
  font-weight: 500;
}
.contact_wrap .contact_tel {
  position: relative;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  padding-left: 44px;
  text-decoration: underline;
  line-height: 1.5;
  margin-top: 2rem;
}
@media screen and (max-width: 480px) {
  .contact_wrap .contact_tel {
    font-size: 24px;
  }
}
.contact_wrap .contact_tel::before {
  content: "";
  background: url(../../assets/img/sp_tel_icon.svg) no-repeat center;
  background-size: 100%;
  width: 26px;
  height: 100%;
  position: absolute;
  top: 2px;
  left: 0;
}
.contact_wrap .tbl-base {
  width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 480px) {
  .contact_wrap .tbl-base {
    margin-top: 30px;
  }
}
.contact_wrap tbody {
  width: 100%;
}
.contact_wrap tbody tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.contact_wrap tbody th {
  font-weight: 500;
  margin-bottom: 10px;
}
.contact_wrap tbody td select,
.contact_wrap tbody td input,
.contact_wrap tbody td textarea {
  border-radius: 5px;
  padding: 1%;
  width: 100%;
  border: solid 1px #3B3B3B;
}
.contact_wrap tbody td .contact_link_btn {
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .contact_wrap tbody td .contact_link_btn {
    margin-top: 10px;
  }
}
.contact_wrap tbody td .contact_link_btn input {
  cursor: pointer;
  background-color: #3B3B3B;
  color: #fff;
  text-align: center;
  font-weight: 700;
  transition: all 0.4s;
}
.contact_wrap tbody td .contact_link_btn input:hover {
  background-color: #fff;
  color: #3B3B3B;
}
.contact_wrap .clrred {
  color: red;
}
.contact_wrap .privacy-item {
  font-weight: 500;
  margin-bottom: 2rem;
}
.contact_wrap .privacy-item h2 {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 18px;
}
.contact_wrap .privacy-item ol {
  margin-top: 1rem;
  list-style: circle;
  margin-left: 20px;
}
.contact_wrap .privacy-item ol li {
  margin-bottom: 2rem;
}
@media screen and (max-width: 480px) {
  .contact_wrap .privacy-item ol li {
    margin-bottom: 1rem;
  }
}
.contact_wrap .privacy-item ol li ul {
  list-style: disc;
  margin-left: 20px;
}
.contact_wrap .privacy-item ol li ul li {
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.contact_wrap .law dl {
  display: flex;
  margin-bottom: 2rem;
}
@media screen and (max-width: 480px) {
  .contact_wrap .law dl {
    flex-direction: column;
  }
}
.contact_wrap .law dl dt {
  width: 30%;
  border-bottom: 1px solid #d4d4d4;
}
@media screen and (max-width: 480px) {
  .contact_wrap .law dl dt {
    width: auto;
    border-bottom: none;
  }
}
.contact_wrap .law dl dd {
  width: calc(70% - 10px);
  margin-left: 10px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d4d4d4;
}
@media screen and (max-width: 480px) {
  .contact_wrap .law dl dd {
    width: 100%;
    margin-top: 0.5rem;
    margin-left: 0;
  }
}
.contact_wrap .franchise {
  border-radius: 35px;
}
@media screen and (max-width: 480px) {
  .contact_wrap .franchise {
    padding-bottom: 50px;
  }
}
.contact_wrap .franchise_ttl {
  text-align: center;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
}
.contact_wrap .franchise_txt {
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
}

.woocommerce {
  width: 68.75vw;
  margin: 5rem auto 0 !important;
  padding-bottom: 605px;
}
@media screen and (max-width: 1270px) {
  .woocommerce {
    padding: 0 32px 500px;
  }
}
@media screen and (max-width: 768px) {
  .woocommerce {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .woocommerce {
    margin-top: 0 !important;
    flex-direction: column;
    padding: 0 16px 50px;
  }
}
.woocommerce-MyAccount-navigation {
  width: 250px;
  float: left;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
  }
}
.woocommerce-MyAccount-navigation ul li {
  border: 1px solid #eee;
  background-color: #eee;
  border-bottom-width: 0;
  color: #3B3B3B;
}
.woocommerce-MyAccount-navigation ul li.is-active {
  background-color: #3B3B3B;
  color: #fff;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  cursor: default;
}
.woocommerce-MyAccount-navigation ul li.is-active a:hover {
  opacity: 0.8;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 1rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  color: #3B3B3B;
}
.woocommerce-MyAccount-content {
  float: right;
  width: 68%;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-content {
    width: 100%;
    padding-left: 0;
    margin-top: 2rem;
    float: none;
  }
}
@media screen and (max-width: 480px) {
  .woocommerce-MyAccount-content {
    width: 100%;
    padding-left: 0;
  }
}
.woocommerce h2 {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  color: #3B3B3B;
  margin-bottom: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (max-width: 480px) {
  .woocommerce h2 {
    margin-top: 0;
  }
}
.woocommerce .woocommerce-form-login {
  max-width: 1024px;
}

.singleitem {
  padding: 0 7.813vw;
  margin: 0 auto 150px;
}
@media screen and (max-width: 1270px) {
  .singleitem {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .singleitem {
    padding: 0 16px;
    margin: 0 0 50px;
  }
}
.singleitem_flex {
  display: flex;
  padding-bottom: 50px;
  border-bottom: solid 1px #3B3B3B;
}
@media screen and (max-width: 768px) {
  .singleitem_flex {
    flex-direction: column;
  }
}
.singleitem_left {
  width: 59.25%;
}
.singleitem_left img {
  height: 48.861vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .singleitem_left img {
    height: 91.795vw;
  }
}
@media screen and (max-width: 768px) {
  .singleitem_left {
    width: auto;
    margin-bottom: 1rem;
  }
}
.singleitem_right {
  width: calc(50% - 5.99vw);
  padding-left: 5.99vw;
}
@media screen and (max-width: 1270px) {
  .singleitem_right {
    width: calc(50% - 1.951vw);
    padding-left: 1.951vw;
  }
}
@media screen and (max-width: 768px) {
  .singleitem_right {
    width: auto;
    padding-left: 0;
  }
}
.singleitem_right .entry-summary .en {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
@media screen and (max-width: 480px) {
  .singleitem_right .entry-summary .en {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.singleitem_right .entry-summary .product_title {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  line-height: 1;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #3B3B3B;
}
@media screen and (max-width: 480px) {
  .singleitem_right .entry-summary .product_title {
    font-size: 20px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
.singleitem_right .entry-summary .woocommerce-product-details__short-description {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .singleitem_right .entry-summary .woocommerce-product-details__short-description {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .singleitem_right .entry-summary .woocommerce-product-details__short-description {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }
}
.singleitem_right .entry-summary .price {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .singleitem_right .entry-summary .price {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .singleitem_right .entry-summary .price {
    font-size: 18px;
  }
}
.singleitem_right .entry-summary .cart .quantity {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.singleitem_right .entry-summary .cart .quantity label {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
  width: 120px;
}
@media screen and (max-width: 480px) {
  .singleitem_right .entry-summary .cart .quantity label {
    font-size: 18px;
  }
}
.singleitem_right .entry-summary .cart .quantity input {
  text-align: center;
  font-weight: 700;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 24px;
  padding: 1%;
  width: 95px;
  border: solid 1px #3B3B3B;
}
@media screen and (max-width: 480px) {
  .singleitem_right .entry-summary .cart .quantity input {
    font-size: 18px;
  }
}
.singleitem_right .entry-summary .cart button {
  background-color: #3B3B3B;
  color: #fff;
  width: 100%;
  padding: 25px 0;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  position: relative;
  transition: all 0.4s;
}
@media screen and (max-width: 480px) {
  .singleitem_right .entry-summary .cart button {
    font-size: 16px;
  }
}
.singleitem_right .entry-summary .cart button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-400%, -50%);
  background: url(../../assets/img/shop_icon.svg) center center no-repeat;
  background-size: contain;
  width: 35px;
  height: 35px;
}
.singleitem_right .entry-summary .cart button:hover {
  opacity: 0.8;
}
.singleitem .related.products h2 {
  margin-top: 50px;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .singleitem .related.products h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 18px;
  }
}
.singleitem .related.products ul {
  display: flex;
  flex-wrap: wrap;
}
.singleitem .related.products li {
  width: 33.333%;
  border: solid 1px #E1E1E1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .singleitem .related.products li {
    width: 50%;
  }
}
.singleitem .related.products li .attachment-woocommerce_thumbnail {
  height: 26.042vw;
}
.singleitem .related.products li .woocommerce-loop-product__title {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
  text-align: left;
  margin: 5px 0 10px;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .singleitem .related.products li .woocommerce-loop-product__title {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.singleitem .related.products li .price {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .singleitem .related.products li .price {
    font-size: 16px;
  }
}
.singleitem .related.products li .product_type_simple.add_to_cart_button {
  margin-top: 10px;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  background-color: #3B3B3B;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 480px) {
  .singleitem .related.products li .product_type_simple.add_to_cart_button {
    font-size: 12px;
  }
}
.singleitem .related.products li .product_type_simple.add_to_cart_button:hover {
  opacity: 0.8;
}

.is-large.wc-block-cart {
  margin-top: 3rem;
}

.woocommerce-product-gallery {
  opacity: 1 !important;
}

.tabs.wc-tabs {
  display: none;
}

.woocommerce-product-gallery__image img {
  height: 48.861vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .woocommerce-product-gallery__image img {
    height: 91.795vw;
  }
}
@media screen and (max-width: 768px) {
  .woocommerce-product-gallery__image {
    width: auto;
    margin-bottom: 1rem;
  }
}

.entry-summary {
  width: calc(50% - 5.99vw);
  padding-left: 5.99vw;
}
@media screen and (max-width: 1270px) {
  .entry-summary {
    width: calc(50% - 1.951vw);
    padding-left: 1.951vw;
  }
}
@media screen and (max-width: 768px) {
  .entry-summary {
    width: auto;
    padding-left: 0;
  }
}
.entry-summary .en {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
@media screen and (max-width: 480px) {
  .entry-summary .en {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.entry-summary .product_title {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  line-height: 1;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #3B3B3B;
}
@media screen and (max-width: 480px) {
  .entry-summary .product_title {
    font-size: 20px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
.entry-summary .woocommerce-product-details__short-description {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .entry-summary .woocommerce-product-details__short-description {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .entry-summary .woocommerce-product-details__short-description {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }
}
.entry-summary .price {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .entry-summary .price {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .entry-summary .price {
    font-size: 18px;
  }
}
.entry-summary .cart .quantity {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.entry-summary .cart .quantity label {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
  width: 120px;
}
@media screen and (max-width: 480px) {
  .entry-summary .cart .quantity label {
    font-size: 18px;
  }
}
.entry-summary .cart .quantity input {
  text-align: center;
  font-weight: 700;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 24px;
  padding: 1%;
  width: 95px;
  border: solid 1px #3B3B3B;
}
@media screen and (max-width: 480px) {
  .entry-summary .cart .quantity input {
    font-size: 18px;
  }
}
.entry-summary .cart button {
  background-color: #3B3B3B;
  color: #fff;
  width: 100%;
  padding: 25px 0;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  position: relative;
  transition: all 0.4s;
}
@media screen and (max-width: 480px) {
  .entry-summary .cart button {
    font-size: 16px;
  }
}
.entry-summary .cart button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-400%, -50%);
  background: url(../../assets/img/shop_icon.svg) center center no-repeat;
  background-size: contain;
  width: 35px;
  height: 35px;
}
.entry-summary .cart button:hover {
  opacity: 0.8;
}

.woocommerce-product-gallery__image {
  display: none;
}
.woocommerce-product-gallery__image:first-child {
  display: block;
}

.woocommerce-notices-wrapper {
  padding: 0 7.813vw;
}
@media screen and (max-width: 1270px) {
  .woocommerce-notices-wrapper {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .woocommerce-notices-wrapper {
    padding: 0 16px;
    margin: 50px 0;
  }
}

.related.products h2 {
  margin-top: 50px;
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .related.products h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 18px;
  }
}
.related.products ul {
  display: flex;
  flex-wrap: wrap;
}
.related.products li {
  width: 33.333%;
  border: solid 1px #E1E1E1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .related.products li {
    width: 50%;
  }
}
.related.products li .attachment-woocommerce_thumbnail {
  height: 26.042vw;
}
.related.products li .woocommerce-loop-product__title {
  font-family: "ten-mincho-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #3B3B3B;
  font-size: 24px;
  text-align: left;
  margin: 5px 0 10px;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .related.products li .woocommerce-loop-product__title {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.related.products li .price {
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .related.products li .price {
    font-size: 16px;
  }
}
.related.products li .product_type_simple.add_to_cart_button {
  margin-top: 10px;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  background-color: #3B3B3B;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 480px) {
  .related.products li .product_type_simple.add_to_cart_button {
    font-size: 12px;
  }
}
.related.products li .product_type_simple.add_to_cart_button:hover {
  opacity: 0.8;
}

.wc-block-cart {
  padding: 0 7.813vw;
  margin-top: 150px;
}
@media screen and (max-width: 1270px) {
  .wc-block-cart {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .wc-block-cart {
    padding: 0 16px;
    margin: 50px 0;
  }
}

.wp-block-woocommerce-checkout {
  padding: 0 7.813vw;
  margin-top: 150px;
}
@media screen and (max-width: 1270px) {
  .wp-block-woocommerce-checkout {
    padding: 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .wp-block-woocommerce-checkout {
    padding: 0 16px;
    margin: 50px 0;
  }
}/*# sourceMappingURL=style.css.map */