@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

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

q, blockquote {
  quotes: none;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

:root {
  --rate-vw: 0.0769230769vw;
  --rate-fz: 0.0769230769vw;
  --cap: 1;
}
@media screen and (max-width: 767px) {
  :root {
    --rate-vw: 0.2666666667vw;
    --rate-fz: 0.2666666667vw;
    --cap: 10;
  }
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #fff;
  background: #000;
  font-family: "Shippori Mincho B1", serif;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
  scroll-behavior: auto;
}

a {
  cursor: pointer;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  margin-inline: auto;
  width: clamp(0px, 1020 * var(--rate-vw), 1020px * var(--cap));
  max-width: 1020px;
}
@media screen and (max-width: 767px) {
  .inner {
    width: clamp(0px, 340 * var(--rate-vw), 340px * var(--cap));
  }
}

/* タイトル
------------------------------*/
.c-section-header {
  text-align: center;
}

.c-section-title {
  font-size: clamp(0px, 35 * var(--rate-fz), 35px * var(--cap));
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.2em;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 767px) {
  .c-section-title {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
    line-height: 1.5;
  }
}

.c-section-title__en {
  display: block;
  font-size: clamp(0px, 16 * var(--rate-vw), 16px * var(--cap));
  font-weight: 400;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .c-section-title__en {
    font-size: clamp(0px, 12 * var(--rate-fz), 12px * var(--cap));
  }
}

.c-lead {
  margin-top: 0.5em;
  letter-spacing: 0.1em;
  font-size: clamp(0px, 16 * var(--rate-vw), 16px * var(--cap));
  font-weight: 500;
  line-height: 1.875;
}
@media (max-width: 767px) {
  .c-lead {
    margin-top: 2em;
    text-align: left;
  }
}

/* ボタン
------------------------------*/
.c-btn {
  display: inline-block;
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 500;
  line-height: 1.7222222222;
  letter-spacing: 0.2em;
  position: relative;
  padding-right: 4.2em; /*  */
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/icon_arrow.svg) no-repeat center center/contain;
  width: 3.3em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .c-btn {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  }
}

/* ブロック
------------------------------*/
.c-info-block {
  display: flex;
  justify-content: space-between; /*  */
  align-items: flex-end;
  position: relative;
}
.c-info-block__text {
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .c-info-block__text {
    width: 100%;
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

.c-info-block__title {
  text-align: right;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-family: "Zen Old Mincho", serif;
  position: relative;
}
.c-info-block__title::before {
  content: "";
  position: absolute;
  top: -3.6em;
  left: 2em;
  transform: rotate(-45deg);
  background: #fff;
  width: 100%;
  height: 1px;
}
@media (max-width: 767px) {
  .c-info-block__title {
    width: 100%;
    text-align: left;
    padding-left: 3em;
  }
  .c-info-block__title::before {
    position: absolute;
    width: 5em;
  }
}

/* カードブロック
------------------------------*/
.c-cards {
  display: flex;
  justify-content: space-between;
  gap: 0 clamp(0px, 25 * var(--rate-vw), 25px * var(--cap));
}
@media (max-width: 767px) {
  .c-cards {
    flex-direction: column;
    gap: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap)) 0;
  }
}

.c-card {
  width: calc(50% - clamp(0px, 25 * var(--rate-vw), 25px * var(--cap)) / 2);
  border: 1px solid #fff;
  position: relative;
  padding: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap)) clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
}
.c-card::after {
  content: "";
  position: absolute;
  top: clamp(0px, 33 * var(--rate-vw), 33px * var(--cap));
  left: calc(clamp(0px, 42 * var(--rate-vw), 42px * var(--cap)) * -1);
  transform: rotate(-45deg);
  background: #fff;
  width: clamp(0px, 150 * var(--rate-vw), 150px * var(--cap));
  height: 1px;
}
@media (max-width: 767px) {
  .c-card {
    width: 100%;
    padding: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap)) clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  }
  .c-card::after {
    top: 20px; 
    left: -30px; 
    width: 100px; 
    transform: rotate(-45deg);
  }
}

.c-card--bk {
  border: 1px solid #000;
  color: #000;
}
.c-card--bk::after {
  background: #000;
}

/* フォント色
------------------------------*/
.u-text-bk {
  color: #000;
}

.u-bold {
  font-weight: 600;
}

.u-le-01 {
  letter-spacing: 0.1em;
}

