@charset "UTF-8";
:root {
  --font-sans: "Noto Sans JP", sans-serif;
  --font-en: "Raleway", sans-serif;
  --bg-color: #FAF1E0;
  --text-color: #282D27;
  --main-color: #52AA41;
  --sub-color: #A98657;
  --dark-color: #A6106E;
}
*,
::after,
::before {
  box-sizing: border-box;
  
}
html {
  color: var(--text-color);
  font-size: 62.5%; /* 1rem = 10px */
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 1.5px;
}
body {
  margin: 0;
  font-size: 1.6rem; /* 標準サイズを16pxに */
}
/* 余白のリセット */
h1, h2, h3, h4, h5, h6, p, li, 
dl, ol, ul, figure, blockquote, fieldset {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
dd{
  margin-inline-start: 0px;
}
/* メディア要素 */
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1000px) {
  a:hover {
    opacity: 0.5;
    cursor: pointer;
  }
}
/* 強調表現 */
b, strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
/* テーブル */
table {
  border-collapse: collapse;
}
td{
  border-bottom-width:0px !important;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
/* ボタン・入力の共通スタイル */
button, 
[type="button"], 
[type="submit"] {
  cursor: pointer;
  appearance: button;
  -webkit-appearance: button;
  border: none;
  border-radius: 0;
}
/* テキスト入力のリセット */
input[type="text"],
textarea {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
textarea {
  resize: vertical;
}
/* チェックボックス */
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
/* フォーカス時のアウトライン（アクセシビリティのためfocus-visibleを推奨） */
*:focus {
  outline: none;
}
[hidden] {
  display: none !important;
}


.pc {
  display: none;
}
@media screen and (min-width: 1000px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block;
  }
  a[href*="tel:"] {
    /* pointer-events: none;
    cursor: default;
    text-decoration: none; */
  }
  a:hover {
    cursor: pointer !important;
  }
}
header{
  z-index: 10;
  background: none;
  background: var(--bg-color);
  position: fixed;
  height: 83px;
  width: 100%;
  opacity: 0;        /* 初期状態はjQueryのanimateのために0にする */
  position: fixed;   /* 固定 */
  z-index: 9999;     /* 最前面 */
}
/* 下スクロール時にこのクラスを外す（または隠す用のクラスを作る） */
header.is-hide {
    transform: translateY(-100%);
    opacity: 0;
}

header h1{
  width: 20%;
}
@media screen and (min-width: 1000px) {
  header{
    height: 85px;
    padding: 20px;
  }
  header h1{
    margin: 0 !important;
    width: 280px;
    height: 47px;
  }
}
header:after{
  content: none;
}
header div.gmenu {
  left: 0;
  right: 0;
  width: 100%;
  height: 83px;
  margin: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1000px) {
  header div.gmenu {
    border-radius: 0;
    margin: 0 auto;
    padding: 0;
    height: 50px;
  }
}
header div.gmenu a{
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1000px) {
header div.gmenu a{
  position: relative;
  z-index: 3;
}
}
/* @media screen and (max-width: 999px) {
  header.is-animation div.gmenu  {
    margin: 0;
    width: 100%;
    display: block;
    transition-duration:.5s;
    background:#fff !important;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1000px) {
  .is-animation {
    background:#1E1A6B !important;
    z-index: 10;
    width: 100%;
    display: flex;
  }
} */

header div.gmenu .logo{
  width: 200px;
  height: 43px;
  max-width: none !important;
  margin: 22px 0 0 20px;
}
/* @media screen and (min-width: 376px) {
  header div.gmenu .logo{
    width: 300px;
    height: 50px;
  }
} */
@media screen and (min-width: 1000px) {
  header div.gmenu .logo {
    width: 220px;
    height: 47px;
    margin: 0 10px 0 0;
    position: absolute;
    /* left: 20px;
    top: 10px; */
  }
}
@media screen and (min-width: 1000px) {
  .menu-wrapper {
    position: relative;
    margin-left: 15px;
  }
  .menu-wrapper .logo{
    display: none !important;
  }
}

header nav {
  display: none;
  background: var(--main-color);
  width: 100vw;
  position: absolute;
  margin: 0;
  /* padding: 4vw 0 0; */
  text-align: center;
  z-index: 3;
  top: 0;
  left: 0;
  padding-bottom: 4vw;
}
@media screen and (min-width: 1000px) {
  header nav {
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    margin: 5px 0 0;
    box-shadow: none;
    position: static;
    opacity: 1;
  }
}



header nav ul.menu_area {
  position: relative;
  /* display: flex;
  justify-content: center;
  flex-wrap: wrap; */
  margin: 0 auto;
  padding: 5vw 3vw 35px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 1000px) {
  header nav ul.menu_area {
    justify-content: flex-end;
    width: 100%;
    padding: 0;
  }
}
header nav ul.menu_area li{
  width: 50%;
}
@media screen and (min-width: 1000px) {
  header nav ul.menu_area li{
    width: auto;
  }
}
header nav ul.menu_area li a {
  display: block;
  font-size: 1.7rem;
  white-space: nowrap;
  text-align: left;
  color: #fff;
  padding: 15px 0;
  position: relative;
  font-family: var(--font-sans);
  padding-left: 6vw;
  font-weight: 400;
}
/* header nav ul.menu_area li a:before{
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 10vw;
  right: 0;
  background: #fff;
}
header nav ul.menu_area li a:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 4vw;
  bottom: 0;
  margin: auto;
} */
@media screen and (min-width: 1000px) {
  header nav ul.menu_area li a:before,header nav ul.menu_area li a:after{
    content: none;
  }
}
header nav .lp_btn:last-of-type{
  margin: 10px auto 30px;
}
header nav .lp_btn a{
  display: block;
  width: 80vw;
  text-align: center;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin:  0 auto;
  font-size: 1.2rem;
  height: 80px;
  border-radius: 40px;
  background: #fff;
  font-family: var(--font-sans);
  font-weight: 200;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
header nav .lp_btn a span{
  font-size: 1.8rem;
  display: block;
  position: relative;
  font-weight: 500;
  color: var(--main-color);
}
@media screen and (min-width: 1000px) {
  header nav ul.menu_area li a {
    font-size: 1.7rem;
    margin-right: 0vw;
    margin-bottom: 0;
  }
  .menu-list {
    display: block !important;
    opacity: 1;
  }
  .menu-list .inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .menu-list .inner > div {
    display: flex;
    align-items: center;
  }
  .menu-list .inner > div ul li a {
    width: auto;
    display: inline-block;
    margin-right: 25px;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    font-family: var(--font-sans);
  }
  .menu-list .inner > div ul li:last-child a{
    margin-right:30px;
  }
  .menu-list .inner > div ul li a:hover {
    color: var(--main-color);
    opacity: 1;
  }
}
@media screen and (min-width: 1300px) {
  .menu-list .inner > div ul li a {
    font-size: 1.5rem;
  }
}
.menu-list .inner .btn_area .btn_web {
  background-image: linear-gradient(90deg, rgba(102, 102, 255, 1), rgba(67, 66, 238, 1));
}
header .btn_contact a {
  display: block;
  text-align: center;
  width: 65vw;
  height: 50px;
  line-height: 50px;
  border: 1px solid #000;
  border-radius: 8px;
  color: #000;
  font-size: 1.4rem;
  margin: 10px auto 0;
}
@media screen and (min-width: 1000px) {
  header .btn_contact a {
    display: block;
    text-align: center;
    width: 140px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    font-size: 1.2rem;
    margin: 0 10px 0 0;
    border: 1px solid #fff;
  }
}
@media screen and (min-width: 1000px) {
  header .btn_contact a {
    font-size: 1.4rem;
    width: 180px;
  }
}

header .hour {
	margin:20px auto;
  width: 90vw;
  text-align: center;
  background: var(--main-color);
  border-radius: 20px;
  padding: 10px 3vw 30px;
  background: rgba(0,0,0,.1);
}
header .hour .flex{
  display: flex;
}
header .hour .flex p {
  font-size: 1.1rem;
	letter-spacing: 0;
	color: #fff;
	text-align: center;
  font-family: var(--font-sans);
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding:20px 0;
}
header .hour .flex p:first-of-type {
  width: 23%;
}
header .hour .flex p:not(first-of-type) {
    width: calc(77%/7);
}
header .hour .closed{
  font-size: 1.2rem;
  color: #fff;
  text-align: left;
  margin-top: 12px;
}
header .hour .flex p td:first-of-type {
	font-weight: 500;
}
@media screen and (min-width: 1000px) {
  header .hour {
    display: none;
  }
}


/* ハンバーガー */
@media (max-width: 999px) {
  .btn_hum {
    display: block;
    position: relative;
    right: 15px;
    z-index: 100;
    background: var(--main-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: 15px;
  }
  .btn_hum.close{
    background: #fff;
  }
  .bar {
    width: 20px;
    height: 1px;
    display: block;
    position: absolute;
    left: 23px;
    transform: translateX(-50%);
    background-color: #fff;
    z-index: 2;
  }
  .bar-top {
    top: 15px;
  }
  .bar-middle {
    top: 23px;
    width: 14px;
    transform: translate(-50%, -50%);
  }
  .bar-bottom {
    bottom: 15px;
  }
  .btn_hum.close .bar-top {
    /* transform: translate(-50%, 5px) rotate(45deg); */
    transition: transform 0.3s;
    background-color: var(--main-color);
    top: 12px;
    width: 20px;
    left: 12px;
    transform: translateY(10px) rotate(40deg);
  }
  .btn_hum.close .bar-middle {
    opacity: 0;
    transition: opacity 0.3s;
  }
  .btn_hum.close .bar-bottom {
    /* transform: translate(-50%, -5px) rotate(-45deg); */
    transition: transform 0.3s;
    background-color: var(--main-color);
    bottom: 12px;
    width: 20px;
    left: 12px;
    transform: translateY(-10px) rotate(-40deg);
  }
}
/* ハンバーガー */


.js-split {
    overflow: hidden; /* 文字が下から出るのを隠す */
}
.js-split span {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}
/* 外側の枠：中身がはみ出ている間は見えないようにする */
  .js-reveal {
      display: block;
      overflow: hidden;
      line-height: 1.5;
      margin-bottom: 10px;
  }

  /* 内側の要素：実際に動く部分 */
  .js-reveal__inner {
      display: block;
      transform: translate3d(0, 105%, 0); /* 最初は完全に枠の下に隠す */
      opacity: 0;                         /* フェードも組み合わせるとより滑らか */
      transition: opacity 0.3s ease;
  }

main{
  padding: 83px 0 0;
  background: var(--bg-color);
}
@media screen and (min-width: 1000px) {
  main{
    padding-bottom: 0;
    padding: 120px 0 0;
  }
}
main .inner{
  width: 94vw;
  margin: auto;
}
@media screen and (min-width: 1000px) {
  main .inner{
    max-width: 1400px;
    width: 95%;
  }
}
main .mv{
  position: relative;
  height:  110vh;
  overflow: hidden;
  padding-top: 3vw;
}
@media screen and (min-width: 1000px) {
  main .mv{
    min-height: 85vw;
    padding-top: 0;
  }
}

/* 既存のスタイル */
.mv .ttl_area {
    top: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}
.mv .ttl_area .ttl{
  font-size: 5rem;
  font-family: var(--font-en);
  text-align: left;
  margin-left: 4vw;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}
.mv .ttl_area .ttl span{
  color: var(--main-color);
  display: block;
  font-weight: 400;
}
.mv .ttl1, .mv .ttl2 {
    opacity: 0;
    font-size: 2rem;
    margin: 10px 0;
}
.mv .ttl1 span, .mv .ttl2 span { 
  color: #ff69b4;
  font-weight: bold;
}
.mv .after2 {
  opacity: 0;
}
.mv .after2 h3{
  position: absolute;
  left: 5vw;
  font-size: 2rem;
  font-weight: 400;
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  .mv .after2 h3{
    font-size: 3rem;
    text-align: center;
    left: 50%;
    margin: 280px auto 0;
    transform: translate(-95%, 0);
  }
}
@media screen and (min-width: 1000px) {
  .mv .after2 h3{
    margin: 250px auto 0;
  }
}
@media screen and (min-width: 1300px) {
  .mv .after2 h3{
    font-size: 4rem;
    margin: 300px auto 0;
  }
}
.mv .after2 h3 span{
  color: var(--main-color);
}
.p-index-hero {
  width: 100%;
  overflow: hidden;
}
.p-index-hero__inner {
  width: 100%;
  height: 100vh; /* 画面いっぱいの高さを確保 */
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-index-hero__image-wrapper {
  width: 80%;       /* 初期状態の横幅（お好みで調整） */
  height: 70vh;     /* 初期状態の高さ（お好みで調整） */
  overflow: hidden;
  border-radius: 20px; /* 角丸をつける場合 */
}
.mv .mv_img {
  margin-top: 140px;
  height: auto;
  position: absolute;
  width: 90%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.0); /* 初期スケール */
  transform: translateX(-50%);
  left: 50%;
}
@media screen and (min-width: 1000px) {
  .mv .mv_img {
    height: auto;
    margin-top: 400px;
    position: absolute;
  }
}
@media screen and (min-width: 1000px) {
  .mv .mv_img {
    margin-top: 400px;
  }
}
.after3, .after4, .after5 {
    opacity: 0;
    position: relative;
    z-index: 1;
}
.after3 {
    display: flex;
    justify-content: flex-start;
    left: 4vw;
    margin-top: 50px;
}
@media screen and (min-width: 1000px) {
  .after3 {
      justify-content: flex-end;
      left: auto;
      right: 5vw;
      margin-top: 220px;
  }
}
@media screen and (min-width: 1300px) {
  .after3 {
      margin-top: 280px;
  }
}

.base-badge {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-flex; /* 横に並ぶように設定 */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.3;
    margin: 5px; /* バッジ同士の間隔 */
}
@media screen and (min-width: 1000px) {
    .base-badge {
        width: 160px;
        height: 160px;
        margin: 10px; /* バッジ同士の間隔 */
    }
}
  /* 共通の数字の色 */
.txt-green {
    color: #5cb85c;
    font-weight: bold;
    line-height: 1;
}

  /* --- 症例実績バッジの個別設定 --- */
.case-badge {
    background: linear-gradient(to bottom, #ffffff 30%, #eff7ee 30%);
}
.case-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
}
@media screen and (min-width: 1000px) {
  .case-title {
    font-size: 1.5rem;
    margin: -15px 0 20px;
  }
}
.case-num {
    font-size: 2.4rem;
    font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 1000px) {
    .case-num {
        font-size: 4rem;
    }
}

.case-unit, .case-suffix {
    font-size: 1.6rem;
}
@media screen and (min-width: 1000px) {
    .case-unit, .case-suffix {
        font-size: 2rem;
    }
}
  /* --- アクセスバッジの個別設定 --- */
.access-badge {
    background: linear-gradient(to bottom, #ffffff 42%, #eff7ee 42%);
}
.access-station {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 8px;
    margin-top: -5px;
}
@media screen and (min-width: 1000px) {
    .access-station {
        font-size: 1.5rem;
        margin: -15px auto 14px;
    }
}
.access-row {
    font-size: 1.6rem;
    display: flex;
    align-items: baseline;
}
 @media screen and (min-width: 1000px) {
    .access-row {
        font-size: 2.6rem;
    }
}
.access-num {
    font-size: 2.4rem;
    margin: 0 2px;
    font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 1000px) {
  .access-num {
    font-size: 4.2rem;
  }
}


.after4, .after5 {
    text-align: center;
}
.after4 img{
  position: absolute;
  width: 45vw;
  margin-top: -58vw;
  right: 0;
}
@media screen and (min-width: 1000px) {
  .after4 img{
    position: absolute;
    width: 350px;
    margin-top: -400px;
    right: auto;
    left: 50%;
    /* margin: 280px auto 0; */
    transform: translate(-160%, 0);
  }
  .after5 img{
    position: absolute;
    width: 230px;
    margin-top: -430px;
    right: 50%;
    transform: translate(220%, 0);
  }
}
@media screen and (min-width: 1300px) {
  .after4 img{
    width: 400px;
    margin-top: -420px;
  }
  .after5 img{
    width: 300px;
    margin-top: -500px;
    right: 50%;
    transform: translate(220%, 0);
  }
}
@media screen and (min-width: 1500px) {
  .after5 img{
    transform: translate(250%, 0);
  }
}
.after5{
  display: none;
}
@media screen and (min-width: 1000px) {
  .after5{
    display: block;
  }
}
@media screen and (min-width: 1000px) {
  .mv .ttl_area .ttl{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* width: 100%; */
  }
  .mv .ttl_area .ttl{
    font-size: 9rem;
    margin-left: 0;
    text-align: center;
  }
  .mv .ttl_area .ttl1{
    padding-right: 5vw;
  }
  .mv .ttl_area .ttl2{
    margin-left: 10vw;
    top: 130px;
  }
  .mv .ttl_area .ttl span{
    display: inline-block;
  }
}
@media screen and (min-width: 1300px) {
  .mv .ttl_area .ttl{
    font-size: 12rem;
  }
  .mv .ttl_area .ttl2{
    margin-left: 10vw;
    top: 150px;
  }
}














.en_common{
  font-size: 1.2rem;
  font-family: var(--font-en);
  border-bottom: 1px solid var(--text-color);
  display: inline-block;
  padding: 0 10px 10px;
  text-align: center;
  margin: auto;
  font-weight: 600;
}
h2.common{
  font-size: 2.4rem;
  font-weight: 400;
  margin: 30px 0;
  text-align: center;
}
h2.common span.gr{
  color: var(--main-color);
}
h3.common{
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 40px;
}
@media screen and (min-width:1000px){
  .en.common{
    font-size: 1.4rem;
  }
  h2.common{
    font-size: 4rem;
  }
  h3.common{
    font-size: 1.8rem;
  }
}





.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}
.marquee-content {
  display: flex; /* 横一列に隙間なく並べる */
  width: max-content; /* 中身の長さに合わせる */
  animation: marquee-loop 100s linear infinite;
}
.marquee-content span {
  white-space: nowrap;
  padding-right: 50px; /* 文字同士の適度な間隔 */
}
@keyframes marquee-loop {
  0% { transform: translateX(0); }
  /* 4つのうち1つ分(25%)進んだらリセット。
     もしspanが2つなら -50%、3つなら -33.33% に調整 */
  100% { transform: translateX(-25%); } 
}
.roop_big{
  font-size: 8rem;
  color: #F4E3C5;
  font-family: var(--font-en);
  font-weight: 200;
  margin: 25vw auto 25vw;
}
@media screen and (min-width: 1000px) {
  .roop_big{
    font-size: 3rem;
    margin: 80px auto;
  }
}
.roop_small{
  font-size: 1.8rem;
  color: rgba(255,255,255,.3);
  font-family: var(--font-en);
  font-weight: 200;
  margin: 0 auto;
  padding: 5px 0 50px;
  background: var(--main-color);
}
@media screen and (min-width: 1000px) {
  .roop_small{
    font-size: 4rem;
    margin: 0 auto;
    padding: 5px 0 10px;
  }
}


#concerns{
  background: var(--main-color);
  margin: -1px auto 50px;
  padding: 10px 0 0;
  text-align: center;
}
#concerns h2{
  color: #fff;
}
#concerns .en_common{
  color: #fff;
  border-bottom: 1px solid #fff;
}
#concerns .inview_area{
  height: 100vw;
  position: relative;
}
#concerns .title{
  border-top: 1px solid #fff;
  padding: 40px 0;
  position: relative;
}
#concerns .title:before{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -3px;
    margin: auto;
    transform: rotate(90deg);
    z-index: 1;
}
#concerns .title h3{
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  font-weight: 400;
  line-height: 1.7;
}



