@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #000000;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc_only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc_only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp_only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

figure {
  margin-bottom: 0 !important;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1130px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.header {
  height: 3rem;
  width: 100%;
  background: #FFC9D2;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
@media screen and (min-width: 780px) {
  .header {
    height: 5.1875rem;
  }
}

.header__inner {
  height: inherit;
  padding-right: 1.75rem;
}

.header__logo {
  width: 7.125rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #FFF;
}
@media screen and (min-width: 780px) {
  .header__logo {
    width: 14.375rem;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__nav {
  margin-left: auto;
  height: inherit;
}

.header__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item:not(:first-child) {
  margin-left: 0.625rem;
}
@media screen and (min-width: 1200px) {
  .header__nav-item:not(:first-child) {
    margin-left: 1.25rem;
  }
}

.header__nav-link {
  height: inherit;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #4E454A;
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04;
}
@media screen and (min-width: 1200px) {
  .header__nav-link {
    font-size: 0.8125rem;
  }
}

.header__sns-items {
  margin-left: 1.875rem;
  display: none;
}
@media screen and (min-width: 780px) {
  .header__sns-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__sns-item {
  width: 1.875rem;
  max-width: 100%;
}
@media screen and (min-width: 780px) {
  .header__sns-item a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (min-width: 1200px) {
  .header__sns-item {
    width: 2.625rem;
  }
}

.header__sns-item:not(:first-child) {
  margin-left: 0.625rem;
}

/*　ハンバーガーメニュー */
.hamburger {
  position: fixed;
  z-index: 1000;
  width: 27px;
  top: 12px;
  right: 20px;
}

.hamburger span {
  display: block;
  height: 0.0625rem;
  width: 1.6875rem;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #FFF;
  z-index: 200;
}

.hamburger span:nth-child(2) {
  margin: 0.5625rem 0;
}

.hamburger.is-openSP span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: 9px;
  background: #FFF;
  width: 1.625rem;
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  top: -11px;
  background: #FFF;
  width: 1.625rem;
}

.header-sp {
  margin-top: 3rem;
  width: 100%;
  height: 100dvh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  background: #FFF;
  top: 0;
  right: 0;
  z-index: 999;
  padding: 1.125rem 1.25rem;
  /* これで右に隠す↓↓ */
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  padding: 1.375rem;
}

.is-openSP {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.header-sp__inner {
  max-width: 40.625rem;
  margin-inline: auto;
}

.header-sp__nav {
  margin-inline: auto;
}

.header-sp__items {
  padding-top: 1.25rem;
}

.header-sp__item {
  border-bottom: 0.75px solid #454545;
  padding-bottom: 0.75rem;
  position: relative;
}

.header-sp__item:not(:first-child) {
  margin-top: 0.75rem;
}

.header-sp__link {
  display: inline-block;
  width: 100%;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  color: #454545;
}

.header-sp__item::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 13px;
  background: url(../img/arrow-sp.svg) no-repeat;
  background-size: contain;
  width: 8px;
  height: 8px;
}

.header-sp__tel {
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .header-sp__tel {
    pointer-events: none;
    cursor: default;
  }
}

.header-sp__tel a {
  color: #222222;
  font-size: 1.875rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-decoration: underline;
}

.header-sp__link-items {
  padding-bottom: 6.25rem;
}

.header-sp__link-item {
  text-align: center;
}

body.js-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.fv {
  margin-top: 2.8125rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .fv {
    margin-top: 5.1875rem;
  }
}

.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  overflow: hidden;
}
@media screen and (min-width: 780px) {
  .fv__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.fv__container {
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f9fb), to(#e2e8f0));
  background: linear-gradient(#f8f9fb 0%, #e2e8f0 100%);
  width: 100%;
  max-width: 100%;
  position: relative;
}
@media screen and (min-width: 780px) {
  .fv__container {
    width: 40%;
  }
}

.fv__content {
  padding: 2.8125rem 1.5625rem;
  z-index: 3;
  position: relative;
}
@media screen and (min-width: 780px) {
  .fv__content {
    position: absolute;
    left: 6.8125rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: initial;
  }
}

.fv__content::before {
  position: absolute;
  content: "BELZE";
  color: #FFF;
  font-size: 5.375rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-family: "Cormorant Garamond";
  left: -20px;
  top: 10px;
  z-index: -1;
}
@media screen and (min-width: 780px) {
  .fv__content::before {
    font-size: 10.1875rem;
    left: -165px;
    top: -170px;
  }
}

.fv__title-container {
  position: relative;
  max-width: 100%;
  width: 18.75rem;
}
@media screen and (min-width: 780px) {
  .fv__title-container {
    width: 37.5rem;
  }
}

.fv__title-image {
  position: absolute;
  width: 8.25rem;
  max-width: 100%;
  z-index: 10;
  right: -30px;
  bottom: -25px;
}
@media screen and (min-width: 780px) {
  .fv__title-image {
    width: 12.625rem;
    right: -47px;
    bottom: -38px;
  }
}

.fv__title {
  font-family: "Noto Serif", serif;
  font-size: 1.75rem;
  line-height: 1.5714285714;
  font-weight: 400;
  letter-spacing: 0.2em;
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 780px) {
  .fv__title {
    font-family: "Cormorant Garamond";
    font-size: 3.375rem;
    line-height: 1.2037037037;
  }
}

.fv__title::after {
  position: absolute;
  content: "";
  background: #4E454A;
  width: 30px;
  height: 1px;
  left: 0;
  bottom: -14px;
}

.fv__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  line-height: 1.9285714286;
  width: 100%;
  max-width: 24.375rem;
  margin-top: 2.5rem;
}

@media screen and (min-width: 780px) {
  .fv__bg {
    position: absolute;
    bottom: 0;
    background: white;
    height: 54px;
    width: 100%;
  }
}

.fv__scroll {
  position: absolute;
  z-index: 6;
  bottom: 10px;
  right: 25px;
}
@media screen and (min-width: 780px) {
  .fv__scroll {
    left: 40px;
  }
}

.swiper {
  width: 100%;
  overflow: visible;
  position: relative;
}
@media screen and (min-width: 780px) {
  .swiper {
    width: 60%;
    position: relative;
  }
}

.test {
  margin-top: 2.5rem;
  position: initial !important;
  text-align: left !important;
}
@media screen and (min-width: 780px) {
  .test {
    margin-top: 2.9375rem;
  }
}

.swiper-pagination-bullet {
  /*ページネーションの色 */
  background: #f8f9fb !important;
  /*ページネーションの透明度 */
  opacity: 1 !important;
  border: 1px solid #000;
}

/* 選択されているページネーション */
.swiper-pagination-bullet-active {
  background-color: #4E454A !important;
  border: none;
}

.scroll-bar {
  position: relative;
  text-transform: uppercase;
  padding-top: 80px;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #000000;
  font-family: "Oswald", sans-serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: block;
}

/* 丸の描写 */
.scroll-bar:before {
  content: "";
  /*描画位置*/
  position: absolute;
  z-index: 5;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*丸の形状*/
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4E454A;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
  0% {
    bottom: 115px;
  }
  100% {
    bottom: 40px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 115px;
  }
  100% {
    bottom: 40px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scroll-bar:after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*線の形状*/
  width: 1px;
  height: 4.375rem;
  background: #000000;
}

.circle {
  position: absolute;
  z-index: 100;
  width: 10.625rem;
  max-width: 100%;
  right: 1.4375rem;
  bottom: 2.5rem;
  aspect-ratio: 1/1;
  -webkit-animation: circle-rotate 30s linear 0s infinite forwards;
          animation: circle-rotate 30s linear 0s infinite forwards;
}

@-webkit-keyframes circle-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circle-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.circle-sp {
  position: absolute;
  z-index: 100;
  right: 30px;
  top: -70px;
  width: 5.625rem;
  max-width: 100%;
  aspect-ratio: 1/1;
  -webkit-animation: circle-rotate 30s linear 0s infinite forwards;
          animation: circle-rotate 30s linear 0s infinite forwards;
}

.googleMap {
  margin-top: 3.125rem;
  width: 40.625rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .googleMap {
    width: 100%;
  }
}

.googleMap iframe {
  width: 100%;
  height: 16.0625rem;
}

.concept {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .concept {
    margin-top: 3.75rem;
  }
}

.concept__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 780px) {
  .concept__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.concept__content {
  width: 40.625rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .concept__content {
    width: 32.5rem;
    margin-inline: initial;
    margin-left: 5.9375rem;
    padding-top: 7.5rem;
  }
}

.concept__label {
  color: #4E454A;
  font-size: 0.875rem;
  width: 55px;
  line-height: 1.4444444444;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid #4E454A;
  padding-bottom: 0.25rem;
}
@media screen and (min-width: 780px) {
  .concept__label {
    font-size: 1.125rem;
    width: 70px;
    padding-bottom: 0.5625rem;
  }
}

.concept__title {
  font-family: "Noto Serif", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6111111111;
  letter-spacing: 0.04em;
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .concept__title {
    font-size: 1.875rem;
    margin-top: 2.0625rem;
  }
}
@media screen and (min-width: 1200px) {
  .concept__title {
    font-size: 2.25rem;
    margin-top: 2.6875rem;
  }
}

.concept__text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .concept__text {
    margin-top: 1.5rem;
    line-height: 2.7142857143;
  }
}
@media screen and (min-width: 1200px) {
  .concept__text {
    margin-top: 2.875rem;
  }
}

.concept__image {
  width: 40.625rem;
  max-width: 100%;
  aspect-ratio: 659/478;
  margin-top: 0.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .concept__image {
    width: 100%;
    max-width: 45.8vw;
    margin-top: initial;
    position: relative;
    padding-top: 7.5rem;
    margin-left: calc(50% - 50vw);
  }
}

.concept__image2 {
  width: 40.625rem;
  max-width: 100%;
  aspect-ratio: 659/478;
  margin-top: 0.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .concept__image2 {
    width: 100%;
    max-width: 45.8vw;
    margin-top: initial;
    position: relative;
    padding-top: 7.5rem;
    margin-left: calc(50% - 50vw);
  }
}

@media screen and (min-width: 780px) {
  .concept__image::before {
    position: absolute;
    content: "Concept";
    top: 0;
    left: 33px;
    font-size: 7.125rem;
    font-family: "Cormorant Garamond";
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.2105263158;
    color: #F0F0F0;
    z-index: -1;
  }
}

.contact {
  background: linear-gradient(-26deg, #F292A2 0%, #F292A2 50%, #F8B2BE 50%, #F8B2BE 100%);
  margin-top: 2.5rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  text-align: center;
  color: #717171;
}
@media screen and (min-width: 780px) {
  .contact {
    margin-top: 8.75rem;
  }
}

.contact__border {
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  padding: 50px 0;
}
@media screen and (min-width: 780px) {
  .contact__border {
    padding: 97px 0;
  }
}

.contact__text {
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-top: 2.4375rem;
  color: #4E454A;
}
@media screen and (min-width: 780px) {
  .contact__text {
    font-size: 0.875rem;
  }
}

.contact__tel {
  margin-top: 2.3125rem;
}
@media screen and (min-width: 780px) {
  .contact__tel {
    pointer-events: none;
    cursor: default;
  }
}

.contact__tel a {
  color: #4E454A;
  font-size: 1.875rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.contact__link-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  row-gap: 0.625rem;
  margin-top: 1.25rem;
  max-width: 21.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .contact__link-items {
    -ms-grid-columns: 1fr 1fr;
    /* grid-template-columns: 1fr 1fr; */
    row-gap: 1.25rem;
    margin-top: 2.3125rem;
    max-width: 100%;
  }
}

.contact__link-item {
  border: 1px solid #717171;
  height: 3.125rem;
  line-height: 3.125rem;
}
@media screen and (min-width: 780px) {
  .contact__link-item {
    height: 4.6875rem;
    line-height: 4.6875rem;
  }
}

.contact__link-item a {
  color: #4E454A;
  width: 100%;
  display: inline-block;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  height: 3.125rem;
  line-height: 3.125rem;
}
@media screen and (min-width: 780px) {
  .contact__link-item a {
    height: 4.6875rem;
    line-height: 4.6875rem;
  }
}

.contact__link-item a span {
  padding-left: 1.5625rem;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.contact__link-item a span::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
}

.contact__link-item a span::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -20px;
  background: url(../img/contact-arrow.svg) no-repeat;
  background-size: contain;
  width: 8px;
  height: 10px;
}

.contact__line::before {
  -webkit-mask-image: url(../img/contact-line.svg);
  mask-image: url(../img/contact-line.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #4E454A;
  background-size: contain;
}

.contact__insta::before {
  background: url(../img/contact-insta.svg) no-repeat;
  background-size: contain;
}

.contact__epark::before {
  background: url(../img/contact-hotpepper.svg) no-repeat;
  background-size: contain;
}

.contact__hotpepper::before {
  background: url(../img/contact-hotpepper2.svg) no-repeat;
  background-size: contain;
}

.contact__minimo::before {
  background: url(../img/contact-minimo.svg) no-repeat;
  background-size: contain;
}

.section-head {
  text-align: center;
}

.section-head__en {
  font-size: 1.5rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.625rem;
  color: #4E454A;
}
@media screen and (min-width: 780px) {
  .section-head__en {
    font-size: 1.875rem;
    padding-bottom: 1.0625rem;
  }
}

.section-head__en::after {
  position: absolute;
  content: "";
  width: 75px;
  height: 1.5px;
  background: #4E454A;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section-head__jp {
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 0.625rem;
  color: #4E454A;
}
@media screen and (min-width: 780px) {
  .section-head__jp {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.section-head__en-menu {
  color: #222222;
}
@media screen and (min-width: 780px) {
  .section-head__en-menu {
    text-align: left;
  }
}

.section-head__en-menu::after {
  background: #222222;
}
@media screen and (min-width: 780px) {
  .section-head__en-menu::after {
    left: 0;
    -webkit-transform: initial;
            transform: initial;
    width: 30px;
  }
}

.section-head__jp-menu {
  color: #606060;
}
@media screen and (min-width: 780px) {
  .section-head__jp-menu {
    text-align: left;
  }
}

.feature {
  padding-top: 2.5rem;
  padding-bottom: 4.375rem;
  background: #F1F5F8;
  overflow: hidden;
}
@media screen and (min-width: 780px) {
  .feature {
    padding-top: 8.125rem;
    padding-bottom: 11.875rem;
  }
}

.feature__items {
  margin-top: 2.5rem;
  width: 40.625rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .feature__items {
    margin-top: 4.5rem;
    width: 100%;
    margin-inline: initial;
  }
}

.feature__item {
  -webkit-box-shadow: 0 3px 6px #EAEDED;
          box-shadow: 0 3px 6px #EAEDED;
}
@media screen and (min-width: 780px) {
  .feature__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    -webkit-box-shadow: initial;
            box-shadow: initial;
  }
}

.feature__item:nth-child(1):before,
.feature__item:nth-child(3):before,
.feature__item:nth-child(5):before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/Feature01.svg) no-repeat;
  background-size: contain;
  width: 97px;
  height: 344px;
  margin-left: -11.25rem;
}

.feature__item:nth-child(3):before {
  background: url(../img/Feature03.svg) no-repeat;
}

@media screen and (min-width: 780px) {
  .feature__item:nth-child(2):before,
  .feature__item:nth-child(4):before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/Feature02.svg) no-repeat;
    background-size: contain;
    width: 97px;
    height: 344px;
    margin-right: -11.25rem;
  }
}

.feature__item:nth-child(4):before {
  background: url(../img/Feature04.svg) no-repeat;
}

.feature__item:nth-child(5):before {
  background: url(../img/Feature05.svg) no-repeat;
}

.feature__item:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .feature__item:not(:first-child) {
    margin-top: 4.375rem;
  }
}

.feature__item-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 780px) {
  .feature__image {
    width: 50%;
  }
}
.feature__image img {
  aspect-ratio: 540/350;
}

.feature__content {
  background: #FFF;
  padding: 0.625rem;
}
@media screen and (min-width: 780px) {
  .feature__content {
    padding: 0 4.375rem;
    width: 50%;
    background: initial;
  }
}

.feature__label {
  color: #4E454A;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.4666666667;
}
@media screen and (min-width: 780px) {
  .feature__label {
    font-size: 0.9375rem;
  }
}

.feature__title {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .feature__title {
    font-size: 1.75rem;
    line-height: 1.4285714286;
    margin-top: 2.0625rem;
  }
}

.feature__text {
  max-width: 100%;
  font-size: 0.875rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .feature__text {
    margin-top: 2.8125rem;
    width: 25rem;
    line-height: 2.2857142857;
  }
}

.menu__head {
  background: linear-gradient(-26deg, #F292A2 0%, #F292A2 50%, #F8B2BE 50%, #F8B2BE 100%);
  padding-top: 0.525rem;
  padding-bottom: 0.525rem;
  text-align: center;
  color: #FFF;
}

.menu__border {
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  padding: 0.625rem 0;
}
@media screen and (min-width: 780px) {
  .menu__border {
    padding: 1.875rem 0;
  }
}

.menu__head-en {
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}
@media screen and (min-width: 780px) {
  .menu__head-en {
    font-size: 1.875rem;
  }
}

.menu__head-jp {
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2.5;
}
@media screen and (min-width: 780px) {
  .menu__head-jp {
    font-size: 0.875rem;
  }
}

.menu__panel-items {
  margin-top: 2.5rem;
  width: 40.625rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .menu__panel-items {
    margin-top: 5.9375rem;
    width: 100%;
  }
}

.menu__panel-item {
  border: 1px solid #707070;
  padding: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .menu__panel-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2.75rem 2.625rem;
  }
}

.menu__panel-item:last-child {
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .menu__panel-item:last-child {
    margin-top: 2.1875rem;
  }
}

.menu__panel-image {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 780px) {
  .menu__panel-image {
    width: 21.3125rem;
  }
}
.menu__panel-image img {
  aspect-ratio: 341/231;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu__panel-content {
  max-width: 100%;
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .menu__panel-content {
    width: 36.8125rem;
    margin-left: 3.125rem;
    margin-top: initial;
  }
}

.menu__panel-title {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 780px) {
  .menu__panel-title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.menu__panel-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .menu__panel-text {
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}

.menu__panel-price {
  color: #CA092B;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .menu__panel-price {
    font-size: 1.25rem;
    margin-top: 4.375rem;
  }
}

.menu__items {
  border: 1px solid #707070;
  margin-top: 1.25rem;
  padding: 1.25rem;
  width: 40.625rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .menu__items {
    margin-top: 2.1875rem;
    padding: 5.375rem;
    width: 100%;
  }
}

.menu__item {
  border-bottom: 1px solid #E5E3D9;
  padding-bottom: 4.375rem;
}

.menu__item:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .menu__item:not(:first-child) {
    margin-top: 4.375rem;
  }
}

.menu__list-title {
  color: #4E454A;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Noto Serif", serif;
  line-height: 1.4;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #4E454A;
  position: relative;
  padding-left: 0.625rem;
}
@media screen and (min-width: 780px) {
  .menu__list-title {
    letter-spacing: 0.08em;
    font-size: 1.25rem;
    padding-bottom: 1.1875rem;
  }
}

.menu__list-title::before {
  position: absolute;
  content: "";
  width: 0.146875rem;
  height: 1.375rem;
  background: #4E454A;
  top: 5px;
  left: 0;
}
@media screen and (min-width: 780px) {
  .menu__list-title::before {
    height: 1.6875rem;
  }
}

.menu__list-items {
  width: 56.25rem;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 2.8125rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 2.875rem;
}
@media screen and (min-width: 780px) {
  .menu__list-items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

.menu__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__list-text {
  width: 13.125rem;
  max-width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 550px) {
  .menu__list-text {
    width: 25rem;
  }
}
@media screen and (min-width: 780px) {
  .menu__list-text {
    width: 18.125rem;
    font-size: 1.125rem;
    line-height: 1.2777777778;
  }
}


.menu__list-text02 {
  max-width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 550px) {
  .menu__list-text02 {
    width: 56rem;
  }
}
@media screen and (min-width: 780px) {
  .menu__list-text02 {
    font-size: 1.125rem;
    line-height: 1.2777777778;
  }
}


.menu__list-text01 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  padding: 0.9375rem 0.9375rem 0 0.9375rem;
}
@media screen and (min-width: 780px) {
  .menu__list-text01 {
    font-size: 1.125rem;
    line-height: 1.2777777778;
  }
}

.menu__list-price {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  margin-left: auto;
}
@media screen and (min-width: 780px) {
  .menu__list-price {
    margin-top: 1.25rem;
    margin-left: 1.25rem;
    font-size: 1.125rem;
  }
}

.newOpen {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .newOpen {
    margin-top: 7.5rem;
  }
}

.newOpen__container {
  max-width: 40.625rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .newOpen__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
  }
}

