@charset "utf-8";

/* CSS Document */
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Zen Old Mincho", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  z-index: 0;
  font-feature-settings: "pkna" 1;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: inherit;
  font-feature-settings: "palt";
  line-height: 1.65;
}

p {
  margin-bottom: 0;
}

pre {
  margin-bottom: 0;
}

dl {
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
}

ol {
  margin-bottom: 0;
  list-style: decimal;
  padding-left: 1em;
}

img {
  max-width: 100%;
}

.sp_only {
  display: none;
}

/*-----------------------------------------------------------------
ハンバーガーメニュー
-----------------------------------------------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #999;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.6rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*--------------------------------------------------------------------------*/
header {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 99;
  display: flex;
  justify-content: space-between;
  padding: 2rem 3vw;
  height: 6vw;
  align-items: center;
}

.logo {
  width: 25%;
}

.h_r {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
}

.h_info {
  display: flex;
  gap: 2vw;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

.gnav {
  width: 100%;
  padding: 30px 0;
  margin-bottom: 6%;
}

.gnav ul {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3vw;
  align-items: center;
}

.gnav ul li a {
  font-size: max(1vw, 1.8rem);
  color: #0a96de;
  position: relative;
}

.gnav ul li a::after {
  content: "";
  width: 80%;
  height: 2px;
  background-color: #0a96de;
  position: absolute;
  top: 110%;
  left: 10%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s;
}

.gnav ul li a:hover:after {
  transform: scale(1, 1);
}

#float_area {
  /* flex-wrap: nowrap; */
  align-items: center;
  display: grid;
  grid-template-columns: clamp(19rem, -10.4rem + 28vw, 26rem) 1fr clamp(19rem, -10.4rem + 28vw, 26rem);
  width: 100%;
  gap: 20px;
  position: fixed;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  top: -200%;
  transition: top 0.3s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

#float_area .gnav {
  padding: 1%;
  margin-bottom: 0;
  grid-area: 1 / 2 / 2 / 3;
}

#float_area .gnav ul {
  min-width: 640px;
}

#float_area .tel {
  max-width: 249px;
  width: 100%;
  grid-area: 1 / 3 / 2 / 4;
  padding-right: 10px;
}

#float_area .mail {
  max-width: 206px;
  width: 100%;
}

#float_area.active {
  top: 0%;
}

.mv {
  position: relative;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.re {
  flex-direction: row-reverse;
}

.mv_l {
  width: 50%;
  background-image: url(../images/MV_bg.png);
  text-align: center;
  background-size: cover;
}

.mv p {
  position: absolute;
  top: 2vw;
  left: 26%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: min(1.6vw, 32px);
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid#ffffff;
  margin: 0 auto;
  line-height: 1.5;
}

.mv p span {
  font-size: min(1.4vw, 28px);
}

.mv_r {
  width: 50%;
}

.mv_text {
  position: absolute;
  bottom: 20px;
  left: 7%;
  z-index: 1;
  width: 36vw;
}

#youtube {
  padding: 6% 0;
}