/*------------------------------
header
------------------------------*/
header {
  padding: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap)) 0;
}
@media (max-width: 767px) {
  header {
    padding: clamp(0px, 10 * var(--rate-vw), 10px * var(--cap)) 0;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .header__inner {
    width: 95%;
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .header__inner {
    width: 100%;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .header__content {
    padding-right: 4%;
  }
}

.header__logo {
  width: clamp(0px, 222 * var(--rate-vw), 222px * var(--cap));
}
@media (max-width: 767px) {
  .header__logo {
    width: 50%;
  }
}

.header__tel {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  display: flex;
  gap: 0 clamp(0px, 16 * var(--rate-vw), 16px * var(--cap));
  padding-right: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  line-height: 1.4;
  position: relative;
}
.header__tel::before {
  content: "";
  position: absolute;
  background: #fff;
  transform: translate(0%, -50%);
  top: 50%;
  right: 0%;
  width: 1px;
  height: 78%;
}
.header__tel::after {
  content: "";
  position: absolute;
  background: url(../img/icon_tel.svg) no-repeat center center/100%;
  aspect-ratio: 100/122;
  transform: translate(-110%, -40%);
  width: 8%;
  left: -0.8%;
  top: 50%;
}
.header__tel .header__tel-link {
  letter-spacing: 0.15em;
}
.header__tel .header__tel-link span {
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  letter-spacing: 0.24em;
  text-indent: 0.1em;
  display: inline-block;
}
.header__tel > span {
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .header__tel {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
    padding-right: clamp(0px, 10 * var(--rate-vw), 10px * var(--cap));
    flex-direction: column;
  }
  .header__tel .header__tel-link {
    font-size: clamp(0px, 12 * var(--rate-fz), 12px * var(--cap));
  }
  .header__tel .header__tel-link span {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

.header__line {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  padding-left: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
}
.header__line img {
  width: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
  margin-right: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
}
@media (max-width: 767px) {
  .header__line {
    padding-left: clamp(0px, 10 * var(--rate-vw), 10px * var(--cap));
  }
  .header__line img {
    margin-right: 0;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  margin-right: clamp(0px, 16 * var(--rate-vw), 16px * var(--cap));
}
@media (max-width: 767px) {
  .header__nav {
    margin-right: 0;
    display: none;
  }
}

.header__menu {
  display: flex;
}
.header__menu li a {
  display: inline-block;
}

.drawer-icon {
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
  background: #000;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
  background: #000;
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}

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

.drawer-icon__bar2 {
  top: 8px;
}

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

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  padding: 50px 20px;
  z-index: 299;
  transform: translateX(105%);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-menu li:nth-child(n+2) {
  margin-top: 25px;
}
.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*------------------------------
fv
------------------------------*/
.fv {
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fv__inner {
    width: clamp(0px, 1080 * var(--rate-vw), 1080px * var(--cap));
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .fv__inner {
    width: 100%;
  }
}

.fv__img {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-49.5%, 0%);
  width: 101%;
  max-width: unset;
  max-width: 1313px;
}
@media (max-width: 767px) {
  .fv__img {
    width: 110%;
    top: 15%;
    transform: translate(-49.5%, 30%);
  }
}

.fv__nav {
  padding-top: 8%;
}
@media (max-width: 767px) {
  .fv__nav {
    padding-top: 23%;
  }
}

.fv__menu {
  display: flex;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: row-reverse;
  gap: 0 clamp(0px, 48 * var(--rate-vw), 48px * var(--cap));
}
.fv__menu li a {
  letter-spacing: 0.2em;
  position: relative;
}
.fv__menu li a::before {
  content: "";
  position: absolute;
  background: #fff;
  transform: translate(-50%, -140%);
  width: 1px;
  height: 2em;
  left: 50%;
  top: 0%;
}
@media (min-width: 768px) {
  .fv__menu li a {
    writing-mode: vertical-rl;
  }
}
@media (max-width: 767px) {
  .fv__menu {
    gap: 0;
    position: relative;
    width: 100%;
  }
  .fv__menu li {
    position: absolute;
    top: -100px;
  }
  .fv__menu li:nth-child(1) {
    left: 90%;
  }
  .fv__menu li:nth-child(2) {
    left: 82%;
  }
  .fv__menu li:nth-child(3) {
    left: 74%;
  }
  .fv__menu li a {
    line-height: 1;
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width:599px) {
  .fv__menu li {
    top: -50px;
  }
}

.fv__catch {
  position: absolute;
  writing-mode: vertical-rl;
  font-size: clamp(0px, 40 * var(--rate-fz), 40px * var(--cap));
  font-weight: 500;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  filter: drop-shadow(3px 3px 1px rgb(44, 26, 19));
  top: 0%;
  left: 50%;
  transform: translate(-53%, 6%);
  letter-spacing: 0.2em;
  text-align: center;
  white-space: nowrap;
  line-height: 1.8;
}
.fv__catch span {
  writing-mode: horizontal-tb;
  margin-top: -0.8em;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .fv__catch {
    font-size: clamp(0px, 26 * var(--rate-fz), 26px * var(--cap));
  }
}

.fv__bottom {
  margin-top: clamp(0px, 440 * var(--rate-vw), 440px * var(--cap));
  aspect-ratio: 1300/430;
  position: relative;
  z-index: 10;
}
.fv__bottom::before {
  content: "";
  position: absolute;
  background: url(../img/fv02.webp) no-repeat center top/cover;
  aspect-ratio: 4001/902;
  transform: translate(-50%, 8%);
  width: clamp(0px, 2000 * var(--rate-vw), 2000px * var(--cap));
  left: 50%;
  top: 0;
}
.fv__bottom > .inner {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1300px) {
  .fv__bottom {
    aspect-ratio: unset;
    height: max(430px, 21.5vw);
  }
  .fv__bottom::before {
    width: max(2000px, 100vw);
  }
}
@media (max-width: 767px) {
  .fv__bottom {
    margin-top: 95%;
    padding-bottom: 10%;
  }
  .fv__bottom::before {
    transform: translate(-50%, -10%);
  }
}

.fv__logo {
  width: 32%;
  text-align: center;
  margin: 0 auto;
}
.fv__logo img {
  image-rendering: -webkit-optimize-contrast; /* Safariなどでクッキリさせる */
  image-rendering: crisp-edges;
  /* SVG特有の描画設定 */
  shape-rendering: geometricPrecision; 
}
@media (max-width: 767px) {
  .fv__logo {
    width: 40%;
  }
}

.fv__text {
  text-align: center;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-top: -2.4em;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .fv__text {
    margin-top: 0;
  }
}

/*------------------------------
about
------------------------------*/
.about {
  padding: clamp(0px, 265 * var(--rate-vw), 265px * var(--cap)) 0 clamp(0px, 220 * var(--rate-vw), 220px * var(--cap));
  padding-top: 20%;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  background: url(../img/about-dec.webp) no-repeat center center/100%;
  aspect-ratio: 4001/2562;
  transform: translate(-50%, -50%);
  width: clamp(0px, 2080 * var(--rate-vw), 2080px * var(--cap));
  left: 50%;
  top: 56%;
}
.about > .inner {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1300px) {
  .about {
    padding: max(265px, 13.25vw) 0 max(220px, 11vw);
  }
  .about::before {
    width: max(2080px, 100vw);
  }
}
@media (max-width: 767px) {
  .about {
    padding-bottom: 10%;
  }
}

.about__heading {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin-top: 3.4em;
}
.about__heading strong {
  display: block;
  font-size: clamp(0px, 30 * var(--rate-fz), 30px * var(--cap));
  margin-top: 10px;
}
@media (max-width: 767px) {
  .about__heading {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
  .about__heading strong {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
    line-height: 1.5;
  }
}

.about__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 4%;
}
@media (max-width: 767px) {
  .about__content {
    flex-direction: column;
    gap: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap)) 0;
    margin-top: 10%;
  }
}

.about__body {
  width: 61%;
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap)) 0;
}
@media (max-width: 767px) {
  .about__body {
    width: 100%;
  }
}

.about__message {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.1em;
}

.about__image {
  width: 33.6%;
  aspect-ratio: 342/363;
  overflow: hidden;
  position: relative;
}
.about__image img {
  width: 101%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: unset;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .about__image {
    width: 100%;
    margin: 0 auto;
  }
}

.achievement {
  margin-top: -4%;
}
@media (max-width: 767px) {
  .achievement {
    margin-top: 10%;
  }
}

.achievement__title {
  font-size: clamp(0px, 35 * var(--rate-fz), 35px * var(--cap));
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .achievement__title {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
    margin-top: 60px;
    margin-bottom: 30px;
  }
}

.achievement__list {
  margin-top: 4.3%;
}

.achievement__heading {
  font-size: clamp(0px, 25 * var(--rate-fz), 25px * var(--cap));
  font-weight: 500;
  letter-spacing: normal;
  letter-spacing: 0.2em;
}
.achievement__heading span {
  font-size: clamp(0px, 30 * var(--rate-fz), 30px * var(--cap));
}

.achievement__description {
  margin-top: clamp(0px, 25 * var(--rate-vw), 25px * var(--cap));
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.09em;
}
@media (max-width: 767px) {
  .achievement__heading {
    font-size: clamp(0px, 21 * var(--rate-fz), 21px * var(--cap));
  }
  .achievement__heading span {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  }
}

/*------------------------------
message
------------------------------*/
.message {
  padding: clamp(0px, 160 * var(--rate-vw), 160px * var(--cap)) 0 clamp(0px, 220 * var(--rate-vw), 220px * var(--cap));
  background: url(../img/message-bg.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .message {
    padding: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap)) 0 clamp(0px, 60 * var(--rate-vw), 60px * var(--cap));
  }
}

@media (min-width: 768px) {
  .message__inner {
    width: clamp(0px, 1300 * var(--rate-vw), 1300px * var(--cap));
    width: 100%;
    max-width: unset;
  }
}

.message__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .message__content {
    flex-direction: column;
    gap: clamp(0px, 0 * var(--rate-vw), 40px * var(--cap)) 0;
  }
}

.message__image {
  width: 45%;
}
@media (max-width: 767px) {
  .message__image {
    width: 100%;
  }
}

.message__body {
  width: calc(474 / 1020 * 100%);
  width: 47.5%;
  padding-right: calc(min( 117 * var(--rate-vw),117px) + max(0px, (100vw - 1300px) / 2));
  margin-top: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  position: relative;
}
@media (max-width: 767px) {
  .message__body {
    width: 100%;
    padding-right: 0;
  }
}

.message__text {
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 2.5em;
}
@media (max-width: 767px) {
  .message__text {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  }
}

.message__name {
  font-size: clamp(0px, 25 * var(--rate-fz), 25px * var(--cap));
  font-weight: 400;
  line-height: 2.8;
  letter-spacing: 0.2em;
  font-family: "Zen Old Mincho", serif;
  margin-top: 1em;
  margin-right: 0.8em;
  text-align: right;
}
@media (max-width: 767px) {
  .message__name {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    text-align: right;
  }
}

.message__name-en {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-37%, 135%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: clamp(0px, 90 * var(--rate-fz), 90px * var(--cap));
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.22);
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 767px) {
  .message__name-en {
    white-space: nowrap;
    font-size: clamp(0px, 40 * var(--rate-fz), 40px * var(--cap));
    left: -30px;
    bottom: 21px;
    right: 0;
    transform: translate(0%, 135%);
    font-weight: 400;
  }
}

