@charset "UTF-8";
/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/*-----------------------
import.scss
-----------------------*/
/*-----------------------
mixin
-----------------------*/
/*mediaquery*/
/*-----------------------
01.reset
-----------------------*/
/*reset --Don't use global reset!--*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: normal;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
table caption,
table th {
  font-weight: 300;
}
table td {
  font-weight: 200;
}

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

a {
  display: inline-block;
  color: #000;
  text-decoration: none;
}
a:link {
  color: #000;
}
a:active {
  color: #000;
}
a:visited {
  color: #000;
}
a:hover {
  cursor: pointer;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

ul {
  list-style: none;
}

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

input,
button,
textarea,
select {
  margin: 0;
  border: none;
  outline: none;
  letter-spacing: 0.1em;
}

img.cover,
video.cover {
  -o-object-fit: cover;
     object-fit: cover;
}

h1 {
  font-weight: normal;
}

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

p {
  margin: 0;
}

:-moz-placeholder {
  color: #8a8a8a;
}

:placeholder-shown {
  color: #8a8a8a;
}

::-webkit-input-placeholder {
  color: #8a8a8a;
}

:-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8a8a8a;
}

*:focus {
  outline: none;
}

.pc {
  display: block;
}
@media (max-width: 750px) {
  .pc {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.pc-tab {
  display: block;
}
@media (max-width: 750px) {
  .pc-tab {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .pc-tab {
    display: block;
  }
}

.tab {
  display: none;
}
@media (max-width: 750px) {
  .tab {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tab {
    display: block;
  }
}

.tab-sp {
  display: none;
}
@media (max-width: 750px) {
  .tab-sp {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tab-sp {
    display: block;
  }
}

.sp {
  display: none;
}
@media (max-width: 750px) {
  .sp {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}

.fL {
  float: left;
}

.fR {
  float: right;
}

.flex {
  display: flex;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.is-fixed {
  display: none;
}

.mT20 {
  margin-top: 2rem;
}

.mT40 {
  margin-top: 4rem;
}

.mT60 {
  margin-top: 6rem;
}

/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/*-----------------------
style.scss
-----------------------*/
html {
  font-size: 62.5%;
  line-height: 1;
}

body {
  position: relative;
  color: #000;
  font-size: clamp(14px, 14px + 2 * (100vw - 767px) / 673, 16px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}

.inner {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
}

.under-line {
  background: #FBFFA0;
  padding: 3px;
  display: inline;
  font-weight: bold;
}

@media (min-width: 768px) and (max-width: 1024px) {
  header > .inner {
    width: 100%;
  }
}
@media (max-width: 750px) {
  header > .inner {
    width: 100%;
  }
}
header > .inner.flex {
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  header > .inner.flex {
    padding: 0;
  }
}
@media (max-width: 750px) {
  header > .inner.flex {
    padding: 0;
  }
}
header > .inner.flex h1 {
  max-width: 227px;
  width: 23%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  header > .inner.flex h1 {
    width: 20%;
    margin-left: 5%;
  }
}
@media (max-width: 750px) {
  header > .inner.flex h1 {
    max-width: 141px;
    width: 100%;
    margin-left: 5%;
  }
}
header > .inner.flex .flex-right {
  max-width: 717px;
  width: 70%;
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}
@media (min-width: 768px) and (max-width: 1024px) {
  header > .inner.flex .flex-right {
    gap: 0;
  }
}
@media (max-width: 750px) {
  header > .inner.flex .flex-right {
    gap: 0;
  }
}
header > .inner.flex .flex-right a:first-of-type {
  max-width: 332px;
}
header > .inner.flex .flex-right a:first-of-type img {
  content: url("../img/cta01-off.png");
}
@media (min-width: 768px) and (max-width: 1024px) {
  header > .inner.flex .flex-right a:first-of-type img {
    content: none;
  }
}
@media (max-width: 750px) {
  header > .inner.flex .flex-right a:first-of-type img {
    content: none;
    max-width: 60px;
  }
}
header > .inner.flex .flex-right a:first-of-type:hover img {
  content: url("../img/cta01-on.png");
}
@media (min-width: 768px) and (max-width: 1024px) {
  header > .inner.flex .flex-right a:first-of-type:hover img {
    content: none;
  }
}
@media (max-width: 750px) {
  header > .inner.flex .flex-right a:first-of-type:hover img {
    content: none;
  }
}
header > .inner.flex .flex-right a img {
  max-width: 352px;
  content: url("../img/cta02-off.png");
}
@media (min-width: 768px) and (max-width: 1024px) {
  header > .inner.flex .flex-right a img {
    content: none;
  }
}
@media (max-width: 750px) {
  header > .inner.flex .flex-right a img {
    content: none;
    max-width: 60px;
  }
}
header > .inner.flex .flex-right a:hover img {
  content: url("../img/cta02-on.png");
}
@media (min-width: 768px) and (max-width: 1024px) {
  header > .inner.flex .flex-right a:hover img {
    content: none;
  }
}
@media (max-width: 750px) {
  header > .inner.flex .flex-right a:hover img {
    content: none;
  }
}

#data {
  background: #b9ddf8;
  padding: 60px 0;
}
@media (max-width: 750px) {
  #data {
    padding: 30px 0;
  }
}
#data > .inner {
  max-width: 1000px;
}

