@charset "UTF-8";
:root {
  --text-black: #222;
  --orange01: #fbaf00;
  --light-blue: #77b1fb;
  --blue01: #31659b;
  --en: "m-plus-1p", sans-serif;
  --linear: linear-gradient(#d9f5ff, #f4fdff);
  --leading-trim: calc((1em - 1lh) / 2);
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-black);
  background: #fff;
  font-variant-east-asian: proportional-width;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: opacity 0.3s ease-in-out, back-ground 0.3s ease-in-out, color 0.3s ease-in-out;
  opacity: 1;
}

a:hover {
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

.bold {
  font-weight: 700;
}

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

.medium {
  font-weight: 500;
}

.regular {
  font-weight: 400;
}

section {
  padding: 150px 0;
}
@media screen and (max-width:768px) {
  section {
    padding: 80px 0;
  }
}
section .sec-ttl-wrapper {
  margin-bottom: 60px;
}

.inner {
  width: 85.15625%;
  max-width: 1090px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .inner {
    width: 87.4358974359%;
  }
}

.ta-c {
  text-align: center;
}

.ta-j {
  text-align: justify;
}

.ta-r {
  text-align: right;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

address {
  font-style: normal;
  text-decoration: none;
}

.en {
  font-family: "m-plus-1p", sans-serif;
}

.pageCover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.pageCover.show {
  visibility: hidden;
}
.pageCover.show .bges span {
  transform: translateX(101%);
}
.pageCover .bges span {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transition: 0.8s cubic-bezier(0.57, 0.15, 0.13, 0.97) 0.1s;
}
.pageCover .bges span.bg-2 {
  background: white;
  transition: 0.8s cubic-bezier(0.57, 0.15, 0.13, 0.97);
}

.btn01 {
  width: 250px;
  height: 60px;
  background: var(--orange01);
  border: 2px solid white;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  padding: 16px 32px;
  align-items: center;
  color: white;
  font-weight: 700;
  gap: 16px;
  font-size: 1.8rem;
  box-shadow: 0px 4px 0px #a26718;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
}
.btn01 span {
  display: inline-block;
  width: 28px;
  height: 28px;
  position: relative;
  transition: all 0.3s var(--cubic-bezier);
}
.btn01 span::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: white;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s var(--cubic-bezier);
}
.btn01 span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--orange01);
  border-right: 3px solid var(--orange01);
  transition: all 0.3s var(--cubic-bezier);
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-64%, -50%) rotate(45deg);
}
.btn01:hover {
  background: white;
  color: var(--orange01);
  box-shadow: 0px 4px 0px #fbaf00;
}
.btn01:hover span::after {
  background-color: var(--orange01);
}
.btn01:hover span::before {
  border-color: white;
}

.btn02 {
  width: 250px;
  height: 60px;
  background: var(--light-blue);
  border: 2px solid white;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 16px 32px;
  box-shadow: 0px 4px 0px #163159;
  --cubic-bezier: cubic-bezier(0.57, 0.15, 0.13, 0.97);
}
.btn02 span {
  display: inline-block;
  width: 28px;
  height: 28px;
  position: relative;
  transition: all 0.3s var(--cubic-bezier);
}
.btn02 span::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--blue01);
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s var(--cubic-bezier);
}
.btn02 span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid white;
  border-right: 3px solid white;
  transition: all 0.3s var(--cubic-bezier);
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-64%, -50%) rotate(45deg);
}
.btn02:hover {
  background: white;
  color: var(--light-blue);
  box-shadow: 0px 4px 0px var(--light-blue);
}
.btn02:hover span::after {
  background-color: var(--light-blue);
}
.btn02:hover span::before {
  border-color: white;
}

.btn03,
.btn04 {
  display: none;
}