.profile {
  margin-top: clamp(0px, 110 * var(--rate-vw), 110px * var(--cap));
  padding: 0 3.3%;
}
@media (max-width: 767px) {
  .profile {
    margin-top: clamp(0px, 70 * var(--rate-vw), 70px * var(--cap));
    padding: 0;
  }
}

.profile__text {
  width: 67%;
}
@media (max-width: 767px) {
  .profile__text {
    width: 100%;
    font-size: clamp(0px, 13 * var(--rate-fz), 13px * var(--cap));
  }
}

.profile__title {
  position: absolute;
  bottom: 0%;
  right: 0%;
  transform: translate(-30%, -50%);
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  width: calc(200 / 1020 * 100%);
}
@media (max-width: 767px) {
  .profile__title {
    transform: translate(0%, 100%);
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    bottom: -2em;
    line-height: 1.8;
  }
  .profile__title::before {
    top: -0.3em;
    left: 0em;
  }
}

/*------------------------------
problem_cta_compare-wrap
------------------------------*/
.problem_cta_compare-wrap {
  position: relative;
  overflow: hidden;
}
.problem_cta_compare-wrap::before {
  content: "";
  position: absolute;
  background: url(../img/cta-dec.webp) no-repeat center center/100%;
  aspect-ratio: 4001/2548;
  transform: translate(-50%, -50%);
  width: clamp(0px, 2000 * var(--rate-vw), 2000px * var(--cap));
  left: 50%;
  top: 60%;
}
.problem_cta_compare-wrap > section {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1300px) {
  .problem_cta_compare-wrap::before {
    width: max(2000px, 100vw);
  }
}

