/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

@font-face {
  font-family: 'DIN';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/DINRegular.ttf') format('truetype');
}
@font-face {
  font-family: 'DIN';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/DINBlod.ttf') format('truetype');
}

:root {
  --color-primary: #000000;
  --color-beige: #F0D4A9;
  --color-brown: #85714C;

  --grad-gold: linear-gradient(120deg, #F0D4A9 30%, #B09C77 100%);

  --font-serif: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
}


/* 
----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  color: var( --color-primary );
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: #161f3e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

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

a:hover {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

p a {
  color: var(--color-brown);
  text-decoration: underline;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.mb-0 {
  margin-bottom: 0;
}

.pt-0 {
  padding-top: 0 !important;
}

.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-80 {
  margin-top: 80px;
}
@media screen and (max-width: 750px){
  .mt-40-sp {
    margin-top: 40px;
  }
}

.t-center {
  text-align: center;
}
.t-center-sp {
  @media screen and (max-width: 750px) {
    text-align: center;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.link-tel {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 751px) {
  .link-tel {
    pointer-events: none;
  }
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .wrapper {
    width: auto;
  }
}

.hover-opacity {
  transition: 0.3s;
}
@media only screen and (min-width: 751px) {
  .hover-opacity:hover {
    opacity: 0.7;
  }
}

.font-serif {
  font-family: var(--font-serif);
}
.font-din {
  font-family: 'DIN', sans-serif;
}

.color-brown {
  color: var(--color-brown);
}

.underline {
  text-decoration: underline;
}

.title-primary {
  text-align: center;
  position: relative;
  padding-bottom: 30px;
  @media screen and (max-width: 750px){
    padding-bottom: 20px;
  }
  &:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 174px;
    height: 3px;
    background: var(--color-brown);
    @media screen and (max-width: 750px){
      width: 58px;
    }
  }
  &.-white {
    .ja {
      color: #fff;
    }
    &:after {
      background: #fff;
    }
  }
  .ja {
    font-size: 52px;
    font-weight: bold;
    line-height: 1.35;
    display: block;
    @media screen and (max-width: 750px){
      font-size: 18px;
    }
    &.-white {
      color: #fff;
    }
  }
  .en {
    font-size: 24px;
    color: var(--color-brown);
    font-weight: 600;
    display: block;
    @media screen and (max-width: 750px){
      font-size: 14px;
    }
    &.-beige {
      color: var(--color-beige);
    }
  }
}
.title-secondary {
  font-size: 32px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 18px;
    &.-philosophy {
      font-size: 17px;
    }
  }
}

.text-primary {
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.text-secondary {
  font-size: 14px;
  line-height: 1.6;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 12px;
  }
}
.text-bgbrown {
  color: #fff;
  background-color: var(--color-brown);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 0.2em 0;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 508px;
  margin: 0 auto;
  border: 1px solid #000;
  color: inherit;
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  height: 104px;
  padding-right: 1em;
  position: relative;
  @media screen and (max-width: 750px){
    font-size: 18px;
    height: 80px;
  }
  &:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1em;
    width: 50px;
    aspect-ratio: 50 / 9;
    background: url(../img/shop/arrow_btn_black.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 30px;
    }
  }
  &.-small {
    font-size: 18px;
  }
}

.btn-arrow-white {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 508px;
  margin: 0 auto;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  height: 104px;
  padding-right: 1em;
  position: relative;
  @media screen and (max-width: 750px){
    font-size: 18px;
    height: 80px;
  }
  &:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1em;
    width: 50px;
    aspect-ratio: 50 / 9;
    background: url(../img/shop/arrow_white.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 30px;
    }
  }
  &.-small {
    font-size: 18px;
  }
}

.btn-tel {
  display: block;
  position: relative;
  padding: 36px 0;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #000;
  border: 3px solid #000;
  text-decoration: none;
  @media screen and (max-width: 750px){
    font-size: 18px;
    padding: 20px 0;
  }
  &.-full {
    width: 100%;
  }
  &:after {
    content: "";
    background: url(../img/shop/arrow_btn_black.svg) no-repeat center/contain;
    width: 50px;
    height: 9px;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    @media screen and (max-width: 750px){
      width: 28px;
      right: 10px;
    }
  }
}
.btn-line {
  display: block;
  position: relative;
  padding: 36px 0;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #03C755;
  border: 3px solid #03C755;
  text-decoration: none;
  @media screen and (max-width: 750px){
    font-size: 18px;
    padding: 20px 0;
  }
  &.-full {
    width: 100%;
  }
  &:before {
      content: "";
      background: url(../img/shop/icon_line.png) no-repeat center/contain;
      width: 60px;
      height: 60px;
      position: absolute;
      top: 50%;
      left: 28px;
      transform: translateY(-50%);
      @media screen and (max-width: 750px){
        width: 30px;
        height: 30px;
        left: 15px;
      }
    }
  &:after {
    content: "";
    background: url(../img/shop/arrow_green.svg) no-repeat center/contain;
    width: 50px;
    height: 9px;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    @media screen and (max-width: 750px){
      width: 28px;
      right: 10px;
    }
  }
}

.sec {
  padding: 120px 20px;
  @media screen and (max-width: 750px){
    padding: 60px 20px;
  }
  &.-gray {
    background-color: #EEEEF1;
  }
}
.row-half {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 20px;
  }
}
.row-half__item {
  flex: 1;
}

.color-red {
  color: #ff3131;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    width: auto;
  }
}

/* ----------------------------------------------------------------------
 layout
---------------------------------------------------------------------- */
.header {

}
.header__inner {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 900;
  transition: background-color 0.3s, box-shadow 0.3s;
  &.is-scroll {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 24px;
  @media screen and (max-width: 750px){
    padding-left: 20px;
  }
}
.header__logo {
  img {
    width: 230px;
    @media screen and (max-width: 750px){
      width: 64px;
      position: relative;
      top: 2px;
    }
  }
}
.header__right {
  display: flex;
  align-items: center;
}
.header__nav {
  display: flex;
  gap: 36px;
  align-items: center;
  @media screen and (max-width: 750px){
    display: none;
  }
  li {
    &.has-child {
      position: relative;
    }
  }
  a,
  span {
    text-decoration: none;
    color: inherit;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    font-family: "DIN", sans-serif;
    cursor: pointer;
  }
}
.header__sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding-top: 10px;
  ul {
    background-color: #000;
    padding: 20px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
  }
  li {
    a {
      font-size: 14px;
      font-weight: 500;
      &:before {
        content: "-";
      }
    }
  }
}
.header__reserve {
  margin-left: 3vw;
  @media screen and (max-width: 750px){
    margin-left: 0;
    display: none;
  }
  a {
    display: flex;
    flex-direction: column;
    width: 174px;
    height: 104px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    background: var(--grad-gold);
    @media screen and (max-width: 750px){
      width: 40px;
      height: 40px;
    }
    span {
      font-size: 18px;
      font-weight: bold;
      letter-spacing: 0.02em;
      margin-top: 10px;
      @media screen and (max-width: 750px){
        font-size: 7px;
        text-align: center;
        margin-top: 4px;
        line-height: 1.3;
      }
    }
    img {
      @media screen and (max-width: 750px){
        width: 16px;
      }
    }
  }
}
.header__menu {
  display: none;
  @media screen and (max-width: 750px){
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    img {
      width: 18px;
    }
  }
}

.spNavi {
  @media screen and (min-width: 751px){
    display: none !important;
  }
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1000;
}
.spNavi__header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 2px solid #fff;
}
.spNavi__title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  font-family: "DIN", sans-serif;
}
.spNavi__close {
  position: relative;
  width: 30px;
  height: 30px;
  span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.spNavi__body {
  padding: 20px;
}
.spNavi__navi {
  li {
    margin: 0.5em 0;
  }
  a,
  span {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-family: "DIN", "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 20px;
  }
}
.spNavi__sub {
  display: none;
  padding-left: 0.5em;
  li {
    a:before {
      content: "-";
      color: #fff;
    }
  }
}
.spNavi__banner {
  margin-top: 60px;
  text-align: center;
}

.breadcrumb {
  position: absolute;
  top: 88px;
  left: 0px;
  padding: 30px 0 0 24px;
  color: #fff;
  font-size: 18px;
  z-index: 10;
  a {
    color: inherit;
    text-decoration: none;
  }
  @media screen and (max-width: 750px){
    display: none;
  }
}

.homeAccess {
  padding: 120px 20px 0;
}
.homeAccessArea {
  max-width: 1080px;
  margin: 95px auto 0;
  @media screen and (max-width: 750px){
    margin-top: 60px;
  }
}
.homeAccessArea__title {
  font-size: 32px;
  text-align: center;
  color: #fff;
  background-color: #000;
  font-weight: bold;
  padding: 20px 0;
  margin-bottom: 50px;
  @media screen and (max-width: 750px){
    font-size: 18px;
    margin: 0 -20px 35px;
  }
}
.homeAccessList {
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    display: block;
  }
}
.homeAccessArea.-accordion {
  @media screen and (max-width: 750px){
    + .homeAccessArea.-accordion {
      margin-top: 30px;
    }
  }
  .homeAccessArea__title {
    @media screen and (max-width: 750px){
      position: relative;
      &:after {
        content: "＋";
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        font-size: 22px;
        font-weight: bold;
        color: #fff;
      }
    }
  }
  .homeAccessList {
    @media screen and (max-width: 750px){
      display: none;
    }
  }
}