#concerns .content .box{
  position: relative;
  text-align: left;
}
#concerns .content .box img{
  width: 100%;
}
#concerns .content .box .text_area{
  position: absolute;
  top: 2vw;
  left: 2vw;
  color: #fff;
}
#concerns .content .box .text_area .nu{
  font-size: 1.4rem;
  font-family: var(--font-en);
}
#concerns .content .box .text_area h3{
  font-size: 2.2rem;
  font-weight: 400;
  margin: 15px 0 30px 6vw;
}
#concerns .content .box .text_area h4{
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
  margin-left: 6vw;
}
.fadeIn_left {
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 2s;
  left: 4vw;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.fadeIn_right {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 2s;
  right: 4vw;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: 0.5s;
}
.is-show.show2{
  transition-delay: 0.5s;  
}
.is-show.show3{
  transition-delay: 1s;  
}
.is-show.show4{
  transition-delay: 1.5s;  
}
.is-show.show5{
  transition-delay: 2s;  
}
.is-show.show6{
  transition-delay: 2.5s;  
}
.line2{
  top: 30vw;
}
.line3{
  top: 60vw;
}
.txtBox {
  text-align: center;
  position: absolute;
  width: 45vw;
}
.txtBox .text {
  font-size: 2rem;
  padding: 2em 0;
  margin: 0;
  position: absolute;
  top:50%;
  transform: translateY(-45%);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.txtBox .nu {
  position: absolute;
  background: #75CA65;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: 20px;
  left: 10px;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  aspect-ratio: 1/1;
}


@media screen and (min-width: 1000px) {
  #concerns{
    margin: 0 auto 150px;
    padding-top: 200px;
  }
  #concerns h2{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #concerns .inview_area{
    height: 400px
  }
  .fadeIn_left{
    left: 20vw;
  }
  .fadeIn_left2{
    left: 10vw;
  }
  .fadeIn_left3{
    left: 20vw;
  }
  .fadeIn_right{
    right: 14vw;
  }
  .fadeIn_right2{
    right: 8vw;
  }
  .fadeIn_right3{
    right: 25vw;
  }
  .linepc1{
    top:-140px;
  }
  .linepc2{
    top:-110px;
  }
  .linepc3{
    top:30px;
  }
  .linepc4{
    top:60px;
  }
  .linepc5{
    top:170px;
  }
  .linepc6{
    top:200px;
  }
  .txtBox{
    width: 25%;
    max-width: 300px;
  }
  .txtBox .text{
    font-size: 1.8rem;
  }
  .txtBox .text.up{
    transform: translateY(-55%);
  }
  #concerns .title h3{
    font-size: 3.4rem;
  }
  #concerns .content{
    display: flex;
  }
  #concerns .content .box{
    width: 25%;
  }
  #concerns .content .box .text_area{
    position: static;
  }
  #concerns .content .box .text_area .nu{
    font-size: 1.8rem;
    position: absolute;
    left: 2vw;
    top: 2vw;
  }
  #concerns .content .box .text_area h3{
    font-size: 3rem;
    position: absolute;
    left: 2vw;
    top: 80px;
    margin: 0;
  }
  #concerns .content .box .text_area h4{
    font-size: 1.6rem;
    margin-left: 30px;
    position: absolute;
    bottom: 20px;
  }
  .txtBox .nu{
    font-size: 1.4rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .txtBox .nu.up{
    top: 10px;
  }
}
#cases{
  margin: 120px auto 30px;
  position: relative;
  z-index: 2;
}
#cases .flex{
  display: flex;
  width: 88vw;
  justify-content: space-between;
  margin: 0 auto 40px;
}
#cases .flex h2{
  text-align: left;
  margin: 30px auto 20px;
}
#cases .flex .nu{
  background: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 3vw;
  border-radius: 10px;
  line-height: 1.2;
  width: 36vw;
}
#cases .flex .nu p:first-of-type{
  font-size: 1.4rem;
}
#cases .flex .nu p:last-of-type{
  font-size: 4rem;
  font-family: var(--font-en);
}
#cases .inner{
  width: 100%;
}
#cases .inner .box{
  background: #fff;
  border-radius: 10px;
  padding: 3vw;
  width: 94vw;
  margin: 0 auto 5vw;
}
#cases .inner .box > div{
  position: relative;
  margin: auto;
}
#cases .inner .box > div:first-of-type{
  margin: 0 auto 1px;
}
#cases .inner .box > div .before{
  position: absolute;
  left: 12px;
  z-index: 1;
  top: 12px;
  background: var(--text-color);
  font-family: var(--font-en);
  color: #fff;
  font-size: 1.2rem;
  width: 25vw;
  text-align: center;
  height: 32px;
  line-height: 32px;
  border-radius: 13px;
}
#cases .inner .box > div .after{
  position: absolute;
  left: 12px;
  z-index: 1;
  bottom: 12px;
  background: var(--main-color);
  font-family: var(--font-en);
  color: #fff;
  font-size: 1.2rem;
  width: 25vw;
  text-align: center;
  height: 32px;
  line-height: 32px;
  border-radius: 13px;
}
#cases .inner .box h3{
  font-weight: 400;
  font-size: 2.2rem;
  text-align: center;
  margin: 20px auto 15px;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 20px;
  font-weight: 500;
}
#cases .inner .box h3 span{
  font-size: 1.6rem;
  font-weight: 400;
}
#cases .inner .box dl{
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin: 12px auto;
  padding: 0 10px;
}
#cases .inner .box dl:after{
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  width: 100%;
  height: 1px;
  z-index: -1;
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,.2), rgba(0,0,0,.2) 6px, transparent 6px, transparent 8px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}
#cases .inner .box dl dt,#cases .inner .box dl dd{
  background: #fff;
  font-size: 1.3rem;
}
#cases .inner .box dl dt{
  padding-right: 10px;
  color: var(--main-color);
}
#cases .inner .box dl dd{
  padding-left: 10px;
}
#cases .inner .box .catch{
  background: rgba(169,134,87,.1);
  color: #69491D;
  font-size: 1.4rem;
  text-align: center;
  height: 56px;
  line-height: 56px;
  border-radius: 8px;
  margin: 25px 10px 0;
  font-weight: 500;
}
#cases .cases_img{
  margin: -20vw auto 0;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 1000px) {
  #cases {
    margin: 180px auto 20px;
  }
  #cases .flex{
    max-width: 1300px;
  }
  #cases .flex .nu{
    padding: 0 25px;
    width: 210px;
  }
  #cases .flex .nu p:first-of-type{
    font-size: 1.8rem;
  }
  #cases .flex .nu p:last-of-type{
    font-size: 6rem;
  }
  #cases .inner{
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    width: 95%;
  }
  #cases .inner .box{
    width: 31%;
    margin: 0;
  }
  #cases .inner .box h3{
    font-size: 2.6rem;
  }
  #cases .inner .box h3 span{
    font-size: 2rem;
  }
  #cases .inner .box dl dt,#cases .inner .box dl dd{
    font-size: 1.5rem;
  }
  #cases .inner .box > div .before{
    width: 110px;
  }
  #cases .inner .box > div .after{
    width: 110px;
  }
  #cases .inner .box .catch{
    font-size: 1.6rem;
  }
  #cases .cases_img{
    margin: -10vw 0 0;
    width: 87%;
  }
}