.youtube_inner {
  max-width: calc(900px + 6%);
  margin: 0 auto;
  padding: 0 3%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.contact {
  padding: 6% 0;
  background: url("../images/contact_bg.png") no-repeat center / cover;
}

.contact_ttl {
  text-align: center;
  font-size: max(3vw, 3rem);
  color: #0a96de;
  line-height: 1;
}

.contact_inner {
  padding: 3vw;
  background: #ffffff;
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
}

.contact_inner_l {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
}

.contact_inner_r {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 1;
}

.contact_flex {
  max-width: 1100px;
  margin: 5% auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_sub {
  font-size: max(2vw, 2rem);
  text-align: center;
  margin-bottom: 3%;
  position: relative;
}

.contact_sub::before {
  content: "";
  position: absolute;
  right: max(45vw, 70%);
  bottom: 0;
  background: url("../images/contact_deco.png") no-repeat center / contain;
  width: 10vw;
  height: 7vw;
}

.contact_flex a {
  max-width: 48%;
}

#feature {
  margin-bottom: 6%;
}

.feature_ttl_wrap {
  padding: 3rem;
  background: #e9f8ff;
  margin-bottom: 10%;
  position: relative;
}

.feature_ttl {
  text-align: center;
  font-size: max(3vw, 3rem);
  color: #0a96de;
  max-width: 1400px;
  margin: 0 auto;
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.2;
}

.feature_ttl span {
  font-size: max(2vw, 2rem);
}

.feature_ttl::before {
  content: "";
  position: absolute;
  left: 18vw;
  bottom: 2rem;
  background: url("../images/feature_ttl_deco.png") no-repeat center / contain;
  width: 12%;
  height: 62%;
}

.inner1400 {
  max-width: calc(1400px + 10%);
  padding: 0 5%;
  margin: 0 auto;
  width: 100%;
}

.featurebox01 {
  max-width: calc(1200px + 10%);
  margin-left: auto;
  position: relative;
  margin-bottom: 50px;
  padding: 0 5%;
}

.featurebox01::before {
  content: "";
  position: absolute;
  left: -8vw;
  top: -50px;
  background: url("../images/feature01_img.png") no-repeat center / contain;
  width: 38vw;
  height: 434px;
}

.featurebox01 .wrap {
  background: #e9f8ff;
  padding: 50px 5% 20px;
  max-width: 900px;
  margin-left: auto;
}

.featurebox01 .wrap .inner {
  /* max-width: 650px; */
  max-width: clamp(36.8rem, 10.639rem + 33.98vw, 65rem);
  margin-left: auto;
  margin-right: 0;
}

.featurebox02 {
  max-width: calc(1200px + 10%);
  margin-right: auto;
  position: relative;
  margin-bottom: 50px;
  padding: 0 5%;
}

.featurebox02::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: -50px;
  background: url("../images/feature02_img.png") no-repeat center / contain;
  width: 38vw;
  height: 434px;
  /* max-width: 648px;
  width: 100%;
  aspect-ratio:18 / 13; */
}

.featurebox02 .wrap {
  background: #e9f8ff;
  padding: 50px 5% 20px;
  max-width: 900px;
  margin-right: auto;
}

.featurebox02 .wrap .inner {
  /* max-width: 650px; */
  max-width: clamp(36.8rem, 10.639rem + 33.98vw, 65rem);
  margin-right: auto;
  margin-right: 0;
}

.featurebox_num {
  color: #ffffff;
  font-size: max(1.2vw, 2rem);
  margin-bottom: 6%;
}

.featurebox_num span {
  background: #0a96de;
  padding: 1rem 3rem;
}

.featurebox_ttl {
  font-size: max(2vw, 2.4rem);
  margin-bottom: 6%;
  color: #0a96de;
}

.wrap .inner p {
  font-size: max(1vw, 1.6rem);
  margin-bottom: 6%;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.btn {
  margin: 10% 0;
}

.btn a {
  padding: 1rem 2rem;
  font-size: max(1vw, 1.8rem);
  border: 1px solid #0a96de;
}

.wrap .inner .btn {
  text-align: right;
  color: #0a96de;
}

.price_box {
  padding: 3%;
  border: 1px solid #0a96de;
  max-width: 1100px;
  margin: 0 auto 6%;
}

.price_box dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  font-size: max(1vw, 1.6rem);
}

.price_box dl dt {
  width: 22%;
  padding: 1rem 2rem;
  background: #0a96de;
  color: #ffffff;
  margin-bottom: 2%;
}

.price_box dl dd {
  width: 74%;
  margin-bottom: 2%;
  padding: 1rem 0;
}

.list_disc li {
  list-style: disc;
  color: #0a96de;
  margin-left: 2rem;
  font-size: 3rem;
}

.list_disc li span {
  font-size: max(1vw, 1.6rem);
  color: #333333;
}

