@charset "UTF-8";
/*------ variables ------*/
/*------ reset ------*/
/* 1. 全要素のサイズ計算を「パディング込み」に固定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. ブラウザ独自の設定をリセット */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ol,
ul,
address {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
}

/* 3. リストのポッチ（中黒）を消す */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* 4. 画像を扱いやすくする */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* 5. フォーム要素のフォントを親に合わせる */
input,
button,
textarea,
select {
  font: inherit;
}

/* 6. ボタンのデフォルトデザインをリセット */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* 7. リンクの下線を消し、色は親に合わせる */
a {
  text-decoration: none;
  color: inherit;
}

/* 8. 本文の基本設定 */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-size: 14px;
  line-height: 2.14;
  color: rgb(23, 46, 60);
  font-family: "Noto Sans JP", sans-serif;
  background-color: rgb(255, 254, 252);
  letter-spacing: 0.15em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 11px;
    line-height: 2;
  }
}

.l-padding {
  padding: 200px 0px;
}
@media screen and (max-width: 767px) {
  .l-padding {
    padding: 100px 0;
  }
}

.p-padding {
  padding: 150px 0;
}
@media screen and (max-width: 767px) {
  .p-padding {
    padding: 100px 0;
  }
}

.container {
  max-width: 910px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: auto;
    padding: 0 20px;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}

html body {
  margin: 0;
  padding: 0;
}
html body .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;
  background-color: rgb(255, 254, 252);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 5s ease, visibility 5s ease;
}
html body .loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
html body .loader__inner {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 2s ease;
  transform: translateY(35px);
}
@media screen and (max-width: 767px) {
  html body .loader__inner {
    width: 100px;
    height: 100px;
    transform: translateY(0);
  }
}
html body .loader__inner.is-fade-out {
  opacity: 0;
}
html body .loader__num {
  position: absolute;
  font-size: 14px;
  color: rgb(23, 46, 60);
  font-family: "Volkhov", serif;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  html body .loader__num {
    font-size: 12px;
  }
}
html body .loader__circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
html body .loader__circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1px;
}
html body .loader__circle-bar {
  fill: none;
  stroke: rgb(23, 46, 60);
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-dasharray: 339.29;
  stroke-dashoffset: 339.29;
  transition: stroke-dashoffset 0.05s linear;
}

/* ==========================================
header
========================================== */
.top-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
.top-header .header-pc__box {
  background-color: transparent;
  width: 250px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 50px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-header .header-pc__box {
    display: none;
    visibility: hidden;
  }
}
.top-header .header-pc__link {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  pointer-events: auto;
}
.top-header .header-pc__title {
  display: inline-block;
  font-family: "Volkhov", serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  padding: 10px 0;
  margin: auto;
  color: transparent;
  transition: background-image 0.5s ease, letter-spacing 0.5s ease;
  -webkit-font-smoothing: antialiased;
  background-image: linear-gradient(to top, rgb(23, 46, 60) var(--title-dark-percent, 0%), rgb(255, 243, 218) var(--title-dark-percent, 0%));
  -webkit-background-clip: text;
  background-clip: text;
}
.top-header .header-pc__title:hover {
  letter-spacing: 0.13em;
}
.top-header .header-pc__line {
  display: block;
  height: 100%;
  max-height: 350px;
  width: 0.3px;
  background-color: rgb(255, 243, 218);
  margin-left: 15px;
  position: relative;
}
.top-header .header-pc__line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--line-dark-percent, 0%);
  background-color: rgb(23, 46, 60);
  transition: height 0.3s ease;
}
.top-header .header-pc__ul {
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  margin-left: 15px;
  pointer-events: auto;
}
.top-header .header-pc__a {
  font-family: "Volkhov", serif;
  color: rgb(255, 243, 218);
  font-size: 16px;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.5s ease;
}
.top-header .header-pc__a::before {
  content: "";
  height: 10px;
  width: 1px;
  background-color: rgb(255, 243, 218);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  left: -30px;
  transition: background-color 0.5s ease, transform 0.5s ease;
  will-change: transform;
}
.top-header .header-pc__a:hover::before {
  transform: translateY(-50%) scale(3, 1.1);
}
.top-header .header-pc__a.is-dark {
  color: rgb(23, 46, 60);
}
.top-header .header-pc__a.is-dark::before {
  background-color: rgb(23, 46, 60);
}
.top-header .header-sp__box {
  background-color: transparent;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top-header .header-sp__box {
    display: none;
    visibility: hidden;
  }
}
.top-header .header-sp__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 18px 30px 30px;
  position: relative;
  z-index: 110;
}
.top-header .header-sp__link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}
.top-header .header-sp__title {
  font-family: "Volkhov", serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(255, 243, 218, 0.8);
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  transition: color 0.5s ease;
}
.top-header .header-sp__title.is-dark {
  color: rgba(23, 46, 60, 0.8);
}
.top-header .header-sp__site {
  font-family: "Volkhov", serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: rgb(255, 243, 218);
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  transition: color 0.5s ease;
}
.top-header .header-sp__site.is-dark {
  color: rgb(23, 46, 60);
}
.top-header .header-sp__openbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 23px;
  height: 23px;
  pointer-events: auto;
  margin-right: 8px;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}
.top-header .header-sp__openbtn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.top-header .header-sp__openbtn.is-collapsed .header-sp__bar--1 {
  transform: translateY(9px);
}
.top-header .header-sp__openbtn.is-collapsed .header-sp__bar--3 {
  transform: translateY(-9px);
}
.top-header .header-sp__openbar {
  display: block;
  height: 5px;
  width: 2px;
  background-color: rgb(255, 243, 218);
  transition: transform 1s ease, background-color 0.5s ease;
}
.top-header .header-sp__openbar.is-dark {
  background-color: rgb(23, 46, 60);
}
.top-header .header-sp__menu {
  position: absolute;
  z-index: 120;
  right: 0;
  top: 0;
  box-shadow: inset 0 0 100px 20px rgba(23, 46, 60, 0.35);
  background-color: rgba(23, 46, 60, 0.2);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  width: 170px;
  height: 490px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
.top-header .header-sp__menu.is-visible {
  opacity: 1;
  visibility: visible;
}
.top-header .header-sp__closebtn {
  display: flex;
  gap: 4px;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 49px;
  right: 18px;
  pointer-events: auto;
  margin-right: 8px;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}
.top-header .header-sp__closebtn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.top-header .header-sp__closebtn.is-collapsed .header-sp__bar--4 {
  transform: translateX(9px);
}
.top-header .header-sp__closebtn.is-collapsed .header-sp__bar--6 {
  transform: translateX(-9px);
}
.top-header .header-sp__closebar {
  display: block;
  height: 2px;
  width: 5px;
  background-color: rgb(255, 243, 218);
  transition: transform 1s ease;
}
.top-header .header-sp__ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 130px 0px 120px 70px;
  pointer-events: auto;
}
.top-header .header-sp__a {
  font-family: "Volkhov", serif;
  color: rgb(255, 243, 218);
  font-size: 11px;
  letter-spacing: 0.1em;
  position: relative;
}
.top-header .header-sp__a::before {
  content: "";
  height: 7px;
  width: 1px;
  background-color: rgb(255, 243, 218);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  left: -23px;
  transition: transform 0.5s ease;
}

