@charset "utf-8";
:root {
  --accent-color: #D1B26C;
  --red : #861D1D;
}
html {
  scroll-behavior: smooth;
}
section, h4, div {
  scroll-margin-top: 120px;
}
a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}
img {
  max-width: 100%;
  object-fit: cover;
}
body {
  color: #FFFFFF;
  background: #000000;
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.77;
}
* {
  letter-spacing: 0.05em;
}
.wrapper {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 30px;
}

.ff-en {
  font-family: "Alumni Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: var(--accent-color);
}
.fw-md {
  font-weight: 500 !important;
}
.fw-bd {
  font-weight: 700 !important;
}
.fw-ex {
  font-weight: 900 !important;
}
.heading {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  border-left: 9px solid var(--red);
  padding-left: 20px;
}
.heading span {
  font-size: 70px;
  display: block;
}
.heading2 {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1;
  margin-inline: auto;
  text-align: center;
}
.heading2 span {
  font-size: 70px;
  display: block;
}
.heading3 {
  display: flex;
  column-gap: 30px;
  align-items: center;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
.heading3 span {
  font-size: 70px;
}
.heading3::after {
  content: "";
  background: #BC2929;
  height: 1px;
  width: 1px;
  flex: 1;
  clip-path: inset(0 100% 0 0);
  transition: 0.3s;
}
.show.heading3::after {
  clip-path: inset(0);
}

.heading-anime {
  width: fit-content;
  position: relative;
  clip-path: inset(0 100% 0 0);
  transition: 0.3s;
}
.heading-anime::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--red);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s 0.5s;
  clip-path: inset(0);
}
.show.heading-anime {
  clip-path: inset(0);
}
.show.heading-anime::after {
  clip-path: inset(0 0 0 100%);
}
.link {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  display: flex;
  column-gap: 20px;
}
.arrow {
  width: 40px;
  aspect-ratio: 1 / 1;
  height: fit-content;
  border-radius: 50%;
  border: 1px solid #BC2929;
  position: relative;
  display: block;
}
.arrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: #BC2929;
  position: absolute;
  left: 10px;
  top: 50%;
  transition: 0.3s;
}
.arrow::after {
  content: "";
  width: 8px;
  height: 1px;
  background: #BC2929;
  position: absolute;
  right: 11px;
  top: 50%;
  transform: rotate(40deg);
  transform-origin: 100%;
  transition: 0.3s;
}
.link:hover .arrow::before {
  width: 116px;
}
.link:hover .arrow::after {
  right: -89px;
}
.spacer {
  background-image: linear-gradient(to right, #BC2929 0%, #7E0001 60%, #780001 100%);
  height: 20px;
  width: 100%;
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}
.show.fade-up {
  opacity: 1;
  transform: none;
}
.fade-right {
  opacity: 0;
  transform: translateX(20px);
  transition: 0.3s;
}
.show.fade-right {
  opacity: 1;
  transform: none;
}
.fade-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: 0.3s;
}
.show.fade-left {
  opacity: 1;
  transform: none;
}
.img-anime {
  position: relative;
  overflow: hidden;
}
.img-anime img {
  transform: translateX(-100%);
  transition: 0.6s 0.3s;
}
.img-anime::before, .img-anime::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transform: translateX(-100%);
  transition: 1s cubic-bezier(0.48, 0.05, 1, 1);
}
.img-anime::after {
  background: #000;
  transition-delay: 0.15s;
}
.img-anime::before {
  background: var(--red);
}
.show.img-anime::before {
  transform: translateX(100%);
}
.show.img-anime::after {
  transform: translateX(100%);
}
.show.img-anime img{
  transform: none;
}
.page__fv {
  position: relative;
}
.page__fv::after {
  content: none;
  width: 1px;
  height: 70px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  animation: fv-bar 1.3s infinite;
}
@keyframes fv-bar {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0);
  }
  
}
.page__fv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page__title {
  position: absolute;
  font-size: 30px;
  line-height: 1;
  text-align: right;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
}
.page__title .ff-en {
  font-size: 93px;
  display: block;
  letter-spacing: 0.1em;
}
.line-anime {
  position: relative;
}
.line-anime::after {
  content: "";
  width: 1px;
  height: 140px;
  background: var(--red);
  position: absolute;
  top: 0;
  left: 50%;
  clip-path: inset(0 0 100% 0);
  transition: 0.5s;
}
.show.line-anime::after {
  clip-path: inset(0);
}
.breadcrumbs {
  background: #696969;
  padding-block: 6px;
  color: #CBCBCB;
  box-shadow: inset 0 3px 6px rgb(0 0 0 / 16%);
  font-size: 12px;
}
.breadcrumbs ul {
  display: flex;
  column-gap: 50px;
}
.breadcrumbs li {
  position: relative;
}

