@charset "UTF-8";
/* =================================================== *

  base

* =================================================== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700;900&display=swap");
html {
  scrollbar-gutter: stable;
}

body {
  color: #222;
  font-family: "Noto Sans JP", メイリオ, Meiryo, "MS Pゴシック", "MS P Gothic", Arial, icomoon, sans-serif;
  font-weight: normal;
  min-height: 100dvh;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  background: #fff;
  font-feature-settings: "palt";
}
body.is-noscroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

main {
  overflow: hidden;
}

a[href*=tel] {
  pointer-events: none;
}
@media (max-width: 992px) {
  a[href*=tel] {
    pointer-events: auto;
  }
}

a.link {
  text-decoration: underline;
  color: #715e4e;
  font-weight: 600;
}

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

p {
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  p {
    line-height: 1.8;
  }
}
p + p {
  margin-top: 1.5em;
}

.red {
  color: #CC2424;
}

.big {
  font-size: 150%;
}
@media (max-width: 767px) {
  .big {
    font-size: 130%;
  }
}

.borer {
  border: solid 1px #CC2424;
  padding: 5px 10px;
}

/*------------------
  font
------------------*/
.font-min {
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
}

/*------------------
  display
------------------*/
._sp {
  display: none;
}

._tb {
  display: none;
}

._tb-sp {
  display: none;
}

@media (max-width: 992px) {
  ._pc {
    display: none;
  }
  ._tb {
    display: block;
  }
  ._tb-sp {
    display: block;
  }
}
@media (max-width: 767px) {
  ._pc-tb {
    display: none;
  }
  ._tb {
    display: none;
  }
  ._sp {
    display: block;
  }
}
/*------------------
  inner
------------------*/
.l-container {
  max-width: 1100px;
  width: 90%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .l-container {
    width: calc(100% - 40px);
  }
}

.l-container-wide {
  max-width: 1360px;
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .l-container-wide {
    width: 100%;
  }
}

.inner800 {
  max-width: 800px;
  margin-inline: auto;
}

/*------------------
  wraper
------------------*/
.l-wrapper {
  padding: clamp(70px, 9.1264667536vw, 150px) 0;
}

.l-wrapper-top {
  padding-top: clamp(70px, 9.1264667536vw, 150px);
}

.l-wrapper-bottom {
  padding-bottom: clamp(70px, 9.1264667536vw, 150px);
}

.l-wrapper-100 {
  padding: clamp(50px, 6.518904824vw, 100px) 0;
}

.l-wrapper-top-100 {
  padding-top: clamp(50px, 6.518904824vw, 100px);
}

.l-wrapper-bottom-100 {
  padding-bottom: clamp(50px, 6.518904824vw, 100px);
}

.l-wrapper-70 {
  padding: clamp(50px, 6.518904824vw, 70px) 0;
}

.l-wrapper-top-70 {
  padding-top: clamp(50px, 6.518904824vw, 70px);
}

.l-wrapper-bottom-70 {
  padding-bottom: clamp(50px, 6.518904824vw, 70px);
}

.l-wrapper-50 {
  padding: clamp(30px, 3.9113428944vw, 50px) 0;
}

.l-wrapper-top-50 {
  padding-top: clamp(30px, 3.9113428944vw, 50px);
}

.l-wrapper-bottom-50 {
  padding-bottom: clamp(30px, 3.9113428944vw, 50px);
}

.l-wrapper-30 {
  padding: clamp(15px, 1.9556714472vw, 30px) 0;
}

.l-wrapper-top-30 {
  padding-top: clamp(15px, 1.9556714472vw, 30px);
}