.newOpen__container:nth-child(2) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .newOpen__container:nth-child(2) {
    margin-top: 1.25rem;
  }
}

.newOpen__link {
  display: inherit;
}

.newOpen__image {
  width: 100%;
}
@media screen and (min-width: 780px) {
  .newOpen__image {
    width: 50%;
  }
}

.newOpen__content {
  background: linear-gradient(-26deg, #F292A2 0%, #F292A2 50%, #F8B2BE 50%, #F8B2BE 100%);
  color: #717171;
  text-align: center;
  position: relative;
  width: 100%;
  height: 15.625rem;
}
@media screen and (min-width: 780px) {
  .newOpen__content {
    width: 50%;
    height: initial;
  }
}

.newOpen__textbox {
  position: absolute;
  inset: 0;
  margin: auto;
  top: 38%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 100%;
}

.newOpen__title {
  font-family: "Noto Serif", serif;
  font-size: 1rem;
  line-height: 2.125;
  font-family: 300px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  color: #4E454A;
}
@media screen and (min-width: 780px) {
  .newOpen__title {
    font-size: 1.5625rem;
    line-height: 2.1333333333;
  }
}

.newOpen__text {
  font-family: "Noto Serif", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.75;
  margin-top: 1.625rem;
  color: #4E454A;
}
@media screen and (min-width: 780px) {
  .newOpen__text {
    margin-top: 0;
    font-size: 1.125rem;
    line-height: 2.5;
  }
}

.newOpen__link-items {
  text-align: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  row-gap: 0.625rem;
  margin-top: 1.25rem;
  max-width: 21.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .newOpen__link-items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin-top: 2.3125rem;
    width: 44.375rem;
    max-width: 100%;
  }
}

