@charset "UTF-8";
/* ------------------------------------------------------------------
intial set
------------------------------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&family=Shippori+Mincho:wght@400;500;600;700&display=swap");
html {
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #242020;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  height: 100%;
  background: #F5F3EF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 400;
}

input,
select,
option,
textarea {
  font-family: "Shippori Mincho", serif;
}

a,
a * {
  -webkit-transition-property: color, border-color, background-color, opacity;
  transition-property: color, border-color, background-color, opacity;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.text-jp {
  font-size: 14px;
  font-weight: 500;
}

.right-arrow {
  width: 19px;
  height: auto;
}

a:active {
  outline: 0;
  color: #242020;
}

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

img[src$=".svg"] {
  width: 100%;
}

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

ul {
  list-style-type: none;
}

ul.ul-disc {
  list-style: disc;
  padding: 0 0 0 0.625rem;
}

ul.ul-circle {
  list-style: circle;
  padding: 0 0 0 0.625rem;
}

ul.ul-square {
  list-style: square;
  padding: 0 0 0 0.625rem;
}

ul.ul-kome > li {
  position: relative;
  padding-left: 0.625rem;
}

ul.ul-kome > li:before {
  content: "※";
  position: absolute;
  left: 0;
  color: #1a1a1a;
}

ol {
  list-style: none;
}

.li-m > li:not(:last-child) {
  margin-bottom: 5rem;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 680px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  font-weight: 600;
}

.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.small-btn a {
  display: block;
  max-width: 100%;
  text-align: center;
  width: 160px;
  margin-top: 15px;
  position: relative;
  color: #242020;
  padding: 30px 10px;
}
.small-btn a:hover {
  text-decoration: unset;
  background-color: #242020;
  color: #fff;
}

/* -----------------------------------------
画面調整
-------------------------------------------- */
.center-area {
  width: 100%;
}
@media screen and (min-width: 681px) {
  .center-area {
    width: 500px;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #F5F3EF;
    -webkit-transform: scale(1);
            transform: scale(1);
    overflow-y: scroll;
    scrollbar-width: none;
  }
}

/* -----------------------------------------
タイトル
-------------------------------------------- */
.heading-en {
  font-family: "Hina Mincho", serif;
  font-size: 32px;
  letter-spacing: 3px;
}

/* -----------------------------------------
utility
-------------------------------------------- */
.u-sp {
  display: none !important;
}

@media screen and (max-width: 1169px) {
  .u-sp {
    display: block !important;
  }
}
.u-pc {
  display: block !important;
}

@media screen and (max-width: 1169px) {
  .u-pc {
    display: none !important;
  }
}
/* -----------------------------------------
出現アニメーション
-------------------------------------------- */
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px); /* 下から少し持ち上がる */
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 上から下にスライドしてフェードイン */
.fade-in-top {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px); /* 上に少しズラす */
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.fade-in-top.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* -----------------------------------------
背景ー丸
-------------------------------------------- */
.bk_round-area {
  position: relative;
  margin-top: 30px;
  padding-top: 4rem;
  padding-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

.bk_round-inner {
  position: relative;
  z-index: 2;
}

.bk_round-contents {
  background-color: #fff;
  padding-inline: 30px;
  padding-bottom: 50px;
}
@media screen and (max-width: 680px) {
  .bk_round-contents {
    padding-inline: 20px;
  }
}

.bk_round {
  aspect-ratio: 415/400;
  width: 570px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 680px) {
  .bk_round {
    width: clamp(25.938rem, -15.018rem + 174.74vw, 68.75rem);
  }
}

/* -----------------------------------------
お問合せ-CV
-------------------------------------------- */
.button-link {
  position: relative;
  color: #242020;
  border: 1px solid #242020;
  border-radius: 100px;
  text-decoration: none;
  padding-block: 22px;
  padding-inline: 30px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.button-link:after {
  content: "";
  width: 20px;
  height: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 15px;
}
.button-link:hover {
  opacity: 0.8;
  text-decoration: unset;
}
@media screen and (max-width: 680px) {
  .button-link:hover {
    opacity: unset;
  }
}

.cv-1:after, .cv-2:after {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cv-1:hover::after, .cv-2:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.cv-1:after {
  background-image: url(../img/svg/arrow-right.svg);
}
.cv-1:hover {
  background-color: unset;
}

/* -----------------------------------------
お問合せ-CV
-------------------------------------------- */
.section-contact .contact_cv {
  margin-top: -68px;
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 30px;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 680px) {
  .section-contact .contact_cv {
    padding-block: 40px;
    padding-inline: 27px 0px;
  }
}
.section-contact .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section-contact .tel-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.section-contact .tel-number img {
  width: 22px;
  height: auto;
  margin-top: 10px;
}
@media screen and (max-width: 680px) {
  .section-contact .tel-number img {
    width: 19px;
  }
}
.section-contact .tel-number .tel-num {
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 3px;
}
@media screen and (max-width: 680px) {
  .section-contact .tel-number .tel-num {
    font-size: 32px;
  }
}
.section-contact .tel-time p {
  font-size: 16.5px;
}
.section-contact .heading-text {
  line-height: 1.7;
}
.section-contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.section-contact .cv-2 {
  background-color: #242020;
  color: #fff;
}
.section-contact .cv-2:after {
  background-image: url(../img/svg/arrow-right_white.svg);
}

.section-contact .contact_cv::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  width: calc(100% - 30px);
}
@media screen and (max-width: 680px) {
  .section-contact .contact_cv::before {
    width: calc(100% - 20px);
  }
}
.section-contact .contact-heading {
  background-image: url(../img/contact/contact-bk.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 35px 95px;
}
.section-contact h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 3px;
}
.section-contact .heading-en {
  font-size: 45px;
}