.l-wrapper-bottom-30 {
  padding-bottom: clamp(15px, 1.9556714472vw, 30px);
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

/*------------------
  text
------------------*/
.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

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

a.underline {
  color: #715e4e;
  text-decoration: underline;
}

/*------------------
  button
------------------*/
.p-btn1 {
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 12px 3em;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-btn1:hover {
    opacity: 0.8;
  }
}
.p-btn1.wh {
  background: #fff;
  color: #000;
  border: solid 1px #000;
}

/*------------------
  flex
------------------*/
.p-flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .p-flex {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.p-flex .left {
  flex-basis: 45%;
}
.p-flex .right {
  flex-basis: 50%;
}

/*------------------
  bg box
------------------*/
.p-bgbox {
  padding: 20px;
  background: #F9F9F9;
}

/*------------------
  list
------------------*/
.p-list__ttl {
  font-weight: bold;
}
.p-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-list ul li::after {
  content: "/";
  margin: 0 8px;
  color: #999;
}
.p-list ul li:last-child::after {
  content: none;
}

/*------------------
  heading
------------------*/
.p-hn1 {
  position: relative;
  display: block;
  box-sizing: border-box;
  max-width: 500px;
  margin: 24px auto 40px;
  padding: 8px 16px;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(18px, 2.3468057366vw, 24px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  word-break: auto-phrase;
  background: #fff;
}
.p-hn1::before, .p-hn1::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 1px;
  height: calc(100% + 16px);
  background: #333;
}
.p-hn1::before {
  left: 8px;
}
.p-hn1::after {
  right: 8px;
}

.p-hn2 {
  font-size: clamp(24px, 3.1290743155vw, 30px);
  border-bottom: solid 1px #666;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-family: "Zen Old Mincho", serif;
  word-break: auto-phrase;
}
@media (max-width: 767px) {
  .p-hn2 {
    font-size: 5.6vw;
  }
}

.p-hn3 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
}
.p-hn3 span {
  display: block;
}
.p-hn3 span:first-child {
  font-size: clamp(20px, 2.6075619296vw, 30px);
}
.p-hn3 span:last-child {
  font-size: clamp(24px, 3.1290743155vw, 40px);
  font-weight: 600;
  color: #d5be59;
}

.p-hn4 {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(20px, 2.6075619296vw, 30px);
}
.p-hn4 span {
  font-size: clamp(24px, 3.1290743155vw, 40px);
  color: #d5be59;
  font-weight: 600;
}

/*------------------
  page header
------------------*/
.page-header {
  margin-top: 150px;
}
@media (max-width: 767px) {
  .page-header {
    margin-top: 100px;
  }
}
.page-header h2 {
  font-size: clamp(30px, 3.9113428944vw, 40px);
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.2em;
  border-bottom: solid 5px #e6e6e6;
  display: flex;
  align-items: flex-end;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .page-header h2 {
    font-size: 6.4vw;
  }
}
.page-header__txt p {
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 767px) {
  .page-header__txt p {
    font-size: 16px;
  }
}

/*------------------
  aos
------------------*/
[data-aos=fade] {
  transform: translate(0) !important;
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos=fade].aos-animate {
  opacity: 1;
  transform: translate(0) !important;
}

/* =================================================== *
  header
 * =================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.5s, color 0.5s;
  background: rgba(255, 255, 255, 0.8);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 4%;
}
.header-inner .logo {
  position: relative;
  z-index: 1200;
  transition: filter 0.3s;
  max-width: 150px;
}
@media (max-width: 767px) {
  .header-inner .logo {
    width: 50%;
  }
}
.header-inner .logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* -----------------------
  ハンバーガーボタン
----------------------- */
.menu-trigger {
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 1200;
  cursor: pointer;
  background: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}
.menu-trigger span {
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #fff;
  transition: all 0.4s ease;
}
.menu-trigger span:nth-child(1) {
  top: 30%;
}
.menu-trigger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-trigger span:nth-child(3) {
  bottom: 30%;
}
.menu-trigger.active span:nth-child(1) {
  top: 50%;
  transform: rotate(-45deg);
}
.menu-trigger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.menu-trigger.active span:nth-child(3) {
  bottom: 50%;
  transform: rotate(45deg);
}

/* -----------------------
  メインナビ（右から出る）
----------------------- */
.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100dvh;
  z-index: 1050;
  transition: right 0.5s ease;
  display: flex;
  justify-content: flex-end;
  transition: right 0.8s cubic-bezier(0.2, 0, 0.5, 0);
}
@supports not (height: 100dvh) {
  .main-nav {
    height: 100vh;
  }
}
.main-nav.is-active {
  right: 0;
  transition: right 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-nav .nav-inner {
  width: 30%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 100px 40px 60px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1290px) {
  .main-nav .nav-inner {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .main-nav .nav-inner {
    width: 100%;
    padding: 100px 40px 120px;
    align-items: center;
    text-align: center;
  }
}
.main-nav .nav-list li a {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .main-nav .nav-list li a:hover {
    opacity: 0.6;
  }
}
.main-nav .nav-list1 {
  width: 100%;
  display: grid;
  gap: 10px;
  margin-bottom: 50px;
}
.main-nav .nav-list1 li a {
  font-size: 16px;
  border: solid 1px #aaa;
  padding: 10px;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .main-nav .nav-list1 li {
    width: 100%;
    border-bottom: 1px solid #fff;
    display: block;
  }
  .main-nav .nav-list1 li a {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
  }
}
.main-nav .nav-list2 {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .main-nav .nav-list2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
}
.main-nav .nav-list2 li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .main-nav .nav-list2 li:not(:last-child) {
    margin-bottom: 0;
  }
}
.main-nav .nav-list2 li a {
  font-size: 18px;
  gap: 15px;
}
@media (max-width: 767px) {
  .main-nav .nav-list2 li a {
    font-size: 16px;
  }
}
.main-nav .nav-list3 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .main-nav .nav-list3 {
    justify-content: center;
    gap: 30px;
  }
}
.main-nav .nav-list3 li {
  display: flex;
  align-items: center;
}
.main-nav .nav-list3 li i {
  font-size: 2em;
}