.newOpen__link-item {
  border: 1px solid #717171;
  height: 3.125rem;
  line-height: 3.125rem;
}
@media screen and (min-width: 780px) {
  .newOpen__link-item {
    height: 4.6875rem;
    line-height: 4.6875rem;
    width: 21.25rem;
  }
}

.newOpen__link-item a {
  color: #717171;
  width: 100%;
  display: inline-block;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  height: 3.125rem;
  line-height: 3.125rem;
}
@media screen and (min-width: 780px) {
  .newOpen__link-item a {
    height: 4.6875rem;
    line-height: 4.6875rem;
  }
}

.newOpen__link-item a span {
  position: relative;
}

.newOpen__link-item a span::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
}

.newOpen__line::before {
  -webkit-mask-image: url(../img/contact-line.svg);
  mask-image: url(../img/contact-line.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #171717;
  background-size: contain;
}

.newOpen__insta::before {
  -webkit-mask-image: url(../img/contact-insta.svg);
  mask-image: url(../img/contact-insta.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #171717;
  background-size: contain;
}

.newOpen__link-item a span::after {
  -webkit-mask-image: url(../img/contact-arrow.svg);
  mask-image: url(../img/contact-arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #171717;
  background-size: contain;
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -20px;
  width: 8px;
  height: 10px;
}

.loop-image__area {
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .loop-image__area {
    margin-top: 10rem;
  }
}

.loop-image__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop-list 50s linear infinite;
          animation: loop-list 50s linear infinite;
}

.loop-image__item {
  width: 25vw;
  max-width: 20.3125rem;
  display: block;
  margin-left: 1.25rem;
}
@media screen and (min-width: 780px) {
  .loop-image__item {
    margin-left: 2.125rem;
  }
}

@-webkit-keyframes loop-list {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop-list {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.loop02:hover .loop02__box {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.staff {
  padding-top: 3.75rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 780px) {
  .staff {
    padding-top: 9.375rem;
    padding-bottom: 8.125rem;
  }
}

.staff__items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .staff__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    margin-top: 1.875rem;
  }
}

.staff__item {
  width: 15.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .staff__item {
    margin-inline: initial;
    width: initial;
  }
}

.staff__image {
  width: 15.625rem;
  height: auto;
}

.staff__image img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 250/320;
}

.staff__name-en {
  color: #C3C3C3;
  font-size: 0.75rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.4666666667;
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .staff__name-en {
    font-size: 0.9375rem;
  }
}

.staff__name-jp {
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2083333333;
  margin-top: 0.75rem;
}
@media screen and (min-width: 780px) {
  .staff__name-jp {
    font-size: 1.5rem;
  }
}

.staff__profile {
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .staff__profile {
    margin-top: 0;
    width: 30.9375rem;
    margin-left: 8.4375rem;
  }
}

@media screen and (min-width: 780px) {
  .staff__profile-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.625rem;
    font-weight: bold;
  }
}

@media screen and (min-width: 780px) {
  .staff__profile-title span {
    font-size: 1rem;
    font-weight: 400;
  }
}

.staff__profile-list {
  margin-top: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(49, 49, 49, 0.2);
  border-bottom: 1px solid rgba(49, 49, 49, 0.2);
}
@media screen and (min-width: 780px) {
  .staff__profile-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.staff__profile-list dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
  width: 30%;
}

.staff__profile-list dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  width: 70%;
}

