@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Noto+Serif+JP&display=swap");
@font-face { /* normal */
  font-family: "baskerville";
  src: url("../font/baskerville/baskervilleregular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, 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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

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

q, blockquote {
  quotes: none;
}

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

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

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

/*------------------------------
common
------------------------------*/
body {
  color: #555;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
}
body.is-active .drawer-iconBack {
  opacity: 0;
}
body.is-active .mv-slider::after {
  background: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/*---------- インナー ----------*/
.inner {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc(min(60px, 4.16%) * 2);
}
@media (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.w1440 {
  width: 1440px;
  padding: 0;
}
@media (max-width: 767px) {
  .w1440 {
    padding: 0 30px;
  }
}

.w1320 {
  width: 1440px;
  padding: 0 min(60px, 4.16%);
}

/*---------- タイトル ----------*/
.section-title {
  font-size: min(3.3rem, 2.2916666667vw);
  line-height: 1.7272727273;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.section-title span {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  font-family: "baskerville", sans-serif;
  color: #E3D4A2;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 2.5rem;
    line-height: 1.68;
  }
}

/*---------- テキスト ----------*/
.heading {
  font-size: clamp(1.6rem, 1.7361111111vw, 2.5rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .heading {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .heading {
    font-size: 2rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}

.text {
  font-size: clamp(1rem, 1.0416666667vw, 1.5rem);
  font-weight: 400;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .text {
    font-size: 1.5rem;
  }
}

/*---------- 2カラム配置 ----------*/
.flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .flex {
    display: block;
  }
}

.flex-img,
.flex-content {
  width: 50%;
}
@media (max-width: 767px) {
  .flex-img,
.flex-content {
    width: 100%;
    max-width: 100%;
  }
}

/*------------------------------
header
------------------------------*/
header {
  height: 200px;
  width: 100%;
}

.header-container {
  position: fixed;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 1236px;
  max-width: 100%;
  margin: 0 auto;
  z-index: 300;
  mix-blend-mode: difference;
  transform: unset;
  left: 0;
  margin: 0;
  left: max((100vw - 1440px) / 2 + 33px, 2.3%);
  width: calc(100vw - 337px);
  max-width: 1103px;
}
@media screen and (max-width: 999px) {
  .header-container {
    width: calc(100vw - 250px);
  }
}
@media (max-width: 767px) {
  .header-container {
    top: 45px;
    margin: 0 auto;
    width: 100%;
    padding: 0 7px;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: 20%;
}
@media (max-width: 767px) {
  .header-logo {
    width: 143px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-menu {
  display: flex;
  align-items: center;
}
.header-menu li:nth-child(n+2) {
  margin-left: 3.9em;
}
.header-menu li a {
  display: inline-block;
  font-family: "baskerville", sans-serif;
  font-size: min(2vw, 1.7rem);
  line-height: 1.2941176471;
  color: #7D7D7D;
}
@media screen and (max-width: 999px) {
  .header-menu li:nth-child(n+2) {
    margin-left: 2em;
  }
  .header-menu li a {
    font-size: 1.4rem;
  }
}

.header-request {
  position: fixed;
  z-index: 320;
  width: 220px;
  aspect-ratio: 220/60;
  top: 48px;
  right: max(16px, (100vw - 1354px) / 2 + 16px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-request a {
  display: inline-block;
  width: 18.3vw;
  max-width: 220px;
  border-radius: 3px;
  font-size: min(1.56vw, 1.5rem);
  color: #fff;
  line-height: 1.3333333333;
  text-align: center;
  box-shadow: 0 5px 10px rgba(85, 85, 85, 0.16);
  background: #C2BFBF;
  font-size: min(1.56vw, 1.5rem);
  box-shadow: 0px 5px 10px rgba(85, 85, 85, 0.1607843137);
  background: transparent;
  width: 100%;
  font-size: 15px;
  padding-right: 1em;
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-request a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: min(29px, 2vw);
  transform: translateY(-50%);
  background: url(../images/icon-airplane.webp) no-repeat center center/contain;
  width: 1.5em;
  aspect-ratio: 22/14;
  transition: all 0.4s;
}
@media (hover: hover) {
  .header-request a:hover {
    opacity: 1;
  }
}
@media (hover: hover) {
  .header-request:hover a::after {
    transform: translate(1px, calc(-50% - 2px));
  }
}
@media screen and (max-width: 999px) {
  .header-request a {
    font-size: 1.4rem;
  }
  .header-request a::after {
    width: 1.3em;
  }
}
@media (max-width: 767px) {
  .header-request {
    margin-left: 0;
    margin-top: 20px;
  }
  .header-request a {
    width: 100%;
    font-size: 1.2rem;
  }
}

.header-request-body {
  position: fixed;
  z-index: 310;
  top: 48px;
  mix-blend-mode: difference;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  transition: opacity 0.4s;
}
.header-request-body::before, .header-request-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
}
.header-request-body::after {
  background: #C2BFBF 0% 0% no-repeat padding-box;
  box-shadow: 0px 5px 10px rgba(85, 85, 85, 0.1607843137);
  transition: all 0.4s;
}

@media (hover: hover) {
  .header-request:hover + .header-request-body::after {
    background: rgba(194, 191, 191, 0.7) 0% 0% no-repeat padding-box;
  }
}

.header-request,
.header-request-body {
  right: max((100vw - 1440px) / 2 + 40.3px, 2.8%);
  width: 220px;
  aspect-ratio: 220/60;
  top: 42px;
}
@media screen and (max-width: 999px) {
  .header-request,
.header-request-body {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .header-request,
.header-request-body {
    display: none;
  }
}

#headerBg {
  position: fixed;
  height: 125px;
  width: 100%;
  top: 0;
  z-index: 100;
  opacity: 0;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: opacity 0.7s;
}
#headerBg.active {
  opacity: 1;
}
@media (max-width: 767px) {
  #headerBg {
    height: 105px;
  }
}

.drawer-iconBack,
.drawer-icon {
  display: none;
  border-radius: 50%;
  width: 45px;
  aspect-ratio: 1/1;
  position: fixed;
  right: 15px;
  top: 30px;
}
.drawer-iconBack.is-active,
.drawer-icon.is-active {
  right: 30px;
  top: 55px;
}
@media (max-width: 767px) {
  .drawer-iconBack,
.drawer-icon {
    display: block;
  }
}

.drawer-iconBack {
  mix-blend-mode: difference;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 320;
}
.drawer-iconBack::before, .drawer-iconBack::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  border-radius: 50%;
}
.drawer-iconBack::before {
  background: #8D8D8D 0% 0% no-repeat padding-box;
}
.drawer-iconBack::after {
  background: #C2BFBF 0% 0% no-repeat padding-box;
  box-shadow: 0px 5px 10px rgba(85, 85, 85, 0.1607843137);
}

.drawer-icon {
  z-index: 400;
  transition: transform 0.5s ease 0s;
  background: transparent;
}
.drawer-icon.is-active {
  background: unset;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-35deg);
  top: 18px;
  background: #fff;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  transform: rotate(35deg);
  top: 18px;
  background: #fff;
}

.drawer-icon__bars {
  width: 45px;
  aspect-ratio: 1/1;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 30px;
  height: 1px;
  background: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.drawer-icon__bar1 {
  top: 18px;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 25px;
  transition: transform 0.3s;
}

.drawer-icon__bar3 {
  top: 16px;
  transition: transform 0.3s;
}

.drawer-content {
  width: 100%;
  height: 667px;
  position: fixed;
  position: absolute;
  top: 0;
  right: 0;
  backdrop-filter: blur(12px) brightness(60%);
  -webkit-backdrop-filter: blur(12px) brightness(60%);
  padding: 190px 30px;
  z-index: 321;
  transform: translateX(200%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawerW {
  height: 100vh;
  overflow: scroll;
}

.header-request-body.drw,
.header-request.drw {
  position: absolute;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 30px;
  transition: opacity 0.5s;
  right: unset;
  top: 570px;
  z-index: 500;
  opacity: 0;
}

@media (max-width: 767px) {
  body.is-active .header-request-body.drw,
body.is-active .header-request.drw {
    opacity: 1;
  }
}

.header-request-body.drw {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background: #c2bfbf;
}
.header-request-body.drw::before, .header-request-body.drw::after {
  display: none;
}

.header-request.drw {
  margin-top: 0;
}
.header-request.drw a {
  font-size: 1.5rem;
  padding-right: 1em;
}
.header-request.drw a::after {
  width: 1.7em;
  right: 1.7em;
}

.drawerbg {
  z-index: 500;
  width: 230px;
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  top: 230px;
  right: -100px;
  transition: right 0.5s;
  mix-blend-mode: color-burn;
}

body.is-active .drawerbg {
  right: 0;
}

.drawer-menu {
  position: relative;
}
.drawer-menu li:nth-child(n+2) {
  margin-top: 20px;
}
.drawer-menu li a {
  display: block;
  font-family: "baskerville", sans-serif;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
}

/*------------------------------
footer
------------------------------*/
footer {
  padding-bottom: 30px;
  color: #BCBCBC;
}
@media (max-width: 767px) {
  .footer__inner {
    padding: 0 30px;
  }
}

.footer-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .footer-content {
    display: block;
  }
}

.footer-address {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2;
}
.footer-address a {
  color: #BCBCBC;
  text-decoration: underline;
}

.footer-logo {
  width: 200px;
  position: absolute;
  top: 64%;
  left: 49%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .footer-logo {
    width: 153px;
    top: 73%;
  }
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.3571428571;
  font-family: "baskerville", sans-serif;
  position: relative;
  top: -0.7em;
}
@media (max-width: 767px) {
  .copyright {
    font-size: 1.2rem;
    line-height: 1.3636363636;
    text-align: center;
    margin-top: 80px;
    top: 0;
  }
}

/*------------------------------
mv
------------------------------*/
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.mv > img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .mv {
    height: 667px;
  }
  .mv::after {
    background: rgba(51, 51, 51, 0.15);
  }
}

.mv-slider {
  position: relative;
}
.mv-slider::before, .mv-slider::after {
  z-index: 300;
}
.mv-slider::before {
  content: "01";
  font-size: min(2.3vw, 2.5rem);
  font-style: italic;
  color: #fff;
  position: absolute;
  top: calc(50% - 60px);
  right: 3.1%;
  transform: translate(0%, -50%);
}
.mv-slider::after {
  content: "05";
  font-size: min(2.3vw, 2.5rem);
  font-style: italic;
  color: #fff;
  position: absolute;
  top: calc(50% + 60px);
  right: 3.1%;
  transform: translate(0%, -50%);
}
@media (max-width: 767px) {
  .mv-slider::before, .mv-slider::after {
    font-size: 1.8rem;
    right: 15px;
  }
  .mv-slider::before {
    top: calc(50% - 50px);
  }
  .mv-slider::after {
    top: calc(50% + 50px);
  }
}

.mv-pictures {
  position: relative;
}
.mv-pictures::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.25);
  z-index: 1;
}

.mv-content {
  position: absolute;
  z-index: 10;
  bottom: 9%;
  width: 1236px;
  max-width: 91%;
  color: #fff;
  display: flex;
  align-items: center;
  margin-left: max(8.3%, (100vw - 1920px) / 2 + 159.5px);
}
@media (max-width: 767px) {
  .mv-content {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 14px;
    bottom: calc(10% + 20px);
  }
}

.mv .swiper-pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: unset;
  right: 3.1%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  z-index: 10;
  mix-blend-mode: overlay;
}
@media (max-width: 767px) {
  .mv .swiper-pagination {
    right: 14px;
  }
  .mv .swiper-pagination::before, .mv .swiper-pagination::after {
    font-size: 1.8rem;
  }
  .mv .swiper-pagination::before {
    top: -10px;
  }
  .mv .swiper-pagination::after {
    bottom: -10px;
  }
}

.mv .swiper {
  width: 100%;
  height: 100vh;
}
@media (max-width: 767px) {
  .mv .swiper {
    height: 667px;
  }
}

.mv .swiper-pagination-bullet[class] {
  background: #b7b7b7;
  position: relative;
  margin: 0;
  right: 8px;
  width: 5px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 6px 0;
  opacity: 1;
}
@media (max-width: 767px) {
  .mv .swiper-pagination-bullet[class] {
    width: 3px;
    height: 3px;
    margin: 5px 0;
  }
}

.mv .swiper-pagination-bullet-active {
  background: #fff !important;
}

.swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.mv-heading {
  font-size: min(3.2rem, 2.2222222222vw);
  line-height: 1.875;
  position: relative;
  letter-spacing: 0.2em;
}
.mv-heading span {
  display: block;
  font-size: 1.7rem;
  line-height: 1.7142857143;
  mix-blend-mode: overlay;
  letter-spacing: 0.1em;
  margin-top: 0.8em;
}
@media (min-width: 768px) {
  .mv-heading {
    padding-right: 0.6em;
  }
}
@media (max-width: 767px) {
  .mv-heading {
    font-size: min(2.5rem, 6.6666666667vw);
    line-height: 2;
    border-right: none;
    letter-spacing: 0.01em;
  }
  .mv-heading span {
    font-size: min(1.5rem, 4vw);
    line-height: 1.6666666667;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }
}

.mv-text {
  padding-left: 1.25em;
  line-height: 1.875;
  margin-top: 1em;
  font-size: min(1.6rem, 1.1111111111vw);
  position: relative;
}
@media (max-width: 767px) {
  .mv-text {
    font-size: min(1.4rem, 3.7333333333vw);
    line-height: 1.8571428571;
    margin-top: 1em;
    padding-left: 0.8em;
  }
}

.mv-scroll {
  position: absolute;
  bottom: 35px;
  right: 3.2%;
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  font-family: "baskerville", sans-serif;
  color: #fff;
  z-index: 400;
}
.mv-scroll span {
  display: inline-block;
  margin-top: 13px;
  width: 26px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}
.mv-scroll span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #646464;
  -webkit-animation: wheel 2.5s infinite;
          animation: wheel 2.5s infinite;
}
@media (max-width: 767px) {
  .mv-scroll {
    font-size: 1.2rem;
    line-height: 1.3333333333;
    right: 5px;
    bottom: 22px;
  }
}

@-webkit-keyframes wheel {
  0% {
    top: 0%;
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100%;
    transform: translate(-50%, -100%);
  }
}

@keyframes wheel {
  0% {
    top: 0%;
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100%;
    transform: translate(-50%, -100%);
  }
}
/*------------------------------
message01
------------------------------*/
.message01 {
  position: relative;
}
.message01::after {
  content: "";
  position: absolute;
  background: url(../images/dec2.webp) no-repeat center center/100%;
  aspect-ratio: 363/321;
  width: 13%;
  max-width: 188px;
  left: max(12.2%, (100vw - 1440px) / 2 + 175.672px);
  bottom: 1%;
}
@media (max-width: 767px) {
  .message01::after {
    bottom: -9.6%;
    left: 9%;
    width: 28%;
  }
}

.message01-content {
  position: relative;
}
.message01-content p {
  font-size: clamp(1.7rem, 1.7361111111vw, 2.5rem);
  line-height: 3;
  letter-spacing: 0.1em;
  color: #646464;
  text-align: center;
  padding: 27.8% 0 38%;
}
@media (max-width: 767px) {
  .message01-content P {
    font-size: min(2rem, 5.3333333333vw);
    line-height: 2.85;
    padding: 79.8% 0 96%;
  }
}

.message-img_01 {
  position: absolute;
  right: 0;
  top: 7%;
  width: 25%;
}
@media (max-width: 767px) {
  .message-img_01 {
    top: 4%;
    width: 41%;
  }
}

.message-img_02 {
  position: absolute;
  left: 0;
  top: 27.5%;
  width: 25%;
}
@media (max-width: 767px) {
  .message-img_02 {
    top: 67.5%;
    width: 40%;
  }
}

.message-img_03 {
  position: absolute;
  right: 14.6%;
  top: 62%;
  width: 21%;
}
@media (max-width: 767px) {
  .message-img_03 {
    right: 0;
    top: 83%;
    width: 33%;
  }
}

/*------------------------------
about
------------------------------*/
.about {
  padding-top: 135px;
}

.about-item {
  align-items: center;
}
@media (min-width: 768px) {
  .about-item:first-child {
    padding-right: 8.3%;
  }
  .about-item:first-child .about-content {
    padding-left: 6.1%;
  }
  .about-item:nth-child(2) {
    padding-left: 8.3%;
    margin-top: 130px;
    flex-direction: row-reverse;
  }
  .about-item:nth-child(2) .about-content {
    padding-right: 6.1%;
  }
}
@media (max-width: 1000px) and (min-width: 768px) {
  .about-item:first-child {
    padding-right: 16px;
  }
  .about-item:nth-child(2) {
    padding-left: 16px;
  }
}
@media (max-width: 767px) {
  .about-item div {
    position: relative;
    z-index: 10;
  }
  .about-item:nth-child(1) {
    position: relative;
  }
  .about-item:nth-child(1)::before {
    content: "";
    position: absolute;
    background: url(../images/dec1.webp) no-repeat center center/100%;
    aspect-ratio: 705/542;
    width: 53%;
    right: -30px;
    top: 30%;
    transform: translate(0%, 0%) scale(-1, 1);
  }
  .about-item:nth-child(2) {
    margin-top: 117px;
    position: relative;
  }
  .about-item:nth-child(2)::before {
    content: "";
    position: absolute;
    background: url(../images/bg_sp1.webp) no-repeat center center/100%;
    aspect-ratio: 756/159;
    width: 100vw;
    left: 50%;
    top: -13%;
    transform: translate(-50%, 0%);
  }
  .about-item:nth-child(2)::after {
    content: "";
    position: absolute;
    background: url(../images/dec1.webp) no-repeat center center/100%;
    aspect-ratio: 705/542;
    width: 40%;
    left: -30px;
    top: 31%;
    transform: translate(0%, 0%);
  }
  .about-item:nth-child(2) .about-item-img {
    margin-right: 0;
    margin-left: -15px;
  }
}

.about-item-img {
  width: 48vw;
  max-width: 680px;
}
@media (max-width: 767px) {
  .about-item-img {
    width: calc(100% + 45px);
    margin-left: -30px;
  }
}

.about-content h2 {
  margin-bottom: 0.5em;
}
.about-content h3 {
  margin-bottom: 0.8em;
}
@media (max-width: 767px) {
  .about-content {
    margin-top: 10px;
  }
  .about-content h3 {
    margin-bottom: 1.3em;
  }
}

/*------------------------------
pictures
------------------------------*/
.pictures {
  padding-top: 120px;
}
.pictures .pc .flex {
  align-items: start;
}
.pictures .pc .flex img {
  display: block;
}
.pictures .pc .flex:nth-child(1) img {
  margin-left: auto;
  margin-right: 3.2%;
  width: 44%;
}
.pictures .pc .flex:nth-child(2) {
  margin-top: -1.7%;
  margin-bottom: -1%;
}
.pictures .pc .flex:nth-child(2) img {
  width: 30%;
}
.pictures .pc .flex:nth-child(2) img:nth-child(1) {
  width: 21%;
}
.pictures .pc .flex:nth-child(2) img:nth-child(2) {
  width: 59%;
}
.pictures .pc .flex:nth-child(2) img:nth-child(3) {
  width: 21%;
  margin-top: 3.3%;
}
.pictures .pc .flex:nth-child(3) img {
  width: 44%;
}
@media (max-width: 767px) {
  .pictures {
    padding-top: 130px;
    position: relative;
  }
  .pictures::before {
    content: "";
    position: absolute;
    background: url(../images/bg_sp1.webp) no-repeat center center/100%;
    aspect-ratio: 756/159;
    width: 100vw;
    left: 50%;
    top: 0%;
    transform: translate(-50%, 0%);
  }
  .pictures .sp .flex {
    display: flex;
    align-items: start;
  }
  .pictures .sp .flex img {
    display: block;
  }
  .pictures .sp .flex:nth-child(1) img {
    width: 100%;
  }
  .pictures .sp .flex:nth-child(2) {
    margin-top: 7.3%;
    margin-bottom: 10%;
    justify-content: space-between;
  }
  .pictures .sp .flex:nth-child(2) img {
    width: 30%;
  }
  .pictures .sp .flex:nth-child(2) img:nth-child(1) {
    width: 47%;
  }
  .pictures .sp .flex:nth-child(2) img:nth-child(2) {
    width: 47%;
    margin-top: 12%;
  }
  .pictures .sp .flex:nth-child(3) {
    flex-direction: column;
  }
  .pictures .sp .flex:nth-child(3) img {
    width: 100%;
  }
  .pictures .sp .flex:nth-child(3) img:nth-child(2) {
    margin-top: 10%;
  }
}

.pictures-bottom {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .pictures-bottom {
    margin-top: 50px;
  }
}

/*------------------------------
concept
------------------------------*/
.concept {
  padding-top: 130px;
  position: relative;
  z-index: 10;
}
.concept h2 {
  margin-bottom: 0.5em;
}
.concept h3 {
  margin-bottom: 1.6em;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .concept {
    padding-top: 53px;
  }
}

@media (max-width: 767px) {
  .concept__inner {
    padding: 0 30px;
  }
}

.concept-img {
  width: 32.7vw;
  max-width: 472px;
  margin-left: 1.7%;
}
@media (max-width: 767px) {
  .concept-img {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .concept-content h3 {
    letter-spacing: 0.1em;
    margin: 10px 0 22px;
  }
}

/*------------------------------
features
------------------------------*/
.features {
  padding: 77px 0 123px;
  position: relative;
}
.features::before {
  content: "";
  position: absolute;
  background: url(../images/bg_feature.webp) no-repeat center center/100%;
  aspect-ratio: 2884/541;
  width: 100%;
  max-width: 1440px;
  left: 50%;
  top: -14%;
  transform: translate(-50%, 0%);
}
.features::after {
  content: "";
  position: absolute;
  background: url(../images/dec4.webp) no-repeat center center/100%;
  aspect-ratio: 184/153;
  width: 6%;
  max-width: 87px;
  right: max((100vw - 1440px) / 2 + 149px, 10.3%);
  bottom: 3.6%;
  transform: translate(0%, 0%);
}
.features h3 {
  margin-top: 22px;
}
@media (max-width: 767px) {
  .features {
    padding-top: 130px;
  }
  .features::before {
    background: url(../images/bg_sp1.webp) no-repeat center center/100%;
    aspect-ratio: 756/159;
    top: 1%;
  }
  .features::after {
    bottom: 1.8%;
    width: 20%;
  }
  .features h3 {
    letter-spacing: 0.05em;
  }
  .features h2 {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .features__inner {
    padding: 0 30px;
  }
}

.features-items {
  margin-top: 40px;
  display: flex;
  position: relative;
  z-index: 10;
}
.features-items li {
  width: 30.86%;
  width: 30.1%;
}
.features-items li:first-child {
  margin-top: 20px;
}
.features-items li:nth-child(2) {
  margin-top: 110px;
}
.features-items li:nth-child(n+2) {
  margin-left: 4%;
}
@media (max-width: 767px) {
  .features-items {
    display: block;
  }
  .features-items li {
    width: 100%;
  }
  .features-items li:nth-child(n+2) {
    margin-left: 0;
    margin-top: 30px;
  }
}

.features-item-content {
  position: relative;
  margin-top: 1.5em;
}
.features-item-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 365/2;
  background: url(../images/img_dotted.webp) no-repeat center center/cover;
}
.features-item-content .text {
  line-height: 2;
  padding-right: 1em;
}
.features-item-content span {
  display: block;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  font-family: "baskerville", sans-serif;
  color: #E3D4A2;
  text-align: right;
  padding-bottom: 0.2em;
  margin-top: 0.8em;
}
@media (max-width: 767px) {
  .features-item-content span {
    margin-top: 0.4em;
  }
}

/*------------------------------
message02
------------------------------*/
.message02 {
  background: url(../images/message02_bg.webp) no-repeat center center/cover;
  padding: 45px 0 104px;
}
@media (max-width: 767px) {
  .message02 {
    padding: 0;
  }
}

.message02-container {
  position: relative;
}

.message02-images {
  position: relative;
}
@media (max-width: 767px) {
  .message02-images {
    display: none;
  }
}

.message02-img_01 {
  position: absolute;
  top: 20%;
  right: 0;
  width: 19%;
}

.message02-img_02 {
  position: absolute;
  top: min(274px, 19vw);
  left: 0;
  width: 19.4%;
}

.message02-img_03 {
  position: absolute;
  top: min(37vw, 533px);
  right: 4.5%;
  width: 17%;
}

.message02-img_04 {
  position: absolute;
  top: min(47vw, 677px);
  left: 11.5%;
  width: 13.3%;
}

.message-content {
  color: #fff;
  text-align: center;
  padding: 12.6% 0 11.5%;
}
.message-content p {
  line-height: 3.2;
  padding-top: 3%;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .message-content {
    padding: 38.6% 0 35.8%;
  }
  .message-content h3 {
    font-size: 2.3rem;
    line-height: 1.9565217391;
  }
  .message-content p {
    padding-top: 30px;
    line-height: 3;
  }
}

/*------------------------------
product
------------------------------*/
.product {
  overflow: hidden;
}
.product .section-title {
  position: relative;
}
.product .section-title::after {
  content: "";
  position: absolute;
  background: #646464;
  width: 17%;
  height: 0.5px;
  left: max(-119.5px, -20%);
  top: 28%;
  transform: translate(0%, -50%);
}
.product .section-title::before {
  content: "";
  position: absolute;
  background: url(../images/dec1.webp) no-repeat center center/100%;
  aspect-ratio: 705/542;
  width: 39%;
  left: max(-119.5px, -20%);
  top: 50%;
  transform: translate(0%, -50%);
}
.product .section-title span {
  position: absolute;
  top: -1.5em;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .product .section-title::before {
    left: unset;
    right: -30px;
    top: -10%;
    width: 60%;
  }
}

@media (max-width: 767px) {
  .product__inner {
    padding: 0 30px;
  }
}

.product-container {
  padding: 98px 0 min(240px, 16.6%);
}
@media (max-width: 767px) {
  .product-container {
    padding-bottom: 40%;
  }
}

.product-top {
  align-items: center;
}

.product-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 33%;
}
.product-list li {
  font-size: min(2rem, 1.3888888889vw);
  font-weight: 400;
  line-height: 2.45;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
.product-list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9em;
  aspect-ratio: 29/29;
  border: 0.5px solid #555;
  border-radius: 50%;
  font-size: min(1.8vw, 1.5rem);
  line-height: 1;
  margin-right: 9px;
}
@media screen and (max-width: 999px) {
  .product-list li {
    line-height: 2.95;
  }
}
@media (max-width: 767px) {
  .product-list {
    width: unset;
    padding-left: 0;
    margin-top: 27px;
  }
  .product-list li {
    font-size: 1.8rem;
    line-height: 2.6;
  }
  .product-list li span {
    font-size: 1.3rem;
  }
}

.product-items {
  margin-top: 108px;
}
.product-items li {
  justify-content: space-between;
  align-items: start;
}
.product-items li:nth-child(2n) {
  flex-direction: row-reverse;
}
.product-items li:nth-child(2n) .product-item-en {
  right: unset;
  top: 0;
  left: -7%;
}
.product-items li:nth-child(n+2) {
  margin-top: 17.6%;
}
.product-items li:nth-child(2) {
  margin-top: 11.6%;
}
.product-items li:nth-child(1) .product-item-img::after {
  content: "";
  position: absolute;
  background: url(../images/proT1.webp) no-repeat center center/100%;
  aspect-ratio: 1362/228;
  width: auto;
  height: min(114px, 7.9166666667vw);
  left: -24%;
  bottom: 0%;
  transform: translateY(90%);
}
.product-items li:nth-child(2) .product-item-img::after {
  content: "";
  position: absolute;
  background: url(../images/proT2.webp) no-repeat center center/100%;
  aspect-ratio: 1864/228;
  width: auto;
  height: min(114px, 7.9166666667vw);
  right: -76%;
  bottom: 0%;
  transform: translateY(90%);
}
.product-items li:nth-child(3) .product-item-img::after {
  content: "";
  position: absolute;
  background: url(../images/proT3.webp) no-repeat center center/100%;
  aspect-ratio: 1654/228;
  width: auto;
  height: min(114px, 7.9166666667vw);
  left: -25%;
  bottom: 0%;
  transform: translateY(90%);
}
.product-items li:nth-child(4) .product-item-img::after {
  content: "";
  position: absolute;
  background: url(../images/proT4.webp) no-repeat center center/100%;
  aspect-ratio: 2480/228;
  width: auto;
  height: min(114px, 7.9166666667vw);
  right: -125%;
  bottom: 0%;
  transform: translateY(90%);
}
.product-items li:nth-child(5) .product-item-img::after {
  content: "";
  position: absolute;
  background: url(../images/proT5.webp) no-repeat center center/100%;
  aspect-ratio: 1470/228;
  width: auto;
  height: min(114px, 7.9166666667vw);
  left: -25%;
  bottom: 0%;
  transform: translateY(90%);
}
@media screen and (max-width: 999px) {
  .product-items li:nth-child(n) .product-item-img::after {
    height: 55px;
  }
}
@media (max-width: 767px) {
  .product-items {
    margin-top: 48px;
  }
  .product-items li:nth-child(n) .product-item-img::after {
    height: 70px;
    left: 9%;
    bottom: 0%;
    transform: translateY(100%);
  }
  .product-items li:nth-child(2n) .product-item-en {
    left: unset;
    right: -15px;
  }
  .product-items li:nth-child(n+2) {
    margin-top: 36.6%;
  }
  .product-items .flex {
    position: relative;
  }
}

.product-item-img {
  width: 48%;
}
.product-item-img > .productImg {
  position: relative;
}
.product-item-img > .productImg::after {
  content: "";
  position: absolute;
  background: url(../images/zMarc.png) no-repeat center center/100%;
  aspect-ratio: 1/1;
  width: 50px;
  right: 0%;
  bottom: 0%;
}
@media (min-width: 768px) {
  .product-item-img {
    position: relative;
  }
}
@media (max-width: 767px) {
  .product-item-img {
    width: 100%;
  }
}

.product-thumbnail {
  display: flex;
  margin-top: 20px;
}
.product-thumbnail .productImg {
  width: calc(33.3% - 10px);
  padding: 4px;
  border: 1px solid #E3D4A2;
  position: relative;
}
.product-thumbnail .productImg::after {
  content: "";
  position: absolute;
  background: url(../images/zMarc.png) no-repeat center center/100%;
  aspect-ratio: 1/1;
  width: 30px;
  right: 0%;
  bottom: 0%;
}
.product-thumbnail .productImg:nth-child(n+2) {
  margin-left: 15px;
}
.productImg {
  cursor: pointer;
}

.color-variations {
  margin-top: 30px;
  border: 1.5px dashed #E3D4A2;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-variations p {
  font-family: "baskerville", sans-serif;
  font-size: min(1.56vw, 1.7rem);
  font-size: min(1.7rem, 1.1805555556vw);
  font-weight: 400;
  line-height: 1.6470588235;
  letter-spacing: 0.05em;
  margin-right: 1em;
}
@media (max-width: 767px) {
  .color-variations {
    margin-top: 15px;
  }
  .color-variations p {
    font-size: 1.4rem;
    margin-right: 2.6em;
  }
  .color-variations.pat1 p {
    text-align: center;
    margin-right: 0.6em;
  }
}

.color-variations-img {
  display: flex;
}
.color-variations-img img {
  width: min(60px, 4.1666666667vw);
}
.color-variations-img img:nth-child(n+2) {
  margin-left: 1.35%;
}
@media (max-width: 767px) {
  .color-variations-img img {
    width: 43px;
  }
  .color-variations-img img:nth-child(n+2) {
    margin-left: 2.35%;
  }
  .color-variations-img.pat1 img {
    width: 15%;
  }
}

.product-item-content {
  margin-top: 30px;
  position: relative;
  width: 46%;
}
.product-item-content h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.5;
  line-height: 2.1;
  letter-spacing: 0.05em;
  margin-top: 0.9em;
}
.product-item-content p {
  margin-top: 1.4em;
}
@media (max-width: 767px) {
  .product-item-content {
    width: 100%;
    padding: 0 15px;
    margin-top: 25px;
  }
  .product-item-content h4 {
    font-size: 1.8rem;
    line-height: 2;
    margin-top: 0.5em;
  }
  .product-item-content p {
    margin-top: 0.9em;
  }
}

.product-item-en {
  position: absolute;
  right: -10.5%;
  top: -30px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-family: "baskerville", sans-serif;
  color: #E3D4A2;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 999px) {
  .product-item-en {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .product-item-en {
    font-size: 1.2rem;
    right: -15px;
    top: 0;
  }
}

.product-item-title {
  font-size: 2.8rem;
  line-height: 1.7857142857;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.product-item-title span {
  display: block;
  font-size: 1.3rem;
  font-family: "baskerville", sans-serif;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .product-item-title {
    font-size: 2.3rem;
  }
  .product-item-title span {
    margin-bottom: 0.5em;
  }
}

.product-point {
  margin-top: 7.7%;
}
.product-point p {
  margin-top: 1em;
}

.product-point-title {
  position: relative;
}
.product-point-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../images/img_dotted.webp) no-repeat center center/cover;
  width: 100%;
  aspect-ratio: 471/2;
  z-index: -1;
}
.product-point-title span {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6470588235;
  letter-spacing: 0.05em;
  font-family: "baskerville", sans-serif;
  padding-right: 10px;
  background: #fff;
}

@media (max-width: 767px) {
  .product-bottom {
    aspect-ratio: 375/180;
  }
  .product-bottom img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#grayDisplay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 400;
  cursor: pointer;
}

#grayDisplay img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 60%;
  max-height: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  #grayDisplay img {
    max-width: 80%;
    max-height: 80%;
    height: 80%;
  }
}