#price{
  width: 88vw;
  margin: 0 auto 100px;
  position: relative;
}
#price .flexpc1{
  text-align: left;
}
#price .flexpc1 h2{
  text-align: left;
  margin: 30px auto 20px;
}
#price .flexpc1 .note{
  margin-bottom: 40px;
  font-size: 1.4rem;
  text-align: left;
}
#price .flexpc2 .left{
  background: #F4E3C5;
  padding: 8vw 5vw;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
}
#price .flexpc2 .left img{
  width: 70vw;
  display: block;
  margin: 0 auto 20px;
}
#price .flexpc2 .left p{
  font-size: 1.4rem;
  line-height: 1.7;
}
#price .flexpc2 .right{
  background: #fff;
  text-align: center;
  border-radius: 10px;
  padding-bottom: 5vw;
}
#price .flexpc2 .right h3{
  background: var(--main-color);
  color: #fff;
  font-size: 1.6rem;
  border-radius: 10px 10px 0 0;
  font-weight: 400;
  padding: 10px 0;
}
#price .flexpc2 .right .flex{
  display: flex;
}
#price .flexpc2 .right .flex p{
  width: calc(100% / 3);
  padding: 10px 0;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(40,45,39,0.1);
  line-height: 1.7;
}
#price .flexpc2 .right .flex:first-of-type p{
  background: rgba(82,170,65,0.1);
  color: var(--main-color);
  border-bottom: none;
}
#price .flexpc2 .right .btn{
    text-align: center;

}
#price .flexpc2 .right .btn .btn_common,#price .flexpc3 .btn .btn_common{
  width: 80vw;
  display: block;
  margin: 20px auto 0;
  background: #A98657;
  color: #fff;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  text-align: center;
  font-size: 1.4rem;
}
#price .flexpc2 .right .btn .btn2,#price .flexpc3 .btn_common.btn2{
  background: #fff;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  margin-top: 10px;
}
#price .flexpc3 .box{
  background: #fff;
  border-radius: 10px;
  margin: 10px auto 0;
  padding: 4vw;
  position: relative;
}
#price .flexpc3 .box:first-of-type{
  margin: 25px auto 0;
}
#price .flexpc3 .box dl dt{
  font-size: 1.8rem;
  font-weight: 500;
}
#price .flexpc3 .box dl dd{
  font-size: 1.4rem;
  margin: 10px auto 20px;
}
#price .flexpc3 .box .price{
  font-size: 2.1rem;
  font-weight: 500;
  text-align: right;
  color: #69491D;
}
#price .catch{
  position: absolute;
  right: 5vw;
  top: 20px;
  color: #fff;
  font-size: 1.2rem;
  padding: 5px 8px;
  border-radius: 4px;
}
#price .catch1{
  background: #90988E;
}
#price .catch2{
  background: var(--main-color);
}
#price .note{
  text-align: center;
  font-size: 1.1rem;
  margin-top: 10px;
}
@media screen and (min-width: 1000px) {
  #price.inner{
    max-width: 1300px;
    margin: 0 auto 180px;
    width: 90%;
  }
  #price .flexpc1{
    display: flex;
    justify-content: space-between;
    align-items: flex-end
  }
  #price .flexpc1 .note{
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
  #price .flexpc2{
    display: flex;
    border-radius: 20px;
    justify-content: space-between;
  }
  #price .flexpc2 > div{
    width: 49%;
  }
  #price .flexpc2 .left{
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #price .flexpc2 .left img{
    width: 35vw;
    margin-bottom: 25px;
  }
  #price .flexpc2 .left p{
    font-size: 1.6rem;
  }
  #price .flexpc2 .right {
    padding-bottom: 30px;
  }
  #price .flexpc2 .right h3{
    font-size: 2rem;
    padding: 1.4vw 0;
  }
  #price .flexpc2 .right .flex p {
    font-size: 1.6rem;
    padding: 1.8vw 0;
  }
  #price .flexpc2 .right .flex:first-of-type p{
    padding: 1vw 0;
  }
  #price .flexpc2 .right .btn{
    padding: 0 20px;
    gap: 10px;
  }
  #price .flexpc2 .right .btn .btn_common, #price .flexpc3 .btn .btn_common{
    width: 80%;
    margin: 30px auto 0;
  }
  #price .flexpc2 .right .btn .btn_common .btn2, #price .flexpc3 .btn .btn_common.btn2{
    width: 80%;
    margin: 10px auto 0;
  }
  #price .flexpc3{
    display: flex;
    justify-content: space-around;
  }
  #price .flexpc3 .box{
    width: 32%;
    margin: 25px auto 0;
    padding: 25px;
  }
  #price .flexpc3 .box:first-of-type {
      margin: 25px auto 0;
  }
  #price .flexpc3 .box dl dt{
    font-size: 2rem;
  }
  #price .flexpc3 .box dl dd{
    font-size: 1.6rem;
  }
  #price .flexpc3 .box .price{
    font-size: 2.2rem;
  }
  /* #price .flexpc3 .btn .btn_common{
    width: 80%;
  } */
  
  #price .catch{
    right: 25px;
    top: 25px;
    font-size: 1.2rem;
  }
  #price .note{
    font-size: 1.2rem;
    margin-top: 15px;
  }
}
@media screen and (min-width: 1300px) {
  #price .flexpc2 .left img{
    width: 25vw;
  }
  #price .flexpc2 .right .btn{
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }
  #price .flexpc2 .right .btn a, #price .flexpc2 .right .btn button{
    width: 48%;
  }
  #price .flexpc2 .right .btn button{
    margin-top: 30px;
  }
  #price .flexpc3 .box .price{
    font-size: 2.6rem;
  }
}