#intro {
  background: url(../img/intro-bg.jpg) no-repeat center/cover;
  padding: 218px 0 40px;
}
@media (max-width: 750px) {
  #intro {
    background: url(../img/intro-bg-sp.jpg) no-repeat top center/cover;
    padding: 175px 0 50px;
  }
}
#intro .inner {
  position: relative;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
  padding: 127px 100px 63px;
  box-sizing: border-box;
}
@media (max-width: 750px) {
  #intro .inner {
    padding: 15px 10px;
  }
}
#intro .inner h2 {
  max-width: 802px;
  margin: 0 auto;
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  top: -107px;
}
@media (max-width: 750px) {
  #intro .inner h2 {
    top: -150px;
  }
}
#intro .inner .box {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #intro .inner .box {
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  #intro .inner .box {
    flex-direction: column;
  }
}
#intro .inner .box .flex-left h3 {
  color: #00518d;
  font-size: clamp(22px, 22px + 10 * (100vw - 767px) / 673, 32px);
  display: flex;
  gap: 25px;
  align-items: center;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
@media (max-width: 750px) {
  #intro .inner .box .flex-left h3 {
    gap: 5px;
  }
}
#intro .inner .box .flex-left h3 .no {
  max-width: 112px;
}
@media (max-width: 750px) {
  #intro .inner .box .flex-left h3 .no {
    max-width: 72px;
  }
}
#intro .inner .box .flex-left .txt {
  margin-top: 40px;
  line-height: 2.2;
}
@media (max-width: 750px) {
  #intro .inner .box .flex-left .txt {
    margin-top: 30px;
  }
}
#intro .inner .box .flex-left .memo {
  margin-top: 20px;
  font-size: clamp(12px, 12px + 0 * (100vw - 767px) / 673, 12px);
  letter-spacing: 0.03em;
}
#intro .inner .box .flex-left .memo p {
  display: flex;
  gap: 5px;
}
#intro .inner #box01 {
  gap: 75px;
}
@media (max-width: 750px) {
  #intro .inner #box01 {
    gap: 30px;
  }
}
#intro .inner #box01 .flex-left {
  max-width: 510px;
  width: 51%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #intro .inner #box01 .flex-left {
    max-width: inherit;
    width: 100%;
  }
}
@media (max-width: 750px) {
  #intro .inner #box01 .flex-left {
    max-width: inherit;
    width: 100%;
  }
}
#intro .inner #box01 .flex-right {
  max-width: 421px;
  width: 43%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #intro .inner #box01 .flex-right {
    max-width: inherit;
    width: 100%;
  }
}
@media (max-width: 750px) {
  #intro .inner #box01 .flex-right {
    max-width: inherit;
    width: 100%;
  }
}
#intro .inner #box02 {
  margin-top: 69px;
  gap: 29px;
}
#intro .inner #box02 .flex-left {
  max-width: 500px;
  width: 50%;
  order: 2;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #intro .inner #box02 .flex-left {
    max-width: inherit;
    width: 100%;
    order: 1;
  }
}
@media (max-width: 750px) {
  #intro .inner #box02 .flex-left {
    max-width: inherit;
    width: 100%;
    order: 1;
  }
}
#intro .inner #box02 .flex-right {
  max-width: 471px;
  width: 48%;
  order: 1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #intro .inner #box02 .flex-right {
    max-width: inherit;
    width: 100%;
    order: 2;
  }
}
@media (max-width: 750px) {
  #intro .inner #box02 .flex-right {
    max-width: inherit;
    width: 100%;
    order: 2;
  }
}