/*------------------------------
problem
------------------------------*/
.problem {
  padding: clamp(0px, 250 * var(--rate-vw), 250px * var(--cap)) 0 clamp(0px, 135 * var(--rate-vw), 135px * var(--cap));
}
@media (max-width: 767px) {
  .problem {
    padding: clamp(0px, 75 * var(--rate-vw), 75px * var(--cap)) 0;
  }
}

.problem__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap)) clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  margin-top: 6%;
}
@media (max-width: 767px) {
  .problem__list {
    flex-direction: column;
    gap: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap)) 0;
    margin-top: 10%;
  }
}

.problem__item {
  width: calc(33.3% - clamp(0px, 30 * var(--rate-vw), 30px * var(--cap)) * 2 / 3);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .problem__item {
    width: 100%;
  }
}

.problem__label {
  display: flex;
  align-items: flex-end;
}

.problem__number {
  font-size: clamp(0px, 43 * var(--rate-fz), 43px * var(--cap));
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 0.85;
}

.problem__tag {
  font-size: clamp(0px, 15 * var(--rate-fz), 15px * var(--cap));
  font-weight: 400;
  line-height: 1.7333333333;
  letter-spacing: 0.2em;
  margin-left: clamp(0px, 15 * var(--rate-vw), 15px * var(--cap));
  margin-bottom: 2px;
}

.problem__tag--sm {
  font-size: clamp(0px, 13 * var(--rate-fz), 13px * var(--cap));
  margin-left: clamp(0px, 6 * var(--rate-vw), 6px * var(--cap));
}

.problem__conetnt {
  flex: 1;
  padding: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  background: #fff;
  color: #000;
}

.problem__heading {
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 500;
  line-height: 1.3888888889;
  letter-spacing: 0.1em;
  padding-bottom: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  border-bottom: 1px solid #000;
}

.problem__text {
  padding-top: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  font-size: clamp(0px, 15 * var(--rate-vw), 15px * var(--cap));
  font-weight: 400;
  line-height: 1.7333333333;
  letter-spacing: 0.1em;
}

/*------------------------------
cta
------------------------------*/
.cta__heading {
  font-size: clamp(0px, 35 * var(--rate-fz), 35px * var(--cap));
  font-weight: 500;
  line-height: 2;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  padding-bottom: 0.7em;
  border-bottom: 1px solid #fff;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .cta__heading {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
    line-height: 1.7;
    padding-bottom: 1em;
  }
}

.cta__body {
  margin-top: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5.7%;
  padding-right: 7.3%;
}
@media (max-width: 767px) {
  .cta__body {
    flex-direction: column;
    gap: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap)) 0;
  }
}

.cta__message {
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 400;
  line-height: 1.7222222222;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .cta__message {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  }
}

@media (max-width: 767px) {
  .cta__button {
    text-align: right;
  }
}

/*------------------------------
compare
------------------------------*/
.compare {
  padding: clamp(0px, 430 * var(--rate-vw), 430px * var(--cap)) 0 clamp(0px, 200 * var(--rate-vw), 200px * var(--cap));
}
@media (max-width: 767px) {
  .compare {
    padding: clamp(0px, 100 * var(--rate-vw), 100px * var(--cap)) 0;
  }
}

.compare__lead {
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 2.6em;
}
@media (max-width: 767px) {
  .compare__lead {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    line-height: 1.7;
    margin-top: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  }
}

.compare__heading {
  font-size: clamp(0px, 25 * var(--rate-fz), 25px * var(--cap));
  font-weight: 500;
  line-height: 2.16;
  margin-top: 2.4em;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .compare__heading {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    line-height: 1.7;
    margin-top: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  }
}