.homeAccessList__item {
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    width: 100%;
    + .homeAccessList__item {
      margin-top: 40px;
    }
  }
}
.homeAccessList__top {
  margin-bottom: 40px;
}
.homeAccessList__title {
  margin-top: 30px;
  font-size: 28px;
  color: var(--color-brown);
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.homeAccessList__list {
  margin-top: 30px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
  dt {
    color: var(--color-brown);
    font-weight: bold;
    font-size: 20px;
    @media screen and (max-width: 750px){
      font-size: 14px;
    }
  }
  dd {
    font-size: 20px;
    font-weight: 500;
    @media screen and (max-width: 750px){
      font-size: 14px;
    }
  }
}
.homeAccessList__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.homeAccessList__line {
  width: calc(50% - 8px);
  height: 65px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #03C755;
  position: relative;
  padding: 18px 0 0 10px;
  letter-spacing: 0;
  @media screen and (max-width: 750px){
    font-size: 12px;
    height: 50px;
    padding-top: 14px;
  }
  &:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    aspect-ratio: 1 / 1;
    background: url(../img/home/icon_line.png) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 34px;
    }
  }
  &:after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    aspect-ratio: 5 / 1;
    background: url(../img/shop/arrow_white.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 13px;
      right: 8px;
    }
  }
}
.homeAccessList__tel {
  width: calc(50% - 8px);
  height: 65px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: inherit;
  position: relative;
  padding: 18px 0 0 10px;
  letter-spacing: 0;
  border: 1px solid #000;
  &.-full {
    width: 100%;
  }
  @media screen and (max-width: 750px){
    font-size: 12px;
    height: 50px;
    padding-top: 14px;
  }
  &:before {
    content: "";
    position: absolute;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    aspect-ratio: 28 / 38;
    background: url(../img/home/icon_tel.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 18px;
    }
  }
  &:after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    aspect-ratio: 5 / 1;
    background: url(../img/shop/arrow_btn_black.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 13px;
      right: 8px;
    }
  }
}
.homeAccessList__page {
  width: 100%;
  height: 65px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: inherit;
  position: relative;
  padding: 18px 0 0 10px;
  letter-spacing: 0;
  background-color: #B6A07C;
  color: #fff;
  margin-top: 16px;
  @media screen and (max-width: 750px){
    height: 50px;
    font-size: 12px;
    padding-top: 14px;
  }
  &:before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    aspect-ratio: 34 / 28;
    background: url(../img/home/icon_shop.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 22px;
    }
  }
  &:after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    aspect-ratio: 5 / 1;
    background: url(../img/shop/arrow_white.svg) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 13px;
      right: 8px;
    }
  }
}
.homeNews {
  padding: 160px 20px 0;
  @media screen and (max-width: 750px){
    padding: 90px 20px 0;
  }
}
.homeNews__inner {
  max-width: 1060px;
  padding-right: 68px;
  margin: 60px auto 0;
  position: relative;
  @media screen and (max-width: 750px){
    margin: 40px auto 0;
    padding-right: 0;
  }
}
.homeNewsList {
  height: 450px;
  padding-right: 10px;
  overflow: auto;
  @media screen and (max-width: 750px){
    height: 600px;
    padding-right: 0;
  }
}
.homeNewsList__item {
  + .homeNewsList__item {
    margin-top: 30px;
  }
  a {
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
    height: 130px;
    text-decoration: none;
    color:  inherit;
    position: relative;
    @media screen and (max-width: 750px){
      height: auto;
      padding: 14px 50px 20px 20px;
      display: block;
    }
    &:after {
      content: "";
      width: 45px;
      aspect-ratio: 1 / 1;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      background: url(../img/home/arrow_news.svg) no-repeat center/contain;
      @media screen and (max-width: 750px){
        width: 30px;
        right: 10px;
        top: auto;
        bottom: 10px;
        transform: translate(0,0);
      }
    }
  }
}
.homeNewsList__cat {
  width: 180px;
  text-align: center;
  @media screen and (max-width: 750px){
    width: 100%;
    text-align: left;
  }
  .cat {
    font-size: 18px;
    font-weight: bold;
    @media screen and (max-width: 750px){
      font-size: 14px;
    }
  }
  .time {
    font-size: 13px;
    font-weight: bold;
    color: var(--color-brown);
    @media screen and (max-width: 750px){
      font-size: 12px;
    }
  }
}
.homeNewsList__title {
  width: 640px;
  font-size: 18px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    width: 100%;
    font-size: 12px;
    margin-top: 15px;
  }
}
.homeNews__scroll {
  position: absolute;
  right: 20px;
  bottom: 0px;
  transform: rotate(90deg);
  transform-origin: right bottom;
  width: 128px;
  padding-top: 20px;
  font-size: 16px;
  font-family: "DIN", sans-serif;
  color: var(--color-brown);
  background: url(../img/home/arrow_scroll_right.svg) no-repeat center top/contain;
  @media screen and (max-width: 750px){
    position: static;
    padding-bottom: 90px;
    text-align: center;
    width: 100%;
    transform: rotate(0deg);
    background: url(../img/home/arrow_scroll_bottom.svg) no-repeat center bottom/9px auto;
  }
}
.homeNews__btn {
  margin-top: 80px;
}