.cta {
  padding: 60px 0;
  background: #00518d;
}
@media (max-width: 750px) {
  .cta {
    padding: 30px 0;
  }
}
.cta .inner {
  max-width: 1000px;
  text-align: center;
}
.cta h2 {
  color: #fff;
  font-size: clamp(20px, 20px + 6 * (100vw - 767px) / 673, 26px);
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .cta h2 {
    letter-spacing: 0.01em;
  }
}
.cta h2::before, .cta h2::after {
  position: absolute;
  content: "";
  bottom: 5px;
}
.cta h2::before {
  left: -30px;
  width: 2px;
  height: 35px;
  background: #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-25deg);
}
@media (max-width: 750px) {
  .cta h2::before {
    left: -20px;
  }
}
.cta h2::after {
  right: -30px;
  width: 2px;
  height: 35px;
  background: #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-165deg);
}
@media (max-width: 750px) {
  .cta h2::after {
    right: -20px;
  }
}
.cta h2 span {
  color: #FBFFA0;
  font-size: clamp(24px, 24px + 8 * (100vw - 767px) / 673, 32px);
}
@media (max-width: 750px) {
  .cta h2 span {
    letter-spacing: 0.03em;
  }
}
.cta .box {
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 29px 70px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 165px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cta .box {
    gap: 20px;
  }
}
@media (max-width: 750px) {
  .cta .box {
    flex-direction: column;
    gap: 30px;
    padding: 20px 15px 30px;
  }
}
.cta .box::before {
  position: absolute;
  content: "";
  top: 20%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 2px;
  height: 60%;
  border-left: 2px solid #c3c3c3;
}
@media (max-width: 750px) {
  .cta .box::before {
    content: none;
  }
}
.cta .box .flex-left h3,
.cta .box .flex-right h3 {
  font-size: clamp(22px, 22px + 4 * (100vw - 767px) / 673, 26px);
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
}
@media (max-width: 750px) {
  .cta .box .flex-left h3,
  .cta .box .flex-right h3 {
    margin-bottom: 5px;
  }
}
.cta .box .flex-left > .cta-link img {
  max-width: 336px;
  content: url("../img/cta01-off.png");
}
@media (max-width: 750px) {
  .cta .box .flex-left > .cta-link img {
    max-width: 100%;
  }
}
.cta .box .flex-left > .cta-link:hover img {
  content: url("../img/cta01-on.png");
}
.cta .box .flex-right > .cta-link img {
  max-width: 336px;
  content: url("../img/cta02-off.png");
}
@media (max-width: 750px) {
  .cta .box .flex-right > .cta-link img {
    max-width: 100%;
  }
}
.cta .box .flex-right > .cta-link:hover img {
  content: url("../img/cta02-on.png");
}

#onayami {
  background: #d9efff;
  padding: 130px 0 100px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #onayami {
    padding: 60px 0 50px;
  }
}
@media (max-width: 750px) {
  #onayami {
    padding: 30px 0;
  }
}
#onayami::before {
  position: absolute;
  content: "";
  bottom: -43px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 87px solid transparent;
  border-left: 87px solid transparent;
  border-top: 43px solid #d9eeff;
  border-bottom: 0;
  z-index: 99;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #onayami::before {
    bottom: -42px;
  }
}
#onayami h2 {
  max-width: 692px;
  margin: 0 auto;
}
#onayami .list {
  margin: 60px auto 0;
}
@media (max-width: 750px) {
  #onayami .list {
    margin: 30px auto 0;
  }
}
#onayami .list ul.flex {
  gap: 50px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #onayami .list ul.flex {
    gap: 20px;
  }
}
@media (max-width: 750px) {
  #onayami .list ul.flex {
    gap: 30px;
    flex-direction: column;
  }
}
#onayami .list ul.flex li {
  max-width: 367px;
}
@media (max-width: 750px) {
  #onayami .list ul.flex li {
    max-width: inherit;
  }
}

#kaiketsu {
  padding: 103px 0 100px;
  position: relative;
  z-index: 2;
  background: #fff;
}
@media (max-width: 750px) {
  #kaiketsu {
    padding: 56px 0 30px;
  }
}
#kaiketsu::before {
  content: "";
  position: absolute;
  top: 0; /* セクションの上から */
  left: 0;
  width: 100%;
  height: 463px; /* 高さ463pxだけ */
  background: #89c2eb;
  z-index: -1; /* 背景にまわす */
}
#kaiketsu h2 {
  max-width: 697px;
  margin: 0 auto;
}
#kaiketsu .list ul.flex {
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 15px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #kaiketsu .list ul.flex {
    gap: 30px 5px;
  }
}
@media (max-width: 750px) {
  #kaiketsu .list ul.flex {
    gap: 30px 5px;
  }
}
#kaiketsu .list ul.flex li {
  max-width: 384px;
  width: calc(100% - 10px);
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #kaiketsu .list ul.flex li {
    max-width: 350px;
    width: calc(100% - 5px);
  }
}
#kaiketsu .catch {
  margin: 80px auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 15px 0;
  background: #eaeaea;
  border-radius: 50rem;
  max-width: 1000px;
  box-sizing: border-box;
  font-size: clamp(20px, 20px + 10 * (100vw - 767px) / 673, 30px);
  font-weight: bold;
  position: relative;
}
@media (max-width: 750px) {
  #kaiketsu .catch {
    padding: 30px 0 35px;
    margin: 35px auto 0;
  }
}
#kaiketsu .catch::before {
  position: absolute;
  content: "";
  background: url(../img/kaiketsu-deco.svg) no-repeat center/100%;
  right: 15%;
  top: -7px;
  width: 85px;
  height: 46px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #kaiketsu .catch::before {
    right: 10%;
  }
}
@media (max-width: 750px) {
  #kaiketsu .catch::before {
    right: 0%;
    top: -16px;
  }
}
#kaiketsu .catch span {
  color: #00518d;
}