/* モーダルCSS */
.modalArea {
  display: none;
  z-index: 15; /*サイトによってここの数値は調整 */
}
.modalBg {
  width: 100%;
  height: 100%;
}
.modalWrapper {
  position: absolute;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #282D27;
  z-index: 3;
  width: 90vw;
  bottom: 350px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  bottom: 138vw;
  padding: 4vw;
}
.modalWrapper1 {
  bottom: 202vw;
}
.modalWrapper2 {
  bottom: 186vw;
}
.modalWrapper3 {
  bottom: 122vw;
}
.modalWrapper4 {
  bottom: 106vw;
}
@media screen and (min-width: 1000px) {
  .modalWrapper {
    width: 80%;
    max-width: 550px;
    padding: 10px 30px;
    transform: translateX(0);
    left: auto;
    right: 0;
    bottom: 340px;
    padding: 25px;
  }
  .modalWrapper1 {
    bottom: 458px;
  }
  .modalWrapper2 {
    bottom: 458px;
  }
  .modalWrapper3 {
    left: 0;
    right: auto;
    bottom: 200px;
  }
  .modalWrapper4 {
    left: 0;
    right: auto;
    bottom: 120px;
  }
}
#modalArea1 .modalWrapper,#modalArea3 .modalWrapper  {
  max-width: 100%;
}
.modalWrapper:before{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -16px;
  margin: auto;
  transform: rotate(90deg);
  z-index: 2;
}
.modalWrapper:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -18px;
  margin: auto;
  transform: rotate(90deg);
  z-index: 1;
}
.modalContents ul li{
    line-height: 1.7;
    word-break: break-all;
}
.modalContents ul:first-of-type{
    margin-bottom: 10px;
}
.modalContents ul:first-of-type li{
    font-size: 1.5rem;
}
.modalContents ul:last-of-type li{
    font-size: 1.2rem;
}
.modalContents dl dt{
  font-size: 1.5rem;
  margin-top: 10px;
}
.modalContents dl dd{
  font-size: 1.3rem;
  line-height: 1.7;
}
.modalContents dl dd ul li{
  line-height: 1.7;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 1000px) {
    .modalContents ul:first-of-type li{
        font-size: 1.6rem;
    }
    .modalContents ul:last-of-type li{
        font-size: 1.3rem;
    }
}
.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
  color: var(--text-color)
}
/* 以下ボタンスタイル */
button {
  cursor: pointer;
}