.message {
  max-width: 1200px;
  margin: 0 auto 5%;
}

.message .img {
  width: 38%;
}

.message .txt {
  width: 58%;
}

.message .ttl {
  font-size: max(2vw, 2rem);
  margin-bottom: 6%;
  font-weight: 600;
}

.message .sub_ttl {
  font-size: max(1vw, 1.8rem);
  margin-bottom: 6%;
  font-weight: 600;
}

.message p {
  font-size: max(0.9vw, 1.6rem);
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.check_box {
  max-width: 1000px;
  padding: 3vw;
  margin: 0 auto;
  border: 2px solid #0a96de;
  border-radius: 10px;
  background-color: #fff;
}

.check_ttl {
  text-align: center;
  font-size: max(1.2vw, 2rem);
  margin-bottom: 6%;
}

.check {
  display: flex;
  justify-content: space-between;
  font-size: max(1vw, 1.8rem);
  flex-wrap: wrap;
}

.check li {
  width: 48%;
  position: relative;
  margin-bottom: 2%;
  padding-left: 3rem;
}

.check li::before {
  content: "";
  background: url("../images/check.png") no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 23px;
}

.check2 {
  font-size: max(1vw, 1.8rem);
}

.check2 li {
  position: relative;
  margin-bottom: 5%;
  padding-left: 3rem;
}

.check2 li::before {
  content: "";
  background: url("images/check2.png") no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 23px;
}

.merit_ttl_wrap {
  padding: 3rem;
  background: #e9f8ff;
  position: relative;
}

.merit_ttl_wrap_lower {
  margin-top: 50px;
}

.merit_ttl {
  text-align: center;
  font-size: max(3vw, 3rem);
  color: #0a96de;
  max-width: 1400px;
  margin: 0 auto;
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.2;
}

.merit_ttl span {
  font-size: max(2vw, 2rem);
}

.merit_ttl::before {
  content: "";
  position: absolute;
  right: 18vw;
  bottom: 2rem;
  background: url("../images/merit_ttl_deco.png") no-repeat center / contain;
  width: 12%;
  height: 62%;
}

.merit_container {
  padding-top: 6%;
  background: url("../images/merit_bg.png") no-repeat center/cover;
  background-position: left;
}

.merit_inner {
  max-width: calc(1280px + 10%);
  padding: 0 5%;
  margin: 0 auto;
}

.merit_inner .ttl {
  font-size: max(1.4vw, 2rem);
  margin-bottom: 3%;
  font-weight: 600;
  color: #0a96de;
}

.merit_box {
  width: 42%;
  padding: 3rem;
  border: 1px solid #0a96de;
}

.demerit_box {
  width: 55%;
  padding: 3rem;
  border: 1px solid #0a96de;
}

.merit_box .box_ttl,
.demerit_box .box_ttl {
  font-size: max(1vw, 1.8rem);
  font-weight: 600;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #0a96de;
}

.merit_inner .wrap {
  margin-bottom: 6%;
}

#flow {
  position: relative;
}
.flow-bg {
  /* inset: 0; */
  width: 100%;
  aspect-ratio: 1000 / 707;
  position: absolute;
  bottom: 0;
  background: url(../images/bg-2-r.jpg) no-repeat right bottom/100% auto;
  z-index: -2;
}

.flow_ttl_wrap {
  padding: 3rem;
  background: #e9f8ff;
  position: relative;
}

.flow_ttl {
  text-align: center;
  font-size: max(3vw, 3rem);
  color: #0a96de;
  max-width: 1400px;
  margin: 0 auto;
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.2;
}

.flow_ttl span {
  font-size: max(2vw, 2rem);
}

.flow_ttl::before {
  content: "";
  position: absolute;
  left: 18vw;
  bottom: 2rem;
  background: url("../images/feature_ttl_deco.png") no-repeat center / contain;
  width: 12%;
  height: 62%;
}

.stepbarwrap .txt {
  width: 68%;
}

.stepbarwrap .img {
  width: 28%;
}