.homeBlog {
  margin-top: 140px;
  padding: 100px 20px 150px;
  background-color: #F5F5F5;
  @media screen and (max-width: 750px){
    margin-top: 70px;
    padding: 50px 20px 100px;
  }
}
.homeBlog__inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.homeBlogList {
  margin-top: 80px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
    /* overflow: auto; */
  }
  .prev {
    position: absolute;
    left: 20px;
    bottom: -80px;
    width: 128px;
    padding-top: 20px;
    font-size: 16px;
    font-family: "DIN", sans-serif;
    color: var(--color-brown);
    background: url(../img/home/arrow_scroll_left.svg) no-repeat center top/contain;
    text-align: right;
  }
  .next {
    position: absolute;
    right: 20px;
    bottom: -80px;
    width: 128px;
    padding-top: 20px;
    font-size: 16px;
    font-family: "DIN", sans-serif;
    color: var(--color-brown);
    background: url(../img/home/arrow_scroll_right.svg) no-repeat center top/contain;
  }
}
.homeBlogList__item {
  @media screen and (max-width: 750px){
    + .homeBlogList__item {
      margin-top: 40px;
    }
  }
}
.homeBlogList__inner {
  padding: 0 30px;
  @media screen and (max-width: 750px){
    padding: 0;
  }
}
.homeBlogList__thumb {
  img {
    aspect-ratio: 377 / 270;
    width: 100%;
    object-fit: cover;
  }
}
.homeBlogList__title {
  font-size: 26px;
  font-weight: bold;
  color: var(--color-brown);
  margin-top: 20px;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.homeBlogList__excerpt {
  font-size: 14px;
  margin-top: 20px;
  font-weight: 500;
}
.homeBlog__scroll {
  @media screen and (min-width: 751px){
    display: none;
  }
  display: none;
  /*
  padding-top: 20px;
  font-family: "DIN", sans-serif;
  color: var(--color-brown);
  padding-bottom: 90px;
  text-align: center;
  width: 100%;
  background: url(../img/home/arrow_scroll_bottom.svg) no-repeat center bottom/9px auto;
  */
}


.shopHero {
  position: relative;
  height: calc( 1080 / 1920 * 100vw );
  background-image: url("../img/shop/akasaka/bg_mv.jpg");
  background-size: cover;
  background-position: center;
  @media screen and (max-width: 750px){
    height: 178vw;
    background-image: url("../img/shop/akasaka/bg_mv_sp.jpg");
  }
  &.-home {
    background: none;
    overflow: hidden;
  }
}
.shopHero__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.shopHeroSlider {
  img {
    width: 100%;
    height: calc( 1080 / 1920 * 100vw );
    object-fit: cover;
    @media screen and (max-width: 750px){
      height: 178vw;
    }
  }
}
.shopHero__inner {
  padding: calc( 290 / 1920 * 100vw ) calc( 230 / 1920 * 100vw ) 0 calc( 176 / 1920 * 100vw );
  @media screen and (max-width: 750px){
    padding: calc( 110 / 393 * 100vw ) calc( 30 / 393 * 100vw ) 0;
  }
}
.shopHero__title {
  color: #fff;
  font-size: calc( 30 / 1920 * 100vw );
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: calc( 12 / 393 * 100vw );
  }
}
.shopHero__catch {
  color: #fff;
  font-weight: bold;
  font-size: calc( 80 / 1920 * 100vw );
  line-height: 1.3;
  @media screen and (max-width: 750px){
    font-size: calc( 36 / 393 * 100vw );
  }
}
.shopHero__bottom {
  position: relative;
  @media screen and (max-width: 750px){
    position: absolute;
    bottom: 40px;
    left: 0px;
    width: 100%;
    padding: 0 20px;
  }
}
.shopHeroCampaign {
  width: calc( 510 / 1920 * 100vw );
  margin-top: calc( 80 / 1920 * 100vw );
  text-align: center;
  @media screen and (max-width: 750px){
    margin: 0 0;
    width: auto;
  }
}
.shopHeroCampaign__title {
  font-size: calc( 34 / 1920 * 100vw );
  font-weight: bold;
  color: #fff;
  @media screen and (max-width: 750px){
    font-size: calc( 22 / 393 * 100vw );
  }
}
.shopHeroCampaign__text {
  font-size: calc( 21 / 1920 * 100vw );
  font-weight: bold;
  color: var( --color-beige );
  @media screen and (max-width: 750px){
    font-size: calc( 13 / 393 * 100vw );
  }
}
.shopHeroCampaign__btn {
  margin-top: calc( 18 / 1920 * 100vw );
  a {
    display: flex;
    align-items: center;
    width: calc( 510 / 1920 * 100vw );
    height: calc( 104 / 1920 * 100vw );
    background: var(--grad-gold);
    color: inherit;
    font-size: calc( 32 / 1920 * 100vw );
    font-weight: bold;
    text-decoration: none;
    position: relative;
    padding-left: calc( 50 / 1920 * 100vw );
    @media screen and (max-width: 750px){
      margin-top: 12px;
      width: 100%;
      height: calc( 60 / 393 * 100vw );
      font-size: calc( 18 / 393 * 100vw );
      padding-left: calc( 60 / 393 * 100vw );
    }
    &:after {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: calc( 33 / 1920 * 100vw );
      width: calc( 50 / 1920 * 100vw );
      aspect-ratio: 50 / 9;
      background: url(../img/shop/arrow_btn_black.svg) no-repeat center/contain;
      @media screen and (max-width: 750px){
        width: calc( 36 / 393 * 100vw );
        right: calc( 16 / 393 * 100vw );
      }
    }
  }
}
.shopHeroSatisfaction {
  position: absolute;
  right: 0;
  bottom: 0px;
  text-align: center;
  @media screen and (max-width: 750px){
    position: static;
    width: calc( 232 / 393 * 100vw );
    margin-bottom: calc( 27 / 393 * 100vw );
    margin-left: auto;
  }
}
.shopHeroSatisfactionHeader {
  width: 380px;
  height: 176px;
  background: url(../img/shop/leaf_gold_left.png) no-repeat left center, url(../img/shop/leaf_gold_right.png) no-repeat right center;
  background-size: contain;
  text-align: center;
  @media screen and (max-width: 750px){
    width: 100%;
    height: calc( 96 / 393 * 100vw );
    margin: 0 auto;
  }
}
.shopHeroSatisfactionHeader__text {
  font-size: 26px;
  font-weight: bold;
  color: var(--color-beige);
  line-height: 1.2;
  @media screen and (max-width: 750px){
    font-size: calc( 13 / 393 * 100vw );
  }
}
.shopHeroSatisfactionHeader__num {
  font-size: 88px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-beige);
  font-family: "DIN", sans-serif;
  @media screen and (max-width: 750px){
    font-size: calc( 57 / 393 * 100vw );
    letter-spacing: 0;
  }
  .small {
    font-size: 48px;
    @media screen and (max-width: 750px){
      font-size: calc( 31 / 393 * 100vw );
    }
  }
}
.shopHeroSatisfaction__text {
  font-size: 11px;
  font-weight: 500;
  display: inline-block;
  margin: 6px auto 0;
  color: #fff;
  @media screen and (max-width: 750px){
    font-size: calc( 6 / 393 * 100vw );
  }
}
.shopCampaign {
  padding: 90px 0 40px;
  background-color: #EEEEF1;
  @media screen and (max-width: 750px){
    padding: 20px 30px;
    margin: 20px 20px 0;
  }
}
.shopCampaign__inner {
  position: relative;
  background-color: #fff;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 40px;
  @media screen and (max-width: 750px){
    padding: 0;
    background-color: transparent;
  }
}
.shopCampaign__caution {
  width: calc(100% - 40px);
  max-width: 1080px;
  margin-top: 1em;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  margin: 1em auto 0;
  @media screen and (max-width: 750px){
    font-size: 12px;
    width: 100%;
  }
}
.shopCampaign__title {
  position: absolute;
  top: -24px;
  left: 0px;
  width: 100%;
  text-align: center;
  line-height: 1;
  font-size: 48px;
  font-weight: 600;
  @media screen and (max-width: 750px){
    position: static;
    font-size: 21px;
  }
}
.shopCampaign__text {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  @media screen and (max-width: 750px){
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.shopCampaignBlock {
  display: flex;
  align-items: center;
  justify-content: center;
  font-feature-settings: "palt";
  + .shopCampaignBlock {
    margin-top: 16px;
  }
  &.-left {
    justify-content: flex-start;
  }
  @media screen and (max-width: 750px){
    padding: 15px;
    background-color: #fff;
    flex-direction: column;
    + .shopCampaignBlock {
      margin-top: 0;
    }
  }
}
.shopCampaignBlock__left {
  display: flex;
  width: 408px;
  align-items: center;
  color: #3D3322;
  background-color: #C1BDB7;
  @media screen and (max-width: 750px){
    width: 100%;
  }
  &.-brown {
    background-color: #726959;
    color: #fff;
  }
}
.shopCampaignBlock__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 88px;
  width: 78px;
  border-right: 1px solid #fff;
  @media screen and (max-width: 750px){
    height: 54px;
    width: 48px;
  }
  .text {
    font-size: 20px;
    font-weight: bold;
    @media screen and (max-width: 750px){
      font-size: 12px;
    }
  }
  .num {
    font-size: 41px;
    font-style: italic;
    line-height: 1.1;
    font-family: "DIN", sans-serif;
    @media screen and (max-width: 750px){
      font-size: 23px;
    }
  }
}
.shopCampaignBlock__price {
  flex: 1;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 13px;
  }
  .num {
    font-size: 38px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    top: 1px;
    margin-left: 8px;
    font-family: "DIN", sans-serif;
    @media screen and (max-width: 750px){
      font-size: 21px;
    }
  }
}
.shopCampaignBlock__center {
  padding-left: 34px;
  text-align: center;
  background: url(../img/shop/arrow_campaign.svg) no-repeat left center/ 20px auto;
  font-size: 21px;
  font-weight: bold;
  margin-left: 30px;
  @media screen and (max-width: 750px){
    padding: 15px 0 0;
    margin: 20px 0 0;
    background: url(../img/shop/arrow_campaign_sp.svg) no-repeat center top/ 34px auto;
    font-size: 13px;
    width: 100%;
    height: 15px;
  }
}
.shopCampaignBlock__right {
  margin-left: 20px;
  @media screen and (max-width: 750px){
    margin-left: 0;
  }
}
.shopCampaignBlock__off {
  color: #84704B;
  font-size: 41px;
  font-weight: bold;
  line-height: 1;
  font-family: "DIN", sans-serif;
  @media screen and (max-width: 750px){
    font-size: 24px;
    text-align: center;
  }
  .num {
    font-size: 78px;
    font-weight: 600;
    @media screen and (max-width: 750px){
      font-size: 42px;
    }
  }
  .small {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-primary);
    @media screen and (max-width: 750px){
      margin-bottom: 0.4em;
    }
  }
  .off {
    font-size: 52px;
    font-weight: 600;
    @media screen and (max-width: 750px){
      font-size: 31px;
    }
  }
}
.shopReason {
  padding-top: 100px;
  padding-bottom: 100px;
  @media screen and (max-width: 750px){
    padding: 60px 20px;
  }
}
.shopReason__title {
  font-size: 56px;
  font-weight: bold;
  text-align: center;
  line-height: 1.35;
  padding-bottom: 30px;
  position: relative;
  @media screen and (max-width: 750px){
    font-size: 18px;
    padding-bottom: 20px;
  }
  &:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 174px;
    height: 3px;
    background: var(--color-brown);
    @media screen and (max-width: 750px){
      width: 58px;
    }
  }
}
.shopReasonList {
  margin-top: 85px;
  @media screen and (max-width: 750px){
    margin-top: 45px;
  }
}
.shopReasonList__item {
  display: flex;
  justify-content: center;
  @media screen and (max-width: 750px){
    display: block;
  }
  + .shopReasonList__item {
    margin-top: 60px;
  }
}
.shopReasonList__left {
  width: 435px;
  margin-right: 40px;
  @media screen and (max-width: 750px){
    width: calc(100% + 40px);
    margin: 0 0 0 -20px;
  }
}
.shopReasonList__right {
  width: 677px;
  @media screen and (max-width: 750px){
    width: 100%;
    margin-top: 20px;
  }
}
.shopReasonList__title {
  position: relative;
  padding-left: 80px;
  font-size: 32px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 18px;
    padding: 0;
  }
  .num {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    line-height: 1;
    text-align: center;
    font-size: 92px;
    font-style: italic;
    color: var(--color-brown);
    font-family: "DIN", sans-serif;
    @media screen and (max-width: 750px){
      position: static;
      font-size: 56px;
      display: block;
      text-align: center;
      width: 100%;
      margin-bottom: 10px;
    }
  }
}
.shopReasonList__text {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  margin-top: 30px;
  @media screen and (max-width: 750px){
    font-size: 14px;
    line-height: 1.8;
  }
}
.shopSatisfaction {
  position: relative;
  background: url(../img/shop/akasaka/bg_satisfaction.jpg) no-repeat center/cover;
  text-align: center;
  color: #fff;
  padding: 140px 0 140px;
  @media screen and (max-width: 750px){
    background: url(../img/shop/akasaka/bg_satisfaction_sp.jpg) no-repeat center/cover;
    padding: 60px 20px 60px;
  }
  &:before {
    content: "";
    width: 110px;
    height: 32px;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: #fff;
    @media screen and (max-width: 750px){
      width: 74px;
      height: 24px;
    }
  }
}
.shopSatisfaction__inner {
  position: relative;
  display: inline-block;
  padding-left: 380px;
  @media screen and (max-width: 750px){
    padding-left: 0;
    display: block;
  }
}
.shopSatisfaction__title {
  font-size: 48px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 20px;
  }
}
.shopSatisfaction__img {
  position: absolute;
  top: 0px;
  left: 0px;
  @media screen and (max-width: 750px){
    position: static;
    margin: 50px auto 0;
    width: 100%;
    max-width: 225px;
  }
}
.shopSatisfaction__num {
  font-size: 98px;
  font-weight: bold;
  font-family: "DIN", sans-serif;
  position: relative;
  small {
    font-size: 68px;
  }
  &:before {
    content: "";
    width: 46%;
    right: calc(50% + 140px);
    top: 50%;
    height: 2px;
    position: absolute;
    background-color: #fff;
  }
  @media screen and (max-width: 750px){
    font-size: 59px;
    position: relative;
    .num {
      position: absolute;
      width: 100%;
      text-align: center;
      top: -115px;
      left: 0px;
    }
    small {
      font-size: 43px;
    }
    &:before {
      display: none;
    }
  }
}
.shopSatisfaction__text {
  font-size: 12px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    font-size: 10px;
    margin-top: 30px;
  }
}
.shopSatisfaction__caution {
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
  @media screen and (max-width: 750px){
    font-size: 10px;
  }
}
.shopSatisfaction__message {
  font-size: 30px;
  font-weight: bold;
  margin-top: 30px;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.shopTraining {
  padding: 100px 20px 80px;
  @media screen and (max-width: 750px){
    padding: 60px 20px;
  }
}
.shopTrainingList {
  max-width: 1440px;
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 65px;
  @media screen and (max-width: 750px){
    margin-top: 60px;
    justify-content: space-between;
    gap: 40px 0;
  }
}
.shopTrainingList__item {
  width: calc( ( 100% - 65px * 2 ) / 3 );
  @media screen and (max-width: 750px){
    width: 48%;
  }
}
.shopTrainingList__title {
  font-size: 36px;
  font-weight: bold;
  color: var(--color-brown);
  margin-top: 20px;
  @media screen and (max-width: 750px){
    font-size: 14px;
    letter-spacing: 0;
  }
}
.shopTrainingList__list {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    font-size: 12px;
    letter-spacing: 0;
    margin-top: 10px;
  }
}
.shopConceptTop {
  padding-top: 70px;
  padding-bottom: 1px;
  background: url(../img/shop/akasaka/bg_concept.jpg) no-repeat center/cover;
  @media screen and (max-width: 750px){
    padding: 50px 20px 1px;
    background: url(../img/shop/akasaka/bg_concept_sp.jpg) no-repeat center/cover;
  }
}
.shopConceptTop__title {
  text-align: center;
  color: #fff;
  font-size: 64px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.shopConceptTop__list {
  background-color: #fff;
  max-width: 850px;
  margin: 30px auto 0;
  padding: 60px;
  @media screen and (max-width: 750px){
    padding: 15px 24px;
  }
  li {
    font-size: 32px;
    padding-left: 64px;
    position: relative;
    font-weight: bold;
    margin: 0.25em 0;
    @media screen and (max-width: 750px){
      padding-left: 28px;
      @media screen and (max-width: 750px){
        font-size: 13px;
        font-size: 12px;
        padding-left: 20px;
      }
    }
    &:before {
      content: "";
      position: absolute;
      top: 18px;
      left: 0px;
      width: 26px;
      aspect-ratio: 26 / 20;
      background: url(../img/shop/icon_check.svg) no-repeat center/contain;
      @media screen and (max-width: 750px){
        width: 9px;
        top: 6px;
      }
    }
  }
}
.shopConceptTop__text {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-top: 50px;
  @media screen and (max-width: 750px){
    font-size: 14px;
    margin-top: 30px;
  }
}
.shopConceptTop__large {
  margin-top: 90px;
  font-size: 64px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding-bottom: 100px;
  @media screen and (max-width: 750px){
    font-size: 18px;
    margin-top: 20px;
    padding-bottom: 40px;
  }
  .large {
    font-size: 100px;
    display: block;
    @media screen and (max-width: 750px){
      font-size: 30px;
    }
  }
}
.shopConceptBottom {
  padding: 170px 20px 170px;
  background: url(../img/shop/bg_concept_02.jpg) no-repeat center/cover;
  @media screen and (max-width: 750px){
    padding: 60px 40px 80px;
  }
}
.shopConceptList {
  max-width: 1270px;
  margin: 70px auto 0;
  @media screen and (max-width: 750px){
    margin-top: 25px;
  }
}
.shopConceptList__item {
  display: flex;
  @media screen and (max-width: 750px){
    display: block;
  }
  + .shopConceptList__item {
    margin-top: 30px;
    @media screen and (max-width: 750px){
      margin-top: 20px;
    }
  }
  dt {
    width: 225px;
    color: var(--color-beige);
    font-size: 28px;
    font-style: italic;
    padding-top: 12px;
    font-family: "DIN", sans-serif;
    @media screen and (max-width: 750px){
      width: 100%;
      text-align: center;
      font-size: 16px;
    }
  }
  dd {
    font-size: 37px;
    font-weight: bold;
    color: #fff;
    @media screen and (max-width: 750px){
      font-size: 18px;
      text-align: center;
    }
  }
}
.shopFeatures {
  padding: 140px 0 186px;
  background: url(../img/shop/bg_features.jpg) no-repeat center/cover;
  @media screen and (max-width: 750px){
    padding: 80px 20px 0px;
    background: none;
  }
}
.shopFeatures__title {
  font-weight: bold;
  text-align: center;
  .small {
    font-size: 70px;
    display: block;
    @media screen and (max-width: 750px){
      font-size: 18px;
    }
  }
  .large {
    padding: 0 80px 20px;
    font-size: 70px;
    margin-top: 40px;
    display: inline-block;
    border-bottom: 3px solid var(--color-brown);
    @media screen and (max-width: 750px){
      font-size: 18px;
      position: relative;
      border-bottom-style: none;
      padding: 0 0 20px;
      margin-top: 40px;
      &:after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 58px;
        height: 3px;
        background: var(--color-brown);
      }
    }
  }
}
.shopFeaturesList {
  margin-top: 85px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.shopFeaturesList__block {
  padding: 100px 5.2vw;
  background-color: #fff;
  @media screen and (min-width: 751px){
    &:nth-child(2n - 1) {
      margin-right: 8.8vw;
    }
    &:nth-child(2n) {
      margin-left: 8.8vw;
      .shopFeaturesList__row {
        flex-direction: row-reverse;
      }
      .shopFeaturesList__left {
        margin-right: 0;
        margin-left: 40px;
      }
      .shopFeaturesList__h4 {
        margin-left: -40px;
        padding-left: 40px;
        margin-right: -5.2vw;
        padding-right: 5.2vw;
      }
    }
  }
  @media screen and (max-width: 750px){
    padding: 20px 20px 40px;
    border: 1px solid #000;
    &:nth-child(2n - 1) {
      margin-left: -20px;
      border-left-style: none;
      .shopFeaturesList__h4 {
        margin-left: -20px;
        padding-left: 20px;
        margin-right: -20px;
        padding-right: 20px;
      }
    }
    &:nth-child(2n) {
      margin-right: -20px;
      border-right-style: none;
      .shopFeaturesList__right {
        margin-right: 0;
        margin-left: -40px;
      }
    }
  }
  + .shopFeaturesList__block {
    margin-top: 80px;
    @media screen and (max-width: 750px){
      margin-top: 60px;
    }
  }
}
.shopFeaturesList__row {
  display: flex;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: flex-start;
  }
}
.shopFeaturesList__left {
  width: 53%;
  position: relative;
  margin-right: 40px;
  @media screen and (max-width: 750px){
    display: contents;
  }
}
.shopFeaturesList__reason {
  position: relative;
  font-size: 260px;
  line-height: 1;
  color: #E8E2D7;
  display: inline-block;
  font-family: "DIN", sans-serif;
  @media screen and (max-width: 750px){
    order: 1;
    font-size: 80px;
  }
  .small {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    text-align: center;
    font-size: 28px;
    color: var(--color-brown);
    font-weight: 600;
    @media screen and (max-width: 750px){
      font-size: 15px;
    }
  }
}
.shopFeaturesList__right {
  width: 47%;
  @media screen and (max-width: 750px){
    width: auto;
    margin-top: 40px;
    margin-right: -40px;
    order: 3;
  }
}
.shopFeaturesList__title {
  font-size: 2vw;
  font-weight: bold;
  margin-top: -2em;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 750px){
    font-size: 17px;
    order: 2;
    margin-top: -1em;
  }
}
.shopFeaturesList__h4 {
  margin-top: 80px;
  margin-left: -5.2vw;
  margin-right: -40px;
  color: #fff;
  padding: 24px 0 24px 5.2vw;
  font-size: 1.6vw;
  font-weight: bold;
  position: relative;
  z-index: 1;
  &:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease-in-out;
  }
  &.is-active {
    &:after {
      transform: scaleX(1);
    }
  }
  @media screen and (max-width: 750px){
    order: 4;
    margin: 60px -20px 0 -40px;
    font-size: 14px;
    padding: 12px 20px;
    width: calc( 100% + 60px );
  }
}
.shopFeaturesList__text {
  font-size: 15px;
  font-weight: 500;
  margin-top: 60px;
  line-height: 2;
  @media screen and (max-width: 750px){
    font-size: 14px;
    order: 5;
    margin-top: 30px;
  }
}
.shopFeaturesWorks {
  margin-top: 80px;
  display: flex;
  gap: 6.8%;
  @media screen and (max-width: 750px){
    margin-top: 60px;
    flex-direction: column;
    gap: 100px;
  }
}
.shopFeaturesWorks__item {
  width: calc( ( 100% - 6.8% * 2 ) / 3 );
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
    &:after {
      content: "";
      background: url(../img/shop/cross_features.svg) no-repeat center/44px auto;
      height: 100px;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0px;
    }
    &:last-child {
      &:after {
        display: none;
      }
    }
  }
  &:last-child {
    .shopFeaturesWorks__thumb {
      &:after {
        display: none;
      }
    }
  }
}
.shopFeaturesWorks__thumb {
  position: relative;
  &:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 23.8%;
    background: url(../img/shop/cross_features.svg) no-repeat center/80%;
    @media screen and (max-width: 750px){
      display: none;
    }
  }
}
.shopFeaturesWorks__title {
  text-align: center;
  font-size: calc( 30 / 1920 * 100vw );
  font-weight: bold;
  padding-bottom: 20px;
  position: relative;
  margin-top: 30px;
  color: var(--color-brown);
  @media screen and (max-width: 750px){
    font-size: 18px;
    padding-bottom: 10px;
  }
  &:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-brown);
    @media screen and (max-width: 750px){
      width: 60px;
    }
  }
}
.shopFeaturesWorks__text {
  margin-top: 50px;
  font-size: 15px;
  line-height: 2;
  @media screen and (max-width: 750px){
    margin-top: 30px;
    font-size: 14px;
  }
}
.shopFeaturesList__caution {
  margin-top: 50px;
  font-size: 16px;
  @media screen and (max-width: 750px){
    padding-left: 60px;
    margin-top: 16px;
    font-size: 13px;
  }
}
.shopFeaturesGallery {
  margin-top: 80px;
  display: flex;
  gap: 6.8%;
  @media screen and (max-width: 750px){
    margin-top: 60px;
    flex-direction: column;
    gap: 40px;
  }
}
.shopFeaturesGallery__item {
  width: calc( ( 100% - 6.8% * 2 ) / 3 );
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.shopPlan {
  padding-top: 90px;
  text-align: center;
  @media screen and (max-width: 750px){
    padding-top: 80px;
  }
}
.shopPlan__title {
  display: inline-block;
  width: 100%;
  max-width: 1160px;
  text-align: center;
  background-color: var(--color-brown);
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 20px;
    padding: 10px 0;
  }
}
.shopPlan__read {
  font-size: 48px;
  font-weight: bold;
  margin-top: 45px;
  @media screen and (max-width: 750px){
    font-size: 30px;
    margin-top: 36px;
  }
}
.shopPlan__btn {
  margin-top: 50px;
  @media screen and (max-width: 750px){
    margin: 40px 20px 0;
  }
}
.shopExmaple {
  padding-top: 150px;
  @media screen and (max-width: 750px){
    padding: 90px 20px 0;
  }
}
.shopExampleList {
  margin-top: 80px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
  .slick-dots {
    position: static;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    @media screen and (max-width: 750px){
      margin-top: 30px;
    }
    li {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 1px solid #000;
      margin: 10px;
      cursor: pointer;
      @media screen and (max-width: 750px){
        width: 10px;
        height: 10px;
        margin: 5px;
      }
      &.slick-active {
        border: 3px solid #fff;
        background-color: #000;
        @media screen and (max-width: 750px){
          border: 2px solid #fff;
        }
      }
      button {
        opacity: 0;
      }
    }
  }
}
.shopExampleList__inner {
  width: 1040px;
  padding: 0 20px;
  @media screen and (max-width: 1140px){
    width: auto;
    padding: 0;
  }
}
.shopExampleList__name {
  font-size: 40px;
  font-weight: bold;
  margin-top: 50px;
  @media screen and (max-width: 750px){
    font-size: 18px;
    margin-top: 20px;
  }
}
.shopExampleList__times {
  font-size: 25px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.shopExampleList__profile {
  font-size: 25px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.shopExampleList__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 508px;
  margin: 60px auto 0;
  border: 1px solid #000;
  color: inherit;
  text-decoration: none;
  font-size: 28px;
  font-weight: bold;
  height: 104px;
  position: relative;
  cursor: pointer;
  @media screen and (max-width: 750px){
    margin-top: 25px;
    width: 244px;
    height: 50px;
    font-size: 14px;
  }
  &:after {
    content: "+";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1em;
    font-size: 32px;
    @media screen and (max-width: 750px){
      font-size: 14px;
    }
  }
  &.is-active {
    &:after {
      content: "-";
    }
  }
}
.shopExmapleFaq {
  margin-top: 60px;
  display: none;
}
.shopExmapleFaq__list {
  dt {
    font-size: 34px;
    font-weight: bold;
    color: var(--color-brown);
    @media screen and (max-width: 750px){
      font-size: 18px;
    }
  } 
  dd {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 500;
    @media screen and (max-width: 750px){
      font-size: 13px;
    }
  }
  + .shopExmapleFaq__list {
    margin-top: 30px;
  }
}
.shopExampleList__caution {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-top: 50px;
  @media screen and (max-width: 750px){
    font-size: 13px;
    margin-top: 30px;
  }
}
.shopCustomer {
  margin-top: 170px;
  text-align: center;
  @media screen and (max-width: 750px){
    margin-top: 100px;
    padding: 0 20px;
  }
}
.shopCustomer__h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 18px;
    text-align: left;
  }
  .line {
    display: inline-block;
    width: 144px;
    height: 1px;
    background-color: var(--color-brown);
    margin-left: 30px;
    position: relative;
    top: -0.5em;
    @media screen and (max-width: 750px){
      top: -0.4em;
      width: 80px;
      margin-left: 20px;
    }
  }
}
.shopCustomerList {
  margin-top: 90px;
  display: flex;
  justify-content: center;
  gap: 55px;
  padding: 0 20px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
    padding: 0;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px 0;
  }
}
.shopCustomerList__item {
  width: calc( ( 100% - 110px ) / 3 );
  position: relative;
  @media screen and (max-width: 750px){
    width: 47.5%;
  }
}
.shopCustomerList__name {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
  @media screen and (max-width: 750px){
    font-size: 14px;
    margin-top: 12px;
  }
  img {
    width: 30px;
    position: relative;
    top: -4px;
    @media screen and (max-width: 750px){
      width: 18px;
      top: -2px;
    }
  }
}
.shopCustomer__caution {
  margin-top: 80px;
  font-size: 26px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-brown);
  @media screen and (max-width: 750px){
    font-size: 18px;
    margin-top: 48px;
  }
}
.shopCustomer__message {
  margin-top: 80px;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 18px;
    margin-top: 20px;
  }
  .large {
    display: inline-block;
    width: 100%;
    max-width: 1230px;
    color: #fff;
    margin-top: 1em;
    position: relative;
    z-index: 1;
    &:after {
      content: "";
      background-color: var(--color-brown);
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      z-index: -1;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.6s ease-in-out;
    }
    &.is-active {
      &:after {
        transform: scaleX(1);
      }
    }
    @media screen and (max-width: 750px){
      padding: 10px 0;
    }
  }
}
.shopVoice {
  margin-top: 120px;
  padding: 80px 20px 100px;
  background: url(../img/shop/bg_voice.png) no-repeat center/cover;
  @media screen and (max-width: 750px){
    padding: 60px 20px 80px;
  }
}
.shopVoiceStars {
  margin: 80px auto 0;
  max-width: 1644px;
  background-color: #fff;
  display: flex;
  padding: 50px 50px 50px 20px;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    max-width: 100%;
    margin-top: 25px;
  }
}
.shopVoiceStars__left {
  width: 325px;
  height: 202px;
  background: url(../img/shop/leaf_left.png) no-repeat left center/contain, url(../img/shop/leaf_right.png) no-repeat right center/contain;
  text-align: center;
  margin-right: 20px;
  @media screen and (max-width: 750px){
    width: 225px;
    height: 64px;
    margin: 0;
  }
}
.shopVoiceStars__text {
  font-size: 25px;
  font-weight: bold;
  color: #C0AA83;
  @media screen and (max-width: 750px){
    font-size: 16px;
  }
}
.shopVoiceStars__num {
  font-size: 93px;
  font-weight: bold;
  line-height: 1;
  color: #C0AA83;
  font-family: "DIN", sans-serif;
  @media screen and (max-width: 750px){
    font-size: 38px;
    font-style: italic;
  }
}
.shopVoiceStars__right {
  width: calc(100% - 345px);
  @media screen and (max-width: 750px){
    width: 100%;
    margin-top: 40px;
  }
}
.shopVoiceList {
  margin-top: 50px;
  display: flex;
  gap: 48px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
    flex-direction: column;
    gap: 40px;
  }
}
.shopVoiceList__item {
  width: calc( ( 100% - 48px ) / 2 );
  background-color: #fff;
  padding: 60px;
  @media screen and (max-width: 750px){
    margin: 0;
    padding: 24px 30px;
    width: 100%;
  }
}
.shopVoiceList__name {
  font-size: 23px;
  font-weight: bold;
  color: var(--color-brown);
  text-align: center;
  margin-top: 40px;
  @media screen and (max-width: 750px){
    font-size: 18px;
    margin-top: 20px;
    text-align: left;
  }
}
.shopVoiceList__text {
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 14px;
    text-align: left;
  }
}
.shopTrainer {
  padding: 90px 20px 160px;
  background-color: #000;
  @media screen and (max-width: 750px){
    padding: 60px 20px 100px;
  }
}
.shopTrainer__read {
  margin-top: 50px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    display: none;
  }
}
.shopTrainerList {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 70px auto 0;
  justify-content: center;
  @media screen and (max-width: 750px){
    margin-top: 40px;
    justify-content: space-between;
  }
}
.shopTrainerList__item {
  width: 33.33%;
  background-color: #fff;
  @media screen and (max-width: 750px){
    width: 50%;
  }
}
.shopTrainerList__area {
  padding: 20px 0 10px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  background-color: #000;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.shopTrainerList__thumb {
  position: relative;
}
.shopTrainerList__bg {
  .off {
    transition: opacity 0.3s ease-in-out;
    position: relative;
    z-index: 2;
  }
  .on {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1;
  }
  &:hover {
    .off {
      opacity: 0;
    }
  }
}
.shopTrainerList__tags {
  position: absolute;
  bottom: 135px;
  left: 0px;
  width: 100%;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  pointer-events: none;
  z-index: 3;
  @media screen and (max-width: 750px){
    bottom: 90px;
    padding: 0 10px;
    gap: 6px;
  }
}
.shopTrainerList__tag {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
  @media screen and (max-width: 750px){
    font-size: 8px;
    padding: 3px 6px;
  }
  &.-brown {
    background-color: var(--color-brown);
    color: #fff;
  }
}
.shopTrainerList__btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-brown);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  @media screen and (max-width: 750px){
    width: 48px;
    height: 48px;
    bottom: 20px;
  }
  &:after {
    content: "＋";
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    @media screen and (max-width: 750px){
      font-size: 24px;
    }
  }
  &.is-active {
    &:after {
      content: "－";
    }
  }
}
.shopTrainerProfile {
  border-right: 1px solid #000;
  display: none;
  @media screen and (max-width: 750px){
    border-right-style: none;
  }
}
.shopTrainerProfile__name {
  font-size: 32px;
  font-weight: bold;
  background-color: #DFDFE0;
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #000;
  @media screen and (max-width: 750px){
    font-size: 18px;
    padding: 10px 0;
  }
}
.shopTrainerProfile__inner {
  padding: 36px;
  @media screen and (max-width: 750px){
    padding: 30px 24px;
  }
}
.shopTrainerProfile__list {
  + .shopTrainerProfile__list {
    margin-top: 50px;
    @media screen and (max-width: 750px){
      margin-top: 20px;
    }
  }
  dt {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    width: 102px;
    padding: 4px 0;
    border: 1px solid #000;
    @media screen and (max-width: 750px){
      width: 72px;
      font-size: 11px;
    }
  }
  dd {
    margin-top: 27px;
    font-size: 14px;
    font-weight: 500;
    @media screen and (max-width: 750px){
      font-size: 11px;
      margin-top: 16px;
      margin-top: 15px;
    }
    p {
      font-size: 14px;
      @media screen and (max-width: 750px){
        font-size: 11px;
      }
    }
  }
}
.shopPrice {
  background-color: #F5F5F5;
  padding: 120px 20px 180px;
  @media screen and (max-width: 750px){
    padding: 60px 20px 80px;
  }
}
.shopPrice__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.shopPrice__block {
  margin-top: 50px;
  background-color: #fff;
  padding: 80px 100px 50px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
    padding: 40px 20px 40px;
  }
}
.shopPrice__title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.shopPrice__read {
  text-align: center;
  font-size: 27px;
  font-weight: bold;
  margin-top: 24px;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.shopPriceTable {
  margin-top: 40px;
  @media screen and (max-width: 750px){
    margin-top: 24px;
  }
}
.shopPriceTable__list {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  dt {
    display: flex;
    width: 318px;
    height: 90px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    font-weight: bold;
    color: #fff;
    background-color: #B39D81;
    @media screen and (max-width: 750px){
      width: 128px;
      height: 56px;
      font-size: 12px;
      text-align: center;
    }
    &.-gray {
      background-color: #C1BDB7;
      color: #000;
    }
    .small {
      font-size: 18px;
      font-weight: 500;
      @media screen and (max-width: 750px){
        font-size: 12px;
      }
    }
  }
  dd {
    flex: 1;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    font-family: "DIN", "Noto Sans JP", sans-serif;
    @media screen and (max-width: 750px){
      font-size: 12px;
      line-height: 1.3;
    }
    .large {
      font-size: 38px;
      @media screen and (max-width: 750px){
        font-size: 16px;
      }
    }
  }
}
.shopPriceTable__plus {
  font-size: 83px;
  font-weight: 200;
  line-height: 1;
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 53px;
  }
}
.shopPriceService {
  margin-top: 60px;
  border: 1px solid #453B3B;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
}
.shopPriceService__title {
  background-color: #453B3B;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  padding: 15px 0;
  @media screen and (max-width: 750px){
    font-size: 15px;
    padding: 5px 0;
  }
}
.shopPriceService__list {
  padding: 30px 20px;
  display: flex;
  justify-content: space-around;
  @media screen and (max-width: 750px){
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 10px;
    gap: 20px 0;
  }
}
.shopPriceService__item {
  text-align: center;
  @media screen and (max-width: 750px){
    width: 25%;
  }
}
.shopPriceService__icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  @media screen and (max-width: 750px){
    height: 50px;
    img {
      transform: scale(0.7);
    }
  }
}
.shopPriceService__text {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  @media screen and (max-width: 750px){
    font-size: 8px;
  }
}
.shopPriceService__caution {
  font-size: 12px;
  font-weight: bold;
  margin-top: 2px;
  @media screen and (max-width: 750px){
    font-size: 8px;
  }
}
.shopPrice__caution {
  text-align: right;
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
  @media screen and (max-width: 750px){
    font-size: 12px;
    text-align: left;
  }
}
.shopPriceTable2 {
  margin-top: 60px;
  width: 100%;
  @media screen and (max-width: 750px){
    margin-top: 30px;
    letter-spacing: 0;
  }
  thead {
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    th {
      font-size: 27px;
      font-weight: bold;
      padding: 12px 0;
      vertical-align: middle;
      text-align: center;
      @media screen and (max-width: 750px){
        font-size: 12px;
      }
      &.black {
        background-color: #000;
        color: #fff;
      }
      &.brown {
        background-color: var(--color-brown);
        color: #fff;
      }
      &.beige {
        background-color: #C1BDB7;
      }
      .small {
        font-size: 20px;
        @media screen and (max-width: 750px){
          font-size: 9px;
        }
      }
    }
  }
  tbody {
    td {
      border-top: 1px solid #000;
      text-align: center;
      padding: 20px 10px;
      font-size: 22px;
      font-weight: bold;
      font-family: "DIN", "Noto Sans JP", sans-serif;
      @media screen and (max-width: 750px){
        font-size: 11px;
        padding: 10px;
        vertical-align: middle;
      }
      .large {
        font-size: 38px;
        font-weight: 600;
        @media screen and (max-width: 750px){
          font-size: 16px;
        }
      }
      .medium {
        font-size: 32px;
        font-weight: 600;
        @media screen and (max-width: 750px){
          font-size: 14px;
        }
      }
    }
  }
}
.shopReserve {
  padding: 180px 20px 140px;
  background: url(../img/shop/bg_line.jpg) no-repeat center/180% auto;
  @media screen and (max-width: 750px){
    padding: 40px 20px 60px;
    background-size: 480% auto;
  }
  &.-white {
    background: #fff;
  }
}
.shopReserve__inner {
  max-width: 1250px;
  margin: 0 auto;
}
.shopReserve__title {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
  .-white & {
    color: #000;
  }
}
.shopReserve__line {
  margin-top: 48px;
  @media screen and (max-width: 750px){
    margin-top: 38px;
  }
  a {
    position: relative;
    padding: 72px 0;
    display: block;
    font-size: 33px;
    font-weight: bold;
    text-align: center;
    color: #03C755;
    border: 3px solid #03C755;
    text-decoration: none;
    @media screen and (max-width: 750px){
      font-size: 18px;
      padding: 32px 0;
    }
    &:before {
      content: "";
      background: url(../img/shop/icon_line.png) no-repeat center/contain;
      width: 123px;
      height: 123px;
      position: absolute;
      top: 50%;
      left: 60px;
      transform: translateY(-50%);
      @media screen and (max-width: 750px){
        width: 50px;
        height: 50px;
        left: 15px;
      }
    }
    &:after {
      content: "";
      background: url(../img/shop/arrow_green.svg) no-repeat center/contain;
      width: 50px;
      aspect-ratio: 50 / 9;
      position: absolute;
      top: 50%;
      right: 40px;
      transform: translateY(-50%);
      @media screen and (max-width: 750px){
        width: 28px;
        right: 10px;
      }
    }
  }
}
.shopReserve__hide {
  margin-top: 40px;
  display: none;
}
.shopReserve__list {
  li {
    color: #fff;
    font-size: 33px;
    .-white & {
      color: #000;
    }
    @media screen and (max-width: 750px){
      font-size: 18px;
    }
    &:before {
      content: "・";
    }
  }
  a {
    color: inherit;
    font-weight: bold;
    text-decoration: underline;
  }
}
.shopReserve__caution {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin-top: 20px;
  .-white & {
    color: #000;
  }
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.shopReserve__row {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
}
.shopReserve__btn {
  width: calc(50% - 20px);
  @media screen and (max-width: 750px){
    width: 100%;
  }
  a {
    display: block;
    position: relative;
    padding: 36px 0;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    border: 3px solid #fff;
    text-decoration: none;
    @media screen and (max-width: 750px){
      font-size: 18px;
      padding: 20px 0;
    }
    &:after {
      content: "";
      background: url(../img/shop/arrow_white.svg) no-repeat center/contain;
      width: 50px;
      height: 9px;
      position: absolute;
      top: 50%;
      right: 40px;
      transform: translateY(-50%);
      @media screen and (max-width: 750px){
        width: 28px;
        right: 10px;
      }
    }
    .-white & {
      color: #000;
      border-color: #000;
      &:after {
        background: url(../img/shop/arrow_btn_black.svg) no-repeat center/contain;
      }
    }
  }
}
.shopInterview {
  padding: 120px 20px;
  @media screen and (max-width: 750px){
    padding: 60px 20px;
  }
}
.shopInterview__inner {
  max-width: 1028px;
  margin: 0 auto;
}
.shopInterview__row {
  display: flex;
  align-items: center;
  margin-top: 90px;
  @media screen and (max-width: 750px){
    display: block;
    position: relative;
    margin-top: 48px;
  }
}
.shopInterview__thumb {
  width: 390px;
  @media screen and (max-width: 750px){
    width: 33%;
    position: absolute;
    top: 0px;
    left: 0px;
  }
}
.shopInterview__right {
  flex: 1;
  padding-left: 78px;
  @media screen and (max-width: 750px){
    padding-left: 0;
    padding-top: 7vw;
  }
}
.shopInterview__job {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-brown);
  text-decoration: underline;
  @media screen and (max-width: 750px){
    font-size: 12px;
    margin-left: calc(33% + 20px);
  }
}
.shopInterview__name {
  font-weight: bold;
  font-size: 35px;
  @media screen and (max-width: 750px){
    font-size: 14px;
    margin-left: calc(33% + 20px);
  }
  .large {
    font-size: 42px;
    @media screen and (max-width: 750px){
      font-size: 18px;
    }
  }
}
.shopInterviewProfile {
  margin-top: 40px;
  @media screen and (max-width: 750px){
    margin-top: 14vw;
  }
}
.shopInterviewProfile__title {
  font-size: 17px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 15px;
  }
}
.shopInterviewProfile__txt {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  @media screen and (max-width: 750px){
    font-size: 11px;
  }
}
.shopInterviewMessage {
  margin-top: 50px;
}
.shopInterviewMessage__title {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-brown);
  padding: 12px 120px 12px;
  position: relative;
  cursor: pointer;
  @media screen and (max-width: 750px){
    padding: 15px 56px 15px 24px;
    font-size: 15px;
  }
  &:after {
    content: "＋";
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    @media screen and (max-width: 750px){
      right: 12px;
      font-size: 22px;
    }
  }
  &.is-active {
    &:after {
      content: "－";
    }
  }
}
.shopInterviewMessage__content {
  margin-top: 30px;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  display: none;
  @media screen and (max-width: 750px){
    font-size: 16px;
    padding: 30px 20px;
    border: 1px solid var(--color-brown);
    margin-top: 0;
  }
}
.shopExperience {
  padding: 80px 20px 120px;
  background-color: #F5F5F5;
  @media screen and (max-width: 750px){
    padding: 60px 20px 100px;
  }
}
.shopExperienceList {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  @media screen and (max-width: 750px){
    display: block;
    margin-top: 50px;
    .prev {
      position: absolute;
      left: 0px;
      bottom: -60px;
      width: 128px;
      padding-top: 20px;
      font-size: 16px;
      font-family: "DIN", sans-serif;
      color: var(--color-brown);
      background: url(../img/home/arrow_scroll_left.svg) no-repeat center top/contain;
      text-align: right;
    }
    .next {
      position: absolute;
      right: 0px;
      bottom: -60px;
      width: 128px;
      padding-top: 20px;
      font-size: 16px;
      font-family: "DIN", sans-serif;
      color: var(--color-brown);
      background: url(../img/home/arrow_scroll_right.svg) no-repeat center top/contain;
    }
  }
}
.shopExperienceList__item {
  width: 290px;
  margin: 0 38px;
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
    margin: 0;
    padding: 0 30px;
  }
}
.shopExperienceList__num {
  font-family: "DIN", sans-serif;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  color: var(--color-brown);
  font-size: 65px;
  font-weight: 600;
  line-height: 0;
  position: absolute;
  top: -20px;
  left: -40px;
  @media screen and (max-width: 750px){
    font-size: 50px;
    left: -10px;
  }
}
.shopExperienceList__title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  background-color: #fff;
  padding: 0.25em 0;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.shopExperienceList__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-top: 30px;
  @media screen and (max-width: 750px){
    margin-top: 10px;
    font-size: 14px;
  }
}
.shopMovie {
  padding: 120px 20px;
  @media screen and (max-width: 750px){
    padding: 60px 20px;
  }
}
.shopMovie__movie {
  margin-top: 44px;
  text-align: center;
  video,
  iframe {
    width: 100%;
    max-width: 1024px;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
.shopFaq {
  padding: 120px 20px;
  background-color: #F5F5F5;
  @media screen and (max-width: 750px){
    padding: 60px 20px;
  }
}
.shopFaq__inner {
  max-width: 1028px;
  margin: 0 auto;
}
.shopFaqList {
  margin-top: 80px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.shopFaqList__item {
  + .shopFaqList__item {
    margin-top: 30px;
    @media screen and (max-width: 750px){
      margin-top: 10px;
    }
  }
}
.shopFaqList__title {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  padding: 12px 110px 12px;
  background-color: var(--color-brown);
  cursor: pointer;
  position: relative;
  @media screen and (max-width: 750px){
    font-size: 14px;
    padding: 12px 60px 12px 43px;
  }
  &:before {
    content: "Q.";
    position: absolute;
    top: 12px;
    left: 60px;
    @media screen and (max-width: 750px){
      top: 11px;
      left: 18px;
    }
  }
  &:after {
    content: "＋";
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    @media screen and (max-width: 750px){
      right: 15px;
      font-size: 16px;
    }
  }
  &.is-active {
    &:after {
      content: "－";
    }
  }
}
.shopFaqList__content {
  padding: 24px 60px;
  border: 1px solid var(--color-brown);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  display: none;
  @media screen and (max-width: 750px){
    font-size: 14px;
    padding: 20px;
  }
}
.shopAccess {
  padding: 60px 20px 100px;
  background: url(../img/shop/akasaka/bg_access.jpg) no-repeat center/cover;
  @media screen and (max-width: 750px){
    padding: 30px 20px 50px;
  }
}
.shopAccess__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.shopAccess__info {
  background-color: #fff;
  padding: 60px;
  margin-top: 80px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
    padding: 25px;
  }
}
.shopAccess__h3 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.shopAccess__table {
  margin-top: 48px;
  width: 100%;
  @media screen and (max-width: 750px){
    display: block;
    border-top: 2px solid #000;
    margin-top: 18px;
    tbody,
    thead,
    tr,
    th,
    td {
      display: block;
    }
  }
  tr {
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    @media screen and (max-width: 750px){
      border-top-style: none;
      border-bottom: 2px solid #000;
    }
  }
  th {
    width: 160px;
    text-align: center;
    padding: 20px 0;
    font-weight: bold;
    @media screen and (max-width: 750px){
      width: 100%;
      font-size: 18px;
      padding: 20px 0 0;
    }
  }
  td {
    padding: 20px 0;
    font-weight: 500;
    @media screen and (max-width: 750px){
      padding: 10px 0 10px;
      font-size: 14px;
    }
    .link-tel {
      font-size: 30px;
      font-weight: bold;
      @media screen and (max-width: 750px){
        font-size: 18px;
      }
    }
  }
}
.shopMap {
  background-color: #F5F5F5;
  padding: 0 20px 120px;
  @media screen and (max-width: 750px){
    padding: 0 20px 60px;
  }
  .shopMap__map {
    margin: 0 -20px;
  }
  iframe {
    width: 100%;
    height: 45vw;
    @media screen and (max-width: 750px){
      height: 340px;
    }
  }
}
.shopMap__inner {
  max-width: 1568px;
  margin: 60px auto 0;
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
}
.shopMap__block {
  border-bottom: 3px solid #000;
}
.shopMap__title {
  padding: 50px 100px 50px 90px;
  position: relative;
  font-size: 41px;
  font-weight: bold;
  cursor: pointer;
  @media screen and (max-width: 750px){
    font-size: 14px;
    padding: 20px 80px 20px 0px;
  }
  &:after {
    content: "＋";
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    font-size: 74px;
    font-weight: bold;
    @media screen and (max-width: 750px){
      font-size: 24px;
      right: 0px;
    }
  }
  &.is-active {
    &:after {
      content: "－";
    }
  }
}
.shopMap__content {
  display: none;
  margin-top: 40px;
  padding-bottom: 80px;
}
.shopMapList {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 56px;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 40px;
  }
}
.shopMapList__item {
  width: calc( ( 100% - 56px * 2 ) / 3 );
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.shopMapList__text {
  font-size: 21px;
  font-weight: bold;
  margin-top: 30px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
    font-size: 18px;
  }
}
.shopGellery {
  margin-top: 120px;
  padding: 90px 20px 120px;
  background-color: #DFDFE0;
  text-align: center;
  @media screen and (max-width: 750px){
    margin-top: 60px;
    padding: 40px 20px 20px;
  }
}
.shopGellery__title {
  color: var(--color-brown);
  .small {
    font-size: 28px;
    font-weight: bold;
    display: block;
    @media screen and (max-width: 750px){
      font-size: 14px;
    }
  }
  .large {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 20px;
    display: block;
    @media screen and (max-width: 750px){
      font-size: 14px;
    }
  }
}
.shopGellery__large {
  margin: 60px auto 0;
  max-width: 1274px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.shopGellery__row {
  margin: 20px auto 0;
  max-width: 1274px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  @media screen and (max-width: 750px){
    margin-top: 10px;
    gap: 10px;
  }
}

.fadeBanner {
  @media screen and (min-width: 751px){
    display: none !important;
  }
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 300;
}

.exit {
  display: none;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
}
.exit__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 540px;
  max-width: 90%;
}
.exit__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  span {
    &:nth-child(1) {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 2px;
      background-color: #000;
      transform: translate(-50%, -50%) rotate(45deg);
    }
    &:nth-child(2) {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 2px;
      background-color: #000;
      transform: translate(-50%, -50%) rotate(-45deg);
    }
  }
}
.exit__banner {
  img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
  }
}
.bottomBanner {
  @media screen and (min-width: 751px){
    display: none;
  }
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 200;
}
.footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px 60px;
}
.footer__inner {
  max-width: 1632px;
  display: flex;
  @media screen and (max-width: 750px){
    flex-wrap: wrap;
  }
}
.footer__logo {
  width: 478px;
  @media screen and (max-width: 750px){
    width: 100%;
    margin-bottom: 30px;
    img {
      width: 128px;
    }
  }
}
.footer__navi {
  margin-right: 80px;
  font-size: 18px;
  @media screen and (max-width: 750px){
    margin: 0;
    width: 50%;
    font-size: 16px;
    &:last-child {
      width: 100%;
      margin-top: 50px;
      display: flex;
      gap: 1em;
      font-size: 14px;
    }
  }
  li {
    line-height: 2;
    a {
      color: #fff;
      text-decoration: none;
      font-family: "DIN", "Noto Sans JP", sans-serif;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
.copyright {
  margin-top: 90px;
  text-align: center;
  font-size: 16px;
  font-family: "DIN", sans-serif;
  @media screen and (max-width: 750px){
    margin-top: 20px;
    font-size: 11px;
  }
}

.homeVoice {
  margin-top: 140px;
  padding: 80px 20px 100px;
  background: url(../img/home/bg_voice.png) no-repeat center/cover;
  @media screen and (max-width: 750px){
    margin-top: 90px;
    padding: 40px 20px 50px;
  }
}
.homeVoice__inner {
  max-width: 1060px;
  margin: 0 auto;
}
.homeVoice__star {
  width: 392px;
  height: 267px;
  background: url(../img/home/bg_star.svg) no-repeat center/contain;
  text-align: center;
  color: var(--color-brown);
  margin: 40px auto 0;
  padding-top: 12px;
  @media screen and (max-width: 750px){
    width: 266px;
    height: 182px;
    padding-top: 22px;
  }
  .small {
    display: block;
    font-size: 29px;
    font-weight: bold;
    line-height: 1.5;
    @media screen and (max-width: 750px){
      font-size: 19px;
    }
  }
  .num {
    display: block;
    font-size: 111px;
    font-family: "DIN", sans-serif;
    font-weight: bold;
    line-height: 1;
    @media screen and (max-width: 750px){
      font-size: 60px;
    }
  }
}
.homeVoiceList {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  margin-top: 45px;
  @media screen and (max-width: 750px){
    display: block;
    .prev {
      position: absolute;
      left: 0px;
      bottom: 0px;
      width: 128px;
      padding-top: 20px;
      font-size: 16px;
      font-family: "DIN", sans-serif;
      color: var(--color-brown);
      background: url(../img/home/arrow_scroll_left.svg) no-repeat center top/contain;
      text-align: right;
    }
    .next {
      position: absolute;
      right: 0px;
      bottom: 0px;
      width: 128px;
      padding-top: 20px;
      font-size: 16px;
      font-family: "DIN", sans-serif;
      color: var(--color-brown);
      background: url(../img/home/arrow_scroll_right.svg) no-repeat center top/contain;
    }
  }
}
.homeVoiceList__item {
  width: calc( ( 100% - 45px ) / 2 );
  background-color: #fff;
  padding: 20px 20px;
  @media screen and (max-width: 750px){
    width: 100%;
    padding: 20px 10px;
  }
}
.homeVoiceList__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--color-brown);
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}

.pageHero {
  position: relative;
}
.pageHero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 0 calc( 176 / 1920 * 100vw );
  z-index: 2;
  &.-right {
    align-items: flex-end;
    .pageHero__title {
      text-align: right;
      padding-top: 0;
    }
  }
}
.pageHero__title {
  color: #fff;
  font-weight: bold;
  padding-top: 15vw;
  @media screen and (max-width: 750px){
    padding-top: 0;
  }
  .ja {
    font-size: calc( 72 / 1920 * 100vw );
    display: block;
    @media screen and (max-width: 750px){
      font-size: calc( 26 / 393 * 100vw );
    }
    &.-small {
      @media screen and (max-width: 750px){
        font-size: calc( 20 / 393 * 100vw );
      }
    }
  }
  .en {
    font-size: calc(24 / 1920 * 100vw);
    display: block;
    @media screen and (max-width: 750px){
      font-size: calc( 14 / 393 * 100vw );
    }
  }
}
.pageHero__btn {
  margin-top: calc( 80 / 1920 * 100vw );
  width: calc(510 / 1920 * 100vw);
  @media screen and (max-width: 750px){
    width: 100%;
    margin-top: calc( 10 / 393 * 100vw );
    margin-bottom: calc( -60 / 393 * 100vw );
  }
  a {
    display: flex;
    align-items: center;
    width: calc(510 / 1920 * 100vw);
    height: calc(104 / 1920 * 100vw);
    background: var(--grad-gold);
    color: inherit;
    font-size: calc(32 / 1920 * 100vw);
    font-weight: bold;
    text-decoration: none;
    position: relative;
    padding-left: calc(50 / 1920 * 100vw);
    @media screen and (max-width: 750px){
      margin-top: 12px;
      width: 100%;
      height: calc(60 / 393 * 100vw);
      font-size: calc(18 / 393 * 100vw);
      padding-left: calc(60 / 393 * 100vw);
    }
    &:after {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: calc(33 / 1920 * 100vw);
      width: calc(50 / 1920 * 100vw);
      aspect-ratio: 50 / 9;
      background: url(../img/shop/arrow_btn_black.svg) no-repeat center / contain;
      @media screen and (max-width: 750px){
        right: calc(20 / 393 * 100vw);
        width: calc(28 / 393 * 100vw);
      }
    }
  }
}
.pageHero__bg {
  @media screen and (max-width: 750px){
    height: 80vw;
    img {
      width: 100%;
      height: 80vw;
      object-fit: cover;
    }
  }
}