#case {
  background: url(../img/case-bg.jpg) no-repeat top center/cover;
  padding: 0 0 100px;
  z-index: 1;
}
@media (max-width: 750px) {
  #case {
    padding: 0 0 30px;
  }
}
#case h2 {
  max-width: 1054px;
  margin: 0 auto;
}
#case .list {
  margin: 50px auto 0;
}
@media (max-width: 750px) {
  #case .list {
    margin: 30px auto 0;
  }
}
#case .list ul.flex {
  gap: 45px;
}
@media (max-width: 750px) {
  #case .list ul.flex {
    flex-direction: column;
    gap: 30px;
  }
}

#features {
  background: #d9efff;
  padding: 70px 0 80px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features {
    padding: 50px 0 40px;
  }
}
@media (max-width: 750px) {
  #features {
    padding: 0 0 30px;
  }
}
#features h2 {
  margin: 0 auto;
}
#features .list {
  background: #fff;
  border-radius: 32px;
  padding: 35px 0;
  box-sizing: border-box;
}
@media (max-width: 750px) {
  #features .list {
    padding: 20px 30px;
    border-radius: 8px;
    margin: 30px auto 0;
  }
}
#features .list ul.flex {
  max-width: 990px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 60px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .list ul.flex {
    flex-direction: column;
    padding: 15px;
  }
}
@media (max-width: 750px) {
  #features .list ul.flex {
    flex-direction: column;
    gap: 15px;
  }
}
#features .list ul.flex li {
  width: 30%;
  position: relative;
  padding-left: 1em;
  font-size: clamp(18px, 18px + 6 * (100vw - 767px) / 673, 24px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .list ul.flex li {
    width: 100%;
    padding-left: 1.5em;
  }
}
@media (max-width: 750px) {
  #features .list ul.flex li {
    width: 100%;
    padding-left: 1.5em;
  }
}
#features .list ul.flex li::before {
  position: absolute;
  content: "";
  background: url(../img/features-deco.svg) no-repeat center/100%;
  top: 30%;
  left: 0;
  width: 24px;
  height: 19px;
}
@media (max-width: 750px) {
  #features .list ul.flex li::before {
    top: 5px;
  }
}
#features .list ul.flex li:first-child, #features .list ul.flex li:nth-child(3) {
  width: 53%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .list ul.flex li:first-child, #features .list ul.flex li:nth-child(3) {
    width: 100%;
  }
}
@media (max-width: 750px) {
  #features .list ul.flex li:first-child, #features .list ul.flex li:nth-child(3) {
    width: 100%;
  }
}
#features .list ul.flex li span {
  font-size: clamp(14px, 14px + 4 * (100vw - 767px) / 673, 18px);
}
#features .box-aqua {
  margin-top: 105px;
  position: relative;
  background: #fff;
  border-radius: 32px;
  box-sizing: border-box;
  padding: 150px 100px 60px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-aqua {
    padding: 70px 50px 30px;
  }
}
@media (max-width: 750px) {
  #features .box-aqua {
    margin-top: 70px;
    padding: 40px 15px 30px;
    border-radius: 13px;
  }
}
#features .box-aqua h3 {
  max-width: 517px;
  font-size: clamp(22px, 22px + 18 * (100vw - 767px) / 673, 40px);
  text-align: center;
  background: #00518d;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 15px 0;
  top: -55px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-aqua h3 {
    top: -35px;
  }
}
@media (max-width: 750px) {
  #features .box-aqua h3 {
    max-width: 315px;
    top: -35px;
  }
}
#features .box-aqua h3 span {
  font-size: clamp(14px, 14px + 10 * (100vw - 767px) / 673, 24px);
}
@media (max-width: 750px) {
  #features .box-aqua h3 span {
    margin-left: 20px;
  }
}
#features .box-aqua .box {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-aqua .box {
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  #features .box-aqua .box {
    flex-direction: column;
    gap: 30px;
  }
}
#features .box-aqua .box#a-box02 {
  margin-top: 60px;
}
@media (max-width: 750px) {
  #features .box-aqua .box#a-box02 {
    margin-top: 30px;
  }
}
#features .box-aqua .box#a-box02 .flex-left .txt {
  font-size: clamp(16px, 16px + 0 * (100vw - 767px) / 673, 16px);
}
#features .box-aqua .box#a-box02 .flex-right {
  margin-top: 130px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-aqua .box#a-box02 .flex-right {
    margin-top: 0;
  }
}
@media (max-width: 750px) {
  #features .box-aqua .box#a-box02 .flex-right {
    margin-top: 0;
  }
}
#features .box-aqua .box .flex-left {
  max-width: 457px;
  width: 46%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-aqua .box .flex-left {
    max-width: inherit;
    width: 100%;
  }
}
@media (max-width: 750px) {
  #features .box-aqua .box .flex-left {
    max-width: inherit;
    width: 100%;
  }
}
#features .box-aqua .box .flex-left h4 {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: clamp(22px, 22px + 10 * (100vw - 767px) / 673, 32px);
  font-weight: bold;
  color: #00518d;
}
@media (max-width: 750px) {
  #features .box-aqua .box .flex-left h4 {
    gap: 5px;
  }
}
#features .box-aqua .box .flex-left h4 .no {
  max-width: 112px;
}
@media (max-width: 750px) {
  #features .box-aqua .box .flex-left h4 .no {
    max-width: 72px;
  }
}
#features .box-aqua .box .flex-left .ttl {
  font-size: clamp(18px, 18px + 6 * (100vw - 767px) / 673, 24px);
}
#features .box-aqua .box .flex-left .txt {
  font-size: clamp(14px, 14px + 4 * (100vw - 767px) / 673, 18px);
}
#features .box-aqua .box .flex-left .memo {
  margin-top: 20px;
}
@media (max-width: 750px) {
  #features .box-aqua .box .flex-left .memo {
    margin-top: 15px;
  }
}
#features .box-aqua .box .flex-right {
  max-width: 500px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-aqua .box .flex-right {
    max-width: inherit;
    width: 100%;
  }
}
@media (max-width: 750px) {
  #features .box-aqua .box .flex-right {
    max-width: inherit;
    width: 100%;
  }
}
#features .box-aqua .movie {
  margin-top: 55px;
  text-align: center;
}
@media (max-width: 750px) {
  #features .box-aqua .movie {
    margin-top: 30px;
  }
}
#features .box-aqua .movie .movie-thumb {
  max-width: 900px;
  margin: 0 auto;
}
#features .box-aqua .movie iframe {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
#features .box-fluffy {
  margin-top: 125px;
  position: relative;
  background: #fff;
  border-radius: 32px;
  box-sizing: border-box;
  padding: 150px 100px 60px;
}
@media (max-width: 750px) {
  #features .box-fluffy {
    margin-top: 90px;
    padding: 47px 15px 30px;
    border-radius: 13px;
  }
}
#features .box-fluffy h3 {
  max-width: 1116px;
  font-size: clamp(22px, 22px + 18 * (100vw - 767px) / 673, 40px);
  text-align: center;
  background: #39d3cd;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 15px 0;
  top: -55px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-fluffy h3 {
    flex-direction: column;
    line-height: 1;
    gap: 5px;
  }
}
@media (max-width: 750px) {
  #features .box-fluffy h3 {
    flex-wrap: wrap;
    max-width: 315px;
    gap: 5px;
  }
}
#features .box-fluffy h3 span {
  font-size: clamp(14px, 14px + 10 * (100vw - 767px) / 673, 24px);
  margin-left: 10px;
  margin-right: 30px;
}
@media (max-width: 750px) {
  #features .box-fluffy h3 span {
    width: 45%;
    margin-left: 0;
    margin-right: 0;
  }
}
#features .box-fluffy h3 img {
  max-width: 244px;
}
@media (max-width: 750px) {
  #features .box-fluffy h3 img {
    max-width: 137px;
    width: 48%;
  }
}
#features .box-fluffy .box {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-fluffy .box {
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  #features .box-fluffy .box {
    flex-direction: column;
    gap: 30px;
  }
}
#features .box-fluffy .box#f-box01 .flex-right {
  max-width: 500px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-fluffy .box#f-box01 .flex-right {
    width: 100%;
    max-width: inherit;
  }
}
@media (max-width: 750px) {
  #features .box-fluffy .box#f-box01 .flex-right {
    width: 100%;
    max-width: inherit;
  }
}
#features .box-fluffy .box#f-box02 {
  margin-top: 60px;
}
@media (max-width: 750px) {
  #features .box-fluffy .box#f-box02 {
    margin-top: 30px;
  }
}
#features .box-fluffy .box#f-box02 .flex-left .txt {
  font-size: clamp(14px, 14px + 2 * (100vw - 767px) / 673, 16px);
  line-height: 2;
}
#features .box-fluffy .box#f-box02 .flex-right {
  max-width: 500px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-fluffy .box#f-box02 .flex-right {
    width: 100%;
    max-width: inherit;
  }
}
@media (max-width: 750px) {
  #features .box-fluffy .box#f-box02 .flex-right {
    width: 100%;
    max-width: inherit;
  }
}
#features .box-fluffy .box#f-box03 {
  margin-top: 80px;
  justify-content: space-between;
}
@media (max-width: 750px) {
  #features .box-fluffy .box#f-box03 {
    margin-top: 60px;
  }
}
#features .box-fluffy .box#f-box03 .flex-left {
  width: 50%;
  max-width: 500px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-fluffy .box#f-box03 .flex-left {
    width: 100%;
    max-width: inherit;
  }
}
@media (max-width: 750px) {
  #features .box-fluffy .box#f-box03 .flex-left {
    width: 100%;
    max-width: inherit;
  }
}
#features .box-fluffy .box#f-box03 .flex-left h5 {
  font-size: clamp(19px, 19px + 1 * (100vw - 767px) / 673, 20px);
  font-weight: bold;
  color: #00518d;
}
#features .box-fluffy .box#f-box03 .flex-left table {
  border: 1px solid #707070;
  width: 100%;
}
#features .box-fluffy .box#f-box03 .flex-left table tr {
  border-bottom: 1px solid #707070;
}
#features .box-fluffy .box#f-box03 .flex-left table tr:first-child th {
  background: #d9efff;
  text-align: center;
}
@media (max-width: 750px) {
  #features .box-fluffy .box#f-box03 .flex-left table tr:first-child th {
    font-size: 14px;
  }
}
#features .box-fluffy .box#f-box03 .flex-left table tr:first-child th {
  background: #d9efff;
  text-align: center;
}
#features .box-fluffy .box#f-box03 .flex-left table tr:not(:first-child) th {
  padding-left: 15px;
  background: #eaeaea;
}
#features .box-fluffy .box#f-box03 .flex-left table tr:last-child {
  border-bottom: none;
}
#features .box-fluffy .box#f-box03 .flex-left table tr th,
#features .box-fluffy .box#f-box03 .flex-left table tr td {
  padding: 8px 0;
  font-size: clamp(16px, 16px + 4 * (100vw - 767px) / 673, 20px);
  font-weight: bold;
}
#features .box-fluffy .box#f-box03 .flex-left table tr th:first-child,
#features .box-fluffy .box#f-box03 .flex-left table tr td:first-child {
  border-right: 1px solid #707070;
}
#features .box-fluffy .box#f-box03 .flex-left table tr td {
  text-align: center;
}
#features .box-fluffy .box#f-box03 .flex-left .caution {
  font-size: clamp(14px, 14px + 0 * (100vw - 767px) / 673, 14px);
}
#features .box-fluffy .box#f-box03 .flex-right {
  max-width: 375px;
  width: 38%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-fluffy .box#f-box03 .flex-right {
    width: 100%;
    max-width: inherit;
  }
}
@media (max-width: 750px) {
  #features .box-fluffy .box#f-box03 .flex-right {
    width: 100%;
    max-width: inherit;
  }
}
#features .box-fluffy .box#f-box03 .flex-right .txt {
  font-size: clamp(14px, 14px + 2 * (100vw - 767px) / 673, 16px);
  line-height: 2;
}
#features .box-fluffy .box .flex-left {
  max-width: 457px;
  width: 46%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-fluffy .box .flex-left {
    width: 100%;
    max-width: inherit;
  }
}
@media (max-width: 750px) {
  #features .box-fluffy .box .flex-left {
    width: 100%;
    max-width: inherit;
  }
}
#features .box-fluffy .box .flex-left h4 {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: clamp(22px, 22px + 10 * (100vw - 767px) / 673, 32px);
  font-weight: bold;
  color: #00518d;
}
@media (max-width: 750px) {
  #features .box-fluffy .box .flex-left h4 {
    gap: 5px;
  }
}
#features .box-fluffy .box .flex-left h4 .no {
  max-width: 112px;
}
@media (max-width: 750px) {
  #features .box-fluffy .box .flex-left h4 .no {
    max-width: 72px;
  }
}
#features .box-fluffy .box .flex-left .ttl {
  font-size: clamp(18px, 18px + 6 * (100vw - 767px) / 673, 24px);
}
#features .box-fluffy .box .flex-left .txt {
  font-size: clamp(14px, 14px + 4 * (100vw - 767px) / 673, 18px);
}
#features .box-fluffy .box .flex-left .memo {
  margin-top: 20px;
}
@media (max-width: 750px) {
  #features .box-fluffy .box .flex-left .memo {
    margin-top: 15px;
  }
}
#features .box-fluffy .box .flex-left .flex-right {
  max-width: 500px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #features .box-fluffy .box .flex-left .flex-right {
    width: 100%;
    max-width: inherit;
  }
}
@media (max-width: 750px) {
  #features .box-fluffy .box .flex-left .flex-right {
    width: 100%;
    max-width: inherit;
  }
}
#features .box-fluffy .image {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 750px) {
  #features .box-fluffy .image {
    margin-top: 30px;
  }
}