@media screen and (max-width:480px) {
  .btn03 {
    width: 52px;
    height: 52px;
    box-shadow: 0 4px 0px #a26718;
    background: var(--orange01);
    border-radius: 50%;
    border: 1px solid white;
    color: white;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--cubic-bezier);
  }
  .btn03::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../../assets/images/icon-zoom.svg) no-repeat center/contain;
    display: block;
    text-align: center;
    transition: all 0.3s var(--cubic-bezier);
  }
  .btn04 {
    width: 52px;
    height: 52px;
    box-shadow: 0px 4px 0px #163159;
    background: var(--light-blue);
    border-radius: 50%;
    border: 1px solid white;
    color: white;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--cubic-bezier);
  }
  .btn04::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../../assets/images/icon-mail.svg) no-repeat center/contain;
    display: block;
    text-align: center;
    transition: all 0.3s var(--cubic-bezier);
  }
}
.header {
  background: var(--orange01);
  color: white;
  position: fixed;
  top: 0;
  height: 80px;
  left: 0;
  z-index: 99;
  width: 100%;
}
@media screen and (max-width:768px) {
  .header {
    height: 66px;
  }
}
.header .header-inner {
  padding: 0px 40px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width:768px) {
  .header .header-inner {
    padding: 0 16px;
    height: 66px;
  }
}
.header .header-inner .header-logo {
  display: block;
  color: white;
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--en);
}
@media screen and (max-width:768px) {
  .header .header-inner .header-logo {
    font-size: 2.7rem;
  }
}
.header .contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.header .contact-wrapper .btn01,
.header .contact-wrapper .btn02 {
  height: 50px;
  width: 220px;
  padding: 0 20px;
}
@media screen and (max-width:768px) {
  .header .contact-wrapper .btn01,
  .header .contact-wrapper .btn02 {
    display: none;
  }
}

.color-orange {
  color: var(--orange01);
}