@property --line-dark-percent {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 0%;
}
@property --title-dark-percent {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 0%;
}
/* ==========================================
footer
========================================== */
.footer {
  min-height: 500px;
  height: auto;
  background-image: url(images/image05.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60% 25%;
  position: relative;
  z-index: 150;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer {
    background-position: 30% 50%;
    padding-bottom: 30px;
  }
}
.footer__text {
  color: rgb(189, 189, 189);
  font-style: italic;
  font-size: 16px;
  font-family: "Volkhov", serif;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 200px 0;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 12px;
    padding: 70px 0 310px;
  }
}
.footer__bottom {
  display: flex;
  gap: 40px;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    flex-direction: column-reverse;
    gap: 5px;
    padding-top: 0px;
  }
}
.footer small {
  font-family: "Volkhov", serif;
  font-size: 10px;
  color: rgb(255, 252, 246);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .footer small {
    font-size: 7px;
  }
}
.footer__privacy {
  font-family: "Volkhov", serif;
  font-size: 10px;
  color: rgb(255, 252, 246);
  letter-spacing: 0.1em;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 767px) {
  .footer__privacy {
    font-size: 7px;
  }
}
@media (hover: hover) {
  .footer__privacy:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .footer__privacy:active {
    opacity: 0.7;
  }
}
.footer__ul {
  display: flex;
  flex-direction: column;
  width: 150px;
  gap: 13px;
  position: absolute;
  bottom: 50px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .footer__ul {
    width: 100px;
    right: auto;
    left: 70px;
    bottom: 130px;
  }
}
.footer__a {
  font-family: "Volkhov", serif;
  font-size: 14px;
  color: rgb(255, 252, 246);
  letter-spacing: 0.1em;
  position: relative;
  padding: 10px;
}
.footer__a::before {
  content: "";
  width: 1px;
  height: 10px;
  background-color: rgb(255, 243, 218);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  left: -20px;
  pointer-events: none;
  transition: transform 0.5s ease;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .footer__a {
    font-size: 11px;
  }
  .footer__a::before {
    height: 7px;
    left: -15px;
  }
}
@media (hover: hover) {
  .footer__a:hover::before {
    transform: translateY(-50%) scale(3, 1.1);
  }
}
@media (hover: none) {
  .footer__a:active::before {
    transform: translateY(-50%) scale(3, 1.1);
  }
}

/* ==========================================
contact
========================================== */
.top-contact {
  position: relative;
  text-align: center;
  height: 940px;
}
.top-contact__title {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding-bottom: 100px;
}
.top-contact__line {
  display: block;
  height: 20px;
  width: 3px;
  background-color: rgb(215, 116, 63);
}
.top-contact__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
.top-contact__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
@media screen and (max-width: 767px) {
  .top-contact__title {
    gap: 18px;
    padding-bottom: 70px;
  }
  .top-contact__line {
    height: 15px;
    width: 2px;
  }
  .top-contact__en {
    font-size: 16px;
  }
  .top-contact__ja {
    font-size: 9px;
    padding-top: 2px;
  }
}
@media screen and (max-width: 767px) {
  .top-contact {
    height: 570px;
  }
}
.top-contact__dashline {
  display: block;
  width: 1px;
  height: 45px;
  background-image: linear-gradient(to bottom, #D7743F 0px, #D7743F 10px, transparent 10px, transparent 17px);
  background-size: 1px 17px;
  background-repeat: repeat-y;
  position: absolute;
  top: 290px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top-contact__dashline {
    display: none;
  }
}
.top-contact__text {
  margin: 80px 0 60px;
}
@media screen and (max-width: 767px) {
  .top-contact__text {
    margin: 0 0 50px;
  }
}
.top-contact__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 157px;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 3px solid rgb(23, 46, 60);
  background-color: rgb(255, 255, 255);
  margin: 0 auto 30px;
  transition: border-color 0.5s ease;
  position: relative;
}
.top-contact__btn::after {
  content: "";
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  border-radius: 50%;
  border: 3px dashed rgb(23, 46, 60);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
@media (hover: hover) {
  .top-contact__btn:hover {
    border-color: transparent;
  }
  .top-contact__btn:hover::after {
    opacity: 1;
    animation: continuousRotate 30s linear infinite;
  }
  .top-contact__btn:hover .top-contact__img {
    transform: scale(0.952);
  }
  .top-contact__btn:hover + .top-contact__click {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .top-contact__btn {
    max-width: 100px;
    border-color: transparent;
  }
  .top-contact__btn::after {
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    border: 2px dashed rgb(23, 46, 60);
    opacity: 0;
    transition: opacity 1s ease;
    animation: continuousRotate 30s linear infinite;
  }
  .top-contact__btn.is-active::after {
    opacity: 1;
    animation: continuousRotate 30s linear infinite;
  }
  .top-contact__btn.is-active .top-contact__img {
    animation: pulseScale 2s ease-in-out infinite;
  }
}
.top-contact__img {
  width: 74px;
  height: auto;
  transition: transform 0.5s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media screen and (max-width: 767px) {
  .top-contact__img {
    width: 47px;
  }
}
.top-contact__click {
  display: block;
  font-family: "Volkhov", serif;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}
@media screen and (max-width: 767px) {
  .top-contact__click {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    font-size: 14px;
  }
}

@keyframes continuousRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.952);
  }
}
/* ==========================================
contact
========================================== */
.p-contact {
  padding: 150px 0;
  background-color: rgb(255, 252, 246);
  position: relative;
  text-align: center;
  height: 850px;
}
.p-contact__title {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding-bottom: 100px;
}
.p-contact__line {
  display: block;
  height: 20px;
  width: 3px;
  background-color: rgb(215, 116, 63);
}
.p-contact__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
.p-contact__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    gap: 18px;
    padding-bottom: 70px;
  }
  .p-contact__line {
    height: 15px;
    width: 2px;
  }
  .p-contact__en {
    font-size: 16px;
  }
  .p-contact__ja {
    font-size: 9px;
    padding-top: 2px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact {
    height: 600px;
  }
}
.p-contact__dashline {
  display: block;
  width: 1px;
  height: 45px;
  background-image: linear-gradient(to bottom, #D7743F 0px, #D7743F 10px, transparent 10px, transparent 17px);
  background-size: 1px 17px;
  background-repeat: repeat-y;
  position: absolute;
  top: 240px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-contact__dashline {
    display: none;
  }
}
.p-contact__text {
  margin: 80px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    margin: 0 0 50px;
  }
}
.p-contact__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 157px;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 3px solid rgb(23, 46, 60);
  background-color: rgb(255, 255, 255);
  margin: 0 auto 30px;
  transition: border-color 0.5s ease;
  position: relative;
}
.p-contact__btn::after {
  content: "";
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  border-radius: 50%;
  border: 3px dashed rgb(23, 46, 60);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
@media (hover: hover) {
  .p-contact__btn:hover {
    border-color: transparent;
  }
  .p-contact__btn:hover::after {
    opacity: 1;
    animation: continuousRotate 30s linear infinite;
  }
  .p-contact__btn:hover .p-contact__img {
    transform: scale(0.952);
  }
  .p-contact__btn:hover + .p-contact__click {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .p-contact__btn {
    max-width: 100px;
    border-color: transparent;
  }
  .p-contact__btn::after {
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    border: 2px dashed rgb(23, 46, 60);
    opacity: 0;
    transition: opacity 1s ease;
    animation: continuousRotate 30s linear infinite;
  }
  .p-contact__btn.is-active::after {
    opacity: 1;
    animation: continuousRotate 30s linear infinite;
  }
  .p-contact__btn.is-active .p-contact__img {
    animation: pulseScale 2s ease-in-out infinite;
  }
}
.p-contact__img {
  width: 74px;
  height: auto;
  transition: transform 0.5s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media screen and (max-width: 767px) {
  .p-contact__img {
    width: 47px;
  }
}
.p-contact__click {
  display: block;
  font-family: "Volkhov", serif;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__click {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    font-size: 14px;
  }
}

@keyframes continuousRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.952);
  }
}
/*------ header ------*/
.p-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
.p-header .p-header-pc__box {
  width: 100%;
  height: 70px;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(23, 46, 60);
  background-color: rgb(255, 254, 252);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-header .p-header-pc__box {
    display: none;
    visibility: hidden;
  }
}
.p-header .p-header-pc__title {
  font-size: 16px;
  font-family: "Volkhov", serif;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}