.compare__content {
  background: #fff;
  padding: 4% 0 7%;
  display: flex;
  margin-top: 4%;
}
@media (max-width: 767px) {
  .compare__content {
    flex-direction: column;
    padding: 0 clamp(0px, 25 * var(--rate-vw), 25px * var(--cap));
    margin-top: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  }
}

.compare__block {
  width: 50%;
  padding: 0 clamp(0px, 65 * var(--rate-vw), 65px * var(--cap));
}
.compare__block:first-child {
  border-right: 1px solid #3b1c0d;
}
@media (max-width: 767px) {
  .compare__block {
    width: 100%;
    padding: clamp(0px, 25 * var(--rate-vw), 25px * var(--cap)) 0 clamp(0px, 30 * var(--rate-vw), 30px * var(--cap)) ;
  }
  .compare__block:first-child {
    border-right: none;
    border-bottom: 1px solid #3b1c0d;
  }
}

.compare__label {
  font-size: clamp(0px, 25 * var(--rate-fz), 25px * var(--cap));
  font-weight: 500;
  line-height: 2.16;
  letter-spacing: 0.2em;
  color: #000;
}
@media (max-width: 767px) {
  .compare__label {
    line-height: 1;
    margin-bottom: 0.5em;
    display: inline-block;
  }
}

.compare__description {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #000;
}
@media (min-width: 768px) {
  .compare__description {
    height: 4lh;
  }
}

.compare__image {
  margin-top: 6%;
}

.compare-info {
  margin-top: clamp(0px, 110 * var(--rate-vw), 110px * var(--cap));
  padding: 0 6.9%;
}
@media (max-width: 767px) {
  .compare-info {
    margin-top: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap));
    padding: 0;
  }
}

.compare-info__text {
  width: 67%;
}
@media (max-width: 767px) {
  .compare-info__text {
    width: 100%;
  }
}

.compare-info__title {
  position: absolute;
  bottom: 0%;
  right: 0%;
  transform: translate(-30%, -50%);
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  width: clamp(0px, 200 * var(--rate-vw), 200px * var(--cap));
}
.compare-info__title::before {
  left: -2.6em;
  top: -2.6em;
}
@media (max-width: 767px) {
  .compare-info__title {
    transform: translate(0%, 300%);
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .compare-info__title::before {
    top: -0.3em;
    left: 0em;
  }
}

/*------------------------------
pricing
------------------------------*/
.pricing {
  padding: clamp(0px, 190 * var(--rate-vw), 190px * var(--cap)) 0 clamp(0px, 320 * var(--rate-vw), 320px * var(--cap));
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  background: url(../img/about-dec.webp) no-repeat center center/100%;
  aspect-ratio: 4001/2562;
  transform: translate(-54%, 42%);
  width: clamp(0px, 2080 * var(--rate-vw), 2080px * var(--cap));
  left: 50%;
  bottom: 0;
}
.pricing > .inner {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1300px) {
  .pricing::before {
    width: max(2080px, 108.6161879896vw);
  }
}
@media (max-width: 767px) {
  .pricing {
    padding: clamp(0px, 75 * var(--rate-vw), 75px * var(--cap)) 0;
  }
}

.pricing__header {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .pricing__header {
    display: block;
  }
}

.pricing__header-body {
  padding-right: clamp(0px, 70 * var(--rate-vw), 70px * var(--cap));
  border-right: 1px solid #fff;
}
.pricing__header-body h2 {
  line-height: 1;
}
@media (max-width: 767px) {
  .pricing__header-body {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #fff;
    padding-bottom: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  }
}

.pricing__note {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 500;
  letter-spacing: 0.2em;
  font-family: "Zen Old Mincho", serif;
  margin-top: 1.6em;
}

.pricing__header-button {
  padding-left: clamp(0px, 70 * var(--rate-vw), 70px * var(--cap));
}
@media (max-width: 767px) {
  .pricing__header-button {
    text-align: right;
    width: 100%;
    padding-left: 0;
    padding-top: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
  }
}

.pricing__content {
  margin-top: clamp(0px, 70 * var(--rate-vw), 70px * var(--cap));
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 70 * var(--rate-vw), 70px * var(--cap)) 0;
}

.pricing__heading {
  font-size: clamp(0px, 30 * var(--rate-fz), 30px * var(--cap));
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 767px) {
  .pricing__heading {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
}

.pricing__lead {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-top: 1.5em;
}

.pricing__table {
  table-layout: fixed;
  width: 100%;
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.2em;
  margin-top: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
}
.pricing__table thead th {
  background: #605f66;
  width: 33.3%;
  text-align: center;
}
.pricing__table thead th:not(:last-child) {
  border-right: 1px solid #a6a6a6;
}
.pricing__table tbody th {
  background: #efefef;
  color: #000;
  padding-left: 3em;
  border-bottom: 1px solid #a6a6a6;
  border-right: 1px solid #a6a6a6;
  letter-spacing: 0.1em;
}
.pricing__table tbody td {
  background: #fff;
  text-align: center;
  color: #000;
  border-bottom: 1px solid #a6a6a6;
  border-right: 1px solid #a6a6a6;
}
@media (min-width: 768px) {
  .pricing__table tbody td {
    line-height: 1;
    height: clamp(0px, 45 * var(--rate-vw), 45px * var(--cap));
  }
}
@media (max-width: 767px) {
  .pricing__table {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
  .pricing__table tbody th {
    line-height: 1.3;
    padding: 0.5em;
  }
}

.pricing__table--option {
  width: clamp(0px, 510 * var(--rate-vw), 510px * var(--cap));
}
.pricing__table--option tbody th {
  padding-left: 3.5em;
}
@media (max-width: 767px) {
  .pricing__table--option {
    width: 100%;
  }
  .pricing__table--option tbody th {
    padding-left: 1.8em;
  }
}

.pricing__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1%;
}
@media (max-width: 767px) {
  .pricing__wrapper {
    flex-direction: column;
    gap: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap)) 0;
  }
}