.staff__profile-text {
  margin-top: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
}

.voice {
  background: #F1F5F8;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 780px) {
  .voice {
    padding-top: 8.1875rem;
    padding-bottom: 7.875rem;
  }
}

.voice__container {
  background: #FFF;
  width: 40.625rem;
  max-width: 100%;
  margin-inline: auto;
  padding: 1.875rem;
}
@media screen and (min-width: 780px) {
  .voice__container {
    width: 56.25rem;
    padding: 5.4375rem 4.0625rem 6.5rem;
  }
}

.voice__items {
  counter-reset: voice;
}
.voice__item {
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .voice__item {
    margin-top: 7.5rem;
  }
}

@media screen and (min-width: 780px) {
  .voice__item::before {
    position: absolute;
    content: "voice0" counter(voice);
    counter-increment: voice;
    top: -70px;
    right: 20px;
    width: 261px;
    height: 91px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 4.6875rem;
    line-height: 1.2666666667;
    letter-spacing: 0.04em;
    color: #f0f0f0;
    opacity: 0.6;
    text-transform: capitalize;
  }
}

@media screen and (min-width: 780px) {
  .voice__item:nth-child(2n)::before {
    left: 1.25rem;
  }
}

.voice__card {
  max-width: 100%;
}
@media screen and (min-width: 780px) {
  .voice__card {
    width: 17.4375rem;
    position: absolute;
    top: -50px;
    left: 0;
  }
}