#choose{
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  #choose h2.common{
    margin: 30px 0 0;
  }
}
#stack-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.cell {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-container {
  display: flex;
  width: 100%;
  height: 75vh; /* 上が切れないよう高さを制限 */
  padding: 0;
  gap: 20px;
  text-align: left;
}
.txt-box {
  width: 40%;
  height: 100%;
  border-radius: 24px;
  display: flex;
  padding: 150px 40px 0 40px;
  will-change: transform, opacity;
  transform-origin: center center;
  background: #fff;
  position: relative;
}
.logo_choose{
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20%;
}
.txt-box h3{
  font-size: 4rem;
  color: var(--text-color);
}
.txt-box h3 span{
  color: var(--main-color);
}
.txt-box .text1{
  color: var(--text-color);
  font-size: 1.6rem;
  line-height: 1.7;
  margin: 30px auto 10px;
}
.txt-box .text2{
  color: var(--text-color);
  font-size: 1.6rem;
  line-height: 1.7;
  margin: 30px auto 10px;
  background: rgba(169,134,87,.1);
  display: inline-block;
  padding: 20px 30px;
  border-radius: 8px;
  color: #69491D;
}
.txt-box .text3{
  color: var(--main-color);
  font-family: var(--font-en);
  font-size: 2.2rem;
  line-height: 1.7;
  margin: 30px auto 10px;
  letter-spacing: .5px;
  position: absolute;
  bottom: 8px;
}
.img-layer {
  width: 60%; height: 100%;
  border-radius: 24px;
  overflow: hidden;
  will-change: transform, opacity;
  transform-origin: center center;
}
.img-layer img { width: 100%; height: 100%; object-fit: cover; }