.frFlow {
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.frFlow__left {
  width: 50%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.frFlow__right {
  width: 45%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.frFlow__list {
  li {
    display: flex;
    align-items: center;
    + li {
      margin-top: 20px;
      @media screen and (max-width: 750px){
        margin-top: 10px;
      }
    }
    .num {
      width: 60px;
      height: 60px;
      background-color: var(--color-brown);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "DIN", sans-serif;
      font-weight: bold;
      font-size: 24px;
      border-radius: 50%;
      @media screen and (max-width: 750px){
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
    }
    .text {
      font-size: 20px;
      font-weight: bold;
      margin-left: 1em;
      @media screen and (max-width: 750px){
        font-size: 14px;
      }
    }
  }
}
.recVision__block {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
}
.recVision__left {
  width: 47.5%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.recVision__right {
  width: 47.5%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.recGoal {
  padding: 120px 20px 160px;
  background: url(../img/recruit/thumb_goal_01.jpg) no-repeat center/cover;
  @media screen and (max-width: 750px){
    padding: 60px 20px 80px;
    background-position: center top;
  }
}
.recGoalList {
  margin-top: 120px;
  width: 80%;
  @media screen and (max-width: 750px){
    width: 100%;
    margin-top: 60px;
  }
}
.recGoalList__item {
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    display: block;
    padding: 20px 0;
    border-top: 3px solid #fff;
    &:first-child {
      border-top: none;
    }
  }
}
.recGoalList__num {
  width: 2em;
  font-size: 60px;
  color: #fff;
  font-weight: bold;
  font-family: "DIN", sans-serif;
  font-style: italic;
  @media screen and (max-width: 750px){
    width: 100%;
    text-align: center;
    font-size: 40px;
  }
}
.recGoalList__text {
  border-top: 3px solid #fff;
  padding: 1em 0;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  :first-child & {
    border-top: none;
  }
  @media screen and (max-width: 750px){
    padding: 0;
    font-size: 18px;
  }
}
.recGoal__message {
  margin-top: 120px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  line-height: 1.8;
  @media screen and (max-width: 750px){
    margin-top: 60px;
    font-size: 13px;
  }
}
.recRequire__table {
  width: 100%;
  thead {
    background: var(--color-brown);
    color: #fff;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    th {
      padding: 0.8em 1em;
      font-size: 18px;
      font-weight: bold;
      text-align: center;
      @media screen and (max-width: 750px){
        font-size: 14px;
      }
    }
  }
  tbody {
    tr {
      border-bottom: 3px solid #000;
    }
    th {
      width: 20%;
      padding: 1em 1em;
      font-size: 18px;
      font-weight: bold;
      vertical-align: middle;
      @media screen and (max-width: 750px){
        font-size: 14px;
        width: 30%;
        padding: 1em 0.5em;
      }
    }
    td {
      padding: 1em 0;
      font-size: 18px;
      font-weight: 500;
      @media screen and (max-width: 750px){
        font-size: 14px;
        padding: 1em 0;
      }
    }
  }
}
.recFlowList {
  border-top: 3px solid #000;
}
.recFlowList__item {
  display: flex;
  background-color: #f8f2ec;
  border-bottom: 3px solid #000;
  @media screen and (max-width: 750px){
    display: block;
    padding: 1em;
  }
}
.recFlowList__left {
  display: flex;
  align-items: center;
  width: 40%;
  border-right: 3px solid #fff;
  @media screen and (max-width: 750px){
    width: 100%;
    border-style: none;
  }
}
.recFlowList__right {
  width: 60%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.recFlowList__step {
  width: 30%;
  padding: 0.5em 0;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-family: "DIN", sans-serif;
  border-right: 3px solid #fff;
  @media screen and (max-width: 750px){
    font-size: 18px;
    border-style: none;
    padding: 0;
    text-align: left;
  }
}
.recFlowList__title {
  padding: 0.5em 1em;
  font-size: 20px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 18px;
    padding: 0;
  }
}
.recFlowList__right {
  padding: 0.5em 1em;
  font-size: 20px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 14px;
    padding: 0.5em 0;
  }
}
.contactShop {
  padding: 90px 20px 45px;
  background: url(../img/contact/bg_shop.jpg) no-repeat center/cover;
  color: #fff;
}

.ani-dram {
  em {
    display: inline-block;
    transform: rotateX(90deg);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: top;
    &.is-active {
      transform: rotateX(0deg);
      opacity: 1;
    }
  }
}
.ani-fade-text {
  position: relative;
  color: #bababa;
  &:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #000000;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s 0s cubic-bezier(.44,.14,.09,1.02);
  }
  &.is-active {
    &:after {
      clip-path: inset(0 0 0 0);
    }
  }
  &.-white {
    &:after {
      color: #fff;
    }
  }
  &.-brown {
    &:after {
      color: var(--color-brown);
    }
  }
}
.companyHero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  @media screen and (max-width: 750px){
    display: block;
  }
}
.companyHero__title {
  font-size: 3vw;
  font-weight: bold;
  color: #fff;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.companyHero__text {
  font-size: 1.8vw;
  font-weight: 500;
  line-height: 1.8;
  @media screen and (max-width: 750px){
    font-size: 11px;
    margin-top: 10px;
  }
}