/*------------------------------
qa
------------------------------*/
.qa {
  padding: 150px 0 216px;
  overflow: hidden;
}
.qa h2 {
  text-align: center;
}
@media (max-width: 767px) {
  .qa {
    padding: 110px 0 193px;
  }
  .qa .section-title {
    line-height: 2.8;
  }
}

.qa-items {
  margin: 70px auto 0;
  max-width: 100%;
  width: 980px;
  position: relative;
}
.qa-items::before {
  content: "";
  position: absolute;
  background: url(../images/dec2.webp) no-repeat center center/100%;
  aspect-ratio: 363/321;
  width: 16%;
  left: -8%;
  top: -18%;
}
.qa-items::after {
  content: "";
  position: absolute;
  background: url(../images/dec3.webp) no-repeat center center/100%;
  aspect-ratio: 267/182;
  width: 13%;
  right: -11%;
  bottom: -16%;
}
.qa-items li {
  border: 1px solid #E3D4A2;
  border-radius: 15px;
  padding: 20px 4% 20px 5.7%;
}
.qa-items li:nth-child(n+2) {
  margin-top: 40px;
}
.qa-items li p {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  position: relative;
  padding-left: 3.25em;
}
.qa-items li p::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 37px;
  aspect-ratio: 37/37;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  font-family: "baskerville", sans-serif;
}
@media (max-width: 767px) {
  .qa-items {
    margin: 40px auto 0;
  }
  .qa-items::before {
    width: 26%;
    left: -2%;
    top: -186px;
  }
  .qa-items::after {
    width: 34%;
    bottom: -149px;
    right: 0;
  }
  .qa-items li {
    padding: 30px 15px;
    position: relative;
  }
  .qa-items li:nth-child(1)::after {
    content: "";
    position: absolute;
    background: url(../images/bg_sp1.webp) no-repeat center center/100%;
    aspect-ratio: 756/159;
    width: 100%;
    left: 46%;
    bottom: -9%;
    transform: translate(-50%, 0%);
  }
  .qa-items li:nth-child(3)::after {
    content: "";
    position: absolute;
    background: url(../images/bg_sp1.webp) no-repeat center center/100%;
    aspect-ratio: 756/159;
    width: 100%;
    left: 46%;
    bottom: -16%;
    transform: translate(-50%, 0%);
  }
  .qa-items li p {
    font-size: 1.5rem;
    padding-left: 2.45em;
    letter-spacing: 0.05em;
    line-height: 1.85;
  }
  .qa-items li p::before, .qa-items li p::after {
    width: 32px;
  }
  .qa-items li p::before {
    font-size: 1.8rem;
    top: 0;
    transform: unset;
  }
}