/* ドットナビゲーション */
/* ドットインジケーター全体の配置 */
.dots {
  position: fixed;
  bottom: 140px;
  left: 30%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 1000; /* テキストボックスの上に表示 */
}
.dot {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 中央の小さな点（すべてのドットに表示） */
.dot::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #52AA41;
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
}
.dot.is-active::after {
  background-color: #52AA41;
  transform: scale(1.1); /* アクティブ時は少し強調 */
}
/* 外周のSVG設定 */
.dot svg {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg); /* 真上から開始 */
  will-change: opacity, transform;
}
.dot circle {
  fill: none;
  stroke: #52AA41; /* ★外側の丸は真っ白 */
  stroke-width: 2;
  stroke-dasharray: 69; /* 円周の長さは約69 (2 * π * 11) */
  stroke-dashoffset: 69; /* 最初は隠しておく */
  transition: stroke-dashoffset 0.1s linear;
}
/* ★修正：アクティブでないドットの外側の丸は完全に隠す */
.dot:not(.is-active) svg {
  opacity: 0;
}
/* アクティブなドットだけ外側の丸を表示 */
.dot.is-active svg {
  opacity: 1;
}

@media screen and (max-width: 999px) {
  #choose .box{
    position: relative;
    margin-bottom: 10vw;
  }
  #choose .text_area{
    background: #fff;
    width: 88vw;
    margin: -20vw auto 0;
    left: 0;
    right: 0;
    border-radius: 10px;
    padding: 8vw 4vw;
    text-align: left;
    z-index: 2;
    position: relative;
  }
  #choose .text_area img{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 15vw;
  }
  #choose .text_area h3{
    font-weight: 400;
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  #choose .text_area h3 span{
    color: var(--main-color);
  }
  #choose .text_area .text1{
    font-size: 1.4rem;
    line-height: 1.7;
  }
  #choose .text_area .text2{
    color: var(--text-color);
    font-size: 1.4rem;
    margin:25px auto 10px;
    background: rgba(169, 134, 87, .1);
    padding: 20px 0;
    border-radius: 8px;
    color: #69491D;
    width: 100%;
    text-align: center;
  }

}


#chairman{
  margin: 0 auto 100px;
  position: relative;
  z-index: 1;
}
#chairman:after{
  position: absolute;
  content: "";
  width: 100%;
  height: 45%;
  background: var(--main-color);
  z-index: 0;
  bottom: -8vw;
}
#chairman .inner{
  background: #fff;
  position: relative;
  z-index: 2;
}
#chairman .text_area{
  padding: 8vw 4vw 6vw 4vw;
  position: relative;
}
#chairman .inner .text_area .post{
  color: rgba(40,45,39,.5);
  font-size: 1.2rem;
}
#chairman .inner .text_area .name{
  font-size: 3rem;
  margin: 5px auto 15px;
}
#chairman .inner .text_area .text{
  font-size: 1.4rem;
  line-height: 1.7;
}
#chairman .inner .text_area .catch{
  font-size: 1.4rem;
  color: #fff;
  background: #C19E6E;
  text-align: center;
  margin: 15px auto 0;
  border-radius: 14px;
  line-height: 1.7;
  padding: 10px 0;
}
#chairman .text_area .circle{
  position: absolute;
  width: 28vw;
  height: 28vw;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#chairman .text_area .circle1{
  background: var(--main-color);
  top: -15vw;
  right: 18vw;
  z-index: 2;
}
#chairman .text_area .circle2{
  background: #3F8E2F;
  top: 2vw;
  right: 2vw;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  #chairman{
    margin: 0 auto 200px;
  }
  #chairman .inner{
    background: none;
  }
  #chairman .text_area{
    padding: 60px 32px 60px 32px;
    position: absolute;
    background: #fff;
    left: 0;
    bottom: 0;
    width: 50%;
    border-radius: 0 20px 0 20px;
  }
  #chairman .inner .text_area .post{
    font-size: 1.6rem;
  }
  #chairman .inner .text_area .name{
    font-size: 4rem;
    margin: 5px auto 15px;
  }
  #chairman .inner .text_area .text{
    font-size: 1.8rem;
  }
  #chairman .inner .text_area .catch{
    font-size: 1.8rem;
    display: inline-block;
    padding: 10px 12px;
    margin: 25px auto 0;
  }
  #chairman .text_area .circle{
    width: 125px;
    height: 125px;
    font-size: 1.4rem;
  }
  #chairman .text_area .circle1{
    top: 20px;
    right: 130px;
    z-index: 1;
  }
  #chairman .text_area .circle2{
    top: 20px;
    right: 20px;
    z-index: 2;
  }
}