/******************************
フロー表
*******************************/
.stepbar {
  margin: 0 auto;
  width: 80%;
}

.stepbar .stepbarwrap {
  margin: 6em 0;
  position: relative;
}

.stepbar .stepbarwrap .steptitle {
  display: inline-flex;
  align-items: center;
  font-size: max(1.2vw, 2rem);
}

.stepbar .stepbarwrap .steptitle .stepcircle {
  display: inline-block;
  width: 3em;
  height: 3em;
  content: "";
  border-radius: 50%;
  background-color: #ffffff;
  color: #0a96de;
  text-align: center;
  border: 1px solid #0a96de;
}

.stepbar .stepbarwrap .steptitle .stepcircle span {
  display: inline-block;
  line-height: 1.2em;
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  top: 0.8rem;
}

.stepbar .stepbarwrap .steptitle .title {
  margin: 0 0 0.5em 0;
  font-weight: bold;
  font-size: max(1.4vw, 1.8rem);
  padding-left: 1.5rem;
  color: #0a96de;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.stepbar .stepbarwrap .steptxt {
  padding-left: 7.5rem;
}

.stepbar .stepbarwrap .steptxt .txt {
  font-size: max(1vw, 1.6rem);
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.stepbar .stepbarwrap .stepline {
  width: 3px;
  height: calc(100% + 6em);
  background-color: #0a96de;
  position: absolute;
  top: 1em;
  left: 2.5em;
  z-index: -1;
}

.stepbarwrap:last-of-type .stepline:last-of-type {
  display: none;
}

@media screen and (max-width: 960px) {
  .stepbar {
    width: 90%;
  }
}

.blue {
  color: #0a96de;
}

.mt3 {
  margin-top: 30px;
}

.fee_ttl_wrap {
  padding: 3rem;
  background: #e9f8ff;
  position: relative;
}

.fee_ttl {
  text-align: center;
  font-size: max(3vw, 3rem);
  color: #0a96de;
  max-width: 1400px;
  margin: 0 auto;
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.2;
}

.fee_ttl span {
  font-size: max(2vw, 2rem);
}

.fee_ttl::before {
  content: "";
  position: absolute;
  right: 18vw;
  bottom: 2rem;
  background: url("../images/merit_ttl_deco.png") no-repeat center / contain;
  width: 12%;
  height: 62%;
}

.fee_inner {
  padding: 6% 0;
  background: url("../images/fee_bg.jpg") no-repeat center / cover;
}

.feebox {
  width: 48%;
}

.fee-bg {
  background: url("../images/fee_bg.jpg") no-repeat center center / cover;
}

.fee-box {
  max-width: 1499px;
  display: flex;
  justify-content: space-between;
  column-gap: 2rem;
  box-sizing: content-box;
  margin-inline: auto;
  padding: 12.3rem 3rem 13rem;
}

.fee-box__box {
  max-width: clamp(46rem, -5.153rem + 51.1vw, 71.5rem);
  width: 100%;
  position: relative;
}

.fee-box__box_office {
  background-color: #0a96de;
}

.fee-box__box_home {
  background-color: #0fcdcb;
}

.fee-box__inner {
  max-width: 623px;
  color: #fff;
  font-weight: 900;
  box-sizing: content-box;
  margin-inline: auto;
  padding: clamp(4.5rem, 2.32rem + 5.45vw, 6.5rem) 1.5rem clamp(4.5rem, 3.683rem + 2.04vw, 5.25rem);
}

.fee-box__title {
  max-width: 515px;
  font-size: clamp(2.5rem, 1.955rem + 1.36vw, 3rem);
  text-align: center;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #fff;
  margin-inline: auto;
  padding-bottom: clamp(1.7rem, 1.046rem + 1.63vw, 2.3rem);
}

.fee-box__desc {
  font-size: clamp(1.6rem, 1.382rem + 0.54vw, 1.8rem);
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin-top: clamp(2rem, 0.365rem + 4.09vw, 3.5rem);
}

.fee-box__price {
  font-size: clamp(7rem, 0.982rem + 6.01vw, 10rem);
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: clamp(2rem, -0.18rem + 5.45vw, 4rem);
}

.fee-box__symbol {
  font-size: clamp(2.6rem, 1.074rem + 3.81vw, 4rem);
}

.fee-box__tax {
  font-size: clamp(1.8rem, 0.492rem + 3.27vw, 3rem);
}

.fee-box__annotation {
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: 2rem;
}

.fee__deco-top {
  width: clamp(5rem, 1.403rem + 8.99vw, 8.3rem);
  aspect-ratio: 83 / 68;
  position: absolute;
  top: clamp(1rem, 0.673rem + 0.82vw, 1.3rem);
}

.fee__deco-top_l {
  left: clamp(1rem, 0.019rem + 2.45vw, 1.9rem);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.fee__deco-top_r {
  right: clamp(1rem, 0.019rem + 2.45vw, 1.9rem);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.fee__deco-bottom {
  width: clamp(5rem, 1.403rem + 8.99vw, 8.3rem);
  aspect-ratio: 83 / 81;
  position: absolute;
  bottom: clamp(1rem, 0.673rem + 0.82vw, 1.3rem);
}

.fee__deco-bottom_l {
  left: clamp(1rem, 0.019rem + 2.45vw, 1.9rem);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

.fee__deco-bottom_r {
  right: clamp(1rem, 0.019rem + 2.45vw, 1.9rem);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.case_inner {
  padding: 6% 5%;
}

.case_wrap {
  padding: 3vw;
  border: 1px solid #0a96de;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.case_ttl {
  text-align: center;
  font-size: max(2vw, 2rem);
  font-weight: 600;
  margin-bottom: 3%;
  color: #0a96de;
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.2;
}

.case_ttl span {
  font-size: max(2vw, 2rem);
}

.case_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3%;
  flex-wrap: wrap;
}

.case_flex .before,
.case_flex .after {
  width: 42%;
  position: relative;
}

.case_flex .arrow {
  width: 10%;
  display: grid;
  align-items: center;
  justify-content: center;
}

.case_flex .before::before {
  content: "before";
  padding: 1rem;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: #ffffff;
  border-radius: 20px;
  font-size: max(1.2vw, 2rem);
  color: #0a96de;
  font-weight: 600;
}

.case_flex .after::before {
  content: "after";
  padding: 1rem;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: #ffffff;
  border-radius: 20px;
  font-size: max(1.2vw, 2rem);
  color: #0a96de;
  font-weight: 600;
}

.case_sub {
  font-size: max(1vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.design01 {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: max(1vw, 1.8rem);
}

.design01 th {
  padding: 15px;
  background: #0a96de;
  border: solid 1px #ffffff;
  width: 30%;
  color: #ffffff;
  text-align: center;
}

.design01 td {
  padding: 15px;
  border: solid 1px #778ca3;
  width: 70%;
  text-align: left;
}

.inner1280 {
  max-width: calc(1280px + 10%);
  padding: 0 5%;
  margin: 0 auto;
  margin-bottom: 6%;
}

.qa-6 {
  max-width: 1280px;
  width: 100%;
  margin-bottom: 10px;
  font-size: max(1vw, 1.8rem);
}

.qa-6 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  background: #0a96de;
}

.qa-6 summary::before,
.qa-6 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: max(1vw, 1.8rem);
}

.qa-6 summary::before {
  color: #ffffff;
  content: "Q.";
  font-size: max(1.4vw, 2rem);
}

.qa-6 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  content: "";
  transition: transform 0.5s;
}

.qa-6[open] summary::after {
  transform: rotate(225deg);
}

.qa-6 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1.5em 3em 1.5em;
  color: #333;
  transition:
    transform 0.5s,
    opacity 0.5s;
}

.faq_ttl_wrap {
  padding: 3rem;
  background: #e9f8ff;
  position: relative;
  margin-bottom: 6%;
}

.faq_ttl {
  text-align: center;
  font-size: max(3vw, 3rem);
  color: #0a96de;
  max-width: 1400px;
  margin: 0 auto;
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.2;
}

.faq_ttl span {
  font-size: max(2vw, 2rem);
}

.faq_ttl::before {
  content: "";
  position: absolute;
  right: 18vw;
  bottom: 2rem;
  background: url("../images/merit_ttl_deco.png") no-repeat center / contain;
  width: 12%;
  height: 62%;
}

.qa-6[open] p {
  transform: none;
  opacity: 1;
}

.qa-6 p::before {
  color: #0a96de;
  line-height: 0.8;
  content: "A.";
  font-size: max(1.4vw, 2rem);
}

.mb3 {
  margin-bottom: 30px;
}

.mb1 {
  margin-bottom: 10px;
}

.greeting_ttl_wrap {
  padding: 3rem;
  background: #e9f8ff;
  position: relative;
  margin-bottom: 6%;
}

.greeting_ttl {
  text-align: center;
  font-size: max(3vw, 3rem);
  color: #0a96de;
  max-width: 1400px;
  margin: 0 auto;
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.2;
}

.greeting_ttl span {
  font-size: max(2vw, 2rem);
}

.greeting_ttl::before {
  content: "";
  position: absolute;
  right: 18vw;
  bottom: 2rem;
  background: url("../images/merit_ttl_deco.png") no-repeat center / contain;
  width: 12%;
  height: 62%;
}

.flex-2 {
  width: 48%;
}

.flex-2 p {
  font-size: max(0.9vw, 1.6rem);
  letter-spacing: 0.06em;
  line-height: 1.8;
}

#greeting .sub_ttl {
  color: #0a96de;
  font-size: max(1.4vw, 2rem);
  margin-bottom: 6%;
  letter-spacing: 0.06em;
  line-height: 1.8;
  font-weight: 600;
}

.name {
  font-size: max(1.4vw, 2rem);
  font-weight: 600;
}

.name span {
  font-size: max(0.9vw, 1.4rem);
  margin-right: 1rem;
}

.name span + span {
  margin-left: 1rem;
}

.alc {
  align-items: center;
}

section:last-child {
  margin-bottom: 6%;
}

#footer {
  background: url("../images/footer_bg.png") no-repeat top / cover;
  padding-top: 6%;
}