.qa-item-q {
  position: relative;
  padding-bottom: 1.9em;
  border-bottom: 2px dotted #646464;
}
.qa-item-q span {
  display: block;
  font-size: 1.5rem;
  line-height: 1.9333333333;
  letter-spacing: 0.05em;
  font-family: "baskerville", sans-serif;
  color: #E3D4A2;
  margin-bottom: 0.9em;
}
.qa-item-q p::before {
  content: "Q";
  background: #E3D4A2;
}
@media (max-width: 767px) {
  .qa-item-q {
    padding-bottom: 2.9em;
  }
  .qa-item-q span {
    text-align: center;
    margin-bottom: 1.6em;
  }
}

.qa-item-a[class] {
  padding-top: 20px;
}
.qa-item-a[class] p::before {
  content: "A";
  background: #B9B9B9;
  top: 0.3em;
  transform: translateY(0%);
}
@media (max-width: 767px) {
  .qa-item-a[class] {
    padding-top: 30px;
  }
  .qa-item-a[class] p::before {
    top: -0.2em;
  }
}

.qa-link {
  text-align: right;
  margin-top: 5px;
}
.qa-link a {
  color: #555;
  position: relative;
  padding-right: 32px;
}
.qa-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../images/icon_link.webp) no-repeat center center/contain;
  width: 14px;
  aspect-ratio: 14/13;
}
.qa-link span {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  font-weight: 400;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .qa-link {
    margin-top: 30px;
  }
  .qa-link a {
    padding-right: 22px;
  }
}