@media (hover: hover) {
  .p-header .p-header-pc__title:hover {
    opacity: 0.7;
  }
}
.p-header .p-header-pc__ul {
  display: flex;
  align-items: center;
}
.p-header .p-header-pc__li {
  padding: 0 25px;
}
.p-header .p-header-pc__a {
  font-family: "Volkhov", serif;
  letter-spacing: 0.1em;
  position: relative;
  pointer-events: auto;
}
.p-header .p-header-pc__a::before {
  content: "";
  width: 2px;
  height: 10px;
  background-color: rgb(23, 46, 60);
  position: absolute;
  top: 35%;
  left: -15px;
  pointer-events: none;
  transition: transform 0.5s ease;
  will-change: transform;
}
@media (hover: hover) {
  .p-header .p-header-pc__a:hover::before {
    transform: scale(1.3, 1.1);
  }
}
.p-header .p-header-sp__box {
  background-color: transparent;
}
@media screen and (min-width: 1025px) {
  .p-header .p-header-sp__box {
    display: none;
    visibility: hidden;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-header .p-header-sp__box {
    display: none;
    visibility: hidden;
  }
}
.p-header .p-header-sp__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 18px 30px 30px;
  position: relative;
  z-index: 110;
  pointer-events: none;
}
.p-header .p-header-sp__title {
  font-family: "Volkhov", serif;
  letter-spacing: 0.15em;
  color: rgb(23, 46, 60);
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  transition: opacity 0.5s ease;
  font-size: 12px;
}
@media (hover: hover) {
  .p-header .p-header-sp__title:hover {
    opacity: 0.7;
  }
}
.p-header .p-header-sp__openbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 23px;
  height: 23px;
  pointer-events: auto;
  margin-right: 8px;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}
.p-header .p-header-sp__openbtn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.p-header .p-header-sp__openbtn.is-collapsed .p-header-sp__bar--1 {
  transform: translateY(9px);
}
.p-header .p-header-sp__openbtn.is-collapsed .p-header-sp__bar--3 {
  transform: translateY(-9px);
}
.p-header .p-header-sp__openbar {
  display: block;
  height: 5px;
  width: 2px;
  background-color: rgb(23, 46, 60);
  transition: transform 1s ease;
}
.p-header .p-header-sp__menu {
  position: absolute;
  z-index: 120;
  right: 0;
  top: 0;
  box-shadow: inset 0 0 100px 20px rgba(23, 46, 60, 0.35);
  background-color: rgba(23, 46, 60, 0.2);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  width: 170px;
  height: 490px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
.p-header .p-header-sp__menu.is-visible {
  opacity: 1;
  visibility: visible;
}
.p-header .p-header-sp__closebtn {
  display: flex;
  gap: 4px;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 37px;
  right: 18px;
  pointer-events: auto;
  margin-right: 8px;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}
.p-header .p-header-sp__closebtn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.p-header .p-header-sp__closebtn.is-collapsed .p-header-sp__bar--4 {
  transform: translateX(9px);
}
.p-header .p-header-sp__closebtn.is-collapsed .p-header-sp__bar--6 {
  transform: translateX(-9px);
}
.p-header .p-header-sp__closebar {
  display: block;
  height: 2px;
  width: 5px;
  background-color: rgb(255, 243, 218);
  transition: transform 1s ease;
}
.p-header .p-header-sp__ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 130px 0px 120px 70px;
  pointer-events: auto;
}
.p-header .p-header-sp__a {
  font-family: "Volkhov", serif;
  color: rgb(255, 243, 218);
  font-size: 11px;
  letter-spacing: 0.1em;
  position: relative;
}
.p-header .p-header-sp__a::before {
  content: "";
  height: 7px;
  width: 1px;
  background-color: rgb(255, 243, 218);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  left: -23px;
  transition: transform 0.5s ease;
}