#flow{
  margin: auto;
  text-align: center;
  padding: 40px 0 !important;
}
#flow h2.common{
  margin: 30px auto 0;
}
@media screen and (min-width: 1000px) {
#flow {
    /* PC時：見出し下の余白を削ります */
    padding-top: 60px !important;
    padding-bottom: 0 !important;
  }
}
#flow .ttl_area{
    position: absolute;
    top: 10px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    width: 100%;
    padding: 0 4vw;
}
@media screen and (min-width: 1000px) {
    #flow .ttl_area{
        padding: 0 30px;
    }
}
#flow .ttl_area p:first-child,#flow .ttl_area p:last-child{
    font-size: 1.4rem;
}
@media screen and (min-width: 1000px) {
    #flow .ttl_area p:last-child{
        font-size: 1.8rem;
    }
}
/* 親セクション */
#flow .index__solutioncards__main {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -50px 0 0;
}
#flow .index__solutioncards__main__card {
  position: absolute;
  top: 15%; 
  left: 50%;
  transform: translate(-50%, 0); 
  width: 95%; 
  max-width: 1400px;
  height: 55vh; 
  overflow: hidden; 
  border-radius: 40px;
  will-change: transform;
  background-color: #000;
}
#flow .index__solutioncards__body__title {
  font-size: 1.5rem;
}
@media screen and (min-width: 1000px) {
.index__solutioncards__main {
    /* カードセクション自体の高さを少し詰め、上に引き上げます */
    margin-top: -20px; 
  }

  .index__solutioncards__main__card {
    /* PC時：中央配置（50%）を維持しつつ、セクション自体のパディングで調整 */

    transform: translate(-50%, -50%); 
    height: 65vh;
  }

  #flow .index__solutioncards__body__title {
    font-size: 2.2rem; /* PCではタイトルを大きく */
  }
}
/* パララックス用背景 */
#flow .index__solutioncards__main__card__bg {
  position: absolute;
  /* 画像の上端をカードの枠の起点(0)に合わせます */
  top: 0; 
  left: 0;
  width: 100%;
  /* パララックスの遊びを作るため高さは120%程度を維持 */
  height: 120%; 
  will-change: transform;
}
#flow .index__solutioncards__main__card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1000px) {
	#flow .index__solutioncards__main__card__bg img {
	width: 100%;
	height: auto;
	}
}
/* テキストエリア */
#flow .index__solutioncards__main__card__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 10;
  width: 95%;
  pointer-events: none;
}
@media screen and (min-width: 1000px) {
    #flow .index__solutioncards__main__card__body {
        top: 45%;
        width: 90%;
    }
}
#flow .index__solutioncards__body__title {
  font-size: 1.2rem;
  font-family: "Raleway", sans-serif;
  margin-bottom: 50px;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  display: inline-block;
}
@media screen and (min-width: 1000px) {
    #flow .index__solutioncards__body__title {
    font-size: 1.4rem;
    margin-bottom: 60px;
    }
}
#flow .textline {
    position: relative;
    display: block;
    margin-bottom: 10px;
}
#flow h3.textline{
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
    #flow h3.textline{
        font-size: 4rem !important;
        margin-bottom: 28px;
    }
}
#flow h4.textline{
    font-size: 1.3rem;
    font-weight: 400;
}
@media screen and (min-width: 1000px) {
    #flow h4.textline{
        font-size: 1.8rem;
    }
}
#flow .textline__pseudo {
  color: rgba(255, 255, 255, 0.2);
  display: block;
}
#flow .textline__genuine {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  color: #fff;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
}
#flow .btn{
    background: var(--main-color);
    height: 32px;
    line-height: 32px;
    border-radius: 16px;
    color: #fff;
    font-size: 1.4rem;
    width: 60vw;
    margin: 40px auto 0;
}
@media screen and (min-width: 1000px) {
  #flow .btn{
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    font-size: 1.6rem;
    width: 250px;
    margin: 45px auto 0;
  }
}
#flow .btn_or{
  background: #E19631;
}
/* --- FAQなど、後のセクションが潜り込まないようにする --- */
/* #flow {
  position: relative;
  z-index: 100;
  background-color: #fff;
} */