/*------------------------------
contact
------------------------------*/
.contact {
  background: url(../images/contact_bg.webp) no-repeat center center/cover;
  padding-top: 195px;
  position: relative;
}
@media (max-width: 767px) {
  .contact {
    background: url(../images/contact_bg_sp.webp) no-repeat center center/cover;
    overflow: hidden;
    padding-top: 206px;
  }
  .contact .section-title span {
    font-size: 1.3rem;
    margin-bottom: 1.1em;
  }
}

@media (max-width: 767px) {
  .contact__inner {
    padding: 0 30px;
  }
}

.contact-container {
  padding-bottom: 245px;
}
@media (max-width: 767px) {
  .contact-container {
    padding-bottom: 190px;
  }
}

.contact-en {
  position: absolute;
  top: 100px;
  right: 20px;
  font-size: min(12vw, 14.5rem);
  font-weight: 400;
  font-family: "baskerville", sans-serif;
  mix-blend-mode: overlay;
}
@media (max-width: 767px) {
  .contact-en {
    font-size: 7rem;
    top: 60px;
    right: -20px;
  }
}

.contact-content {
  color: #fff;
  margin: 0 auto;
  width: 1125px;
  max-width: 100%;
}
.contact-content p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 22px;
}
@media (max-width: 767px) {
  .contact-content p {
    font-size: 1.4rem;
    line-height: 2.25;
  }
}