.breadcrumbs li::after {
  content: "〉";
  position: absolute;
  right: -35px ;
}
body:not(.single) .breadcrumbs li:last-of-type:after {
  content: none;
}
@media screen and (min-width:768.001px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (max-width:768px) {
  .pc_only {
    display: none !important;
  }
  section {
    scroll-margin-top: 66px;
  }
  .heading {
    font-size: 13px;
    border-left: 5px solid var(--red);
    padding-left: 12px;
  }
  .heading span {
    font-size: 40px;
  }
  .heading2 {
    font-size: 13px;
  }
  .heading2 span {
    font-size: 40px;
  }
  .heading3 {
    column-gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
  }
  .heading3 span {
    font-size: 40px;
  }
  
  .link {
    font-size: 26px;
  }
  .page__fv::after {
    content: "";
  }
  .page__title {
    font-size: 18px;
    text-align: center;
    top: 45%;
    right: 0;
    width: 100%;
  }
  .page__title .ff-en {
    font-size: 70px;
  }
  .line-anime::after {
    height: 70px;
  }
  .breadcrumbs {
    background: #222;
    font-size: 11px;
    padding-top: 70px;
  }
  .breadcrumbs ul {
    column-gap: 30px;
  }
  .breadcrumbs li::after {
    right: -25px;
  }
  .single .breadcrumbs {
    padding-top: 6px;
  }
}


/* =============================================
ヘッダー
============================================= */
/* ローディング */
.loading {
  display: none;
}
.home .loading {
  display: block;
  position: fixed;
  width: 100%;
  height: 100svh;
  z-index: 100;
  transition-delay: 1s;
}
.loaded .loading {
  opacity: 0;
  visibility: hidden;
}
.layer1::before,.layer1::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: skewY(-18deg);
  position: absolute;
  transition: 0.4s 0.1s cubic-bezier(1, 0.04, 1, 1);
}
.layer1::before {
  bottom: 49%;
  left: 0;
}
.layer1::after {
  top: 49%;
  right: 0;
}
.loaded .layer1::before {
  transform: skewY(-18deg) translateY(-100%);
}
.loaded .layer1::after {
  transform: skewY(-18deg) translateY(100%);
}
.layer2::before,.layer2::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  transform: skewY(-20deg);
  position: absolute;
  transition: 0.4s cubic-bezier(1, 0.04, 1, 1);
}
.layer2::before {
  bottom: 49%;
  left: 0;
}
.layer2::after {
  top: 49%;
  right: 0;
}
.loaded .layer2::before {
  transform: skewY(-20deg) translateY(-100%);
}
.loaded .layer2::after {
  transform: skewY(-20deg) translateY(100%);
}
.page-transition {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  transition-delay: 0.5s;
}
.home .page-transition {
  display: none;
}
.page-transition .layer1, .page-transition .layer2 {
  width: 100%;
  height: 100%;
  transition: 0.4s;
  position: absolute;
  top: 0;
  left: 0;
}
.loaded .page-transition1 {
  opacity: 0;
  visibility: hidden;
}
.loaded .page-transition1 .layer1, .loaded .page-transition1 .layer2 {
  transform: translateX(100%);
}

.page-transition .layer1 {
  background: var(--red);
  transition-delay: 0.1s;
}
.page-transition .layer2 {
  background: #000;
}
.home .page-transition2 {
  display: block;
}
.page-transition2 {
  transition-delay: 0;
  transition: 0;
  transform: translateX(-100%);
}
.moved .page-transition2 {
  opacity: 1;
  visibility: visible;
}

.moved .page-transition2 .layer1, .moved .page-transition2 .layer2 {
  transform: translateX(100%);
}

.page-transition2 .layer1 {
  background: var(--red);
}
.page-transition2 .layer2 {
  background: #000;
  transition-delay: 0.2s;
}

/* ヘッダー */
.header__top {
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: repeat(2, auto);
  padding: 30px 20px 10px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  transition: 1s;
}
.header__top.scroll {
  background: #00000066;
}
.header__top .logo {
  width: clamp(100px, 11vw, 176px);
}
.header__menu ul {
  display: grid;
  grid-auto-flow: column;
  column-gap: clamp(5px, 0.5vw, 30px);
  align-items: center;
}
.header__menu li {
  font-size: clamp(10px, 0.5vw, 13px);
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1;
  min-width: clamp(80px, 8vw, 105px);
}
.header__menu span {
  display: block;
  font-size: clamp(20px, 1.8vw, 24px);
  margin-bottom: 3px;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.header__menu a {
  position: relative;
}
.header__menu a::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--accent-color);
  position: absolute;
  top: 56%;
  left: 0%;
  transform: translateX(-50%) scale(0);
  transform-origin: 50%;
  transition: 0.3s;
}
.header__menu a:hover span {
  letter-spacing: 0.2em;
  color: #fff;
}
.header__menu a:hover::after {
  transform: translateX(-50%) scale(1);
}
li.nav-contact a{
  background: var(--red);
  border: 1px solid var(--red);
  padding: 14px clamp(10px, 1.3vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: var(--accent-color);
}
li.nav-contact a:hover {
  opacity: 1;
  background-color: #fff;
}
.nav-contact span {
  font-size: 35px;
  color: #fff;
  transition: 0.3s;
}
.nav-contact a:hover span {
  color: var(--red);
}
.nav-contact a:hover span {
  letter-spacing: 0.1em;
}
.nav-contact a::after {
  content: none;
}
.nav__phone {
  background: var(--red);
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
  column-gap: 3px;
  align-items: center;
  border-radius: 17px;
  margin-right: 16px;
  line-height: 1;
  display: none;
}
.nav__phone::before {
  content: "";
  width: 11px;
  height: 11px;
  background: url(../img/tel-icon.svg) no-repeat center/contain;
}
.sp__menu {
  display: none;
  cursor: pointer;
  width: 45px;
  height: 45px;
  position: relative;
}
.sp__menu span {
  position: absolute;
  width: 70%;
  height: 1px;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.sp__menu span:nth-of-type(1) {
  top: 30%;
}
.sp__menu span:nth-of-type(3) {
  top: 70%;
}
.sp__menu.show span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(315deg);
}
.sp__menu.show span:nth-of-type(2) {
  opacity: 0;
}
.sp__menu.show span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-315deg);
}
.sp__menu p {
  font-size: 40px;
  color: #333;
}
.sp__menu img {
  max-width: 90px;
}
.hamburger {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 100px 20px 20px;
  background: #000;
  z-index: 40;
  transform: translateX(-100%);
  text-align: center;
  transition: .3s;
}
.hamburger.show {
  transform: none;
}
.hamburger ul {
  display: grid;
  justify-content: center;
  row-gap: 17px;
  font-size: 11px;
  line-height: 1;
  margin-bottom: 37px;
}
.hamburger ul li, .hamburger__sns, .hamburger .nav__phone{
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}
.show.hamburger ul li, .show .hamburger__sns, .show.hamburger .nav__phone{
  opacity: 1;
  transform: none;
}
.hamburger ul li:nth-of-type(2) {
  transition-delay: 0.1s;
}
.hamburger ul li:nth-of-type(3) {
  transition-delay: 0.2s;
}
.hamburger ul li:nth-of-type(4) {
  transition-delay: 0.3s;
}
.hamburger ul li:nth-of-type(5) {
  transition-delay: 0.4s;
}
.hamburger ul li:nth-of-type(6) {
  transition-delay: 0.5s;
}
.hamburger ul li:nth-of-type(7) {
  transition-delay: 0.6s;
}
.hamburger__sns {
  transition-delay: 0.7s;
}
.hamburger .nav__phone{
  transition-delay: 0.8s;
  margin-right: 0;
}