/* ==========================================
topページ
========================================== */
/*------ mv ------*/
.p-top .t-mv {
  height: 100vh;
  position: relative;
}
.p-top .t-mv__slides {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.p-top .t-mv__pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.p-top .t-mv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 5;
  opacity: 0;
  transform: scale(1);
  transition: opacity 3s ease, transform 8s linear;
}
.p-top .t-mv__img.is-active {
  opacity: 1;
  z-index: 7;
}
.p-top .t-mv__img.is-zoomed {
  transform: scale(1.05);
}
.p-top .t-mv__img.no-transition {
  transition: none !important;
}
.p-top .t-mv__site {
  font-family: "Volkhov", serif;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: rgba(255, 243, 218, 0.8);
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top .t-mv__site {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .t-mv__site {
    display: none;
  }
}
.p-top .t-mv__scroll {
  writing-mode: vertical-rl;
  font-family: "Volkhov", serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255, 243, 218, 0.6);
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 10%;
  left: 20px;
  z-index: 10;
}
.p-top .t-mv__scroll::before {
  content: "";
  height: 300px;
  width: 1px;
  background-image: linear-gradient(rgba(204, 194, 174, 0) 0%, rgba(204, 194, 174, 0.5) 70%, rgba(255, 243, 218, 0.6) 100%);
  position: absolute;
  top: -310px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: inset(100% 0 0 0);
  animation: scroll-line 1.8s ease-in-out infinite;
}
@media screen and (min-width: 1025px) {
  .p-top .t-mv__scroll {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top .t-mv__scroll {
    display: none;
  }
}

@keyframes mvZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
@keyframes scroll-line {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  40% {
    clip-path: inset(0 0 0 0);
  }
  60% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}
/*------ about ------*/
.p-top .t-about__title {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding-bottom: 100px;
}
.p-top .t-about__line {
  display: block;
  height: 20px;
  width: 3px;
  background-color: rgb(215, 116, 63);
}
.p-top .t-about__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
.p-top .t-about__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
@media screen and (max-width: 767px) {
  .p-top .t-about__title {
    gap: 18px;
    padding-bottom: 70px;
  }
  .p-top .t-about__line {
    height: 15px;
    width: 2px;
  }
  .p-top .t-about__en {
    font-size: 16px;
  }
  .p-top .t-about__ja {
    font-size: 9px;
    padding-top: 2px;
  }
}
.p-top .t-about__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 115px;
}
@media screen and (max-width: 767px) {
  .p-top .t-about__flex {
    flex-direction: column;
    gap: 0px;
  }
}
.p-top .t-about__box1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-top .t-about__box1 {
    display: contents;
  }
}
.p-top .t-about__img {
  width: 100%;
  max-width: 283px;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .p-top .t-about__img {
    order: 1;
    max-width: 173px;
  }
}
.p-top .t-about__name {
  font-family: "Volkhov", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top .t-about__name {
    order: 3;
    width: 250px;
    text-align: right;
    font-size: 10px;
    letter-spacing: 0.15em;
    margin-top: 15px;
  }
}
.p-top .t-about__box2 {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 30px;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .p-top .t-about__box2 {
    order: 2;
    max-width: 80%;
    gap: 25px;
    margin: 50px 0 20px;
  }
}

/*------ works ------*/
.p-top .t-works {
  background-color: rgb(255, 252, 246);
  text-align: center;
}
.p-top .t-works__title {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding-bottom: 100px;
}
.p-top .t-works__line {
  display: block;
  height: 20px;
  width: 3px;
  background-color: rgb(215, 116, 63);
}
.p-top .t-works__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
.p-top .t-works__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
@media screen and (max-width: 767px) {
  .p-top .t-works__title {
    gap: 18px;
    padding-bottom: 70px;
  }
  .p-top .t-works__line {
    height: 15px;
    width: 2px;
  }
  .p-top .t-works__en {
    font-size: 16px;
  }
  .p-top .t-works__ja {
    font-size: 9px;
    padding-top: 2px;
  }
}
.p-top .t-works__flex {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-top .t-works__flex {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }
}
.p-top .t-works__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .p-top .t-works__card {
    padding: 40px 30px;
  }
}
.p-top .t-works__imgwrap {
  display: block;
  width: 250px;
  aspect-ratio: 3/4;
  border-radius: 50px;
  border: 1px solid rgb(23, 46, 60);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top .t-works__imgwrap {
    width: 170px;
    border-radius: 25px;
  }
}
@media (hover: hover) {
  .p-top .t-works__imgwrap:hover .t-works__img {
    transform: scale(1.05);
    opacity: 0.7;
  }
}
.p-top .t-works__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.01);
  transition: transform 0.5s ease, opacity 0.5s ease;
  will-change: transform;
}
.p-top .t-works__cardname {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0;
  gap: 10px;
}
.p-top .t-works__cardtitle {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top .t-works__cardtitle {
    font-size: 13px;
  }
}
.p-top .t-works__cardcategory {
  font-family: "Volkhov", serif;
  font-size: 11px;
  padding: 0 15px;
  border: 1px solid rgb(23, 46, 60);
  font-weight: 500;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .p-top .t-works__cardcategory {
    font-size: 9px;
  }
}
.p-top .t-works__cardtext {
  width: 270px;
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-top .t-works__cardtext {
    width: 200px;
    margin-top: 10px;
  }
}
.p-top .t-works__cardwrap {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top .t-works__cardwrap {
    margin-top: 35px;
  }
}
.p-top .t-works__more-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 114px;
  height: 50px;
  background-color: rgb(215, 116, 63);
  border-radius: 200px;
  font-family: "Volkhov", serif;
  color: #FFFFFF;
  transition: background-color 0.5s ease, gap 0.5s ease, letter-spacing 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-top .t-works__more-btn {
    width: 90px;
    height: 40px;
    gap: 7px;
  }
}
@media (hover: hover) {
  .p-top .t-works__more-btn:hover {
    background-color: rgba(215, 116, 63, 0.7);
    gap: 7px;
    letter-spacing: 0.1em;
  }
  .p-top .t-works__more-btn:hover .t-works__cardarrow {
    transform: scale(1.2);
  }
}
@media (hover: none) {
  .p-top .t-works__more-btn:active {
    background-color: rgba(215, 116, 63, 0.7);
  }
}
.p-top .t-works__cardarrow {
  width: 9.6px;
  height: 11px;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-top .t-works__cardarrow {
    width: 7px;
    height: 8px;
  }
}
.p-top .t-works__wrap {
  margin: 150px 0 100px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top .t-works__wrap {
    margin: 75px 0 30px;
  }
}
.p-top .t-works__page-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Volkhov", serif;
  color: rgb(215, 116, 63);
  position: relative;
  transition: color 0.5s ease;
}
.p-top .t-works__page-btn::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(215, 116, 63, 0.7);
  position: absolute;
  bottom: -10px;
  left: 0;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .p-top .t-works__page-btn {
    font-size: 12px;
  }
  .p-top .t-works__page-btn .t-services__arrow {
    width: 7px;
    height: 8px;
  }
}
@media (hover: hover) {
  .p-top .t-works__page-btn:hover {
    color: rgba(215, 116, 63, 0.7);
  }
  .p-top .t-works__page-btn:hover .t-services__arrow {
    opacity: 0.7;
  }
  .p-top .t-works__page-btn:hover::after {
    transform: scaleX(1);
  }
}
@media (hover: none) {
  .p-top .t-works__page-btn:active {
    color: rgba(215, 116, 63, 0.7);
  }
  .p-top .t-works__page-btn:active .t-works__arrow {
    opacity: 0.7;
  }
  .p-top .t-works__page-btn:active::after {
    transform: scaleX(1);
  }
}
.p-top .t-works__arrow {
  width: 9.6px;
  height: 11px;
  transition: opacity 0.5s ease;
}