/* =================================================== *

  footer

* =================================================== */
/*------------------
  footer
------------------*/
footer {
  background: #F9F9F9;
  padding: 0 20px;
}

.footer__logo {
  max-width: 400px;
  margin: 0 auto 30px;
}
.footer__catch {
  font-size: 17px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footer__catch {
    font-size: clamp(12px, 3.75vw, 17px);
  }
}
.footer__sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.footer__sns ul i {
  font-size: 2em;
}
.footer__sns ul a {
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__sns ul a:hover {
    opacity: 0.5;
  }
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: solid 1px #000;
  margin-top: 50px;
  padding-top: 50px;
  gap: 20px;
}
@media (max-width: 992px) {
  .footer__inner {
    display: block;
    padding-top: 30px;
  }
}
.footer__inner > .left {
  flex-basis: 60%;
}
.footer__inner > .right {
  flex-basis: 40%;
  display: grid;
  gap: 20px;
}
@media (max-width: 1290px) {
  .footer__inner > .right {
    flex-basis: 50%;
  }
}
@media (max-width: 992px) {
  .footer__inner > .right {
    flex-basis: 30%;
    display: block;
  }
}
@media (max-width: 767px) {
  .footer__inner > .right {
    flex-basis: 35%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}
.footer__ttl {
  font-size: 25px;
  margin-bottom: 30px;
}
.footer__ttl span {
  font-size: 12px;
  display: block;
  margin-top: 10px;
}
.footer__add {
  line-height: 2;
  margin-bottom: 30px;
}
.footer__add a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer__add {
    font-size: 12px;
  }
}
.footer__tel {
  font-size: 35px;
}
@media (max-width: 767px) {
  .footer__tel {
    font-size: clamp(26px, 8.125vw, 35px);
  }
}
.footer__tel span {
  font-size: 23px;
}
@media (max-width: 767px) {
  .footer__tel span {
    font-size: clamp(18px, 5.625vw, 23px);
  }
}
.footer__time {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer__time {
    font-size: 12px;
  }
}
.footer__area {
  line-height: 2;
}
@media (max-width: 767px) {
  .footer__area {
    font-size: 12px;
  }
}
.footer__area small {
  font-size: 12px;
}
@media (max-width: 992px) {
  .footer__nav {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .footer__nav {
    margin-bottom: 0;
  }
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__nav ul li a {
  display: flex;
  align-items: center;
  font-size: 14px;
  position: relative;
  padding-left: 2em;
}
@media (max-width: 767px) {
  .footer__nav ul li a {
    font-size: 12px;
  }
}
.footer__nav ul li a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #000;
  margin-right: 15px;
}
.footer__nav ul li a img {
  filter: brightness(0);
  transition: filter 0.3s;
  width: 1em;
  margin-left: 8px;
}
.footer__nav2 ul li:not(:last-child) {
  margin-bottom: 20px;
}
.footer__nav2 ul li a {
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__nav2 ul li a {
    font-size: 12px;
  }
}
.footer__nav2 ul li img {
  filter: brightness(0);
  transition: filter 0.3s;
}
.footer__nav2 ul li:nth-child(1) img {
  width: 30px;
}
.footer__nav2 ul li:nth-child(2) img {
  width: 26px;
}
.footer__copy {
  padding-bottom: 50px;
  font-size: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__copy {
    padding-bottom: 70px;
  }
}
.footer__fix {
  display: none;
}
@media (max-width: 767px) {
  .footer__fix {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
  }
}
.footer__fix > div {
  position: relative;
}
.footer__fix > div::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 60%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #000;
}
.footer__fix > div > a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: clamp(10px, 3.125vw, 12px);
  height: 100%;
}
.footer__fix > div i {
  font-size: 1.4em;
}