.mv {
  padding-top: 80px;
  position: relative;
  background-color: #d9f5ff;
  overflow: hidden;
}
@media screen and (max-width:480px) {
  .mv {
    padding-top: 66px;
  }
}
.mv .mv-content {
  justify-content: center;
  background: url(../../assets/images/mv-pc.png) no-repeat bottom center/cover;
  padding: 0 20px;
  border-bottom-left-radius: 150px;
  position: relative;
}
@media screen and (max-width:480px) {
  .mv .mv-content {
    flex-direction: column;
    border-bottom-left-radius: 80px;
    background: url(../../assets/images/mv-sp.png) no-repeat center/cover;
  }
}
.mv .mv-text {
  padding: 72px 0;
  position: relative;
  color: white;
}
@media screen and (max-width:480px) {
  .mv .mv-text {
    padding: 32px 0 8px;
    position: static;
  }
}
.mv .mv-text .text-top {
  margin-bottom: 16px;
}
.mv .mv-text .text-top span:nth-of-type(1) {
  font-weight: 700;
  font-size: 2.4rem;
}
@media screen and (max-width:768px) {
  .mv .mv-text .text-top span:nth-of-type(1) {
    font-size: 1.4rem;
    background-color: var(--orange01);
    border-radius: 20px;
    height: 25px;
    width: 138px;
    display: inline-block;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}
.mv .mv-text .text-top span:nth-of-type(2) {
  font-size: 3.6rem;
  line-height: 1.4;
  font-weight: 900;
}
@media screen and (max-width:768px) {
  .mv .mv-text .text-top span:nth-of-type(2) {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.mv .mv-text .text-top span:nth-of-type(3) {
  font-size: 4.8rem;
  font-weight: 900;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width:768px) {
  .mv .mv-text .text-top span:nth-of-type(3) {
    font-size: 4.4rem;
    line-height: 1.3;
  }
}
.mv .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}
@media screen and (max-width:768px) {
  .mv .btn-wrapper {
    flex-direction: column;
    position: absolute;
    bottom: 56px;
  }
  .mv .btn-wrapper .btn01,
  .mv .btn-wrapper .btn02 {
    width: 164px;
    height: 48px;
    font-size: 1.2rem;
    gap: unset;
    padding: 0 16px;
    justify-content: space-between;
  }
}
.mv .mv-img {
  margin-left: -7.8125vw;
  align-self: flex-end;
}
@media screen and (max-width:768px) {
  .mv .mv-img {
    margin-left: 0;
    margin-right: -50%;
  }
}

.color-blue {
  color: var(--blue01);
}

.grad-bg {
  background-image: linear-gradient(#d9f5ff, rgba(244, 253, 255, 0.5));
}

section {
  padding: 72px 0;
}

.fadeInTarget:not(.is-done) {
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  opacity: 0;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

h2 {
  text-align: center;
  font-family: var(--en);
  font-weight: 700;
  font-size: clamp(24px, 3.125vw, 40px);
  margin-bottom: 32px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
h2 .emphasis {
  -webkit-text-emphasis-style: filled dot;
  text-emphasis-style: filled dot;
  -webkit-text-emphasis-color: var(--orange01);
  text-emphasis-color: var(--orange01);
  -webkit-text-emphasis-position: over;
  text-emphasis-position: over;
}

.intro {
  padding-bottom: 0;
}
.intro .desc {
  margin-bottom: 32px;
}
.intro .intro-list {
  text-align: center;
}
.intro .about {
  background-color: white;
  padding: 60px 80px;
  border-radius: 58px;
  box-shadow: -20px 20px 0 #c1e8f6;
}
@media screen and (max-width:768px) {
  .intro .about {
    padding: 64px 16px;
    border-radius: 58px;
    box-shadow: -8px 8px 0 #c1e8f6;
  }
}
.intro .about .about-list {
  flex-wrap: wrap;
}
@media screen and (max-width:768px) {
  .intro .about .about-list {
    flex-direction: column;
    gap: 40px;
  }
}
.intro .about .about-list .item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.intro .about .about-list .item .img-wrapper {
  margin: 0 auto;
  text-align: center;
}
.intro .about .about-list .item .ttl {
  color: white;
  background: var(--orange01);
  border-radius: 30px;
  font-weight: 900;
  padding: 8px 20px;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width:768px) {
  .intro .about .about-list .item .ttl {
    margin-bottom: 16px;
  }
}
.intro .about .about-list .item .text {
  font-size: 1.8rem;
  font-weight: 700;
}
.intro .ttl {
  font-size: clamp(42px, 4.21875vw, 54px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width:768px) {
  .intro .ttl {
    text-align: center;
    margin-bottom: 24px;
  }
}
.intro .ttl span {
  font-size: clamp(28px, 3.125vw, 4rem);
}

.box {
  opacity: 0;
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: var(--cubic-bezier);
  animation-timing-function: var(--cubic-bezier);
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.reason {
  padding-bottom: 0;
}
.reason h2 {
  font-size: 2.4rem;
  line-height: 1.2;
}
.reason h2 span {
  font-size: clamp(34px, 4.21875vw, 54px);
}
.reason .reason-list {
  margin: 0 auto;
  max-width: 780px;
}
.reason .reason-list .item {
  width: 100%;
  max-width: 740px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .reason .reason-list .item {
    flex-direction: column-reverse;
  }
}
.reason .reason-list .item:not(:last-child) {
  margin-bottom: 60px;
}
.reason .reason-list .item:nth-child(2) {
  margin-left: 72px;
}
@media screen and (max-width:768px) {
  .reason .reason-list .item:nth-child(2) {
    margin-left: 0;
  }
}
.reason .reason-list .item:nth-child(3) {
  max-width: 780px;
  margin-left: 144px;
}
@media screen and (max-width:768px) {
  .reason .reason-list .item:nth-child(3) {
    margin-left: 0;
  }
}
.reason .reason-list .item:nth-child(3) .text-wrapper {
  max-width: 440px;
}
.reason .reason-list .item .img-wrapper {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 300/180;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width:768px) {
  .reason .reason-list .item .img-wrapper {
    margin-bottom: 20px;
  }
}
.reason .reason-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.reason .reason-list .item .text-wrapper {
  max-width: 400px;
  width: 100%;
  flex-shrink: 0;
}
.reason .reason-list .item .text-wrapper .sub {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.reason .reason-list .item .text-wrapper h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media screen and (max-width:768px) {
  .reason .reason-list .item .text-wrapper h3 {
    font-size: 2rem;
  }
}
.reason .reason-list .item .text-wrapper .desc {
  margin-bottom: 20px;
}
.reason .reason-list .item .text-wrapper .child-list {
  background: white;
  border-radius: 8px;
  padding: 12px 16px;
}
.reason .reason-list .item .text-wrapper .child-list li:not(:last-child) {
  margin-bottom: 8px;
}

.merrit .desc {
  margin-bottom: 32px;
}
.merrit .merrit-list {
  gap: 6.25vw;
  max-width: 786px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .merrit .merrit-list {
    flex-direction: column;
    gap: 40px;
  }
}
.merrit .merrit-list .item .img-wrapper {
  margin-bottom: 24px;
  text-align: center;
}
.merrit .merrit-list .item .text-wrapper h3 {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.flow .desc {
  margin-bottom: 32px;
}
.flow .flow-list {
  counter-reset: flow-counter;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
@media screen and (max-width:768px) {
  .flow .flow-list {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.flow .flow-list .item {
  padding: 48px 20px;
  counter-increment: flow-counter;
  position: relative;
  background: white;
  border-radius: 17px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width:480px) {
  .flow .flow-list .item {
    max-width: 244px;
    margin: 0 auto;
    width: 100%;
  }
}
.flow .flow-list .item:not(:last-child)::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--blue01);
  border-right: 3px solid var(--blue01);
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width:768px) {
  .flow .flow-list .item:not(:last-child)::after {
    bottom: -32px;
    left: 50%;
    top: auto;
    transform: translate(-50%, 0) rotate(135deg);
  }
}
.flow .flow-list .item::before {
  content: counter(flow-counter);
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  background: var(--blue01);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-weight: 800;
  border-radius: 17px 0 17px 0;
  font-family: var(--en);
}
.flow .flow-list .item .img-wrapper {
  width: 110px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 12px;
}
.flow .flow-list .item .img-wrapper img {
  -o-object-fit: contain;
  object-fit: contain;
}
.flow .flow-list .item .text-wrapper {
  text-align: center;
}
.flow .flow-list .item .text-wrapper h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.price {
  background-color: #fff8e9;
}
.price dl {
  max-width: 840px;
  margin: 0 auto;
}
.price dl dt {
  color: white;
  background-color: var(--orange01);
  height: 110px;
  line-height: 110px;
  text-align: center;
  border-radius: 20px 20px 0 0;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
}
@media screen and (max-width:768px) {
  .price dl dt {
    line-height: 1.4;
    display: flex;
    height: 84px;
    align-items: center;
    justify-content: center;
  }
}
.price dl dd {
  padding: 48px 20px;
  background-color: white;
  border-radius: 0 0 20px 20px;
}
.price dl dd .flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.25vw;
}
@media screen and (max-width:768px) {
  .price dl dd .flex-wrapper {
    flex-direction: column;
  }
}
.price dl dd .flex-wrapper .left .fee {
  margin-bottom: 32px;
  align-items: flex-end;
  line-height: 1;
}
.price dl dd .flex-wrapper .left .fee .getu {
  width: 64px;
  height: 42px;
  display: grid;
  place-content: center;
  color: white;
  background-color: var(--orange01);
  font-weight: 700;
  font-size: 2.4rem;
  border-radius: 4px;
}
.price dl dd .flex-wrapper .left .fee .num {
  font-size: 11.8rem;
  font-weight: 700;
  line-height: 0.76;
  font-family: var(--en);
}
.price dl dd .flex-wrapper .left .fee .tani {
  font-weight: 800;
  font-size: 4rem;
}
.price dl dd .flex-wrapper .btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price dl dd .flex-wrapper .right .shien-list .item {
  line-height: 1;
  font-size: 2rem;
}
.price dl dd .flex-wrapper .right .shien-list .item:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width:768px) {
  .price dl dd .flex-wrapper .right .shien-list .item:not(:last-child) {
    margin-bottom: 28px;
  }
}
.price dl dd .flex-wrapper .right .shien-list .item::before {
  content: "";
  background: url(../../assets/images/check-orange.svg) no-repeat center/contain;
  width: 20px;
  height: 12px;
  margin-right: 0.3em;
  display: inline-block;
}

.faq {
  padding: 120px 0;
}
@media screen and (max-width:768px) {
  .faq {
    padding: 80px 0;
  }
}
.faq .faq-list {
  max-width: 940px;
  margin: 0 auto;
}
.faq .faq-list .item {
  background-color: #f4fdff;
  border-radius: 16px;
  overflow: hidden;
  padding: 32px 56px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width:768px) {
  .faq .faq-list .item {
    padding: 28px 16px;
  }
}
.faq .faq-list .item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .faq .faq-list .item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.faq .faq-list .item dl dt {
  color: var(--blue01);
  font-size: 2rem;
  font-weight: 700;
  gap: 0.5em;
  justify-content: flex-start;
  margin-bottom: 12px;
  align-items: flex-start;
}
@media screen and (max-width:768px) {
  .faq .faq-list .item dl dt {
    font-size: 1.8rem;
  }
}
.faq .faq-list .item dl dt .icon {
  display: grid;
  place-content: center;
  font-size: 2rem;
  font-family: var(--en);
  font-weight: 700;
  border-radius: 50%;
  background: var(--blue01);
  aspect-ratio: 1/1;
  flex-shrink: 0;
  color: white;
  width: 34px;
  height: 34px;
}
.faq .faq-list .item dl dd {
  gap: 0.5em;
  align-items: flex-start;
  justify-content: flex-start;
}
.faq .faq-list .item dl dd .icon {
  display: grid;
  place-content: center;
  font-size: 2rem;
  font-family: var(--en);
  font-weight: 700;
  border-radius: 50%;
  border: 1px solid var(--orange01);
  aspect-ratio: 1/1;
  flex-shrink: 0;
  color: var(--orange01);
  width: 34px;
  height: 34px;
}
.faq .faq-list .item dl dd .text {
  text-align: justify;
}
@media screen and (max-width:768px) {
  .faq .faq-list .item dl dd .text {
    font-size: 1.4rem;
  }
}

.cta-box {
  background: #c1e8f6;
  padding: 40px 0 0;
}
@media screen and (max-width:768px) {
  .cta-box {
    height: auto;
    padding-bottom: 0;
  }
}
.cta-box .flex-wrapper {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width:768px) {
  .cta-box .flex-wrapper {
    flex-direction: column-reverse;
  }
}
.cta-box .flex-wrapper .img-wrapper {
  margin-top: -80px;
  width: 340px;
}
@media screen and (max-width:768px) {
  .cta-box .flex-wrapper .img-wrapper {
    margin-top: 0;
    width: 250px;
    margin: 0 auto;
  }
}
.cta-box .flex-wrapper .text-wrapper {
  text-align: center;
}
@media screen and (max-width:768px) {
  .cta-box .flex-wrapper .text-wrapper {
    margin-bottom: 24px;
  }
}
.cta-box .flex-wrapper .text-wrapper .ttl {
  font-size: clamp(20px, 2.1875vw, 28px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
@media screen and (max-width:768px) {
  .cta-box .flex-wrapper .text-wrapper .ttl {
    margin-bottom: 24px;
  }
}
.cta-box .flex-wrapper .text-wrapper .ttl .big {
  font-size: clamp(24px, 3.125vw, 40px);
}
.cta-box .flex-wrapper .text-wrapper .desc {
  margin-bottom: 24px;
}
.cta-box .flex-wrapper .text-wrapper .btn-wrapper {
  gap: 16px;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .cta-box .flex-wrapper .text-wrapper .btn-wrapper {
    flex-direction: column;
  }
}

.footer {
  padding: 100px 0 24px;
  position: relative;
  z-index: 2;
  background: url(../../assets/images/footer-bg.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .footer {
    background: url(../../assets/images/footer-bg-sp.png) no-repeat center/cover;
  }
}
.footer .footer-inner {
  padding: 0 20px;
}
.footer .content {
  max-width: 935px;
  margin: 0 auto;
  color: white;
  border-radius: 8px;
  margin-bottom: 60px;
  padding: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  align-items: flex-end;
}
@media screen and (max-width:768px) {
  .footer .content {
    flex-direction: column;
    text-align: center;
    gap: 80px;
    align-items: center;
  }
}
.footer .content .footer-ttl {
  color: white;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--en);
}
.footer .content .company {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer .content address {
  font-size: 1.4rem;
}
.footer .content .link {
  color: white;
  font-size: 1.4rem;
}
.footer small {
  font-size: 1.2rem;
  display: block;
  text-align: center;
  color: white;
}

.page-ttl {
  background: url(../../assets/images/lower-page-ttl.svg) no-repeat center/cover;
  height: 415px;
  margin-top: 80px;
}
@media screen and (max-width:768px) {
  .page-ttl {
    background: url(../../assets/images/page-ttl-sp.svg) no-repeat center/cover;
    height: 283px;
    margin-top: 66px;
  }
}
.page-ttl h2 {
  font-size: clamp(28px, 4.453125vw, 57px);
  text-align: center;
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 104px);
  font-family: inherit;
}
@media screen and (max-width:768px) {
  .page-ttl h2 {
    height: calc(100% - 72px);
  }
}

.lower {
  background-color: #f8f8f8;
}

.content {
  width: 100%;
  border-top-left-radius: 104px;
  border-top-right-radius: 104px;
  background-color: white;
  padding: 104px 20px 80px;
  margin-top: -104px;
}
@media screen and (max-width:768px) {
  .content {
    padding: 72px 20px 80px;
    border-top-left-radius: 72px;
    border-top-right-radius: 72px;
    margin-top: -72px;
  }
}
.content dl {
  max-width: 780px;
  margin: 0 auto 32px;
}
.content dl .hissu {
  display: none;
}
.content dl dt {
  margin-bottom: 4px;
}
.content dl.required dt {
  display: flex;
  align-items: center;
}
.content dl.required dt::before {
  content: "必須";
  border-radius: 2px;
  width: 36px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  background-color: #d9695f;
  margin-right: 0.3em;
}
.content .btn-wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 72px auto 0;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  padding: 12px 16px;
  font-weight: 500;
  font-family: inherit;
  background: #f8f8f8;
  border: #ddd 1px solid;
  border-radius: 2px;
  width: 100%;
}

.accept {
  text-align: center;
}
.accept a {
  color: #d9695f;
  text-decoration: underline;
}

.wpcf7-submit {
  display: grid;
  place-content: center;
  margin: 0 auto;
  height: 64px;
  width: 320px;
  font-size: 1.8rem;
  text-align: center;
  color: white;
  border: 2px solid var(--light-blue);
  background: var(--light-blue);
  border-radius: 40px;
  transition: all 0.3s var(--cubic-bezier);
}
.wpcf7-submit:hover {
  background-color: white;
  color: var(--light-blue);
}

.wpcf7-previous {
  display: grid;
  place-content: center;
  margin: 0 auto;
  height: 64px;
  width: 320px;
  font-size: 1.8rem;
  text-align: center;
  color: var(--light-blue);
  border: 2px solid var(--light-blue);
  background: white;
  border-radius: 40px;
  transition: all 0.3s var(--cubic-bezier);
}
.wpcf7-previous:hover {
  background-color: var(--light-blue);
  color: white;
}

.wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  transform: translateY(-50%) scale(1);
}
.wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}
.wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 50%;
}
.wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--orange01);
  transition: all 0.3s var(--cubic-bezier);
}

::-webkit-input-placeholder {
  color: #c3c3c3;
}

::-moz-placeholder {
  color: #c3c3c3;
}

:-ms-input-placeholder {
  color: #c3c3c3;
}

::-ms-input-placeholder {
  color: #c3c3c3;
}

::placeholder {
  color: #c3c3c3;
}

.contact-thanks p {
  text-align: center;
}

/* 管理バー表示時のみヘッダーを下げる */
body.admin-bar .header {
  top: 32px;
}

/* SP（管理バーが高くなる） */
@media (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
    top: 0;
    left: 0;
  }
}
.privacy-policy .content .inner > * {
  margin: 1.3em 0;
  text-align: justify;
}
@media screen and (max-width:768px) {
  .privacy-policy .content .inner {
    width: 100%;
  }
}
.privacy-policy .content h3.wp-block-heading {
  margin-top: 2.5em;
  font-size: 1.25em;
  font-weight: 700;
  border-left: 4px solid var(--blue, #0091b6);
  padding-left: 16px;
}
@media screen and (max-width:768px) {
  .privacy-policy .content h3.wp-block-heading {
    font-size: 1.1em;
  }
}
.privacy-policy .content li + li {
  margin-top: 0.4em;
}
.privacy-policy .content ul.wp-block-list,
.privacy-policy .content ol.wp-block-list,
.privacy-policy .content ul,
.privacy-policy .content ol {
  margin: 1.2em 0 1.2em 1.5em;
  padding-left: 0;
  line-height: 1.7;
}
.privacy-policy .content .wp-block-list.wp-block-list {
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}
.privacy-policy .content ol.wp-block-list li {
  list-style: decimal;
}
.privacy-policy .content ol.wp-block-list li ol li {
  list-style: lower-alpha;
}
.privacy-policy .content ol.wp-block-list li ol li ol li {
  list-style: lower-roman;
}

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