@media screen and (min-width: 780px) {
  .voice__item:nth-child(2n) .voice__card {
    right: 0;
    left: auto;
  }
}

.voice__item-content {
  background: #F0F0F0;
  max-width: 100%;
  padding: 1.25rem;
}
@media screen and (min-width: 780px) {
  .voice__item-content {
    width: 41.625rem;
    min-height: 22.5rem;
    padding: 3.9375rem 3.1875rem 3.9375rem 0;
    margin-left: auto;
  }
}

@media screen and (min-width: 780px) {
  .voice__item:nth-child(2n) .voice__item-content {
    margin-right: auto;
    margin-left: 0;
    padding: 3.9375rem 0 3.9375rem 3.1875rem;
  }
}

.voice__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
  max-width: 100%;
}
@media screen and (min-width: 780px) {
  .voice__item-text {
    width: 23.5625rem;
    line-height: 2.4285714286;
    margin-left: auto;
  }
}

@media screen and (min-width: 780px) {
  .voice__item:nth-child(2n) .voice__item-text {
    margin-right: auto;
    margin-left: 0;
  }
}

.voice__card-text {
  background: #222222;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  height: 3.5625rem;
  line-height: 3.5625rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .voice__card-text {
    font-size: 1.0625rem;
  }
}

.blog {
  padding-top: 3.125rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 780px) {
  .blog {
    padding-top: 5.6875rem;
    padding-bottom: 6.9375rem;
  }
}