.footer_logo {
  text-align: center;
  margin-bottom: 6%;
}

.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-contact .f_tel.flex-2 {
  text-align: center;
}
.f_link {
  margin: 3% 0;
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 1rem;
}

.jcc {
  justify-content: center;
}

.gap3 {
  gap: 3rem;
}

.time-table {
  display: block;
  border-collapse: collapse;
  font-size: max(0.9vw, 1.4rem);
}

.time-table th {
  border-top: 1px solid #d2d2d2;
}

.time-table th,
.time-table td {
  padding: 0px 10px;
  text-align: center;
  height: 50px;
  border-bottom: 1px solid #d2d2d2;
  vertical-align: middle;
}

.time-table td {
  width: 100%;
  min-width: 58px;
  color: #1ba1e6;
  font-weight: bold;
}

.time-table .time {
  color: #3c3c3c !important;
}

.time-table tbody th {
  background: #0a96de;
  color: #ffffff;
}

@media screen and (max-width: 764px) {
  .time-table td {
    min-width: auto;
    width: 100%;
    max-width: 5%;
    font-size: 12px;
  }

  .time-table th,
  .time-table td {
    min-width: 40px;
    width: 100%;
    padding: 0px 1vw;
    font-size: 10px;
  }
}

.sns_ttl {
  font-size: max(1.4vw, 2rem);
  font-weight: 600;
  color: #0a96de;
  margin-bottom: 3%;
  position: relative;
}