/* =================================================== *

  top

* =================================================== */
/*------------------
  kv
------------------*/
.top-kv {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .top-kv {
    aspect-ratio: 9/16;
    height: auto;
  }
}
.top-kv .swiper {
  width: 100%;
  height: 100%;
}
.top-kv .swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.top-kv .swiper-slide {
  width: auto;
  height: 100%;
  overflow: hidden;
}
.top-kv .swiper-slide .slide-img {
  width: auto;
  height: 100%;
  transform: scale(1);
  transition: transform 7s linear;
}
.top-kv .swiper-slide .slide-img img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.top-kv__copy {
  position: absolute;
  bottom: 5cqmin;
  left: 5%;
  z-index: 30;
  color: #333;
  width: auto;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
}
@media (max-width: 767px) {
  .top-kv__copy {
    bottom: 10%;
    width: 90%;
    padding: 10px;
  }
}
.top-kv__copy .main-copy {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(24px, 3.1290743155vw, 30px);
  letter-spacing: 0.15em;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .top-kv__copy .main-copy {
    font-size: 5vw;
  }
}
.top-kv__copy .sub-copy {
  font-size: clamp(11px, 1.4341590613vw, 14px);
  letter-spacing: 0.2em;
  gap: 15px;
  font-weight: 500;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .top-kv__copy .sub-copy {
    font-size: 3vw;
  }
}

/*------------------
  night
------------------*/
.top-night p {
  display: flex;
  justify-content: center;
}

/*------------------
  furisode
------------------*/
.top-furisode {
  background: url("../img/page/front-page/bg2.png") left top/30% no-repeat, url("../img/page/front-page/bg.png") right bottom/30% no-repeat, linear-gradient(180deg, rgb(240, 245, 237) 0%, rgb(255, 255, 255) 50%, rgba(240, 233, 233, 0.5) 100%);
}
@media (max-width: 767px) {
  .top-furisode {
    background: url("../img/page/front-page/bg2.png") left top/30% no-repeat, url("../img/page/front-page/bg.png") right bottom/50% no-repeat, linear-gradient(180deg, rgb(240, 245, 237) 0%, rgb(255, 255, 255) 90%, rgba(240, 233, 233, 0.5) 100%);
  }
}
.top-furisode__flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .top-furisode__flex {
    flex-direction: column;
  }
}
.top-furisode__flex > .left {
  flex-basis: 42%;
}
@media (max-width: 767px) {
  .top-furisode__flex > .left {
    margin-bottom: 30px;
  }
}
.top-furisode__flex > .right {
  flex-basis: 52%;
}
.top-furisode__txt p {
  font-size: 18px;
  line-height: 2.6;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 992px) {
  .top-furisode__txt p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .top-furisode__txt p {
    font-size: 14px;
  }
}
.top-furisode__index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .top-furisode__index {
    grid-template-columns: repeat(1, 1fr);
  }
}
.top-furisode__index > div {
  aspect-ratio: 1/1;
  display: block;
  height: 100%;
  background: #edebe0;
  color: #444;
  text-align: center;
  border-radius: 3px;
  border: double 4px #CB7688;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .top-furisode__index > div {
    aspect-ratio: auto;
    flex-direction: row;
    padding: 10px;
    gap: 10px;
  }
}
.top-furisode__num {
  margin-top: -30px;
  font-size: 23px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .top-furisode__num {
    margin-top: 0;
    margin-bottom: 0;
    width: 2.5em;
    font-size: 16px;
  }
}
.top-furisode__num::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 1.2em;
  height: 1px;
  background: #CB7688;
}
.top-furisode__catch {
  width: 90%;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(20px, 2.6075619296vw, 24px);
  background: #CB7688;
  color: #fff;
  padding: 10px 5px;
}
@media (max-width: 767px) {
  .top-furisode__catch {
    font-size: 16px;
    padding: 10px 20px;
    text-align: left;
  }
}
.top-furisode__alert {
  text-align: center;
  font-size: 12px;
}
.top-furisode__link {
  text-align: center;
}

/*------------------
  rental
------------------*/
.top-rental__img {
  border: double 4px #CB7688;
  padding: 10px;
  margin-bottom: 50px;
}
.top-rental__ttl {
  text-align: center;
  font-size: clamp(20px, 2.6075619296vw, 30px);
  margin-bottom: 20px;
}
.top-rental__txt p {
  text-align: center;
}
@media (max-width: 992px) {
  .top-rental__txt p {
    text-align: left;
  }
}