@media (min-width: 768px) {
  .pricing__wrapper--02 {
    margin-top: 4%;
  }
}
@media (max-width: 767px) {
  .pricing__wrapper--02 {
    margin-top: 4%;
  }
}

.pricing__body {
  width: calc(590 / 1020 * 100%);
}
@media (max-width: 767px) {
  .pricing__body {
    width: 100%;
  }
}

.pricing__image {
  width: 35.4%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.pricing__image img {
  width: 101%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: unset;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .pricing__image {
    width: 100%;
  }
}

.pricing__extra {
  margin-top: clamp(0px, 35 * var(--rate-vw), 35px * var(--cap));
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.pricing__service {
  display: flex;
}
@media (max-width: 767px) {
  .pricing__service {
    display: block;
  }
}

.pricing__service-item {
  display: flex;
  flex-direction: column;
  width: 50%;
  color: #000;
}
.pricing__service-item dt:first-of-type, .pricing__service-item dd:first-of-type {
  border-right: 1px solid #a6a6a6;
}
.pricing__service-item dt {
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  background: #efefef;
  padding: 1.4em 0;
  border-bottom: 1px solid #a6a6a6;
}
.pricing__service-item dd {
  flex: 1;
  padding: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap)) 14% clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
  background: #fff;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.2em;
}
.pricing__service-item dd strong {
  display: block;
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  text-align: center;
  margin-bottom: 1.2em;
}
@media (max-width: 767px) {
  .pricing__service-item {
    width: 100%;
  }
  .pricing__service-item dd {
    padding: 5% 5%;
    letter-spacing: 0.1em;
  }
}

@media (min-width: 768px) {
  .pricing__table--area {
    width: clamp(0px, 425 * var(--rate-vw), 425px * var(--cap));
  }
}

/*------------------------------
flow-cta-wrap
------------------------------*/
.flow-cta-wrap {
  background: url(../img/flow-bg.webp) no-repeat center center/cover;
  padding: clamp(0px, 260 * var(--rate-vw), 260px * var(--cap)) 0 clamp(0px, 150 * var(--rate-vw), 150px * var(--cap));
}
@media (max-width: 767px) {
  .flow-cta-wrap {
    padding: clamp(0px, 75 * var(--rate-vw), 75px * var(--cap)) 0;
  }
}

/*------------------------------
flow 
------------------------------*/
.flow__header {
  position: relative;
}
.flow__header::before {
  content: "";
  position: absolute;
  background: url(../img/icon_letter.svg) no-repeat center center/100%;
  aspect-ratio: 91/104;
  transform: translate(-50%, -50%);
  width: 9%;
  left: 58.7%;
  top: 26%;
}
@media (max-width: 767px) {
  .flow__header {
    padding-right: 25%;
  }
  .flow__header::before {
    top: 0;
  }
}

.flow__title {
  font-size: clamp(0px, 35 * var(--rate-fz), 35px * var(--cap));
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .flow__title {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  }
}

.flow__message {
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 400;
  line-height: 1.7222222222;
  letter-spacing: 0.1em;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .flow__message {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

.flow__catch {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-27%, -39%);
  font-size: clamp(0px, 40 * var(--rate-fz), 40px * var(--cap));
  font-weight: 500;
  line-height: 2.175;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.flow__catch span {
  display: block;
  position: relative;
}
.flow__catch span::before {
  content: "";
  position: absolute;
  background: #fff;
  transform: translate(0%, -50%);
  width: 1px;
  height: 100%;
  right: 0.2em;
  top: 50%;
}
.flow__catch span:nth-child(1)::before {
  height: 92%;
  transform: translate(0%, -50%);
}
.flow__catch span:nth-child(2) {
  transform: translateY(2.3em);
}
.flow__catch span:nth-child(2)::before {
  height: 92%;
  transform: translate(0%, -61%);
}
@media (max-width: 767px) {
  .flow__catch {
    font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
    top: 0;
    transform: translate(-10%, -36%);
  }
}

.step {
  margin-top: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap));
}

.flow__heading {
  font-size: clamp(0px, 30 * var(--rate-fz), 30px * var(--cap));
  font-weight: 500;
  line-height: 2.3333333333;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .flow__heading {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
}

.step__list {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 26 * var(--rate-vw), 26px * var(--cap)) 0;
  margin-top: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
}

.step__item {
  background: #fff;
  padding: clamp(0px, 10 * var(--rate-vw), 10px * var(--cap)) clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
  color: #000;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .step__item {
    display: block;
    padding: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap)) clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  }
}