#story {
  background: url(../img/story-bg.jpg) no-repeat top center/cover;
  padding: 0 0 280px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #story {
    padding: 0 0 200px;
  }
}
@media (max-width: 750px) {
  #story {
    background: url(../img/story-bg-sp.jpg) no-repeat top center/cover;
    padding: 0 0 40px;
  }
}
#story .box {
  display: flex;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #story .box {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 750px) {
  #story .box {
    flex-direction: column;
    gap: 30px;
  }
}
#story .box .flex-left {
  max-width: 371px;
  width: 38%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #story .box .flex-left {
    max-width: inherit;
    width: 100%;
  }
}
@media (max-width: 750px) {
  #story .box .flex-left {
    max-width: inherit;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #story .box .flex-right {
    max-width: inherit;
    width: 100%;
  }
}
#story .box .flex-right .txt {
  line-height: 2.2;
}
#story .box#s-box01 {
  margin-top: 40px;
  gap: 230px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #story .box#s-box01 {
    gap: 30px;
  }
}
@media (max-width: 750px) {
  #story .box#s-box01 {
    margin-top: 30px;
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #story .box#s-box01 .flex-left {
    order: 2;
  }
}
@media (max-width: 750px) {
  #story .box#s-box01 .flex-left {
    order: 2;
  }
}
#story .box#s-box01 .flex-right {
  max-width: 600px;
  width: 60%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #story .box#s-box01 .flex-right {
    max-width: inherit;
    width: 100%;
    order: 1;
  }
}
@media (max-width: 750px) {
  #story .box#s-box01 .flex-right {
    max-width: inherit;
    width: 100%;
    order: 1;
  }
}
#story .box#s-box02 {
  margin-top: 80px;
  gap: 80px;
}
@media (max-width: 750px) {
  #story .box#s-box02 {
    margin-top: 30px;
    gap: 30px;
  }
}
#story .box#s-box02 .flex-left {
  order: 2;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #story .box#s-box02 .flex-left {
    max-width: inherit;
    width: 100%;
  }
}
#story .box#s-box02 .flex-right {
  max-width: 750px;
  width: 75%;
  order: 1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #story .box#s-box02 .flex-right {
    max-width: inherit;
    width: 100%;
  }
}
@media (max-width: 750px) {
  #story .box#s-box02 .flex-right {
    max-width: inherit;
    width: 100%;
  }
}