.contact-content_C {
  position: relative;
  width: 500px;
  max-width: 100%;
}
.contact-content_C .header-request-body,
.contact-content_C .header-request {
  position: absolute;
  top: unset;
  bottom: -35px;
  right: 0;
  transform: translateY(100%);
}
.contact-content_C .header-request a {
  padding-right: 1em;
}
@media (max-width: 767px) {
  .contact-content_C .header-request-body,
.contact-content_C .header-request {
    display: block;
    right: unset;
    left: 0;
    width: 220px;
    aspect-ratio: 230/63;
  }
  .contact-content_C .header-request {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-content_C .header-request a {
    font-size: 1.5rem;
    padding-right: 1em;
  }
  .contact-content_C .header-request a::after {
    width: 1.7em;
    right: 1.7em;
  }
}

/*------------------------------
プライバシーポリシー
------------------------------*/
#privacy {
  padding-bottom: 180px;
}

.privacy-content {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 11% 13.5%;
  top: -420px;
  position: relative;
  z-index: 99;
}
@media (max-width: 767px) {
  .privacy-content {
    margin-top: -350px;
    padding: 20px 15px;
  }
}

.privacy-title {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 50px;
  font-family: "baskerville", sans-serif;
}
.privacy-title span {
  display: block;
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: unset;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .privacy-title span {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}

.privacy-items li {
  margin-top: 45px;
}
.privacy-items li h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.privacy-items li h3 span {
  display: inline-block;
  font-size: 3rem;
  font-weight: 600;
  font-family: "baskerville", sans-serif;
  color: #E3D4A2;
  margin-right: 18px;
}
.privacy-items li p {
  margin-left: 46px;
  padding-top: 10px;
  line-height: 2;
  white-space: pre-line;
}
@media (max-width: 767px) {
  .privacy-items li p {
    margin-left: 0;
    padding-top: 10px;
  }
}

.fadeinBT {
  transform: translateY(10%);
  opacity: 0;
}

.fadeinLR {
  transform: translateX(-10%);
  opacity: 0;
}

.fadeinRL {
  transform: translateX(10%);
  opacity: 0;
}

.fadein {
  opacity: 0;
}

.anim_act {
  -webkit-animation: fadein 0.9s ease-in forwards;
  animation: fadein 0.9s ease-in forwards;
}

@media (min-width: 768px) {
  .animD05 {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .animD1 {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .animD15 {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  .animD2 {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .animD25 {
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
  }
  .animD3 {
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
  }
}
@-webkit-keyframes fadein {
  to {
    transform: initial;
    opacity: 1;
  }
}
@keyframes fadein {
  to {
    transform: initial;
    opacity: 1;
  }
}
.scrollCon {
  position: relative;
  height: 0;
  scroll-margin-top: 125px;
}
@media (max-width: 767px) {
  .scrollCon {
    scroll-margin-top: 105px;
  }
}