/*------ services ------*/
.p-top .t-services {
  padding-bottom: 0px;
  text-align: center;
}
.p-top .t-services__title {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding-bottom: 100px;
}
.p-top .t-services__line {
  display: block;
  height: 20px;
  width: 3px;
  background-color: rgb(215, 116, 63);
}
.p-top .t-services__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
.p-top .t-services__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
@media screen and (max-width: 767px) {
  .p-top .t-services__title {
    gap: 18px;
    padding-bottom: 70px;
  }
  .p-top .t-services__line {
    height: 15px;
    width: 2px;
  }
  .p-top .t-services__en {
    font-size: 16px;
  }
  .p-top .t-services__ja {
    font-size: 9px;
    padding-top: 2px;
  }
}
.p-top .t-services {
  background-image: url(images/background-image.jpg);
  overflow: hidden;
}
.p-top .t-services__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
  margin: 0 auto;
  gap: 60px;
  counter-reset: number;
}
.p-top .t-services__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top .t-services__box {
    width: 90%;
    padding-left: 70px;
  }
}
.p-top .t-services__main {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding-bottom: 10px;
  position: relative;
}
.p-top .t-services__main::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-family: "Volkhov", serif;
  font-size: 30px;
  font-weight: 300;
  color: rgba(23, 46, 60, 0.2);
  position: absolute;
  top: -10px;
  left: -55px;
}
@media screen and (max-width: 767px) {
  .p-top .t-services__main {
    font-size: 12px;
    letter-spacing: 0.15em;
  }
  .p-top .t-services__main::before {
    font-size: 15px;
    top: -2px;
    left: -40px;
  }
}
.p-top .t-services__sub {
  text-align: left;
  border-top: 1px solid rgba(23, 46, 60, 0.2);
  padding-top: 10px;
  width: 100%;
}
.p-top .t-services__wrap {
  margin: 150px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top .t-services__wrap {
    margin: 75px 0;
  }
}
.p-top .t-services__page-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Volkhov", serif;
  color: rgb(215, 116, 63);
  position: relative;
  transition: color 0.5s ease;
}
.p-top .t-services__page-btn::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(215, 116, 63, 0.7);
  position: absolute;
  bottom: -10px;
  left: 0;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .p-top .t-services__page-btn {
    font-size: 12px;
  }
  .p-top .t-services__page-btn .t-services__arrow {
    width: 7px;
    height: 8px;
  }
}
@media (hover: hover) {
  .p-top .t-services__page-btn:hover {
    color: rgba(215, 116, 63, 0.7);
  }
  .p-top .t-services__page-btn:hover .t-services__arrow {
    opacity: 0.7;
  }
  .p-top .t-services__page-btn:hover::after {
    transform: scaleX(1);
  }
}
@media (hover: none) {
  .p-top .t-services__page-btn:active {
    color: rgba(215, 116, 63, 0.7);
  }
  .p-top .t-services__page-btn:active .t-services__arrow {
    opacity: 0.7;
  }
  .p-top .t-services__page-btn:active::after {
    transform: scaleX(1);
  }
}
.p-top .t-services__arrow {
  width: 9.6px;
  height: 11px;
  transition: opacity 0.5s ease;
}
.p-top .t-services__img {
  height: 440px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top 60%;
     object-position: center top 60%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-top .t-services__img {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .t-services__img {
    height: 250px;
  }
}

/*------ flow ------*/
.p-top .t-flow__title {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding-bottom: 100px;
}
.p-top .t-flow__line {
  display: block;
  height: 20px;
  width: 3px;
  background-color: rgb(215, 116, 63);
}
.p-top .t-flow__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
.p-top .t-flow__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
@media screen and (max-width: 767px) {
  .p-top .t-flow__title {
    gap: 18px;
    padding-bottom: 70px;
  }
  .p-top .t-flow__line {
    height: 15px;
    width: 2px;
  }
  .p-top .t-flow__en {
    font-size: 16px;
  }
  .p-top .t-flow__ja {
    font-size: 9px;
    padding-top: 2px;
  }
}
.p-top .t-flow__list {
  display: flex;
  flex-direction: column;
  gap: 90px;
  max-width: 680px;
  margin: 0 auto;
}
.p-top .t-flow__main {
  font-size: 16px;
  letter-spacing: 0.2em;
  padding-left: 50px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-top .t-flow__main {
    font-size: 12px;
    padding-left: 35px;
  }
}
.p-top .t-flow__box {
  position: relative;
}
.p-top .t-flow__text {
  padding: 40px 50px 45px 50px;
  border: 1px solid rgba(23, 46, 60, 0.2);
  border-radius: 25px;
  background-color: rgb(255, 252, 246);
}
@media screen and (max-width: 767px) {
  .p-top .t-flow__text {
    padding: 30px 35px 35px 35px;
  }
}
.p-top .t-flow__dashline {
  display: block;
  width: 1px;
  height: 120px;
  background-image: linear-gradient(to bottom, #ccc 0px, #ccc 12px, transparent 12px, transparent 20px);
  background-size: 1px 20px;
  background-repeat: repeat-y;
  position: absolute;
  bottom: -95px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top .t-flow__dashline {
    height: 40px;
    bottom: -70px;
    background-image: linear-gradient(to bottom, #ccc 0px, #ccc 5px, transparent 5px, transparent 10px);
    background-size: 1px 10px;
  }
}

/*------ faq ------*/
.p-top .t-faq {
  background-color: rgb(255, 252, 246);
}
.p-top .t-faq__title {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding-bottom: 100px;
}
.p-top .t-faq__line {
  display: block;
  height: 20px;
  width: 3px;
  background-color: rgb(215, 116, 63);
}
.p-top .t-faq__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
.p-top .t-faq__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgb(215, 116, 63);
}
@media screen and (max-width: 767px) {
  .p-top .t-faq__title {
    gap: 18px;
    padding-bottom: 70px;
  }
  .p-top .t-faq__line {
    height: 15px;
    width: 2px;
  }
  .p-top .t-faq__en {
    font-size: 16px;
  }
  .p-top .t-faq__ja {
    font-size: 9px;
    padding-top: 2px;
  }
}
.p-top .t-faq__box {
  margin: 0 auto 10px;
  max-width: 680px;
}
.p-top .t-faq__box-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  border-bottom: 1px solid rgba(23, 46, 60, 0.2);
  padding: 15px 5px;
  position: relative;
}
.p-top .t-faq__before {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top .t-faq__before {
    font-weight: 600;
    color: rgb(23, 46, 60);
    font-size: 12px;
  }
}
.p-top .t-faq__q {
  padding-left: 20px;
  letter-spacing: 0.15em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top .t-faq__q {
    padding-left: 15px;
    padding-right: 20px;
    color: rgb(23, 46, 60);
  }
}
.p-top .t-faq__after {
  display: block;
  width: 10px;
  height: 2px;
  background-color: rgb(23, 46, 60);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-top .t-faq__after::after {
  content: "";
  width: 2px;
  height: 10px;
  background-color: rgb(23, 46, 60);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40%;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}
.p-top .t-faq__box-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 15px 0 35px;
  transition: grid-template-rows 0.6s cubic-bezier(0.22, 1, 0.36, 1), padding 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-top .t-faq__a {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.p-top .t-faq__box.is-open .t-faq__box-content {
  grid-template-rows: 1fr;
  padding: 15px 15px 30px 35px;
}
.p-top .t-faq__box.is-open .t-faq__a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}
.p-top .t-faq__box.is-open .t-faq__after::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* ==========================================
worksページ
========================================== */
.works__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .works__title {
    padding-left: 25px;
    padding-bottom: 50px;
  }
}
.works__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  color: rgb(215, 116, 63);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .works__en {
    font-size: 16px;
    position: relative;
  }
  .works__en::before {
    content: "";
    width: 2px;
    height: 15px;
    background-color: rgb(215, 116, 63);
    position: absolute;
    top: 9px;
    left: -20px;
  }
}
.works__ja {
  font-size: 12px;
  color: rgb(215, 116, 63);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .works__ja {
    font-size: 7px;
  }
}
.works__dashline {
  display: block;
  width: 1px;
  height: 45px;
  background-image: linear-gradient(to bottom, #D7743F 0px, #D7743F 10px, transparent 10px, transparent 17px);
  background-size: 1px 17px;
  background-repeat: repeat-y;
  position: absolute;
  bottom: 100px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .works__dashline {
    display: none;
  }
}
.works {
  padding-bottom: 100px;
}
.works__ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .works__ul {
    margin-bottom: 0;
  }
}
.works__li {
  width: 33%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .works__li {
    width: 90%;
  }
  .works__li.is-works-hidden {
    display: none;
  }
  .works__li.is-fadein {
    animation: worksFadeIn 0.8s ease forwards;
  }
}
@keyframes worksFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.works__imgwrap {
  display: block;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  border: 2px solid rgb(23, 46, 60);
  overflow: hidden;
}
@media (hover: hover) {
  .works__imgwrap:hover .works__img {
    transform: scale(1.05);
    opacity: 0.7;
  }
  .works__li:has(.works__imgwrap:hover:hover) .works__text {
    opacity: 0.7;
  }
}
.works__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.01);
  transition: transform 0.5s ease, opacity 0.5s ease;
  will-change: transform;
}
.works__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 0 80px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .works__text {
    padding: 20px 0 70px;
  }
}
.works__sitename {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .works__sitename {
    font-size: 13px;
  }
}
.works__category {
  font-family: "Volkhov", serif;
  font-size: 11px;
  padding: 2px 15px;
  border: 1px solid rgb(23, 46, 60);
  font-weight: 500;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .works__category {
    font-size: 9px;
  }
}
.works__wrap {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.works__morebtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Volkhov", serif;
  color: rgb(215, 116, 63);
  letter-spacing: 0.15em;
  position: relative;
  transition: color 0.5s ease;
}
.works__morebtn::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(215, 116, 63, 0.7);
  position: absolute;
  bottom: -10px;
  left: 0;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
