@charset "UTF-8";
/*! --------------------------------------------------------------
　　このCSSファイルは .scssファイルからコンパイルされたものです。
　　直接編集しないように注意してください。
--------------------------------------------------------------- */
/* 基本設定
============================================================================ */
/* base > color
============================================================================================================ */
/* 基本色一覧*/
/*白*/
/*黒*/
/*灰色*/
/*黄*/
/*赤*/
/*青*/
/*緑*/
:root {
  --color-primary: #172D55;
  --color-yellow: #fdd000;
  --color-point: #E98157;
  --color-bg: #FDFCF2;
  --drop-shadow: drop-shadow(4px 4px 4px color-mix(in srgb, #1a1a1a 25%, transparent));
  --fontFamily-serif: "Shippori Mincho", serif;
  --height-header: 74;
  --height-header-sp: 65;
  --line-clamp: 2;
  --width-inner-lg: 1420;
  --width-inner: 1000;
  --width-inner-sm: 770;
  --zIndex-header: 40;
  --zIndex-spmenu: 41;
  --zIndex-toggle: 42;
  --zIndex-splash: 50;
  --leading-trim: calc((1em - 1lh) / 2);
  --gutter: 16px;
  --gutter-inner: 16px;
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* mixin
============================================================================ */
/* フォントサイズをremに変換するmixin ($base-font-sizeはbase/_base.scssに)*/
/* フレックスボックス */
/* SCSS メディアクエリ */
/*最後の要素の余白リセット*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*-------------------------------------------------------------
display指定class

【only】
.pc-only / .tab-only / .pad-only / .sp-only /.se-only 
.pctab-only / .tabsp-only / .sp-none

-------------------------------------------------------------*/
.pc-only {
  display: block !important;
}
@media (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pc-only {
    display: none !important;
  }
}
.pc-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pc-only--flex {
    display: none !important;
  }
}

.tab-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .tab-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .tab-only {
    display: none !important;
  }
}
.tab-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .tab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .tab-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tab-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .tab-only--flex {
    display: none !important;
  }
}

.pad-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .pad-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pad-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pad-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pad-only {
    display: none !important;
  }
}
.pad-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .pad-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pad-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .pad-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pad-only--flex {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}
@media (max-width: 320px) {
  .sp-only {
    display: block !important;
  }
}
.sp-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .sp-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 320px) {
  .sp-only--flex {
    display: flex !important;
  }
}

.se-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .se-only {
    display: block !important;
  }
}
.se-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .se-only--flex {
    display: flex !important;
  }
}

.pctab-only {
  display: block !important;
}
@media (max-width: 1024px) {
  .pctab-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .pctab-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pctab-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pctab-only {
    display: none !important;
  }
}
.pctab-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .pctab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .pctab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .pctab-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pctab-only--flex {
    display: none !important;
  }
}

.tabsp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 320px) {
  .tabsp-only {
    display: block !important;
  }
}
.tabsp-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 320px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
}
@media (max-width: 320px) {
  .sp-none {
    display: none;
  }
}

figure {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

img {
  vertical-align: bottom;
  line-height: 0;
  font-size: 0;
  backface-visibility: hidden;
}

/* 共通部分
============================================================================ */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

li {
  list-style: none;
}

ul,
ol,
dl,
p {
  padding: 0;
  margin: 0;
}

a {
  -moz-transition: all 0.15s ease 0s;
  -o-transition: all 0.15s ease 0s;
  -webkit-transition: all 0.15s ease;
  -webkit-transition-delay: 0s;
  transition: all 0.15s ease 0s;
}
a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}

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

a {
  color: inherit;
  /* ress.cssだとunderlineがつくのを阻止 */
  text-decoration: none;
}

select {
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1 !important;
  position: relative;
}

table {
  table-layout: fixed;
  /* ress.css用 */
  border-collapse: collapse;
  border-spacing: 0;
}

td input {
  max-width: 100%;
}

i,
em {
  font-style: normal;
}

* {
  box-sizing: border-box;
}