.step__item-header {
  width: 32.4%;
  display: flex;
  align-items: center;
  gap: 0 clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  position: relative;
}
.step__item-header::before {
  content: "";
  position: absolute;
  background: #000;
  transform: translate(0%, -50%);
  width: 1px;
  right: 0%;
  top: 50%;
  height: 80%;
}
@media (max-width: 767px) {
  .step__item-header {
    width: 100%;
    border-right: none;
    padding-bottom: clamp(0px, 15 * var(--rate-vw), 15px * var(--cap));
    border-bottom: 1px solid #000;
    gap: 0 clamp(0px, 0 * var(--rate-vw), 0px * var(--cap));
  }
  .step__item-header::before {
    display: none;
  }
}

.step__number {
  font-size: clamp(0px, 36 * var(--rate-fz), 36px * var(--cap));
  font-weight: 700;
  line-height: 2.2777777778;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .step__number {
    font-size: clamp(0px, 32 * var(--rate-fz), 32px * var(--cap));
    line-height: 1;
    width: 1.5em;
    flex-shrink: 0;
    letter-spacing: 0;
  }
}

.step__label {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .step__label {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
    padding-left: 10px;
    line-height: 1.5;
  }
}

.step__description {
  width: 67.6%;
  padding-left: 2.6em;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .step__description {
    width: 100%;
    padding: 0;
    padding-top: clamp(0px, 15 * var(--rate-vw), 15px * var(--cap));
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
    letter-spacing: 0.1em;
  }
}

.process {
  margin-top: clamp(0px, 60 * var(--rate-vw), 60px * var(--cap));
}

.process__list {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 26 * var(--rate-vw), 26px * var(--cap)) 0;
  margin-top: 2%;
}
@media (max-width: 767px) {
  .process__list {
    gap: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap)) 0;
  }
}

.process__item {
  display: flex;
  align-items: center;
  gap: 0 clamp(0px, 60 * var(--rate-vw), 60px * var(--cap));
}
@media (max-width: 767px) {
  .process__item {
    flex-direction: column;
    gap: clamp(0px, 10 * var(--rate-vw), 10px * var(--cap)) 0;
  }
}

.process__header {
  width: 35%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 5%;
  padding-right: 0;
  gap: 0 clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
}
@media (min-width: 768px) {
  .process__header {
    height: clamp(0px, 100 * var(--rate-vw), 100px * var(--cap));
  }
}
@media (max-width: 767px) {
  .process__header {
    width: 100%;
    padding: 5%;
  }
}

.process__icon {
  width: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap));
}
.process__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .process__icon {
    width: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  }
}

.process__label {
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 500;
  line-height: 1.7222222222;
  letter-spacing: 0.1em;
  color: #000;
}

.process__description {
  width: 60%;
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 400;
  line-height: 1.7222222222;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .process__description {
    padding-right: 7em;
  }
}
@media (max-width: 767px) {
  .process__description {
    width: 100%;
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  }
}

/*------------------------------
cta-line
------------------------------*/
.cta-line {
  margin-top: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap));
}

.cta-line__wrapper {
  display: flex;
  align-items: center;
  gap: 0 clamp(0px, 80 * var(--rate-vw), 80px * var(--cap));
}
@media (max-width: 767px) {
  .cta-line__wrapper {
    flex-direction: column;
    gap: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap)) 0;
  }
}

.cta-line__body {
  width: calc(580 / 1020 * 100%);
}
@media (max-width: 767px) {
  .cta-line__body {
    width: 100%;
  }
}

.cta-line__heading {
  font-size: clamp(0px, 30 * var(--rate-fz), 30px * var(--cap));
  font-weight: 500;
  line-height: 2.3333333333;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .cta-line__heading {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
    line-height: 1.7;
  }
}

.cta-line__message {
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 400;
  line-height: 1.7222222222;
  letter-spacing: 0.1em;
  margin-top: 0.2em;
}
@media (max-width: 767px) {
  .cta-line__message {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    margin-top: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  }
}

.cta-line__code {
  width: calc(170 / 1020 * 100%);
}
@media (max-width: 767px) {
  .cta-line__code {
    width: 60%;
    margin: 0 auto;
  }
}

/*------------------------------
benefits
------------------------------*/
.benefits {
  padding: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap)) 0 clamp(0px, 100 * var(--rate-vw), 100px * var(--cap));
}
.benefits__list {
  margin-top: clamp(0px, 60 * var(--rate-vw), 60px * var(--cap));
}
@media (min-width: 768px) {
  .benefits {
    padding: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap)) 0 clamp(0px, 80 * var(--rate-vw), 80px * var(--cap));
  }
  .benefits__list li {
    padding-bottom: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  }
}

.benefits__heading {
  font-size: clamp(0px, 30 * var(--rate-fz), 30px * var(--cap));
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .benefits__heading {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
}

.benefits__description {
  margin-top: 1em;
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 400;
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
  padding: 0 3em;
}
@media (max-width: 767px) {
  .benefits__description {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    padding: 0;
  }
}
.benefits__list .c-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding-top: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap));
  padding-bottom: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap));
}
@media (max-width: 767px) {
  .benefits__list .c-card {
    padding: clamp(0px, 25 * var(--rate-vw), 25px * var(--cap)) clamp(0px, 30 * var(--rate-vw), 30px * var(--cap)) clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  }
}