@media screen and (min-width: 1025px) {
  .works__morebtn {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .works__morebtn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .works__morebtn .works__arrow {
    width: 7px;
    height: 8px;
  }
}
@media (hover: hover) {
  .works__morebtn:hover {
    color: rgba(215, 116, 63, 0.7);
  }
  .works__morebtn:hover .works__arrow {
    opacity: 0.7;
  }
  .works__morebtn:hover::after {
    transform: scaleX(1);
  }
}
@media (hover: none) {
  .works__morebtn:active {
    color: rgba(215, 116, 63, 0.7);
  }
  .works__morebtn:active .works__arrow {
    opacity: 0.7;
  }
  .works__morebtn:active::after {
    transform: scaleX(1);
  }
}
.works__arrow {
  width: 7px;
  height: 8px;
  transition: opacity 0.5s ease;
  transform: rotate(90deg);
}

/* ==========================================
works-detailページ
========================================== */
.works-detail__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .works-detail__title {
    padding-left: 25px;
    padding-bottom: 50px;
  }
}
.works-detail__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  color: rgb(215, 116, 63);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .works-detail__en {
    font-size: 16px;
    position: relative;
  }
  .works-detail__en::before {
    content: "";
    width: 2px;
    height: 15px;
    background-color: rgb(215, 116, 63);
    position: absolute;
    top: 9px;
    left: -20px;
  }
}
.works-detail__ja {
  font-size: 12px;
  color: rgb(215, 116, 63);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .works-detail__ja {
    font-size: 7px;
  }
}
.works-detail__dashline {
  display: block;
  width: 1px;
  height: 45px;
  background-image: linear-gradient(to bottom, #D7743F 0px, #D7743F 10px, transparent 10px, transparent 17px);
  background-size: 1px 17px;
  background-repeat: repeat-y;
  position: absolute;
  bottom: 100px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .works-detail__dashline {
    display: none;
  }
}
.works-detail__name {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .works-detail__name {
    padding-left: 15px;
    gap: 10px;
  }
}
.works-detail__sitename {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .works-detail__sitename {
    font-size: 13px;
  }
}
.works-detail__category {
  font-family: "Volkhov", serif;
  font-size: 11px;
  padding: 2px 15px;
  border: 0.5px solid rgb(23, 46, 60);
  font-weight: 500;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .works-detail__category {
    font-size: 8px;
    padding: 0px 8px;
  }
}
.works-detail__time {
  display: block;
  font-family: "Volkhov", serif;
  font-weight: 300;
  padding-left: 30px;
  margin: 15px 0 40px;
}
@media screen and (max-width: 767px) {
  .works-detail__time {
    padding-left: 15px;
    margin: 5px 0 15px;
    font-size: 9px;
  }
}
.works-detail__imgwrap {
  width: 100%;
  height: auto;
  max-height: 650px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  border: 2px solid rgb(23, 46, 60);
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .works-detail__imgwrap {
    width: 90%;
    border: 1px solid rgb(23, 46, 60);
  }
}
.works-detail__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-detail__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin: 70px 0;
}
@media screen and (max-width: 767px) {
  .works-detail__text {
    margin: 25px 0 50px;
    gap: 25px;
  }
}
.works-detail__p {
  width: 90%;
}
@media screen and (max-width: 767px) {
  .works-detail__p {
    line-height: 20px;
  }
}
.works-detail__ul {
  display: flex;
  flex-direction: column;
  width: 90%;
}
.works-detail__li {
  padding: 15px 0 15px 30px;
}
@media screen and (max-width: 767px) {
  .works-detail__li {
    padding: 10px 0 10px 20px;
  }
}
.works-detail__large {
  position: relative;
}
.works-detail__large::before {
  content: "";
  width: 3px;
  height: 12px;
  background-color: rgb(23, 46, 60);
  position: absolute;
  top: 10px;
  left: -20px;
}
@media screen and (max-width: 767px) {
  .works-detail__large::before {
    top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .works-detail__large {
    padding-bottom: 3px;
  }
}
.works-detail__small {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .works-detail__small {
    font-size: 9px;
  }
}
.works-detail__a {
  text-decoration: underline;
}
.works-detail__sample {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 75px;
}
@media screen and (max-width: 767px) {
  .works-detail__sample {
    gap: 5%;
  }
}
.works-detail__pc-sample {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .works-detail__pc-sample {
    max-width: 50%;
  }
}
.works-detail__sp-sample {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 150px;
}
@media screen and (max-width: 767px) {
  .works-detail__sp-sample {
    max-width: 20%;
  }
}
.works-detail__wrap {
  margin-top: 140px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .works-detail__wrap {
    margin-top: 70px;
  }
}
.works-detail__page-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 210px;
  height: 60px;
  background-color: rgb(215, 116, 63);
  border-radius: 200px;
  font-family: "Volkhov", serif;
  color: #FFFFFF;
  transition: background-color 0.5s ease, gap 0.5s ease, letter-spacing 0.5s ease;
}
@media screen and (max-width: 767px) {
  .works-detail__page-btn {
    width: 150px;
    height: 40px;
    gap: 7px;
  }
}
@media (hover: hover) {
  .works-detail__page-btn:hover {
    background-color: rgba(215, 116, 63, 0.7);
    gap: 7px;
    letter-spacing: 0.1em;
  }
  .works-detail__page-btn:hover .works-detail__arrow {
    transform: scale(1.2);
  }
}
@media (hover: none) {
  .works-detail__page-btn:active {
    background-color: rgba(215, 116, 63, 0.7);
  }
}
.works-detail__arrow {
  width: 9.6px;
  height: 11px;
  transition: opacity 0.5s ease;
}