.hamburger li span {
  display: block;
  font-size: 24px;
}
.hamburger__sns {
  display: flex;
  justify-content: center;
  column-gap: 13px;
  margin-bottom: 25px;
}
.hamburger__sns a {
  display: block;
  aspect-ratio: 1 / 1;
  width: 30px;
  height: auto;
}
.hamburger .nav__phone {
  display: inline-flex;
  font-size: 16px;
}
@media screen and (max-width:1000px) {
  .header__top {
    grid-template-columns: 1fr max-content max-content;
    padding: 10px 20px;
    background: #00000066;
  }
  .header__menu {
    display: none;
  }
  .nav__phone {
    display: flex;
  }
  .sp__menu {
    display: block;
  }
}


/* =============================================
トップページ
============================================= */
.fv {
  position: relative;
}
.fv-swiper {
  height: 100%;
}
.fv-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}
.fv-swiper img {
  height: 100%;
  object-fit: cover;
  transition: 5s linear;
}
.fv-swiper .duration6 img {
  transition: 8s linear;
}
.swiper-slide.right img {
  transform: translateX(-1.5%) scale(1.05);
}
.swiper-slide-active.right img, .swiper-slide-prev.right img {
  transform: translateX(1.5%) scale(1.1);
}
.swiper-slide.left img {
  transform: translateX(1.5%) scale(1.05);
}
.swiper-slide-active.left img, .swiper-slide-prev.left img {
  transform: translateX(-1.5%) scale(1.1);
}
.fv__catch-outer {
  position: absolute;
  top: 50%;
  left: max(calc(50vw - 428px), 20px);
  transform: translateY(-50%);
  z-index: 10;
}
.fv__catch {
  line-height: 1;
  display: flex;
  align-items: flex-end;
  column-gap: 16px;
  font-size: 49px;
  position: relative;
  clip-path: inset(0 100% 0 0);
  transition: 0.3s 0.5s;
}
.fv__catch::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s 1s;
  clip-path: inset(0);
}
.show .fv__catch {
  clip-path: inset(0);
}
.show .fv__catch::after {
  clip-path: inset(0 0 0 100%);
}
.fv__catch img{
  width: clamp(150px, 25vw, 320px);
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

/* NEWSブロック */
.top-news {
  background: url(../img/news-bg.jpg) no-repeat center/cover;
  padding-block: 140px;
}
.top-news .wrapper {
  display: grid;
  grid-template-columns: 2fr 3fr;
  column-gap: 20px;
}
.top-news .heading-outer {
  grid-row: 1 / 3;
}
.top-news ul {
  margin-bottom: 40px;
}
.top-news li {
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 10px;
  line-height: 1;
  margin-bottom: 24px;
}
.top-news li:last-of-type {
  margin-bottom: 0;
}
.news__date {
  font-size: 22px;
  margin-bottom: 8px;
}
.news__title {
  font-size: 20px;
}
.top-news .link {
  justify-content: flex-end;
  margin-right: 80px;
}

.img-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}
.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* メッセージブロック */
.top-message {
  /* background: url(../img/message-bg.jpg) no-repeat center/cover; */
  background: #22222280;
  padding-block: 140px;
  position: relative;
}
.top-message::after {
  left: calc(max(calc(50vw - 600px), 30px) + 150px);
}
.top-message .wrapper {
  display: grid;
  grid-template-columns: 60% 36%;
  column-gap: 20px;
  grid-template-rows: 1fr max-content 1fr;
}
.top-message h2 {
  color: var(--accent-color);
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  line-height: 1;
  margin-top: auto;
  display: flex;
  column-gap: 10px;
}
.top-message h2 img {
  width: 140px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.message__text {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.message__img {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
}

/* リンクブロック */
.top-link {
  padding-block: 140px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.top-link a {
  height: 400px;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  overflow: hidden;
  position: relative;
  display: block;
}
.top-link a:hover {
  opacity: 1;
}
.top-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.top-link a:hover img{
  transform: scale(1.05);
}
.top-link p {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-link .ff-en {
  font-size: 70px;
}
.top-link .arrow {
  width: 75px;
  margin-inline: auto;
}
.top-link .arrow::before {
  left: 21px;
  width: 33px;
}
.top-link .arrow::after {
  width: 16px;
  right: 20px;
}
.top-link a:hover .arrow::before {
  width: 133px;
}
.top-link a:hover .arrow::after {
  right: -80px;
}

/* トピックスブロック */
.top-topics {
  padding-block: 140px;
  background-image: linear-gradient(30deg, #000000 0%, #363636 100%);

}
.top-topics .heading {
  margin-bottom: 42px;
}
.topics__items {
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-bottom: 48px;
}
.topics__items li {
  aspect-ratio: 7 / 4;
  height: auto;
}
.topics__items li:first-of-type {
  grid-row: 1 / 3;
}
.topics__items a {
  position: relative;
  display: block;
}
.topics__items a img {
  width: 100%;
}
.topics__info {
  position: absolute;
  width: 100%;
  padding: 20px 30px;
  background: rgb(0 0 0 / 70%);
  bottom: 0;
  left: 0;
  font-size: 19px;
  color: #fff;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 24px;
}
.topics__date {
  color: #fff;
}
.topics__cat {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  line-height: 1.2;
  align-self: center;
}
.topics__cat span {
  padding: 0px 22px;
  border: 1px solid #BC2929;
  color: #fff;
}
.topics__title {
  font-size: 20px;
  font-weight: 500;
  grid-column: 1 / 3;
}
.top-topics .link {
  justify-content: flex-end;
  margin-right: 80px;
}


/* アクセスブロック */
.top-access {
  padding-block: 140px;
  background: #241F18;
}
.top-access .wrapper {
  display: grid;
  grid-template-columns: 58.5% 37%;
  justify-content: space-between;
}
.top-access .heading {
  margin-bottom: 6px;
}
.access__map {
  grid-row: 1 / 4;
}
.access__map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}
.access__logo {
  margin-bottom: 20px;
  width: 170px;;
}
.address__detail {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  border-top: 1px solid #534628;
  line-height: 1.1;
}
.address__detail :is(dt, dd) {
  border-bottom: 1px solid #534628;
  padding: 25px;
}
.address__detail dt {
  font-size: 20px;
}
.address__detail dd {
  font-size: 15px;
}

/* コンタクトブロック */
.contact-block {
  padding: 140px 30px;
  text-align: center;
  position: relative;
}
.contact-block .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: -1;
}
.contact-block .bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/contact-bg.jpg);
  background-size: cover;
  background-position: 30% 50%;
  z-index: -1;
}
.contact-block .wrapper {
  background-image: linear-gradient(155deg, rgb(131 110 70 / 75%) 0%, rgb(62 47 17 / 75%) 100%);
  padding: 80px 20px 60px;
  max-width: 1040px;
}
.contact-block .heading2 {
  margin-bottom: 35px;
}
.contact__text {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
}
.contact__tel {
  padding: 0 20px;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 7px;
  font-size: 70px;
  display: inline-block;
  line-height: 1;
}
.contact__time {
  font-size: 16px;
  margin-bottom: 36px;
}
.contact__link {
  background: #FFFFFF;
  color: var(--red);
  font-size: 20px;
  font-weight: 500;
  padding: 20px 50px;
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
}
.contact__link .arrow {
  border: 1px solid var(--red);
}
.contact__link .arrow::before {
  background: var(--red);
}
.contact__link .arrow::after {
  background: var(--red);
}
.contact__link:hover .arrow::before {
  width: 116px;
}
.contact__link:hover .arrow::after {
  right: -89px;
}
@media screen and (max-width:768px) {
  .fv {
    height: 100svh;
  }
  .fv__catch-outer {
    right: 0;
    left: 0;
  }
  
  .fv__catch {
    font-size: 25px;
    column-gap: 5px;
    width: fit-content;
    margin-inline: auto;
  }
  .fv-swiper img {
    max-width: none;
  }
  .swiper-slide.right img {
    transform: translateX(-150px) scale(1.2);
    /* transition: 7s; */
  }
  .swiper-slide-active.right img, .swiper-slide-prev.right img {
    transform: translateX(150px) scale(1.25);
  }
  .swiper-slide.left img {
    transform: translateX(150px) scale(1.2);
    /* transition: 5s; */
  }
  .swiper-slide-active.left img, .swiper-slide-prev.left img {
    transform: translateX(-150px) scale(1.26);

  }
  .top-news {
    padding-block: 60px;
  }
  .top-news .wrapper {
    grid-template-columns: 100%;
  }
  .top-news .heading {
    margin-bottom: 20px;
  }
  .news__date {
    font-size: 17px;
  }
  .news__title {
    font-size: 15px;
  }
  .top-news ul {
    margin-bottom: 32px;
  }
  .top-news .link {
    margin-right: 0;
  }

  @keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
  }
  .img-block {
    display: flex;
    overflow: hidden;
  }
  .img-block ul {
    display: flex;
    list-style: none;
    padding: 0;
    animation: infinity-scroll-left 40s infinite linear 0.5s both;
  }
  .img-block li {
    width: 100vw;
  }
  
  .top-message {
    padding-block: 100px 60px;
    /* background-image: url(../img/message-bg-sp.jpg); */
  }
  .top-message .wrapper {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
  .top-message h2 {
    font-size: 26px;
    margin-bottom: 30px;
    column-gap: 5px;
  }
  .top-message h2 img {
    width: 110px;
  }
  .message__text {
    font-size: 14px;
    margin-bottom: 30px;
    
  }
  .message__img {
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 30px;
    max-width: 315px;
    margin-inline: auto;
  }
  .top-message .link {
    grid-row: 4 / 5;
    justify-content: flex-end;
  }
  .top-topics {
    padding-block: 60px 50px;
  }
  .top-topics .heading {
    margin-bottom: 20px;
  }
  .top-link.wrapper{
    padding: 0;
    grid-template-columns: 100%;
  }
  .topics__items {
    display: grid;
    grid-template-rows: 100%;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .topics-swiper {
    overflow-x: hidden;
    margin-bottom: 30px;
  }
  .topics-swiper .swiper-pagination-bullet-active {
    background: #FFFFFF;
  }
  .topics-swiper .swiper-pagination-bullet {
    background: #707070;
  }
  .topics__items li:first-of-type {
    grid-row: auto;
  }
  .topics__items .swiper-slide {
    height: auto;
  }
  .topics__info {
    font-size: 13px;
    padding: 10px;
  }
  .topics__cat span {
    font-size: 12px;
    padding: 0 10px;
  }
  .topics__title {
    font-size: 13px;
  }
  .top-topics .link {
    margin-right: 40px;
  }
  .top-access {
    padding-block: 60px;
  }
  .top-access .wrapper {
    grid-template-columns: 100%;
  }
  .top-access .heading {
    margin-bottom: 20px;
  }
  .access__map {
    grid-row: 2 / 3;
    aspect-ratio: 3 / 4;
    margin-bottom: 20px;
  }
  .access__logo {
    margin-inline: auto;
  }
  .address__detail {
    grid-template-columns: 100%;
  }
  .address__detail dt {
    font-size: 18px;
    padding: 20px 13px 0;
    border-bottom: none;
  }
  .address__detail dd {
    font-size: 17px;
    padding: 0 13px 20px;
    border-top: none;
  }
  .contact-block {
    padding: 60px 30px;
  }
  .contact-block .wrapper {
    padding: 30px 20px;
  }
  .contact-block .heading {
    margin-bottom: 20px;
  }
  .contact__text {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .contact__tel {
    font-size: 38px;
    margin-bottom: 10px;
  }
  .contact__time {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .contact__link {
    font-size: 14px;
    padding: 10px 46px;
  }
}




/* =============================================
フッター
============================================= */
footer {
  background: #000000;
  color: var(--accent-color);
  padding-block: 100px 70px;
}
footer .wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  column-gap: 20px;
  align-items: center;
}
.top-btn {
  position: fixed;
  right: 0;
  font-size: 19px;
  display: flex;
  align-items: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}
.top-btn .link {
  column-gap: 7px;
}
.top-btn .arrow {
  transform: rotate(-90deg);
}
.top-btn .arrow::after {
  transform: rotate(-40deg);
}
.footer__about {
  width: 300px;
  text-align: center;
}
.footer__logo {
  width: 176px;
  margin-bottom: 10px;
  display: inline-block;
}
.footer__sns {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  margin-bottom: 30px;
}
.footer__sns a {
  display: block;
  aspect-ratio: 1 / 1;
  width: 30px;
}
.footer__tel a {
  border: 1px solid #D1B26D;
  display: block;
  padding: 10px 12px;
  margin-bottom: 15px;
  line-height: 1;
}
.footer__tel p {
  font-size: 16px;
}
.footer__tel .ff-en {
  font-size: 47px;
}
.footer__tel .footer__time {
  font-size: 15px;
}
.footer__address {
  font-size: 15px;
}
.footer__nav {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  column-gap: 20px;
}
.footer__main {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}
.footer__coating h2, .footer__wash h2 {
  font-size: 18px;
  font-weight: 500;
}
.footer__coating, .footer__wash {
  font-size: 14px;
}
.footer__copy {
  margin-top: 55px;
  grid-column: 1 / 5;
  text-align: center;
  font-size: 22px;
  position: relative;
  padding-bottom: 16px;
}
.footer__copy::after {
  content: "";
  width: 120px;
  height: 1px;
  background: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width:768px) {
  footer {
    padding-block: 60px;
  }
  footer .wrapper {
    grid-template-columns: 100%;
  }
  .footer__about {
    width: 100%;
  }
  .footer__sns {
    margin-bottom: 20px;
  }
  .footer__main {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .footer__tel a {
    max-width: 315px;
    margin-inline: auto;
    margin-bottom: 20px;
  }
  .footer__tel .ff-en {
    font-size: 34px;
  }
  .footer__copy {
    grid-column: auto;
    margin-top: 20px;
    padding-bottom: 20px;
    font-size: 17px;
  }
}



/* =============================================
記事一覧
============================================= */
.post__archive {
  background: #222222;
  padding-block: 100px;
}
.archive__title {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--red);
}
.post__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 48px;
  gap: 30px 20px;
}
.post__img {
  aspect-ratio: 7 / 4;
  height: auto;
  object-fit: cover;
}
.post__items a {
  position: relative;
  display: block;
}
.post__info {
  width: 100%;
  padding: 14px 18px 0;
  font-size: 13px;
  color: #fff;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 24px;
}
.post__date {
  color: #fff;
}
.post__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.post__cat span {
  padding: 0px 22px;
  border: 1px solid #BC2929;
  color: #fff;
  font-size: 12px;
}
.post__title {
  font-weight: 500;
  grid-column: 1 / 3;
}
.nav-links {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  font-size: 20px;
  line-height: 1;
  color: var(--red);
  font-family: "Alumni Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.page-numbers {
  background: #A0A0A0;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.page-numbers.current {
  background: #fff;
}
.post__category {
  font-size: 18px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .post__archive {
    padding-block: 50px;
  }
  .archive__title {
    font-size: 20px;
  }
  .post__items {
    grid-template-columns: 100%;
  }
}


/* =============================================
記事詳細
============================================= */
.single main {
  padding-top: 158px;
}
.single .blog__main {
  margin-block: 100px;
  background: #AAA088 ;
  padding: 40px;
  color: #000;
}
.single .single__info {
  display: flex;
  column-gap: 10px;
}
.single .single__date {
  font-size: 18px;
  color: #000;
  line-height: 1;
  padding-top: 4px;
}
.single .single__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.single .single__cat a {
  padding: 0px 22px;
  border: 1px solid #BC2929;
  background: #BC2929;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}
.single .single__cat a:hover {
  background: #fff;
  color: #BC2929;
}
.single .single__title {
  font-size: 30px;
  margin-bottom: 15px;
  border-bottom: 3px solid var(--red);
  font-weight: 500;
}
.single .single__tag {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  column-gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.single .single__thumb {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}
.single #ez-toc-container {
  max-width: 816px;
  margin-inline: auto;
  padding: 30px 70px;
  border-radius: 0;
  margin-block: 40px !important;
}
.single #ez-toc-container li {
  line-height: 2.2;
}
.ez-toc-title-container {
  text-align: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 18px;
  margin-bottom: 14px;
}
#ez-toc-container .ez-toc-list {
  padding-inline: 70px;
}
#ez-toc-container .ez-toc-list > li > a::before {
  content: none;
}
.single__content p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1em;
}
.single__content h2 {
  font-size: 24px;
  font-weight: 500;
  background: #222222;
  padding: 8px 30px;
  border-bottom: 10px solid var(--red);
  margin-block: 40px;
  color: #fff;
}
.single__content h3 {
  font-size: 20px;
  font-weight: 500;
  padding: 6px 10px;
  border-left: 10px solid var(--red);
  margin-block: 40px;
}
.single__content h4 {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid #D1B26D;
  margin-block: 40px;
  position: relative;
}
.single__content h4::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--red);
  position: absolute;
  bottom: -1px;
  left: 0;
}
.single__link {
  margin-block: 40px;
  border-top: px solid var(--red);
  padding-top: 40px;
  display: grid;
  row-gap: 40px;
  grid-template-columns: 130px 130px;
  justify-content: space-between;
}
.single__prev, .single__next {
  color: var(--red);
  letter-spacing: 0.02em;
  background: #CBCBCB;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  font-weight: 500;
  font-size: 15px;
}
.single__next {
  flex-direction: row-reverse;
}
.single__prev::before, .single__next::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/single-arrow.svg) no-repeat center/contain;
}
.single__next::before {
  transform: rotate(180deg);
}
.single__return {
  grid-column: 1 / 3;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-inline: auto;
  background: var(--red);
  padding: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.single__return .arrow {
  border-color: #fff;
}
.single__return .arrow::before, .single__return .arrow::after {
  background: #fff;
}
.single__new {
  background: #222222;
  padding-block: 100px;
}
@media screen and (max-width:768px) {
  .single main {
    padding-top: 70px;
  }
  .single .blog__main {
    padding: 20px;
    margin-block: 50px;
  }
  .single .single__date {
    font-size: 16px;
  }
  .single .single__cat a {
    font-size: 12px;
    padding: 0 16px;
  }
  .single .single__title {
    font-size: 18px;
  }
  .single .single__tag {
    font-size: 12px;
  }
  .single .single__thumb {
    margin-bottom: 20px;
  }
  .single #ez-toc-container {
    padding: 20px;
    margin-block: 20px !important;
  }
  #ez-toc-container .ez-toc-list {
    padding-inline: 0px;
  }
  .ez-toc-title {
    font-size: 16px !important;
  }
  .single__content div#ez-toc-container ul li {
    font-size: 14px;
  }
  .single__content #ez-toc-container ul ul, .ez-toc div.ez-toc-widget-container ul ul {
    margin-left: 10px;
  }
  .single__content p {
    font-size: 14px;
  }
  .single__content h2 {
    font-size: 20px;
    padding: 5px 10px;
    margin-block: 20px;
  }
  .single__content h3 {
    font-size: 18px;
    margin-block: 20px;
  }
  .single__content h4 {
    font-size: 16px;
    margin-block: 20px;
  }
  .single__link {
    margin: 0;
    grid-template-columns: 120px 120px;
    row-gap: 20px;
  }
  .single__prev, .single__next {
    font-size: 14px;
  }
  .single__return {
    font-size: 15px;
    width: 100%;
    padding: 10px;
  }
  .single__new {
    padding-block: 50px;
  }
  .single__new .post__items {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
/* =============================================
メニューページ
============================================= */
.page-id-9 .page__title {
  width: 350px;
  display: grid;
}
.page-id-9 .page__title > span:first-of-type {
  text-align: left;
}
.page-id-9 .page__title > span:nth-of-type(2) {
  text-align: center;
}
.page-id-9 .page__title > span:nth-of-type(3) {
  text-align: right;
}

.menu-spnav ul {
  font-size: 10px;
  font-weight: 500;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  text-align: center;
  line-height: 1;
  padding: 10px 30px;
}
.menu-spnav a {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
}
.menu-spnav a::before {
  content: "";
  width: 11px;
  height: 7px;
  background: url(../img/menu-down-icon.svg) no-repeat center/contain;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.menu-spnav .ff-en {
  font-size: 17px;
  display: block;
}

.coating {
  padding-top: 160px;
  background: #000000;
  position: relative;
}
.coating::before {
  content: "";
  background: #141414;
  width: 56%;
  height: auto;
  aspect-ratio: 20 / 13;
  position: absolute;
}
.coating::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: 0;
  left: 0;
}

.coating .heading2 {
  margin-bottom: 48px;
}
.coating__about {
  position: relative;
  z-index: 1;
  margin-bottom: 120px;
}
.coating__text {
  background: rgb(255 255 255 / 18%);
  padding: 60px;
  font-weight: 500;
  width: 52.5%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.coating__text h3 {
  font-size: 21px;
  margin-bottom: 14px;
}
.coating__text p {
  font-size: 16px;
}
.coating__img {
  width: 68%;
  display: block;
  margin-left: auto;
  padding-bottom: 60px;
}
.menu__price {
  display: grid;
  column-gap: 50px;
  grid-template-columns: 1fr 1fr;
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}
.price__title {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 700;
  border-left: 15px solid #E0CFA8;
  padding: 10px 13px;
  margin-bottom: 10px;
  grid-column: 1 / 3;
}
.price__text {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.price__list dl {
  padding: 13px 26px;
  margin-bottom: 6px;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}
.price__list dl:nth-last-of-type(2n + 1) {
  background: #E0CFA8;
}
.price__list dl:nth-last-of-type(2n) {
  background: #CBCBCB;
}
.price__list dl:last-of-type {
  margin-bottom: 0;
}
.price__add {
  margin-top: 10px;
  font-size: 15px;
  text-align: right;
  grid-column: 1 / 3;
  font-weight: 500;
}
.coating__flow {
  display: grid;
  row-gap: 60px;
}
.coating__flow li {
  display: grid;
  grid-template-columns: auto 27% auto;
  grid-template-rows: repeat(2, max-content);
  padding: 27px 50px 27px 60px;
  border: 1px solid #E0CFA8;
  background: rgb(224 207 168 / 40%);
  column-gap: 50px;
  align-items: center;
  position: relative;
}
.coating__flow li::after {
  content: "";
  width: 65px;
  height: 23px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #E0CFA8;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.coating__flow li:last-of-type:after {
  content: none;
}
.flow__title {
  display: flex;
  align-items: center;
  column-gap: 16px;
  grid-row: 1 / 3;
}
.flow__step {
  grid-row: 1 / 3;
  font-size: 40px;
  line-height: 0.7;
  text-align: center;
  padding-right: 70px;
  border-right: 1px solid #E0CFA8;
}
.flow__step span {
  font-size: 90px;
  display: block;
}
.flow__img {
  grid-row: 1 / 3;
  max-width: 100%;
  margin-inline: auto;
}
.coating__flow h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  align-self: end;
}
.flow__text {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  align-self: start;
}

/* 洗車 */
.wash {
  padding-bottom: 160px;
  background: #141414;
}
.wash .img-block {
  margin-bottom: 330px;
}
.wash::before {
  content: "";
  background: #000000;
  width: 100%;
  height: auto;
  aspect-ratio: 20 / 13;
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: 0;
  left: 0;
}
.wash::after {
  content: "";
  background: #000000;
  width: 56%;
  height: auto;
  aspect-ratio: 20 / 13;
  position: absolute;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: 0;
  right: 0;
}
.wash .line-anime::after {
  transform: translateY(-160px);
}
.wash .coating__text {
  left: auto;
  right: 0;
}
.wash .coating__img {
  margin-left: 0;
  margin-right: auto;
}
.wash .menu__price {
  margin-bottom: 40px;
}
.wash .menu__price:last-of-type {
  margin-bottom: 0;
}
.wash .menu__price img {
  width: 100%;
  height: 100%;
}
.wash .price__text {
  grid-column: 1 / 3;
  margin-bottom: 20px;
}
.price__img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: column;
  margin-bottom: 20px;
  grid-column: 1 / 3;
}
.price__text2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.wash__option {
  border: 1px solid #E0CFA8;
  padding: 40px 50px;
  margin-bottom: 50px;
}
.option__title {
  font-size: 40px;
  margin-bottom: 30px;
  line-height: 1;
  text-align: center;
}
.wash__option ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
}
.option__item h5 {
  color: var(--accent-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.option__text {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.wash__flow {
  background: #222;
  padding-block: 160px;
}

.wash__flow ol {
  display: grid;
  column-gap: 45px;
  grid-auto-flow: column;
}
.wash__flow-title {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.wash__flow-step {
  font-size: 60px;
  line-height: 1;
  padding-left: 6px;
  margin-bottom: -8px;
}
.wash__flow-img {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  aspect-ratio: 10 / 7;
  background: #fff;
  border: 1px solid #707070;
}
.wash__flow-img img {
  width: auto;
  display: block;
  margin-inline: auto;
}
.wash__flow li .wash__flow-img::after {
  content: "";
  width: 23px;
  height: 38px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #E0CFA8;
  position: absolute;
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
}
.wash__flow li:last-of-type .wash__flow-img:after {
  content: none;
}
.wash__flow h4 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}
.wash__flow-text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width:768px) {
  .page-id-9 .page__title {
    width: 100%;
  }
  .page-id-9 .page__title span {
    text-align: center !important;
  }
  .coating {
    padding-top: 90px;
  }
  .coating__about {
    margin-bottom: 50px;
  }
  .coating__text {
    padding: 30px;
    width: 100%;
    margin-left: -30px;
    position: static;
  }
  .coating__text h3 {
    font-size: 18px;
  }
  .coating__text p {
    font-size: 15px;
  }
  .coating__img {
    width: 95%;
    margin-right: -30px;
    padding-bottom: 20px;
  }
  .price__title {
    font-size: 18px;
    border-left: 10px solid #E0CFA8;
    padding: 5px 8px;
    grid-column: auto;
  }
  .price__title .sp_small {
    display: block;
    font-size: 12px;
  }
  .price__text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .price__list dl {
    font-size: 12px;
    padding: 12px 10px;
  }
  .menu__price {
    grid-template-columns: 100%;
    margin-bottom: 40px;
  }
  .price__add {
    font-size: 12px;
    grid-column: auto;
    text-align: left;
  }
  .flow__step {
    font-size: 30px;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .flow__step span {
    font-size: 40px;
    display: inline;
    padding-left: 8px;
  }
  .flow__text {
    font-size: 15px;
  }
  .coating__flow li {
    grid-template-columns: 100%;
    grid-template-rows: none;
    padding: 30px;
  }
  .flow__title {
    grid-row: auto;
    margin-bottom: 10px;
  }
  .flow__img {
    grid-row: auto;
    margin-bottom: 10px;
    width: 100%;
  }
  .coating__flow {
    margin-bottom: 100px;
  }
  .coating__flow h4 {
    font-size: 18px;
    margin-bottom: 0;
  }
  .wash {
    padding-top: 200px;
    padding-bottom: 80px;
  }
  .wash::before {
    top: 0;
  }
  .wash .line-anime::after {
    transform: translateY(-90px);
  }
  .wash .img-block {
    margin-bottom: 200px;
  }
  .wash .coating__img {
    margin-left: -30px;
  }
  .wash .coating__text {
    margin-left: auto;
    margin-right: -30px;
  }
  .wash .menu__price > *:not(:first-child) {
    margin-bottom: 20px;
  }
  .wash .menu__price > *:last-child {
    margin-bottom: 0;
  }
  .wash .price__text {
    grid-column: auto;
  }
  .price__text2 {
    font-size: 16px;
  }
  .wash .price__add {
    margin-top: 0;
  }
  .wash__option {
    padding: 18px 10px;
  }
  .wash__option ul {
    grid-template-columns: 100%;
    row-gap: 25px;
  }
  .option__title {
    margin-bottom: 16px;
  }
  .option__item h5 {
    margin-bottom: 5px;
    font-size: 18px;
    text-align: left;
  }
  .option__text {
    margin-bottom: 15px;
    font-size: 14px;
    text-align: left;
  }
  .price__img {
    grid-column: auto;
    display: block;
  }
  .wash__flow {
    padding-block: 90px 60px;
  }
  .wash__flow ol {
    grid-auto-flow: row;
    row-gap: 60px;
  }
  .wash__flow-step {
    font-size: 53px;
    margin-bottom: 0;
  }
  .wash__flow h4 {
    font-size: 18px;
  }
  .wash__flow-img {
    width: min(100%, 400px);
    margin-inline: auto;
    aspect-ratio: auto;
    position: static;
    margin-bottom: 10px;
  }
  .wash__flow li {
    position: relative;
  } 
  .wash__flow li .wash__flow-img::after {
    transform: translateX(-50%) rotate(90deg);
    right: auto;
    left: 50%;
    top: auto;
    bottom: -48px;
  }
  .wash__flow h4 {
    margin-bottom: 0;
  }
}



/* =============================================
お問い合わせ
============================================= */
.contact__main {
  background-image: linear-gradient(30deg, #000000 0%, #1C1913 100%);
  position: relative;
}
.contact__main .wrapper {
  padding-block: 170px;
}
.contact__main::before, .contact__main::after {
  content: "";
  background: #141414;
  width: 56%;
  height: auto;
  aspect-ratio: 20 / 13;
  position: absolute;
}
.contact__main::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: 0;
  left: 0;
}
.contact__main::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: 0;
  right: 0;
}
.contact__main-text {
  text-align: center;
  position: relative;
  z-index: 10;
  margin-bottom: 48px;
}
.contact__form {
  background: #383838;
  border-radius: 20px;
  padding: 140px 20px;
  position: relative;
  z-index: 10;
}
.contact__form .contact__table {
  max-width: 700px;
  margin-inline: auto;
}
.contact__table {
  font-weight: 500;
}
.contact__table .row {
	display: flex;
	margin-bottom: 48px;
  row-gap: 16px;
}
.contact__table :is(input, select, textarea) {
	background: #fff;
  border-radius: 5px;
  padding: 15px;
  color: #383838;
}
.contact__table .row p {
	margin-bottom: 0;
	font-size: 20px;
  line-height: 1;
}
.contact__title {
  width: 215px;
  flex-shrink: 0;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
}
.contact__input {
  flex: 1;
}
.contact__input .wpcf7-form-control-wrap, .contact__input .wpcf7-form-control-wrap :is(input, select, textarea) {
  width: 100%;
  font-size: 16px;
  min-height: 48px;
  text-align: left;
}
.contact__input input::-webkit-date-and-time-value {
  text-align: left;
}
.contact__input .wpcf7-radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 12px;
}
.reservation .contact__input {
  display: grid;
  grid-template-columns: 3fr 2fr;
  column-gap: 12px;
}
.reservation .time :is(p, span, select) {
  height: 100%;
}

input[type="date"] {
  position: relative;
  cursor: pointer;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}

input[type="date"]::after {
  content: '';
  background-image: url(../img/calendar-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 21px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.time select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url('../img/down-arrow.svg');
  background-repeat: no-repeat;
  background-size: 21px auto;
  background-position: right 12px center;
  cursor: pointer;
}
.contact__table .textarea {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 40px;
}
.contact__table .textarea  p {
  width: 100%;
}
.contact__table .textarea  span {
  width: 100%;
  display: block;
}
.contact__table input::placeholder, .contact__table textarea::placeholder {
	color: #CBCBCB;
	font-size: 15px;
  line-height: 1;
}
.contact__table .wpcf7-list-item {
	display: block;
	margin-left: 0;
  padding-left: 30px;
  position: relative;
}
.contact__table textarea {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
  width: 100%;
}
.contact__table .required {
	font-size: 18px;
  font-weight: 500;
	color: #E0CFA8;
	margin-right: 5px;
}
.contact__table .wpcf7-acceptance {
  width: fit-content;
  display: block;
  margin-inline: auto;
}
.send-btn {
  background: var(--accent-color);
  color: #fff;
  width: 320px;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 50px;
  text-align: center;
  margin: 50px auto 0;
  display: block;
}
.send-btn > p {
  position: relative;
}
.send-btn input {
  padding: 20px;
  margin: 0;
  background: var(--accent-color);
  color: #fff;
  width: 100%;
  transition: 0.3s;
}
.send-btn input[disabled] {
	background: #958f81 !important;
}
.send-btn .arrow {
  width: 28px;
  height: 28px;
  position: absolute;
  left: 70%;
  top: 50%;
  transform: translateY(-50%);
}
.send-btn .arrow::before {
  width: 11px;
  left: 8px;
}
.send-btn .arrow::after {
  width: 6px;
  right: 8px;
}
.send-btn:hover .arrow::before {
  width: 80px;
}
.send-btn:hover .arrow::after {
  right: -61px;
}
.send-btn p:after {
  content: none;
}
.wpcf7-radio input, .wpcf7-acceptance input {
	display: none;
}
form input[type=radio] + span::before {
	content: "";
  width: 21px;
	height: 21px;
	border-radius: 5px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  display: inline-block;
}
form input[type=radio]:checked + span::after {
	content: "";
  width: 14px;
	height: 14px;
	background: url(../img/check.png) no-repeat center/contain;
	position: absolute;
	top: 5%;
	left: 4px;
  display: inline-block;
}
form input[type=checkbox] + span::before {
	content: "";
  width: 21px;
	height: 21px;
	border-radius: 5px;
  border: 1px solid #000000;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  display: inline-block;
}
form input[type=checkbox]:checked + span::after {
	content: "";
  width: 14px;
	height: 14px;
	background: url(../img/check.png) no-repeat center/contain;
	position: absolute;
	top: 17%;
	left: 4px;
  display: inline-block;
}
.wpcf7-acceptance a {
  text-decoration: underline;
}
.wpcf7-spinner {
  display: none !important;
}
.wpcf7-not-valid-tip {
  margin-top: 5px;
}
@media screen and (max-width:768px) {
  .contact__main .wrapper {
    padding-block: 90px 60px;
  }
  .contact__main-text {
    font-size: 14px;
  }
  .contact__form {
    padding: 30px 18px;
  }
  .contact__input .wpcf7-form-control-wrap, .contact__input .wpcf7-form-control-wrap :is(input, select, textarea) {
    min-height: 46px;
  }
  .contact__table .row {
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 35px;
  }
  .contact__table .row p {
    font-size: 14px;
  }
  form input[type=radio]:checked + span::after {
    height: 12px;
    top: 0;
  }
  .contact__input .wpcf7-radio {
    grid-template-columns: 100%;
  }
  .contact__table .wpcf7-list-item {
    font-size: 13px;
  }
  .reservation .contact__input {
    grid-template-columns: 100%;
    row-gap: 10px;
  }
  .send-btn {
    width: 100%;
  }
  .send-btn input {
    font-size: 14px;
  }
}