#faq.inner{
  text-align: center;
  width: 90vw;
  margin: 80px auto 0;
}
#faq .flexpc{
  display: flex;
  flex-wrap: wrap;
}
#faq h3{
  margin-bottom: 50px;
}
#faq .flexpc dl {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  padding:6vw 5vw;
  text-align: left;
  margin-bottom: 10px;
}
#faq .flexpc dl dt{
  color: var(--main-color);
  font-size: 1.6rem;
  position: relative;
  padding-left: 33px;
  margin-bottom: 20px;
}
#faq .flexpc dl dt:before{
  content: "Q";
  position: absolute;
  font-family: var(--font-en);
  background: var(--main-color);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
}
#faq .flexpc dl dd{
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (min-width:1000px){
  #faq.inner {
    margin: 50px auto 100px;
  }
  #faq .flexpc{
    display: flex;
    justify-content: space-between;
  }
  #faq .flexpc dl{
    width: 49.5%;
    padding:30px;
    margin-bottom: 1%;
  }
  #faq .flexpc dl dt{
    font-size: 2rem;
  }
  #faq .flexpc dl dd{
    font-size: 1.6rem;
  }
}
#step {
  overflow: hidden;
}
#step .inner{
  background: var(--main-color);
  color: #fff;
  border-radius: 20px;
  padding: 50px 0;
  margin: 0 auto 30px;
  text-align: center;
  position: relative;
}
#step .left{
  position: absolute;
  z-index: 0;
  left:-2vw;
  top: 0vw;
  width: 25vw;
}
#step .right{
  position: absolute;
  z-index: 0;
  right:0vw;
  top: 0vw;
  width: 25vw;
}
/* 初期状態：かなり下の方に配置し、完全に透明にする */
#step .left,#step .right {
  opacity: 0;
  /* 最初は60px下に配置、角度は0度（垂直） */
  transform: translateY(60px) rotate(0deg);
  /* opacityとtransform(位置)に1.5秒かけてゆっくり浮かび上がらせる */
  transition: 
    opacity 1.5s ease-out, 
    transform 1.5s ease-out;
  display: block;
}
/* 画面内に入った時 */
#step .left.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  animation: slowRotate 2s ease-in-out forwards;
}
@keyframes slowRotate {
  0%   { transform: rotate(0deg); }
  87%  { transform: rotate(0deg); } /* 全体4秒の87.5%（＝3.5秒）まで0度を維持 */
  100% { transform: rotate(-20deg); } /* 最後の0.5秒でくるっと回る */
}
/* 画面内に入った時 */
#step .right.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  animation: slowRotate_right 2s ease-in-out forwards;
}
@keyframes slowRotate_right {
  0%   { transform: rotate(0deg); }
  87%  { transform: rotate(0deg); } /* 全体4秒の87.5%（＝3.5秒）まで0度を維持 */
  100% { transform: rotate(20deg); } /* 最後の0.5秒でくるっと回る */
}
#step .en_common{
  border-bottom: 1px solid #fff;
}
#step h2{
  margin: 30px 0 30px 20px;
}
#step h3{
  margin-bottom: 40px;
}
#step .box a {
  background: #fff;
  display: block;
  margin: auto;
  font-size: 1.2rem;
  width: 80vw;
  height: 90px;
  border-radius: 45px;
  box-shadow: 4px 4px 4px 0 rgba(0,0,0,0.1);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
#step .box a:first-of-type {
  margin-bottom: 15px;
}
#step .box a span {
  font-size: 1.8rem;
  display: block;
  color: var(--main-color);
  font-weight: 500;
}
@media screen and (min-width:1000px){
  #step{
    max-width: 1350px;
    margin: 0 auto 40px;
    padding: 80px 0;
  }
  #step h2{
    margin: 50px 0 30px;
  }
  #step .left{
    top: auto;
    left: 10px;
    bottom: 40px;
    width: 250px;
  }
  #step .right{
    right:20px;
    top: -10px;
    width: 250px;
  }
  #step .box{
    display: flex;
    justify-content: center;
  }
  #step .box a {
    width: 30%;
    margin: 0;
    height: 110px;
    border-radius: 55px;
  }
   #step .box a:first-of-type {
    margin-right: 10px;
   }
   #step .box a {
    font-size: 1.4rem;
   }
   #step .box a span {
    font-size: 2.4rem;
   }
}

#info.inner{
  border-radius: 20px;
  padding: 50px 4vw 6vw;
  background: #fff;
}
#info > div .ttl{
  background: var(--sub-color);
  color: #fff;
  font-size: 1.4rem;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  width: 45%;
  margin: auto;
  text-align: center;
}
#info > div img{
  display: block;
  margin: 25px auto 30px;
  text-align: center;
  width: 70vw;
}
#info > div .flexpc dl{
  border-top: 1px solid #D9D9D9;
  margin: auto;
  text-align: center;
  padding: 10px 0;
  line-height: 1.7;
}
#info > div .flexpc dl dt{
  color: var(--main-color);
  font-size: 1.3rem;
}
#info > div .flexpc dl dd{
  font-size: 1.2rem;
}
#info > div .flexpc dl dd span{
  display: block;
  color: rgba(40,45,39,.5);
}
#info > div .hour {
	margin:20px 0;
  width: 100%;
  text-align: center;
  background: var(--main-color);
  border-radius: 20px;
  padding: 10px 3vw 30px;
}
#info > div .hour .flex{
  display: flex;
}
#info > div .hour .flex p {
  font-size: 1.1rem;
	letter-spacing: 0;
	color: #fff;
	text-align: center;
  font-family: var(--font-sans);
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding:20px 0;
}
#info > div .hour .flex p:first-of-type {
  width: 23%;
}
#info > div .hour .flex p:not(first-of-type) {
    width: calc(77%/7);
}
#info > div .hour .closed{
  font-size: 1.2rem;
  color: #fff;
  text-align: left;
  margin-top: 12px;
}
#info > div .hour .flex p td:first-of-type {
	font-weight: 500;
}
#info iframe{
  width: 100%;
  height: 300px;
  border-radius: 20px;
}
@media screen and (min-width:1000px){
  #info.inner{
    padding: 50px 2%;
    display: flex;
    justify-content: space-between;
  }
  #info.inner > div{
    width: 48%;
    margin-top: 30px;
  }
  #info > div .ttl{
    font-size: 1.6rem;
    width: 300px;
    margin: auto;
  }
  #info > div img{
    width: 400px;
  }
  #info > div .flexpc{
    display: flex;
    flex-wrap: wrap;
  }
  #info > div .flexpc dl{
    width: 45%;
    text-align: left;
    padding: 10px 0 0;
    height: 100px;
  }
  #info > div .hour {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
  #info > div .hour .flex p {
    font-size: 1.2rem;
  }
  #info > div .hour .flex p:first-of-type {
    width: 32%;
    padding-right: 10px;
    padding-left: 10px;
  }
  #info > div .hour .flex p:not(first-of-type) {
    width: calc(68%/7);
  }
    #info > div .hour .flex p {
    font-size: 1.6rem;
  }
  #info iframe{
    width: 48%;
    height: 620px;
  }
}

.pagetop {
  position: fixed;
  z-index: 10;
}
@media screen and (min-width: 1000px) {
  .pagetop {

  }
}

.bottom_fixed{
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 2%;
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.bottom_fixed a {
  background: #fff;
  display: block;
  margin: auto;
  font-size: 1rem;
  width: 48%;
  height: 60px;
  border-radius: 30px;
  box-shadow: 4px 4px 4px 0 rgba(0,0,0,0.1);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bottom_fixed span {
  font-size: 1.2rem;
  display: block;
  color: var(--main-color);
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .bottom_fixed{
    right: 3%;
    left: auto;
    bottom: 30px;
    width: auto;
    display: flex;
  }
  .bottom_fixed a {
    width: 200px;
    display: block;
    margin: 0;
    font-size: 1.2rem;
    height: 80px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .bottom_fixed a:first-child {
    margin-right: 10px;
  }
  .bottom_fixed span {
    font-size: 1.4rem;
  }
}

footer{
  background: var(--bg-color);
  margin: -3px auto 0;
  text-align: center;
  padding: 40px 0 110px;
}
@media screen and (min-width: 1000px) {
  footer{
    padding: 40px 0 40px;
    margin: auto;
  }
}
footer small{
  font-size: 1rem;
  line-height: 1.6;
  font-family: var(--font-en);
}