/* ==========================================
servicesページ
========================================== */
.services {
  background: url(images/background-image.jpg);
  background-size: cover;
}
.services__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .services__title {
    padding-left: 25px;
    padding-bottom: 50px;
  }
}
.services__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  color: rgb(215, 116, 63);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .services__en {
    font-size: 16px;
    position: relative;
  }
  .services__en::before {
    content: "";
    width: 2px;
    height: 15px;
    background-color: rgb(215, 116, 63);
    position: absolute;
    top: 9px;
    left: -20px;
  }
}
.services__ja {
  font-size: 12px;
  color: rgb(215, 116, 63);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .services__ja {
    font-size: 7px;
  }
}
.services__dashline {
  display: block;
  width: 1px;
  height: 45px;
  background-image: linear-gradient(to bottom, #D7743F 0px, #D7743F 10px, transparent 10px, transparent 17px);
  background-size: 1px 17px;
  background-repeat: repeat-y;
  position: absolute;
  bottom: 100px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .services__dashline {
    display: none;
  }
}
.services__content {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-left: 150px;
  margin: 100px 0;
  counter-reset: service-num;
}
@media screen and (max-width: 767px) {
  .services__content {
    padding-left: 0;
    align-items: center;
    margin: 50px 0;
  }
}
.services__box {
  display: flex;
  flex-direction: column;
  max-width: 690px;
  position: relative;
  counter-increment: service-num;
}
.services__box::before {
  content: counter(service-num, decimal-leading-zero);
  font-family: "Volkhov", serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  position: absolute;
  top: -5px;
  left: -85px;
}
@media screen and (max-width: 767px) {
  .services__box::before {
    font-size: 60px;
    opacity: 0.1;
    letter-spacing: 0;
    top: -50px;
    left: -30px;
  }
}
@media screen and (max-width: 767px) {
  .services__box {
    width: 80%;
  }
}
.services__box--right {
  padding-left: 90px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .services__box--right {
    padding-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  .services__box--right {
    padding-left: 0px;
  }
}
.services__box--right::before {
  left: 5px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .services__box--right::before {
    left: -85px;
  }
}
@media screen and (max-width: 767px) {
  .services__box--right::before {
    font-size: 70px;
    opacity: 0.1;
    letter-spacing: 0;
    top: -60px;
    left: -40px;
  }
}
.services__box--right .services__img {
  left: -30px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .services__box--right .services__img {
    left: -120px;
  }
}
@media screen and (max-width: 767px) {
  .services__box--right .services__img {
    left: auto;
  }
}
.services__img {
  width: 100%;
  max-width: 100px;
  height: 100%;
  max-height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.1;
  position: absolute;
  top: -40px;
  left: -120px;
}
@media screen and (max-width: 767px) {
  .services__img {
    top: auto;
    left: auto;
    bottom: -50px;
    right: -20px;
  }
}
.services__main {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 20px;
  letter-spacing: 0.07em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .services__main {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
}
.services__sub {
  font-size: 15px;
  letter-spacing: 0.07em;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .services__sub {
    font-size: 10px;
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 0.5px solid rgba(23, 46, 60, 0.2);
  }
}
.services__br {
  display: none;
}
@media screen and (max-width: 767px) {
  .services__br {
    display: block;
  }
}
.services__text {
  line-height: 2.8;
}
@media screen and (max-width: 767px) {
  .services__text {
    line-height: 2.1;
  }
}

/* ==========================================
contactページ
========================================== */
.contact__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .contact__title {
    padding-left: 25px;
    padding-bottom: 50px;
  }
}
.contact__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  color: rgb(215, 116, 63);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .contact__en {
    font-size: 16px;
    position: relative;
  }
  .contact__en::before {
    content: "";
    width: 2px;
    height: 15px;
    background-color: rgb(215, 116, 63);
    position: absolute;
    top: 9px;
    left: -20px;
  }
}
.contact__ja {
  font-size: 12px;
  color: rgb(215, 116, 63);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .contact__ja {
    font-size: 7px;
  }
}
.contact__dashline {
  display: block;
  width: 1px;
  height: 45px;
  background-image: linear-gradient(to bottom, #D7743F 0px, #D7743F 10px, transparent 10px, transparent 17px);
  background-size: 1px 17px;
  background-repeat: repeat-y;
  position: absolute;
  bottom: 100px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contact__dashline {
    display: none;
  }
}
.contact__text {
  margin: 80px 0 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__text {
    margin: 0 0 50px;
  }
}
.contact__form {
  max-width: 470px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact__form {
    width: 100%;
  }
}
.contact__label {
  display: inline-block;
  margin: 40px 0 12px;
  font-size: 12px;
}
.contact__label::after {
  content: "*";
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .contact__label {
    font-size: 10px;
    margin: 25px 0 0;
  }
}
.contact__input, .contact__textarea {
  color: rgb(23, 46, 60);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  padding: 12px 11px;
  border: none;
  background-color: transparent;
  border-bottom: 0.5px solid rgb(23, 46, 60);
  resize: none;
}
.contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: rgba(23, 46, 60, 0.2);
}
.contact__input::placeholder, .contact__textarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: rgba(23, 46, 60, 0.2);
}
@media screen and (max-width: 767px) {
  .contact__input, .contact__textarea {
    font-size: 12px;
    padding: 8px 6px;
  }
  .contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
    font-size: 12px;
  }
  .contact__input::placeholder, .contact__textarea::placeholder {
    font-size: 12px;
  }
}
.contact__textarea {
  border-bottom: none;
  border: 0.5px solid rgb(23, 46, 60);
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .contact__textarea {
    margin-top: 5px;
  }
}
.contact__input:focus, .contact__textarea:focus {
  outline: none;
}
.contact__privacy {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 40px 0 100px;
}
@media screen and (max-width: 767px) {
  .contact__privacy {
    gap: 10px;
    margin: 20px 0 60px;
  }
}
.contact__check {
  width: 13px;
  height: 13px;
  border: 1px solid rgb(23, 46, 60);
  cursor: pointer;
  accent-color: rgb(23, 46, 60);
}
@media screen and (max-width: 767px) {
  .contact__check {
    width: 10px;
    height: 10px;
  }
}
.contact__privacytext {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .contact__privacytext {
    font-size: 10px;
  }
}
.contact__a {
  -webkit-text-decoration: underline rgb(23, 46, 60) 1px;
          text-decoration: underline rgb(23, 46, 60) 1px;
  transition: opacity 0.5s ease;
}
@media (hover: hover) {
  .contact__a:hover {
    opacity: 0.5;
  }
}
.contact__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 114px;
  height: 50px;
  background-color: rgb(23, 46, 60);
  border-radius: 200px;
  font-family: "Volkhov", serif;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  margin: 0 auto;
  transition: background-color 0.5s ease, gap 0.5s ease, letter-spacing 0.5s ease;
}
@media screen and (max-width: 767px) {
  .contact__btn {
    width: 100px;
    height: 45px;
    gap: 7px;
  }
}
@media (hover: hover) {
  .contact__btn:hover {
    background-color: rgba(23, 46, 60, 0.7);
    gap: 7px;
    letter-spacing: 0.1em;
  }
  .contact__btn:hover .contact__arrow {
    transform: scale(1.2);
  }
}
@media (hover: none) {
  .contact__btn:active {
    background-color: rgba(23, 46, 60, 0.7);
  }
}
.contact__arrow {
  width: 9.6px;
  height: 11px;
  transition: transform 0.5s ease;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .contact__arrow {
    width: 7px;
    height: 8px;
  }
}