.blog__panel {
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .blog__panel {
    margin-top: 8.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.blog__image {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 780px) {
  .blog__image {
    max-width: 45.375rem;
  }
}

.blog__image::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.38);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.blog__titlebox {
  position: absolute;
  left: 2.6875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #FFF;
  z-index: 5;
}

.blog__title-en {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  line-height: 2.125;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: capitalize;
}

.blog__title-jp {
  font-family: "Noto Serif", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6071428571;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #FFF;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 780px) {
  .blog__title-jp {
    font-size: 1.75rem;
    padding-bottom: 1.25rem;
  }
}

.blog__linkarea {
  background: #222222;
  width: 100%;
  display: block;
  height: 4.375rem;
}
@media screen and (min-width: 780px) {
  .blog__linkarea {
    width: 22.0625rem;
    height: initial;
  }
}

.blog__linkarea:hover .blog__span::before {
  width: 10.0625rem;
  border-radius: 4.375rem;
}

.blog__link {
  position: relative;
  color: #FFF;
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.blog__span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 60px;
}

.blog__span::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -12px;
  width: 3rem;
  height: 3rem;
  border: 1px solid #FFF;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.blog__span::after {
  content: "";
  position: absolute;
  background: url(../img/arrow-readmore.svg) no-repeat;
  background-size: contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.8125rem;
  height: 0.375rem;
}

.column {
  background: #F1F5F8;
  padding-top: 3.125rem;
  padding-bottom: 2.375rem;
}
@media screen and (min-width: 780px) {
  .column {
    padding-top: 6.3125rem;
    padding-bottom: 2.375rem;
  }
}

.column__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-column-gap: 1.6875rem;
     -moz-column-gap: 1.6875rem;
          column-gap: 1.6875rem;
  row-gap: 1.6875rem;
  margin-top: 1.875rem;
  width: 40.625rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .column__items {
    margin-top: 3.5rem;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
  }
}

.column__item {
  background: #FFF;
  -webkit-box-shadow: 0 3px 6px #EAEDED;
          box-shadow: 0 3px 6px #EAEDED;
}

.column__link {
  color: #454545;
}

.column__image {
  position: relative;
  aspect-ratio: 342/200;
  height: auto;
}
.column__image img {
  aspect-ratio: 342/200;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.column__category {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #CA092B;
  color: #FFF;
  width: 78px;
  height: 1.25rem;
  line-height: 1.25rem;
  font-size: 0.625rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  border-radius: 55px;
}

.column__title {
  font-size: 1.25rem;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04;
  padding: 1.3125rem 1.5rem;
  border-bottom: 1px solid #454545;
}

.column__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8571428571;
  padding: 1.3125rem 1.5rem 1.875rem;
}
@media screen and (min-width: 780px) {
  .column__text {
    padding: 1.3125rem 1.5rem 4rem;
  }
}

.column__btn {
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .column__btn {
    margin-top: 3.125rem;
  }
}

.column__btn-link {
  display: inline-block;
  background: #222222;
  color: #FFF;
  width: 21.25rem;
  max-width: 100%;
  height: 3.4375rem;
  line-height: 3.4375rem;
  text-align: center;
}

.column__btn-link span {
  position: relative;
}

.column__btn-link span::after {
  position: absolute;
  content: "";
  background: url(../img/contact-arrow.svg) no-repeat;
  background-size: cover;
  width: 8px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -50px;
}

.loop__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-top: 1.25rem;
}

@-webkit-keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.loop__item {
  -webkit-animation: loop-slide 40s infinite linear 1s both;
          animation: loop-slide 40s infinite linear 1s both;
  margin-right: 1.25rem;
}