.sns_ttl span {
  background: #e9f8ff;
  position: relative;
  padding-right: 2rem;
}

.sns_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 100%;
  background: #0a96de;
}

.tc {
  text-align: center;
}

#footer .gnav ul {
  justify-content: center;
  margin-top: 6%;
  flex-wrap: wrap;
}

.copy {
  background: #0996da;
  padding: 2rem 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.6rem;
}

.overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: 1fr clamp(30rem, -7.693rem + 49.08vw, 62rem);
  column-gap: 40px;
}

.overview__dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  font-size: max(0.9vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.overview__dt {
  display: flex;
  align-items: center;
  background-color: #0a96de;
  color: #fff;
  padding-left: 15px;

  &:not(:last-of-type) {
    border-bottom: 1px solid #fff;
  }
}

.overview__dd {
  display: flex;
  align-items: center;
  white-space: pre-line;
  padding: 15px;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;

  &:first-of-type {
    border-top: 1px solid #dfdfdf;
  }
}

.overview__img {
  max-width: 100%;
  aspect-ratio: 80 / 59;
  background: url(../images/overview.jpg) no-repeat 0 0 / contain;
}

/*--------------------------------------------------------------------------
下層ページ
--------------------------------------------------------------------------*/
.h2_ttl {
  text-align: center;
  color: #ffffff;
  font-size: max(3vw, 3rem);
  padding: max(10vw, 10rem) 0 max(8vw, 8rem);
  background: url("../images/h2_ttl.png") no-repeat center/cover;
  line-height: 1;
  font-weight: 600;
}

.h2_ttl span {
  font-size: max(1vw, 1.8rem);
}

.h3_ttl {
  font-size: max(2.4vw, 2.4rem);
  text-align: center;
  color: #0a99e3;
  padding-bottom: 1rem;
  margin-bottom: 5%;
  position: relative;
  font-weight: 600;
}

.h3_ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 10rem;
  background: #0a99e3;
}