#faq {
  padding: 110px 0 60px;
  background: #d9efff;
}
@media (max-width: 750px) {
  #faq {
    padding: 50px 0 60px;
  }
}
#faq h2 {
  font-size: clamp(26px, 26px + 14 * (100vw - 767px) / 673, 40px);
  color: #00518d;
  font-weight: bold;
  text-align: center;
  position: relative;
}
#faq h2 span {
  position: relative;
  z-index: 2;
}
#faq h2::before {
  position: absolute;
  content: "";
  background: url(../img/faq-deco.png) no-repeat center/100%;
  left: 0;
  bottom: -30px;
  width: 368px;
  height: 181px;
  z-index: 1;
}
@media (max-width: 750px) {
  #faq h2::before {
    background-size: 80%;
    width: 220px;
    height: 164px;
    bottom: -50px;
    left: -20px;
  }
}
#faq .box {
  margin-top: 38px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  padding: 30px 100px 35px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #faq .box {
    padding: 30px 50px 35px;
  }
}
@media (max-width: 750px) {
  #faq .box {
    margin-top: 30px;
    padding: 20px 15px;
  }
}
#faq .box .ttl p {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: clamp(16px, 16px + 4 * (100vw - 767px) / 673, 20px);
  font-weight: bold;
}
@media (max-width: 750px) {
  #faq .box .ttl p {
    gap: 14px;
  }
}
#faq .box .ttl p span {
  font-size: clamp(26px, 26px + 19 * (100vw - 767px) / 673, 45px);
  color: #ed5252;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