/*------------------
  furinfo
------------------*/
.top-info__inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .top-info__inner {
    flex-direction: column;
  }
}
.top-info__inner > .left {
  flex-basis: 48%;
  border: double 4px #ddd;
  padding: 5px;
  background: #fff;
}
@media (max-width: 767px) {
  .top-info__inner > .left {
    margin-bottom: 30px;
  }
}
.top-info__inner > .right {
  flex-basis: 48%;
  background: #eee;
  padding: clamp(60px, 7.8226857888vw, 100px) 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .top-info__inner > .right {
    padding: 20px;
  }
}
.top-info__inner > .right p {
  line-height: 2.5;
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 767px) {
  .top-info__inner > .right p {
    font-size: 16px;
  }
}

/*------------------
  care
------------------*/
.top-care {
  background: url("../img/page/front-page/bg.gif");
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4/1;
}
@media (max-width: 767px) {
  .top-care {
    aspect-ratio: auto;
  }
}
.top-care__inner {
  position: relative;
  z-index: 1;
  color: #fff;
}
.top-care__ttl {
  font-size: 30px;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 40px;
  padding-bottom: 10px;
  text-align: center;
  position: relative;
}
.top-care__ttl::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 1.2em;
  height: 1px;
  background: #fff;
}
.top-care__txt p {
  text-align: center;
}
@media (max-width: 992px) {
  .top-care__txt p {
    text-align: left;
  }
}
.top-care__link {
  text-align: center;
}

/* =================================================== *

  about

* =================================================== */
/*------------------
  about
------------------*/
.about__logo {
  max-width: 200px;
  margin: 0 auto;
  width: 30%;
}
.about__greeting p {
  font-size: clamp(16px, 1.6129032258vw, 18px);
  line-height: 2.6;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
}
@media (max-width: 992px) {
  .about__greeting p {
    font-size: 14px;
  }
}
.about__img {
  max-width: 600px;
  margin: 0 auto;
}
.about__map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/* =================================================== *

  care

* =================================================== */
/*------------------
  care
------------------*/
.care__img {
  max-width: 600px;
  margin: 0 auto;
}

/* =================================================== *

  kimono

* =================================================== */
/*------------------
  header
------------------*/
.kimono-header__img {
  max-width: 600px;
  margin: 0 auto;
}

/*------------------
  price
------------------*/
.kimono-price {
  background: #F9F9F9;
  overflow: hidden;
  font-family: "Zen Old Mincho", serif;
}
.kimono-price + .kimono-price {
  margin-top: 2em;
}
.kimono-price__ttl {
  background: #999;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .kimono-price__ttl {
    font-size: 18px;
  }
}
.kimono-price__body {
  padding: 30px 20px 20px;
}
.kimono-price__flex {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .kimono-price__flex {
    flex-direction: column;
  }
}
.kimono-price__cat {
  border: solid 2px #999;
  padding: 5px 10px;
  font-weight: 700;
  color: #999;
}
.kimono-price__gaku {
  display: flex;
  align-items: baseline;
  font-weight: 600;
}
.kimono-price__gaku .num {
  font-weight: bold;
  font-size: 50px;
  line-height: 0.7;
}
.kimono-price__gaku .man {
  font-size: 20px;
}
.kimono-price__gaku .tax {
  font-size: 14px;
}
.kimono-price__alert {
  border-top: solid 1px #999;
  margin-top: 30px;
  padding-top: 20px;
}

/*------------------
  point
------------------*/
.kimono-point {
  display: grid;
  font-family: "Zen Old Mincho", serif;
}
.kimono-point article {
  margin-bottom: 60px;
}
.kimono-point article + article {
  padding-top: 60px;
  border-top: solid #ccc 1px;
}
.kimono-point__img {
  margin-bottom: 30px;
}
.kimono-point__ttl {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.kimono-point__txt p {
  line-height: 1.6;
  display: flex;
  justify-content: center;
}
.kimono-point__link {
  text-align: center;
}

/*------------------
  flow
------------------*/
.kimono-flow dl + dl {
  margin-top: 2em;
}
.kimono-flow dl dt {
  background: #999;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: normal;
  font-size: 18px;
}
.kimono-flow dl dd {
  background: #F9F9F9;
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.kimono-flow__arrow {
  font-size: 3em;
  text-align: center;
  color: #999;
}
.kimono-flow.pink dl dt {
  background: #CB7688;
}

/* =================================================== *

  contact

* =================================================== */
/*------------------
  contact
------------------*/
.contact__box {
  text-align: center;
}
.contact__tel {
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .contact__tel {
    font-size: 7vw;
  }
}