/* ==========================================
privacyページ
========================================== */
.privacy__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .privacy__title {
    padding-left: 25px;
    padding-bottom: 50px;
  }
}
.privacy__en {
  font-family: "Volkhov", serif;
  font-size: 24px;
  color: rgb(215, 116, 63);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .privacy__en {
    font-size: 16px;
    position: relative;
  }
  .privacy__en::before {
    content: "";
    width: 2px;
    height: 15px;
    background-color: rgb(215, 116, 63);
    position: absolute;
    top: 9px;
    left: -20px;
  }
}
.privacy__ja {
  font-size: 12px;
  color: rgb(215, 116, 63);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .privacy__ja {
    font-size: 7px;
  }
}
.privacy__dashline {
  display: block;
  width: 1px;
  height: 45px;
  background-image: linear-gradient(to bottom, #D7743F 0px, #D7743F 10px, transparent 10px, transparent 17px);
  background-size: 1px 17px;
  background-repeat: repeat-y;
  position: absolute;
  bottom: 100px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .privacy__dashline {
    display: none;
  }
}
.privacy__text {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .privacy__text {
    margin-bottom: 40px;
  }
}
.privacy__large {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .privacy__large {
    font-size: 12px;
    width: 90%;
  }
}
.privacy__small {
  margin: 15px auto 0;
  font-size: 12px;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .privacy__small {
    font-size: 10px;
    width: 90%;
    margin-top: 7px;
  }
}
.privacy__box {
  display: flex;
  flex-direction: column;
}
.privacy__content {
  display: flex;
  flex-direction: column;
  margin: 0 auto 40px;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .privacy__content {
    width: 90%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .privacy__main {
    font-size: 12px;
  }
}
.privacy__sub {
  margin-top: 15px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .privacy__sub {
    font-size: 10px;
    margin-top: 7px;
  }
}/*# sourceMappingURL=style.css.map */