#faq .box .txt p {
  display: flex;
  gap: 30px;
  align-items: baseline;
  font-size: clamp(14px, 14px + 4 * (100vw - 767px) / 673, 18px);
  font-weight: 500;
}
@media (max-width: 750px) {
  #faq .box .txt p {
    gap: 14px;
  }
}
#faq .box .txt p span {
  font-size: clamp(26px, 26px + 19 * (100vw - 767px) / 673, 45px);
  color: #0083e3;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

#flow {
  background: #eaeaea;
  padding: 10px 0 80px;
}
@media (max-width: 750px) {
  #flow {
    padding: 20px 0 30px;
  }
}
#flow h2 {
  max-width: 470px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  #flow h2 {
    max-width: 187px;
  }
}
#flow .list {
  margin-top: -40px;
}
@media (max-width: 750px) {
  #flow .list {
    margin-top: 30px;
  }
}
#flow .list ul.flex {
  gap: 50px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #flow .list ul.flex {
    flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 750px) {
  #flow .list ul.flex {
    flex-direction: column;
    gap: 100px;
  }
}
#flow .list ul.flex li {
  max-width: 262px;
  min-width: 262px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 3px solid #00518d;
  padding: 29px 24px 35px;
  box-sizing: border-box;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #flow .list ul.flex li {
    min-width: inherit;
    max-width: inherit;
    text-align: center;
  }
}
@media (max-width: 750px) {
  #flow .list ul.flex li {
    min-width: 345px;
    max-width: 345px;
    width: 100%;
    margin: 0 auto;
  }
}
#flow .list ul.flex li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 35px solid #00518d;
  border-right: 0;
  right: -19%;
  top: 41%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #flow .list ul.flex li::before {
    right: 0;
    left: 0;
    top: inherit;
    bottom: -60px;
    margin: 0 auto;
    transform: rotate(90deg);
  }
}
@media (max-width: 750px) {
  #flow .list ul.flex li::before {
    right: 0;
    left: 0;
    top: inherit;
    bottom: -88px;
    margin: 0 auto;
    transform: rotate(90deg);
  }
}
#flow .list ul.flex li:last-child::before {
  content: none;
}
#flow .list ul.flex li .img {
  max-width: 117px;
  margin: 0 auto;
}
#flow .list ul.flex li .ttl {
  text-align: center;
  font-weight: bold;
  font-size: clamp(20px, 20px + 0 * (100vw - 767px) / 673, 20px);
}
#flow .list ul.flex li .txt {
  margin-top: 10px;
}