small {
  font-size: 100%;
}
html,
body {
  line-height: 2.0625;
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0em;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  -webkit-print-color-adjust: exact;
  overflow-x: clip;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

iframe {
  max-width: 100%;
}

button {
  cursor: pointer;
}

/* body.Android{
  font-family: $android-font-family;
} */
/* _:-ms-lang(x)::-ms-backdrop, body {
  font-family: $android-font-family;
} */
/* _:-ms-lang(x)::backdrop, body {
  font-family: $android-font-family;
} */
a {
  -moz-transition: all 0.15s ease 0s;
  -o-transition: all 0.15s ease 0s;
  -webkit-transition: all 0.15s ease;
  -webkit-transition-delay: 0s;
  transition: all 0.15s ease 0s;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.l__wrapper {
  display: flex;
  flex-direction: column;
  background: #F3F3F3;
  min-height: 100vh;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .l__wrapper {
    border: none;
  }
}
.l__footer {
  margin-top: auto;
  height: 100%;
}

main {
  background-color: #FDFCF2;
}

/* layout
============================================================================ */
/* layout > common
============================================================================================================ */
.common-main {
  width: 100%;
}
main {
  margin-top: 74px;
}
@media (max-width: 767px) {
  main {
    margin-top: 65px;
  }
}

/* layout > header
============================================================================== */
.common-header {
  width: 100%;
  height: calc(var(--height-header) * 1px);
  padding-left: 40px;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (max-width: 767px) {
  .common-header {
    height: calc(var(--height-header-sp) * 1px);
    padding-left: var(--gutter);
  }
}

.common-header__inner {
  height: 100%;
  align-items: center;
  display: grid;
  grid-template-columns: 114px 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

@media (max-width: 767px) {
  .common-header__logoImg {
    width: 100px;
  }
}

.common-header__cta {
  height: 100%;
  margin-left: auto;
}

.common-header__ctaBtn {
  background-color: var(--color-point);
  display: grid;
  grid-template-columns: auto 30px;
  align-items: center;
  padding-left: 27px;
  padding-right: 27px;
  -moz-column-gap: 12px;
       column-gap: 12px;
  height: 100%;
  max-width: 512px;
}
@media (max-width: 767px) {
  .common-header__ctaBtn {
    grid-template-columns: auto 22px;
    padding-left: 12px;
    padding-right: 12px;
    -moz-column-gap: 10px;
         column-gap: 10px;
    max-width: 188px;
  }
}

.common-header__ctaBtnText {
  color: white;
  font-family: var(--fontFamily-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .common-header__ctaBtnText {
    line-height: 1.3;
    font-size: 11px;
    margin-right: -0.5em;
  }
}

.common-header__ctaBtnTextParts {
  display: inline-block;
}

.common-header__ctaBtnArrow {
  display: grid;
  place-items: center;
}

@media (max-width: 767px) {
  .common-header__ctaBtnArrowImg {
    width: 22px;
    height: 22px;
  }
}

/*  layout > footer
============================================================================================================ */
.common-footer {
  height: 90px;
  background-color: white;
  padding-left: 40px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .common-footer {
    height: 65px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.common-footer__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.common-footer__left {
  display: flex;
  align-items: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
}

@media (max-width: 767px) {
  .common-header__logo {
    width: 80px;
  }
}

.common-footer__txt {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: var(--fontFamily-serif);
  font-weight: 600;
}
@media (max-width: 767px) {
  .common-footer__txt {
    display: none;
  }
}

.common-footer__copyright {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: var(--fontFamily-serif);
}
@media (max-width: 767px) {
  .common-footer__copyright {
    font-size: 10px;
  }
}

/* module
============================================================================ */
.heading-top {
  color: var(--color-primary);
  font-size: 28px;
  line-height: 1.2142857143;
  font-weight: 700;
  font-family: var(--fontFamily-serif);
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .heading-top {
    font-size: 24px;
    line-height: 1.6666666667;
    text-align: center;
  }
}

.heading-top__parts {
  display: inline-block;
}

/* module > btn & cta
============================================================================ */
.mod-btnArrow {
  display: grid;
  grid-template-columns: auto 28px;
  align-items: center;
  border-radius: 50px;
  min-height: 53px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 5px 40px;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  background-color: var(--color-point);
  filter: var(--drop-shadow);
}
.mod-btnArrow:hover {
  color: white;
}
@media (max-width: 767px) {
  .mod-btnArrow {
    min-height: 70px;
    width: min(100%, 335px);
    padding: 5px 30px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

.mod-btnArrow__txt {
  font-size: 20px;
  font-family: var(--fontFamily-serif);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .mod-btnArrow__txt {
    font-size: 16px;
    line-height: 1.3;
  }
}

.mod-btnArrow__txtParts {
  display: inline-block;
}

.mod-btnIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  min-height: 70px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 5px 40px;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  background-color: var(--color-point);
  filter: var(--drop-shadow);
  width: min(530px, 100%);
}
.mod-btnIcon:hover {
  color: white;
}
@media (max-width: 767px) {
  .mod-btnIcon {
    width: min(265px, 100%);
    min-height: 50px;
    text-align: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding: 5px 10px;
  }
}

.mod-btnIcon__txt {
  font-size: 23px;
  font-family: var(--fontFamily-serif);
  font-weight: 800;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .mod-btnIcon__txt {
    font-size: 13px;
    line-height: 1.3;
  }
}

.mod-btnIcon__txtParts {
  display: inline-block;
}

@media (max-width: 767px) {
  .mod-btnIcon__icon {
    width: 20px;
  }
}

.top-mv {
  max-height: 620px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .top-mv {
    max-height: unset;
  }
}

.top-mv__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .top-mv__layout {
    grid-template-columns: 1fr;
  }
}

.top-mv__visualImg {
  max-height: 620px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-mv__body {
  writing-mode: vertical-rl;
  margin-block: auto;
  text-orientation: upright;
  padding-inline: clamp(30px, 2.34375vw, 45px);
  padding-block-start: clamp(25px, 3.125vw, 40px);
  padding-block-end: 25px;
}
@media (max-width: 767px) {
  .top-mv__body {
    writing-mode: unset;
    text-align: center;
    padding-block-start: 40px;
    padding-inline: var(--gutter);
  }
}

.top-mv__catch {
  color: var(--color-primary);
  font-size: clamp(24px, 3.125vw, 40px);
  line-height: 1.4285714286;
  font-family: var(--fontFamily-serif);
  font-weight: 700;
  letter-spacing: 0.25em;
}
@media (max-width: 767px) {
  .top-mv__catch {
    font-size: 24px;
    line-height: 1.6666666667;
    letter-spacing: 0.1em;
  }
}

.top-mv__txt {
  font-size: clamp(16px, 1.5625vw, 20px);
  line-height: 1.8;
  font-family: var(--fontFamily-serif);
  font-weight: 500;
  padding-inline-start: clamp(30px, 3.515625vw, 45px);
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .top-mv__txt {
    padding-inline-start: unset;
    line-height: 2.125;
    letter-spacing: 0.05em;
  }
}
.top-mv__txt:first-of-type {
  margin-block-start: clamp(40px, 4.6875vw, 60px);
}
@media (max-width: 767px) {
  .top-mv__txt:first-of-type {
    margin-block-start: 30px;
  }
}

.top-mv__txtEm {
  color: var(--color-primary);
  font-weight: 700;
}

.top-mv__txt--second {
  margin-block-start: 2em;
}
@media (max-width: 767px) {
  .top-mv__txt--second {
    margin-block-start: 1.3em;
  }
}

.top-about {
  position: relative;
  padding-block-start: 17.578125%;
  padding-block-end: 28.90625%;
}
@media (max-width: 767px) {
  .top-about {
    padding-block-start: max(150px, 40%);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-block-end: max(180px, 48%);
  }
}

.top-about__lineUpper {
  pointer-events: none;
  translate: 0 -15%;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .top-about__lineUpper {
    translate: 0 45%;
  }
}

.top-about__flowerLeft {
  position: absolute;
  left: 0;
  display: none;
  top: 58.4%;
  width: 60px;
}

@media (max-width: 767px) {
  .top-about__flowerLeft {
    display: revert;
  }
}
.top-about__flowerRight {
  position: absolute;
  right: 0;
  top: 32%;
}
@media (max-width: 767px) {
  .top-about__flowerRight {
    top: 33%;
    width: 100px;
    translate: 44%;
  }
}

.top-about__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.top-about__upper {
  writing-mode: vertical-rl;
  margin-block: auto;
}
@media (max-width: 767px) {
  .top-about__upper {
    writing-mode: unset;
    text-align: center;
  }
}

.top-about__heading {
  color: var(--color-primary);
  font-size: 28px;
  line-height: 2.2;
  font-family: var(--fontFamily-serif);
  font-weight: 700;
  letter-spacing: 0.45em;
}
@media (max-width: 767px) {
  .top-about__heading {
    font-size: 24px;
    line-height: 1.6666666667;
    letter-spacing: 0.1em;
  }
}

.top-about__txt {
  font-size: 18px;
  line-height: 2;
  font-family: var(--fontFamily-serif);
  font-weight: 500;
  padding-inline-start: 40px;
  letter-spacing: 0.22em;
}
@media (max-width: 767px) {
  .top-about__txt {
    padding-inline-start: unset;
    font-size: 16px;
    line-height: 2.125;
    letter-spacing: 0.05em;
  }
}
.top-about__txt:first-of-type {
  margin-block-start: 55px;
}
@media (max-width: 767px) {
  .top-about__txt:first-of-type {
    margin-block-start: 30px;
  }
}

.top-about__txtParts {
  display: inline-block;
}

.top-about__txt.top-about__txt--space {
  margin-block-start: 2em;
}

.top-about__txtEm {
  color: var(--color-primary);
  font-weight: 700;
}

.top-about__button {
  display: grid;
  place-items: center;
  margin-block-start: 75px;
}

.top-about__lineLower {
  pointer-events: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .top-about__lineLower {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.top-flow {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 75px;
}
@media (max-width: 767px) {
  .top-flow {
    padding-top: 60px;
  }
}

.top-flow__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.top-flow__heading {
  display: grid;
  place-items: center;
}

.top-flow__body {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .top-flow__body {
    margin-top: 60px;
  }
}

.top-flowItem {
  display: grid;
  grid-template-columns: 70px 1fr 340px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  position: relative;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .top-flowItem {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    row-gap: 20px;
    padding-bottom: 45px;
  }
  .top-flowItem > *:nth-child(1) {
    grid-area: 1/1/3/2;
  }
  .top-flowItem > *:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .top-flowItem > *:nth-child(3) {
    grid-area: 2/2/3/3;
  }
}

.top-flow__item:not(:last-of-type) .top-flowItem::after {
  position: absolute;
  content: "";
  top: 35px;
  left: 35px;
  height: 100%;
  width: 1px;
  display: block;
  background-color: currentColor;
}
@media (max-width: 767px) {
  .top-flow__item:not(:last-of-type) .top-flowItem::after {
    top: 22px;
    left: 22px;
  }
}

.top-flowItem__num {
  background-color: var(--color-bg);
  z-index: 2;
  position: relative;
  border-radius: 999em;
  width: 70px;
  height: 70px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
  font-family: var(--fontFamily-serif);
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
}
@media (max-width: 767px) {
  .top-flowItem__num {
    width: 44px;
    height: 44px;
  }
}

.top-flowItem__left {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .top-flowItem__left {
    padding-top: unset;
  }
}

.top-flowItem__right {
  padding-top: 10px;
}

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

.top-flowItem__heading {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: var(--fontFamily-serif);
}
@media (max-width: 767px) {
  .top-flowItem__heading {
    font-size: 18px;
    line-height: 1.8888888889;
  }
}

.top-flowItem__txt {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
  font-family: var(--fontFamily-serif);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.top-flowItem__txtParts {
  display: inline-block;
}

.top-support {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  padding-top: 23.046875%;
}
@media (max-width: 767px) {
  .top-support {
    padding-top: max(130px, 34.6666666667%);
  }
}

.top-support__lineUpper {
  pointer-events: none;
  margin-right: calc(var(--gutter) * -1px);
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  translate: 0 7%;
  width: 50%;
}
@media (max-width: 767px) {
  .top-support__lineUpper {
    translate: unset;
    margin-right: unset;
    translate: 0 57%;
    width: 50vw;
  }
}

.top-support__lineLower {
  pointer-events: none;
  margin-top: 80px;
  translate: calc(var(--gutter) * -1);
  width: 50%;
}
@media (max-width: 767px) {
  .top-support__lineLower {
    width: 50vw;
    margin-top: 55px;
  }
}

.top-support__flowerLeft {
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  .top-support__flowerLeft {
    width: 63px;
    top: 3.5%;
  }
}

.top-support__inner {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.top-support__heading {
  display: grid;
  place-items: center;
}

.top-support__body {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .top-support__body {
    margin-top: 40px;
  }
}

.top-support__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 40px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .top-support__list {
    row-gap: 16px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (max-width: 767px) {
  .top-support__list {
    row-gap: 16px;
    -moz-column-gap: 16px;
         column-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }
}

.top-supportItem {
  background-color: white;
  border: 1px solid currentColor;
  padding-top: 38px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  height: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .top-supportItem {
    padding-top: 20px;
  }
}

.top-supportItem__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 50px;
  height: 100%;
}
@media (max-width: 767px) {
  .top-supportItem__inner {
    row-gap: 20px;
  }
}

.top-supportItem__heading {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: var(--fontFamily-serif);
}
@media (max-width: 767px) {
  .top-supportItem__heading {
    font-size: 15px;
    line-height: 1.3333333333;
  }
}

.top-supportItem__icon {
  min-height: 80px;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .top-supportItem__icon {
    min-height: 40px;
  }
}

@media (max-width: 767px) {
  .top-supportItem__iconImg {
    height: 40px;
  }
}

.top-supportItem__txt {
  margin-top: auto;
  font-size: 15px;
  line-height: 2;
  font-family: var(--fontFamily-serif);
  letter-spacing: 0.1em;
  font-weight: 500;
  min-height: 2.5lh;
}
@media (max-width: 767px) {
  .top-supportItem__txt {
    font-size: 13px;
    line-height: 1.8461538462;
    min-height: 3lh;
  }
}

.top-consult {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 80px;
}
@media (max-width: 767px) {
  .top-consult {
    padding-top: 45px;
  }
}

.top-consult__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.top-consult__heading {
  display: grid;
  place-items: center;
}

.top-consult__intro {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
  font-family: var(--fontFamily-serif);
}
@media (max-width: 767px) {
  .top-consult__intro {
    margin-top: 35px;
  }
}

.top-consult__introParts {
  display: inline-block;
}

.top-consult__body {
  margin-top: 60px;
}

.top-consult__list {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  row-gap: 40px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .top-consult__list {
    margin-top: 50px;
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: space-around;
  }
  .top-consult__list > * {
    width: calc(50% - 20px);
  }
}
.top-consult__list > *:nth-child(2) {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .top-consult__list > *:nth-child(2) {
    padding-top: unset;
  }
}

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

.top-consult__figcaption {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  margin-top: 20px;
  letter-spacing: 0.1em;
  font-family: var(--fontFamily-serif);
}
@media (max-width: 767px) {
  .top-consult__figcaption {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
  }
}

.top-voice {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  padding-top: 180px;
  padding-bottom: 430px;
}
@media (max-width: 767px) {
  .top-voice {
    padding-top: 100px;
    padding-bottom: max(160px, 42.6666666667%);
  }
}

.top-voice__flowerLeft {
  position: absolute;
  left: -20%;
  top: 0%;
}
@media (max-width: 767px) {
  .top-voice__flowerLeft {
    top: 1%;
    left: max(-75px, -20%);
    width: 150px;
    translate: -6%;
  }
}

.top-voice__flowerRight {
  position: absolute;
  right: 0;
  top: -14%;
}
@media (max-width: 767px) {
  .top-voice__flowerRight {
    top: -10%;
    width: 100px;
    translate: 45%;
  }
}

.top-voice__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.top-voice__heading {
  display: grid;
  place-items: center;
}

.top-voice__intro {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
  font-family: var(--fontFamily-serif);
}
@media (max-width: 767px) {
  .top-voice__intro {
    margin-top: 30px;
  }
}

.top-voice__introParts {
  display: inline-block;
}

.top-voice__slider {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 55px;
  --swiper-theme-color: #333;
  --swiper-navigation-sides-offset: 0px;
}
@media (max-width: 767px) {
  .top-voice__slider {
    margin-top: 35px;
  }
}
.top-voice__slider .swiper-slide {
  display: grid;
  place-items: center;
}
.top-voice__slider .swiper-slide figure {
  width: 500px;
}
@media (max-width: 767px) {
  .top-voice__slider .swiper-slide figure {
    width: auto;
  }
}
@media (max-width: 767px) {
  .top-voice__slider .slider-control {
    display: flex;
    justify-content: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .top-voice__slider .slider-control {
    -moz-column-gap: 50px;
         column-gap: 50px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .top-voice__slider .swiper-button-next,
  .top-voice__slider .swiper-button-prev {
    position: static;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .top-voice__slider .swiper-button-next,
  .top-voice__slider .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
}

.top-voice__button {
  display: grid;
  place-items: center;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .top-voice__button {
    margin-top: 80px;
  }
}

.top-voice__lineLower {
  position: absolute;
  pointer-events: none;
  bottom: 0;
  left: 0;
  width: 100%;
}
.top-problem {
  padding-top: 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .top-problem {
    padding-top: 20px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.top-problem__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .top-problem__row {
    grid-template-columns: 1fr;
  }
  .top-problem__row > *:nth-child(1) {
    order: 2;
  }
}

.top-problem__row.top-problem__row--reverse > *:nth-child(1) {
  order: 2;
}
.top-problem__row.top-problem__row--reverse .top-problem__body {
  padding-top: 80px;
  padding-bottom: 50px;
  padding-left: 15.375%;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .top-problem__row.top-problem__row--reverse .top-problem__body {
    padding-top: 60px;
    padding-bottom: 50px;
    padding-left: unset;
    padding-right: unset;
  }
}

.top-problem__visualImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 430px;
}

.top-problem__body {
  padding-top: 40px;
  padding-bottom: 90px;
  padding-left: 9.375%;
  padding-right: var(--gutter);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .top-problem__body {
    padding-top: 60px;
    padding-bottom: 50px;
    padding-left: unset;
    padding-right: unset;
  }
}

.top-problem__list {
  font-size: 18px;
  line-height: 2.4444444444;
  font-weight: 500;
  font-family: var(--fontFamily-serif);
  margin-top: 40px;
}
@media (max-width: 767px) {
  .top-problem__list {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .top-problem__list--problem {
    max-width: 275px;
  }
}

@media (max-width: 767px) {
  .top-problem__list--consult {
    max-width: 325px;
  }
}

.top-problem__item {
  text-indent: -1em;
  padding-left: 1em;
}
.top-problem__item .top-problem__itemParts {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.top-cta {
  padding-top: 19.921875%;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .top-cta {
    padding-top: max(125px, 33.3333333333%);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    overflow: hidden;
    padding-bottom: 95px;
  }
}

.top-cta__wrap {
  position: relative;
}
@media (max-width: 767px) {
  .top-cta__wrap {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}

.top-cta__lineUpper {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -63.7%;
  width: 100%;
}
@media (max-width: 767px) {
  .top-cta__lineUpper {
    width: 100vw;
  }
}

.top-cta__radius {
  border: 15px solid transparent;
  border-image-slice: 30 fill;
  border-image-source: url("./img/top/cta_bg.png");
  padding: 150px 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(8px 8px 50px color-mix(in srgb, #1a1a1a 15%, transparent));
}
@media (max-width: 767px) {
  .top-cta__radius {
    border-image-source: url("./img/top/cta_bg-sp.png");
    padding: 60px 20px 50px;
    max-width: 335px;
  }
}

.top-cta__txt {
  text-align: center;
  font-size: 18px;
  line-height: 2.2222222222;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: var(--fontFamily-serif);
}
@media (max-width: 767px) {
  .top-cta__txt {
    font-size: 16px;
    line-height: 2.25;
    text-align: center;
  }
}

.top-cta__txtParts {
  display: inline-block;
}

.top-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .top-cta__buttons {
    row-gap: 20px;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .top-cta__buttons--pc {
    display: none;
  }
}

.top-cta__buttons--sp {
  display: none;
}
@media (max-width: 767px) {
  .top-cta__buttons--sp {
    display: flex;
  }
}

.top-bottom {
  position: relative;
  padding-block-start: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  overflow: hidden;
  padding-bottom: 295px;
}
@media (max-width: 767px) {
  .top-bottom {
    padding-bottom: 265px;
    padding-block-start: 55px;
  }
}

.top-bottom__bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.top-bottom__bg::before {
  background-color: color-mix(in srgb, black 15%, transparent);
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
}

.top-bottom__bgImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.top-bottom__line {
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 15%;
  width: min(530px, 41.40625%);
}
@media (max-width: 767px) {
  .top-bottom__line {
    width: 50%;
    top: unset;
    bottom: 15%;
    max-width: 187px;
  }
}

.top-bottom__body {
  writing-mode: vertical-rl;
  margin-block: auto;
  text-orientation: upright;
}
@media (max-width: 767px) {
  .top-bottom__body {
    margin-left: auto;
    margin-right: unset;
  }
}

.top-bottom__txt {
  font-size: clamp(18px, 2.734375vw, 28px);
  color: white;
  line-height: 2.2;
  font-family: var(--fontFamily-serif);
  font-weight: 800;
  letter-spacing: 0.45em;
  filter: drop-shadow(2px 2px 10px color-mix(in srgb, #1a1a1a 50%, transparent));
}
@media (max-width: 767px) {
  .top-bottom__txt {
    filter: drop-shadow(0 0 0 color-mix(in srgb, white 100%, transparent));
    letter-spacing: 0.35em;
    line-height: 1.7;
  }
}
.top-bottom__txt:first-of-type {
  margin-block-start: 0;
}

.top-bottom__txt.top-bottom__txt--space {
  margin-block-start: 80px;
}
@media (max-width: 767px) {
  .top-bottom__txt.top-bottom__txt--space {
    margin-block-start: 30px;
  }
}

/* module > parts
============================================================================ */
.top-stickyBtn {
  font-family: var(--fontFamily-serif);
  color: white;
  width: 194px;
  position: fixed;
  left: calc(100vw - 194px);
  bottom: 40px;
  z-index: 10;
  overflow: hidden;
  transition: opacity 0.4s ease;
}
@media (max-width: 767px) {
  .top-stickyBtn {
    width: 40.5333333333vw;
    left: calc(100vw - 40.5333333333vw);
    bottom: 10.6666666667vw;
  }
}
.top-stickyBtn.is-scrolling > a {
  opacity: 0;
  pointer-events: none;
}
.top-stickyBtn > a {
  width: 100%;
  border-top-left-radius: 61.5px;
  border-bottom-left-radius: 61.5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: column;
  transition: 0.4s;
  position: relative;
  opacity: 1;
  pointer-events: all;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .top-stickyBtn > a {
    border-top-left-radius: 16.4vw;
    border-bottom-left-radius: 16.4vw;
  }
}
.top-stickyBtn > a:nth-of-type(2) {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .top-stickyBtn > a:nth-of-type(2) {
    margin-top: 2.1333333333vw;
  }
}
.top-stickyBtn > a:before {
  content: "";
  background: white;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top-stickyBtn-top {
  position: relative;
  width: 100%;
  height: 65px;
}
@media (max-width: 767px) {
  .top-stickyBtn-top {
    height: 12.8vw;
  }
}
.top-stickyBtn-top > p {
  color: #4e4e4e;
  margin-top: 17px;
  margin-left: 32px;
  letter-spacing: -0.02em;
  font-size: 15px;
  line-height: 1.3;
  position: absolute;
  z-index: 2;
}
@media (max-width: 767px) {
  .top-stickyBtn-top > p {
    margin-top: 3.2vw;
    margin-left: 6.6666666667vw;
    font-size: 3.2vw;
  }
}
.top-stickyBtn-top > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 0;
}
.top-stickyBtn-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  width: 100%;
  background: #e97c51;
}
.top-stickyBtn-bottom > p {
  font-size: 19px;
  line-height: 2.2;
  margin-left: 15px;
}
@media (max-width: 767px) {
  .top-stickyBtn-bottom > p {
    font-size: 4.2666666667vw;
    margin-left: 4vw;
  }
}
.top-stickyBtn-bottom > svg {
  margin-left: 6px;
}
@media (max-width: 767px) {
  .top-stickyBtn-bottom > svg {
    margin-left: 1.6vw;
  }
}/*# sourceMappingURL=style.css.map */