/*------------------------------
contact
------------------------------*/
.contact {
  background: #fff;
  padding: clamp(0px, 70 * var(--rate-vw), 70px * var(--cap)) 0 clamp(0px, 90 * var(--rate-vw), 90px * var(--cap));
}

.contact__list {
  margin-top: clamp(0px, 70 * var(--rate-vw), 70px * var(--cap));
}
@media (min-width: 768px) {
  .contact__list li {
    padding: 4%;
  }
  .contact__list li:first-child {
    padding-left: 7%;
  }
}

.contact__heading {
  font-size: clamp(0px, 25 * var(--rate-fz), 25px * var(--cap));
  font-weight: 500;
  letter-spacing: 0.2em;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 767px) {
  .contact__heading {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
}
.contact__body {
  margin-top: clamp(0px, 25 * var(--rate-vw), 25px * var(--cap));
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .contact__body {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
    margin-top: 4%;
  }
}

.contact__body--flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact__body--flex {
    flex-direction: column;
    gap: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap)) 0;
  }
}

.contact__hour {
  font-size: clamp(0px, 15 * var(--rate-fz), 15px * var(--cap));
}

.contact__tel{
  margin-bottom: 10px;
}
.contact__tel a, .contact__tel span {
  display: inline-block;
  font-size: clamp(0px, 25 * var(--rate-fz), 25px * var(--cap));
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.2em;
  position: relative;
  padding-left: clamp(0px, 33 * var(--rate-vw), 33px * var(--cap));
}
.contact__tel a::before, .contact__tel span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/icon_tel.webp) no-repeat center center/contain;
  width: clamp(0px, 23 * var(--rate-vw), 23px * var(--cap));
  aspect-ratio: 46/57;
}
@media (max-width: 767px) {
  .contact__hour,
  .contact__description{
    font-size: clamp(0px, 15 * var(--rate-fz), 15px * var(--cap));
    margin-bottom: 5px;
  }
  .contact__tel a, .contact__tel span {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
  .contact__tel a::before, .contact__tel span::before {
    width: 1em;
  }
}

.contact__text {
  width: 65%;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .contact__text {
    width: 100%;
    font-size: clamp(0px, 15 * var(--rate-fz), 15px * var(--cap));
  }
}

.contact__code {
  width: clamp(0px, 120 * var(--rate-vw), 120px * var(--cap));
}
@media (max-width: 767px) {
  .contact__code {
    width: 60%;
    margin: 0 auto;
  }
}

/*------------------------------
footer
------------------------------*/
footer {
  padding: clamp(0px, 115 * var(--rate-vw), 115px * var(--cap)) 0;
}
@media (max-width: 767px) {
  footer {
    padding: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap)) 0 clamp(0px, 70 * var(--rate-vw), 70px * var(--cap));
  }
}

@media (min-width: 768px) {
  .footer__inner {
    width: clamp(0px, 1300 * var(--rate-vw), 1300px * var(--cap));
    max-width: unset;
    padding: 0 clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
  }
}

.footer__content {
  display: flex;
}
@media (max-width: 767px) {
  .footer__content {
    flex-direction: column;
  }
}

.footer__info {
  width: 30%;
}
@media (max-width: 767px) {
  .footer__info {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .footer__logo {
    width: 60%;
    margin-top: -7%;
    margin-left: -3%;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    transform: translateX(-10%);
    width: 75%;
  }
}

.footer__address {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.2;
  margin-top: 0.6em;
}
@media (max-width: 767px) {
  .footer__address {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

.footer__tel {
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 600;
  position: relative;
  margin: 0.5em 0;
  display: block;
  letter-spacing: 0.3em;
  padding-left: 1.3em;
}
.footer__tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: url(../img/icon_tel.svg) no-repeat center center/contain;
  aspect-ratio: 46/57;
  transform: translate(40%, -50%);
  width: 0.7em;
}

.footer__line {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  margin-top: 1.3em;
  padding: 0;
}
.footer__line img {
  width: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
  margin-left: clamp(0px, 5 * var(--rate-vw), 5px * var(--cap));
}

.footer__map {
  width: 31.5%;
  margin-left: clamp(0px, 42 * var(--rate-vw), 42px * var(--cap));
}
.footer__map iframe {
  aspect-ratio: 1/0.7;
  height: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .footer__map {
    width: 100%;
    margin-left: 0;
    margin-top: 10%;
  }
}

.footer__nav {
  width: 30%;
  margin-left: clamp(0px, 57 * var(--rate-vw), 57px * var(--cap));
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__nav {
    width: 100%;
    margin-left: 0;
    margin-top: 10%;
  }
}

.footer__menu {
  width: 50%;
}
.footer__menu li a {
  letter-spacing: 0.2em;
  line-height: 2;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  white-space: nowrap;
}
.footer__menu li a:first-child {
  margin-top: calc((1lh - 1em) / -2);
  display: inline-block;
  margin-bottom: 0.4em;
}
.footer__menu li a.small {
  font-size: clamp(0px, 15 * var(--rate-fz), 15px * var(--cap));
  letter-spacing: normal;
}
@media (max-width: 767px) {
  .footer__menu li a {
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

/* 最初（画面外にある時）の状態 */
.fadein {
  opacity: 0;
}
/* 画面内に入って「.is-active」クラスがついた時の動き */
.fadein.is-active {
  animation-name: fadeIn;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/*# sourceMappingURL=style.css.map */