#form {
  background: url(../img/form-bg.jpg) no-repeat top center/cover;
  padding: 60px 0 100px;
}
@media (max-width: 750px) {
  #form {
    background: url(../img/form-bg-sp.jpg) no-repeat top center/cover;
    padding: 20px 0 30px;
  }
}
#form h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-bottom: 60px;
  font-size: clamp(26px, 26px + 14 * (100vw - 767px) / 673, 40px);
  font-weight: bold;
  text-align: center;
  position: relative;
}
@media (max-width: 750px) {
  #form h2 {
    margin-bottom: 30px;
  }
}
#form h2::before {
  position: absolute;
  content: "";
  background: url(../img/form-deco.png) no-repeat center/100%;
  left: 0;
  bottom: -60px;
  width: 518px;
  height: 181px;
  z-index: 1;
}
@media (max-width: 750px) {
  #form h2::before {
    background-size: 80%;
    width: 254px;
    height: 164px;
    bottom: -70px;
    left: -20px;
  }
}
@media (max-width: 750px) {
  #form h2 {
    position: relative;
    justify-content: center;
  }
}
#form h2 img {
  max-width: 518px;
}
@media (max-width: 750px) {
  #form h2 img {
    max-width: 167px;
    position: absolute;
    top: -20px;
    left: 10px;
  }
}
#form > .inner {
  background: #fff;
  border-radius: 30px;
  padding: 60px 95px;
  box-sizing: border-box;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #form > .inner {
    padding: 60px 40px;
  }
}
@media (max-width: 750px) {
  #form > .inner {
    padding: 30px 15px 35px;
    border-radius: 13px;
    margin-top: 30px;
  }
}
#form dl {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #form dl {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 750px) {
  #form dl {
    flex-direction: column;
    gap: 15px;
  }
}
#form dl dt {
  font-size: clamp(20px, 20px + 6 * (100vw - 767px) / 673, 26px);
  font-weight: bold;
}
#form dl dt span {
  font-size: clamp(18px, 18px + 2 * (100vw - 767px) / 673, 20px);
  background: #ff9d00;
  border-radius: 10px;
  color: #fff;
  font-weight: 400;
  padding: 3px 10px;
  margin-left: 20px;
}
#form dl dd {
  max-width: 600px;
  min-width: 600px;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  #form dl dd {
    max-width: inherit;
    min-width: inherit;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #form dl dd {
    max-width: inherit;
    min-width: inherit;
  }
}
#form dl dd input[type=text],
#form dl dd input[type=email],
#form dl dd select,
#form dl dd textarea {
  width: 100%;
  border: 1px solid #c3c3c3;
  font-size: clamp(14px, 14px + 2 * (100vw - 767px) / 673, 16px);
  padding: 13px 0 13px 20px;
  box-sizing: border-box;
}
#form dl dd textarea {
  min-height: 240px;
}
@media (max-width: 750px) {
  #form dl dd textarea {
    padding: 10px;
  }
}
#form button {
  text-align: center;
  margin: 80px auto 0;
  display: flex;
  justify-content: center;
  background: none;
}
@media (max-width: 750px) {
  #form button {
    margin: 0 auto 0;
  }
}
#form button img {
  max-width: 600px;
  content: url("../img/btn_send-off.png");
}
@media (max-width: 750px) {
  #form button img {
    max-width: 100%;
    content: url("../img/btn_send-off-sp.png");
  }
}
#form button:hover img {
  content: url("../img/btn_send-on.png");
}
@media (max-width: 750px) {
  #form button:hover img {
    max-width: 100%;
    content: url("../img/btn_send-on-sp.png");
  }
}

footer {
  background: #00518d;
  padding: 30px 0;
}
@media (max-width: 750px) {
  footer {
    padding: 15px 0;
  }
}
footer .copy {
  font-size: clamp(12px, 12px + 0 * (100vw - 767px) / 673, 12px);
  color: #fff;
  text-align: center;
}