.loop__item-text {
  display: inline-block;
  white-space: nowrap;
  color: #FFF;
  font-family: "Cormorant Garamond";
  font-size: 3.1875rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (min-width: 780px) {
  .loop__item-text {
    font-size: 7.125rem;
    line-height: 0.8260869565;
  }
}

.loop__item-p-about {
  opacity: 0.1;
}

.online {
  padding-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .online {
    padding-top: 5.6875rem;
  }
}

.online__inner {
  border-bottom: 1px solid #A5A5A5;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 780px) {
  .online__inner {
    padding-bottom: 6.9375rem;
  }
}

.online__panel {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .online__panel {
    margin-top: 8.5rem;
  }
}
@media screen and (min-width: 780px) {
  .online__panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.online__image {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 780px) {
  .online__image {
    max-width: 45.375rem;
  }
}

.online__image::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.38);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.online__item {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 80px;
  z-index: 5;
}

.online__titlebox {
  position: absolute;
  left: 2.6875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #FFF;
  z-index: 5;
  max-width: 100%;
}
@media screen and (min-width: 780px) {
  .online__titlebox {
    width: 30.375rem;
  }
}

.online__title-en {
  font-family: "Cormorant Garamond";
  font-size: 1.25rem;
  line-height: 2.15;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: capitalize;
}

.online__title-jp {
  font-family: "Noto Serif", serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #FFF;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 780px) {
  .online__title-jp {
    font-size: 2.1875rem;
    line-height: 1.5714285714;
  }
}

.online__linkarea {
  background: linear-gradient(-43deg, #222222 0%, #222222 50%, #C1A95A 50%, #C1A95A 100%);
  width: 100%;
  display: block;
  height: 4.375rem;
}
@media screen and (min-width: 780px) {
  .online__linkarea {
    width: 22.0625rem;
    height: initial;
  }
}

.online__linkarea:hover .online__span::before {
  width: 10.0625rem;
  border-radius: 4.375rem;
}

.online__link {
  position: relative;
  color: #FFF;
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.online__span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 60px;
}

.online__span::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -12px;
  width: 3rem;
  height: 3rem;
  border: 1px solid #FFF;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.online__span::after {
  content: "";
  position: absolute;
  background: url(../img/arrow-readmore.svg) no-repeat;
  background-size: contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.8125rem;
  height: 0.375rem;
}

.info {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .info {
    margin-top: 6.8125rem;
  }
}

.info__container {
  margin-top: 1.875rem;
  width: 40.625rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .info__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 4.25rem;
    width: 100%;
  }
}

.info__image {
  aspect-ratio: 457/268;
}
@media screen and (min-width: 780px) {
  .info__image {
    width: 50%;
  }
}

.info__image img {
  max-width: 100%;
  aspect-ratio: 457/268;
}
@media screen and (min-width: 780px) {
  .info__image img {
    width: 28.5625rem;
  }
}

.info__items {
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .info__items {
    width: 50%;
    margin-top: initial;
  }
}

.info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #E5E3D9;
  padding-bottom: 1.25rem;
}

.info__item:not(:first-child) {
  margin-top: 1.25rem;
}

.info__label {
  width: 3.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  line-height: 1.4285714286;
}

.info__text {
  margin-left: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  width: 250px;
}
@media screen and (min-width: 780px) {
  .info__text {
    margin-left: 2.75rem;
    width: initial;
  }
}

.faq {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  background: #F1F5F8;
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .faq {
    padding-top: 7.25rem;
    padding-bottom: 6.625rem;
    margin-top: 8.75rem;
  }
}

@media screen and (min-width: 780px) {
  .faq__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.faq__items {
  width: 47.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .faq__items {
    margin-top: initial;
  }
}

.faq__item:not(:first-child) {
  margin-top: 1.5rem;
}

.faq__q {
  background: #FFF;
  padding: 1.5625rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.6428571429;
  border: 1px solid #E5E5E5;
  cursor: pointer;
}

.faq__q::before,
.faq__q::after {
  content: "";
  display: block;
  background-color: #222222;
  position: absolute;
  top: 50%;
  width: 15px;
  height: 1.5px;
  right: 24px;
}

.faq__q::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.accordion__title.is-active::before {
  opacity: 0;
}

.accordion__title.is-active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.faq__q span {
  position: relative;
  padding-left: 3.125rem;
  display: inline-block;
  width: 39.375rem;
  max-width: 100%;
}

.faq__q span::after {
  position: absolute;
  content: "Q.";
  top: -5px;
  left: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.5625rem;
  font-weight: 300;
  line-height: 1.24;
  letter-spacing: 0.08em;
}

.faq__a {
  background: #FFF;
  padding: 1.5625rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2.1428571429;
  border: 1px solid #E5E5E5;
}

.faq__a span {
  position: relative;
  padding-left: 3.125rem;
  display: inline-block;
  width: 39.375rem;
  max-width: 100%;
}

.faq__a span::after {
  position: absolute;
  content: "A.";
  color: #CA092B;
  top: 0;
  left: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.5625rem;
  font-weight: 300;
  line-height: 1.24;
  letter-spacing: 0.08em;
}

.js-accordion__q {
  position: relative;
}

.js-accordion__q::before,
.js-accordion__q::after {
  content: "";
  display: block;
  background-color: #222222;
  position: absolute;
  top: 50%;
  width: 15px;
  height: 1.5px;
  right: 10px;
}
@media screen and (min-width: 550px) {
  .js-accordion__q::before,
  .js-accordion__q::after {
    right: 24px;
  }
}

.js-accordion__q::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.js-accordion__q.is-active::before {
  opacity: 0;
}

.js-accordion__q.is-active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.js-accordion__a {
  display: none;
}

.js-accordion__a.is-open {
  display: block;
}

.footer {
  background: url(../img/footer-bg.png) no-repeat center center/cover;
  text-align: center;
  padding-top: 3.75rem;
  padding-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .footer {
    padding-top: 7.125rem;
    padding-bottom: 6rem;
  }
}

.footer::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.footer__inner {
  position: relative;
  z-index: 10;
}

.footer__logo {
  width: 8.5625rem;
  margin-inline: auto;
}

@media screen and (min-width: 780px) {
  .footer__nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__nav-item:not(:first-child) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .footer__nav-item:not(:first-child) {
    margin-left: 2.1875rem;
    margin-top: initial;
  }
}

.footer__nav {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .footer__nav {
    margin-top: 5.5rem;
  }
}

.footer__nav-link {
  color: #FFF;
}

.footer__nav-link-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3571428571;
  letter-spacing: 0.04em;
}