.bg-1 {
  background: url(../images/bg-1.jpg) no-repeat right bottom/100% auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
.bg-1_w {
  background: url(../images/bg-1.jpg) no-repeat right bottom/100% auto;
  padding-bottom: 100px;
}

/*--------------------------------------------------------------------------
PC
--------------------------------------------------------------------------*/
@media only screen and (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }

  .tab-only {
    display: none !important;
  }

  .tab-sp-only {
    display: none !important;
  }
}

/*--------------------------------------------------------------------------
tablet
--------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }

  .pc-only {
    display: none !important;
  }

  .mv_text {
    position: absolute;
    bottom: 20px;
    left: 8%;
    z-index: 1;
    width: 34vw;
  }
}

/*--------------------------------------------------------------------------
sp
--------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }

  .pc-tab-only {
    display: none !important;
  }

  .tab-only {
    display: none !important;
  }

  header {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
  }

  .logo {
    width: 50%;
  }

  #sp_sticky {
    position: fixed;
    bottom: 0;
    z-index: 100;
    left: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    height: min(12vw, 130px);
    bottom: -200%;
    transition: bottom 0.3s;
  }

  #sp_sticky.active {
    bottom: 0;
  }

  #sp_sticky > * {
    width: 100%;
  }

  #sp_sticky > * a {
    display: inline-block;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0996da;
    color: #ffffff;
    font-size: min(5vw, 3rem);
    position: relative;
  }

  #sp_sticky > * a::after {
    content: "";
    width: 0;
    height: 0;
    border-top: min(5vw, 20px) solid transparent;
    border-left: min(5vw, 20px) solid transparent;
    border-bottom: min(5vw, 20px) solid rgba(255, 255, 255, 0.8);
    border-right: min(5vw, 20px) s solid rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 1;
  }

  #sp_sticky .tel a p {
    padding-left: min(8vw, 40px);
    position: relative;
  }

  #sp_sticky .tel a p::before {
    content: "";
    width: min(6vw, 35px);
    aspect-ratio: 1 / 1;
    background-image: url(../images/tel.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
  }

  #sp_sticky .mail a {
    background-color: #0fcdcb;
  }

  #sp_sticky .mail a p {
    padding-left: min(8vw, 40px);
    position: relative;
  }

  #sp_sticky .mail a p::before {
    content: "";
    width: min(6vw, 35px);
    aspect-ratio: 42 / 30;
    background-image: url(../images/mail.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
  }

  .mv {
    margin-top: 80px;
    margin-bottom: 8%;
  }

  .mv_l {
    width: 96%;
    margin: -8vw auto 0;
    height: 86vw;
    z-index: 2;
  }

  .mv_r {
    width: 100%;
  }

  .mv_text {
    width: 90%;
    margin: 0 auto;
    left: 5%;
    bottom: 2%;
  }

  .mv p {
    top: 2vw;
    left: 5%;
    transform: translateX(0);
    font-size: min(4.1vw, 20px);
    padding: 4px 20px;
  }

  .mv p span {
    font-size: min(3.3vw, 16px);
  }

  .contact_flex a {
    max-width: 90%;
    margin: 3% auto 0;
  }

  .contact_flex {
    flex-wrap: wrap;
  }

  .contact_sub::before {
    right: 90%;
    bottom: 10px;
  }

  .featurebox01::before {
    left: 50%;
    top: -50px;
    width: 90%;
    transform: translateX(-50%);
  }

  .featurebox01 {
    margin-bottom: 50px;
    padding: 70% 0% 0;
  }

  .price_box dl dt {
    width: 100%;
  }

  .price_box dl dd {
    width: 100%;
  }

  .featurebox02::before {
    right: 50%;
    top: -50px;
    width: 90%;
    transform: translateX(50%);
  }

  .featurebox02 {
    margin-bottom: 50px;
    padding: 70% 0% 0;
  }

  .message .img {
    width: 100%;
  }

  .message .txt {
    width: 100%;
  }

  .check li {
    width: 100%;
  }

  .merit_box {
    width: 100%;
    margin-bottom: 2rem;
  }

  .demerit_box {
    width: 100%;
  }

  .stepbarwrap .txt {
    width: 100%;
  }

  .stepbarwrap .img {
    width: 100%;
    padding-left: 5.5rem;
  }

  .stepbar .stepbarwrap .steptxt {
    padding-left: 5.5rem;
  }

  .feebox {
    width: 100%;
    margin-top: 2rem;
  }

  .case_flex .before,
  .case_flex .after {
    width: 100%;
    margin-bottom: 3rem;
  }

  .case_flex .arrow {
    width: 100%;
    margin-bottom: 3rem;
    transform: rotate(90deg);
  }

  .qa-6 p {
    padding: 1.5em 1.5em 1.5em 3em;
  }

  .flex-2 {
    width: 100%;
    margin-top: 3rem;
  }

  .stepbar .stepbarwrap .steptitle .title {
    width: 84%;
  }

  .stepbar .stepbarwrap .stepline {
    top: 4em;
  }

  .h2_ttl {
    margin-top: 80px;
  }

  .overview {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  #flow .stepbarwrap .img {
    margin-top: 2rem;
  }
  #flow .stepbarwrap .img img {
    width: 100%;
  }
  .featurebox01 .wrap .inner {
    max-width: 650px;
  }
  .featurebox02 .wrap .inner {
    max-width: 650px;
  }
}

@media screen and (max-width: 1100px) {
  .footer-info {
    flex-direction: column;
  }
  .footer-info .flex-2 {
    width: 100%;
  }
  .footer-info .footer-table {
    max-width: 630px;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 1000px) {
  .fee-box {
    flex-direction: column;
    row-gap: 7rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .fee-box__box {
    max-width: 71.5rem;
    margin-inline: auto;
  }
  .fee-box__price {
    font-size: clamp(6.4rem, 2.476rem + 9.81vw, 10rem);
  }
}
@media screen and (max-width: 767px) {
  .footer-info .footer-table {
    max-width: 500px;
  }
}