.footer__nav-link-en {
  font-family: "Oswald", sans-serif;
  font-size: 0.625rem;
  font-weight: 300;
}

.footer__text {
  font-size: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #FFF;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .footer__text {
    margin-top: 8.9375rem;
  }
}

.top-btn {
  width: 51px;
  height: 51px;
  position: fixed;
  right: 15px;
  top: 69%;
  z-index: 100;
  display: none;
}
@media screen and (min-width: 780px) {
  .top-btn {
    right: 25px;
    top: 69%;
  }
}

.fadein {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.page-blog {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .page-blog {
    margin-top: 6.25rem;
  }
}

.page-blog__container {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .page-blog__container {
    margin-top: 5rem;
  }
}

.page-blog__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-blog__label time {
  color: #1F1F1F;
  font-size: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0.13em;
  padding-right: 10px;
  position: relative;
}
@media screen and (min-width: 780px) {
  .page-blog__label time {
    padding-right: 20px;
    font-size: 0.875rem;
  }
}

.page-blog__label time::after {
  position: absolute;
  content: "";
  right: 0;
  width: 1px;
  height: 0.73125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #1F1F1F;
}

.page-blog__label-category {
  background: #A51D32;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.125rem 0.625rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Oswald", sans-serif;
  text-align: center;
  margin-left: 0.625rem;
}
@media screen and (min-width: 780px) {
  .page-blog__label-category {
    margin-left: 1.3125rem;
    font-size: 0.875rem;
  }
}

.page-blog__title {
  font-size: 1.25rem;
  font-family: "Noto Serif", serif;
  font-weight: 700;
  color: #1F1F1F;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #1F1F1F;
  margin-top: 1.5625rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 780px) {
  .page-blog__title {
    font-size: 1.75rem;
  }
}

.page-blog__image {
  width: 40.625rem;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 3.125rem;
}
.page-blog__image img {
  aspect-ratio: 650/450;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-blog__text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1F1F1F;
  letter-spacing: 0.06em;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .page-blog__text {
    font-size: 1rem;
  }
}

.navigation {
  margin-top: 2.5rem;
  text-align: right;
  padding-bottom: 1.25rem;
}

.page-numbers {
  color: #A51D32;
  border: 1px solid #A51D32;
  padding: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page-numbers.current {
  color: #FFF;
  background: #A51D32;
}

.page-numbers:hover {
  color: #FFF;
  background: #A51D32;
}

.next,
.prev {
  border: none;
}

.page-blog-list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .page-blog-list {
    margin-top: 6.25rem;
  }
}

.pankuz {
  font-size: 1rem;
  color: #000000;
  font-weight: 400;
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .pankuz {
    margin-top: 2.5rem;
  }
}

.pankuz a {
  font-family: "Noto Serif", serif;
  color: #373737;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 0.08em;
  position: relative;
  padding-right: 30px;
}
@media screen and (min-width: 780px) {
  .pankuz a {
    padding-right: 35px;
    margin-left: 0.9375rem;
  }
}

.pankuz a::after {
  position: absolute;
  content: "";
  background: #373737;
  width: 23px;
  height: 1px;
  top: 60%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pankuz .home {
  font-family: "Noto Serif", serif;
  color: #373737;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.1666666667;
  letter-spacing: 0.08em;
}

.pankuz .post {
  color: #373737;
  font-family: "Noto Serif", serif;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 0.08em;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 780px) {
  .pankuz .post {
    margin-left: 0.9375rem;
  }
}

.pankuz .current-item {
  color: #A51D32;
  font-family: "Noto Serif", serif;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 0.08em;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 780px) {
  .pankuz .current-item {
    margin-left: 0.9375rem;
  }
}

.subpage-fv {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.subpage-fv__inner {
  position: relative;
}

.subpage-fv__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/500;
}

.subpage-fv__image::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.subpage-fv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}

.subpage-fv__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #FFF;
  letter-spacing: 0.16em;
  position: relative;
}
@media screen and (min-width: 780px) {
  .subpage-fv__title {
    font-size: 2.4375rem;
  }
}

.subpage-fv__title::before {
  position: absolute;
  content: attr(data-en);
  color: rgba(255, 255, 255, 0.15);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 3.75rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.16em;
}
@media screen and (min-width: 780px) {
  .subpage-fv__title::before {
    font-size: 8.5rem;
  }
}

.privacy {
  margin-top: 2.5rem;
}

.privacy__wrapper {
  margin-top: 3.125rem;
  font-size: 0.875rem;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  color: #000000;
  line-height: 2;
}
@media screen and (min-width: 780px) {
  .privacy__wrapper {
    font-size: 1.125rem;
  }
}

.privacy__wrapper p:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .privacy__wrapper p:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.privacy__wrapper ol {
  list-style: decimal;
  padding-left: 1.25rem;
}


/* product info */
.product-info {
  padding: 60px 0;
}

.product-info__box {
  background: #fff;
  max-width: 800px;
  margin: 0 auto;          /* ← 左右中央 */
  padding: 40px;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
}

.product-info__title {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.8;
  text-align: center;
  margin: 0 0 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.product-info__block {
  margin-bottom: 25px;
}

.product-info__heading {
  font-size: 15px;
  font-weight: bold;
  margin: 0 0 8px;
}

.product-info__text {
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
}

.product-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.9;
}

.product-info__list li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 6px;
}

.product-info__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 10px;
}

.product-info__maker {
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

@media screen and (max-width: 767px) {
  .product-info {
    padding: 40px 0;
  }
  .product-info__box {
    padding: 25px 20px;
    margin: 0 15px;
  }
  .product-info__title {
    font-size: 16px;
  }
}


/*# sourceMappingURL=styles.css.map */

