@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

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

ul,
ol {
  list-style: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.2s;
}

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

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

:root {
  --vw: 1dvw;
}

.page-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  background-color: #fff;
}
@media only screen and (min-width: 769px) {
  .page-header {
    display: grid;
    grid-template-columns: 1fr 35rem;
    grid-template-rows: repeat(2, auto);
    gap: 3rem 1rem;
    padding: 2rem max(0rem, 50% - 72rem) 0;
  }
}
@media only screen and (max-width: 768px) {
  .page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6.4rem;
    padding: 1rem 2rem;
  }
}
.page-header .logo {
  display: flex;
  align-items: center;
  column-gap: 3%;
}
@media only screen and (min-width: 769px) {
  .page-header .logo {
    grid-area: 1/1/3/2;
  }
}
@media only screen and (max-width: 768px) {
  .page-header .logo {
    width: 80%;
  }
}
.page-header .logo > a {
  width: 50%;
}
.page-header .logo > img {
  width: 18%;
  margin-top: 3%;
}
.page-header .link-sns {
  display: flex;
}
@media only screen and (min-width: 769px) {
  .page-header .link-sns {
    justify-content: flex-end;
    column-gap: 1rem;
    grid-area: 1/2/2/3;
  }
}
@media only screen and (max-width: 768px) {
  .page-header .link-sns {
    column-gap: 1rem;
    width: 5.8rem;
  }
}
.page-header .link-sns a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 1rem;
  font-weight: 700;
  font-size: min(1.8rem, 1.5vw);
  color: #0069b3;
  opacity: 1;
  transition: opacity 0.3s;
}
.page-header .link-sns a:hover, .page-header .link-sns a:active {
  opacity: 0.7;
}
.page-header .link-sns a img {
  width: min(4.2rem, 2.5vw);
}
@media only screen and (max-width: 768px) {
  .page-header .link-sns a img {
    width: 2.4rem;
  }
}
@media only screen and (min-width: 769px) {
  .page-header .link-contact {
    grid-area: 2/2/3/3;
  }
}
.page-header .link-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  width: 100%;
  height: 6rem;
  padding: 1rem;
  border: 0.3rem solid #003994;
  border-radius: 0.9rem 0.9rem 0 0;
  background-color: #003994;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  transition: background-color 0.3s;
}
.page-header .link-contact a::before {
  content: "";
  width: 2.7rem;
  aspect-ratio: 0.77;
  background: transparent url(../img/icon_person_off.png) center/contain no-repeat;
}
.page-header .link-contact a:hover, .page-header .link-contact a:active {
  background-color: #fff;
  color: #003994;
}
.page-header .link-contact a:hover::before, .page-header .link-contact a:active::before {
  background-image: url(../img/icon_person_on.png);
}

html {
  font-size: 62.5%;
}

body {
  font: 1.6rem/1.5 "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #231815;
}

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

@media only screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.title {
  margin-bottom: 6rem;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .title {
    margin-bottom: 1.5rem;
  }
}

.note {
  text-align: right;
}
.note a {
  color: #1d2088;
  text-decoration: none;
}
.note a:hover, .note a:active {
  text-decoration: underline;
}

.btn-contact {
  width: 100%;
}
.btn-contact a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  padding: 1rem 3.2rem;
  background-color: #003994;
  border: 0.3rem solid #003994;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 3.2rem;
  color: #fff;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .btn-contact a {
    width: 100%;
    padding: calc(2.4 * var(--vw)) calc(4 * var(--vw));
    border-radius: calc(4 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
.btn-contact a::before {
  content: "";
  width: 4rem;
  aspect-ratio: 2/3;
  background: transparent url(../img/icon_docs_off.png) center/contain no-repeat;
}
@media only screen and (max-width: 768px) {
  .btn-contact a::before {
    width: calc(4.4 * var(--vw));
  }
}
.btn-contact a span {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  width: calc(100% - 28.8rem);
  padding: 0.6rem 0.6rem 0.6rem 1.5rem;
  border-radius: 0.5rem;
  background-color: #fff;
  font-weight: 600;
  font-size: 2.4rem;
  color: #003994;
}
@media only screen and (max-width: 768px) {
  .btn-contact a span {
    width: calc(28 * var(--vw));
    font-size: calc(2.8 * var(--vw));
    padding: 0.6rem;
  }
}
.btn-contact a span img {
  width: calc(100% - 20rem);
}
.btn-contact a:hover, .btn-contact a:active {
  background-color: #fff;
  border-color: #003994;
  color: #003994;
}
.btn-contact a:hover span, .btn-contact a:active span {
  background-color: #003994;
  color: #fff;
}

.slide .inner {
  position: relative;
  max-width: 144rem;
  margin: 0 auto;
}
.slide .item {
  position: relative;
}
.slide .item img {
  display: block;
}
.slide .item .btn-contact {
  position: absolute;
  left: 0;
  bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  .slide .item .btn-contact {
    bottom: 12%;
  }
}
.slide .item .btn-contact a {
  width: min(90%, 112rem);
  background-color: rgba(0, 57, 148, 0.8);
  border-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
  transition: opacity 0.3s;
}
.slide .item .btn-contact a:hover, .slide .item .btn-contact a:active {
  opacity: 0.7;
}
.slide .item .btn-contact a:hover, .slide .item .btn-contact a:active {
  background-color: rgba(0, 57, 148, 0.8);
  color: rgba(255, 255, 255, 0.8);
}
.slide .item .btn-contact a:hover span, .slide .item .btn-contact a:active span {
  background-color: #fff;
  color: #003994;
}
@media only screen and (max-width: 768px) {
  .slide .item .btn-contact a {
    width: 92%;
  }
}
.slide .dots {
  position: absolute;
  left: 0;
  bottom: 4rem;
  display: flex;
  justify-content: center;
  column-gap: 2rem;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .slide .dots {
    bottom: 3%;
    column-gap: 1%;
  }
}
.slide .dots li {
  width: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .slide .dots li {
    width: 1.2dvw;
  }
}
.slide .dots button {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  color: #fff;
  line-height: 1;
  transition: all 0.4s;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s;
}
.slide .dots button:hover, .slide .dots button:active {
  opacity: 0.7;
}
.slide .dots .slick-active button {
  animation: 4s 0s fadein forwards;
  cursor: default;
}
.slide .dots .slick-active button:hover, .slide .dots .slick-active button:active {
  opacity: 1;
}

.benefits {
  margin-bottom: 7rem;
  padding: 7rem max(2rem, 50% - 48rem) 9rem;
  background-color: #f6f1d6;
}
@media only screen and (max-width: 768px) {
  .benefits {
    margin-bottom: 2rem;
    padding: 8% 4%;
  }
}
.benefits .title img {
  width: 86%;
}
@media only screen and (max-width: 768px) {
  .benefits .title img {
    width: 93.5%;
  }
}
.benefits .list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .benefits .list {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}
.benefits .list li {
  width: calc(50% - 2rem);
}
@media only screen and (max-width: 768px) {
  .benefits .list li {
    width: calc(50% - 0.5rem);
  }
}
.benefits .note {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  .benefits .note {
    margin-bottom: 1rem;
    text-align: center;
    font-size: calc(2.4 * var(--vw));
  }
}

.recommend {
  margin-bottom: 10rem;
  padding: 0 max(2rem, 50% - 48rem);
}
@media only screen and (max-width: 768px) {
  .recommend {
    margin-bottom: 2.5rem;
    padding: 0 4%;
  }
}
.recommend .title {
  margin-bottom: 2rem;
}
.recommend .title img {
  width: 58.5%;
}
@media only screen and (max-width: 768px) {
  .recommend .title img {
    height: 63%;
  }
}
.recommend ul {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .recommend ul {
    gap: 4.5rem;
    margin-bottom: 6.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .recommend ul {
    gap: 1.5rem 2rem;
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .recommend ul li {
    width: calc(33.3333333333% - 3rem);
  }
}
@media only screen and (max-width: 768px) {
  .recommend ul li {
    width: calc(50% - 1rem);
  }
}

.freeplan {
  margin-bottom: 10rem;
  padding: 0 max(2rem, 50% - 48rem);
}
@media only screen and (max-width: 768px) {
  .freeplan {
    margin-bottom: 2.5rem;
    padding: 0 4%;
  }
}
.freeplan_title {
  text-align: center;
}
.freeplan_title img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .freeplan_title img {
    width: 100%;
  }
}
.freeplan_sub_title {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .freeplan_sub_title {
    margin-top: -7px;
  }
}
.freeplan_sub_title img {
  width: 95%;
}
@media only screen and (max-width: 768px) {
  .freeplan_sub_title img {
    width: 95%;
  }
}
.freeplan .ul-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .freeplan .ul-tab {
    margin: 3.2rem 0;
  }
}
@media only screen and (max-width: 768px) {
  .freeplan .ul-tab {
    row-gap: 1rem;
    margin: 1.5rem 0;
  }
}
.freeplan .ul-tab li {
  width: 23%;
}
@media only screen and (max-width: 768px) {
  .freeplan .ul-tab li {
    width: 48.5%;
  }
}
.freeplan .ul-tab2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 2rem;
}
@media only screen and (min-width: 769px) {
  .freeplan .ul-tab2 {
    margin: 3.2rem 0;
  }
}
@media only screen and (max-width: 768px) {
  .freeplan .ul-tab2 {
    row-gap: 1rem;
    margin: 1.5rem 0;
  }
}
.freeplan .ul-tab2 li {
  width: 48.5%;
  aspect-ratio: 578/263;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .freeplan .ul-tab2 li {
    width: 48.5%;
  }
}
.freeplan .ul-tab2 li .img {
  width: 106%;
  position: absolute;
  top: 0;
  left: 0;
}
.freeplan .ul-tab2 li .img img {
  width: 100%;
}

.plan {
  margin-bottom: 10rem;
  padding: 0 max(2rem, 50% - 48rem);
}
@media only screen and (max-width: 768px) {
  .plan {
    margin-bottom: 2.5rem;
    padding: 0 4%;
  }
}
.plan .title {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .plan .title {
    margin-bottom: calc(4 * var(--vw));
  }
}
.plan .title img {
  width: 91%;
}
@media only screen and (max-width: 768px) {
  .plan .title img {
    width: 100%;
  }
}
.plan .title + p {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .plan .title + p {
    margin-bottom: 1.5rem;
    font-size: calc(3.2 * var(--vw));
  }
}
.plan ul {
  display: flex;
}
@media only screen and (min-width: 769px) {
  .plan ul {
    flex-wrap: wrap;
    gap: 3rem 4rem;
    margin: 5rem 0 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .plan ul {
    flex-direction: column;
    row-gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.plan ul li {
  width: calc(50% - 2rem);
  padding: 4.5rem 2.8rem 2rem;
  border-radius: 3rem;
  background-color: #ffde5b;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .plan ul li {
    width: 100%;
    padding: 2.5rem 2rem 1.5rem;
    font-size: calc(3.2 * var(--vw));
  }
}
.plan ul li h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .plan ul li h2 {
    height: 10.8dvw;
  }
}
.plan ul li figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .plan ul li figure {
    aspect-ratio: 4.4;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .plan ul li figure {
    align-items: center;
    aspect-ratio: 4;
  }
}
.plan ul li p {
  font-weight: 700;
}
.plan ul li .note {
  margin-bottom: 0;
  line-height: 1.25;
  text-align: right;
  font-weight: 400;
}
@media only screen and (min-width: 769px) {
  .plan ul li:nth-of-type(1) h2 img {
    width: 90.3%;
  }
}
@media only screen and (max-width: 768px) {
  .plan ul li:nth-of-type(1) h2 img {
    width: 94%;
  }
}
@media only screen and (min-width: 769px) {
  .plan ul li:nth-of-type(1) figure img {
    width: 52%;
  }
}
@media only screen and (max-width: 768px) {
  .plan ul li:nth-of-type(1) figure img {
    width: 54%;
  }
}
.plan ul li:nth-of-type(2) {
  background-color: #fbca57;
}
@media only screen and (min-width: 769px) {
  .plan ul li:nth-of-type(2) h2 img {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .plan ul li:nth-of-type(2) h2 img {
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  .plan ul li:nth-of-type(2) figure img {
    width: 45.2%;
  }
}
@media only screen and (max-width: 768px) {
  .plan ul li:nth-of-type(2) figure img {
    width: 47%;
  }
}
@media only screen and (min-width: 769px) {
  .plan ul li:nth-of-type(3) {
    background-color: #fbca57;
  }
}
@media only screen and (min-width: 769px) {
  .plan ul li:nth-of-type(3) h2 img {
    width: 78%;
  }
}
@media only screen and (max-width: 768px) {
  .plan ul li:nth-of-type(3) h2 img {
    width: 80%;
  }
}
@media only screen and (min-width: 769px) {
  .plan ul li:nth-of-type(3) figure img {
    width: 27.9%;
  }
}
@media only screen and (max-width: 768px) {
  .plan ul li:nth-of-type(3) figure img {
    width: 29%;
  }
}
@media only screen and (max-width: 768px) {
  .plan ul li:nth-of-type(4) {
    background-color: #fbca57;
  }
}
@media only screen and (min-width: 769px) {
  .plan ul li:nth-of-type(4) h2 img {
    width: 81%;
  }
}
@media only screen and (max-width: 768px) {
  .plan ul li:nth-of-type(4) h2 img {
    width: 83%;
  }
}
@media only screen and (min-width: 769px) {
  .plan ul li:nth-of-type(4) figure img {
    width: 34.2%;
  }
}
@media only screen and (max-width: 768px) {
  .plan ul li:nth-of-type(4) figure img {
    width: 35.5%;
  }
}
.plan .note {
  margin-bottom: 7rem;
  text-align: center;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .plan .note {
    margin-bottom: 2rem;
    font-size: calc(2.4 * var(--vw)) !important;
  }
}

.flow {
  margin-bottom: 9rem;
  padding: 0 max(2rem, 50% - 48rem);
}
.flow .title {
  margin-bottom: 4rem;
}
.flow .title img {
  width: 32.5%;
}
@media only screen and (min-width: 769px) {
  .flow ol {
    display: flex;
    column-gap: 5rem;
  }
}
@media only screen and (min-width: 769px) {
  .flow ol li {
    width: calc(20% - 4rem);
  }
}
@media only screen and (max-width: 768px) {
  .flow ol li {
    position: relative;
    display: flex;
    column-gap: calc(2.4 * var(--vw));
    margin-bottom: calc(6.4 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  .flow ol li h2 {
    position: relative;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .flow ol li h2 {
    width: calc(12 * var(--vw));
  }
}
@media only screen and (max-width: 768px) {
  .flow ol li div {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    width: calc(100% - 14.4 * var(--vw));
    padding-bottom: calc(1.6 * var(--vw));
    border-bottom: 1px solid #c9caca;
  }
}
.flow ol li p {
  line-height: 1.25;
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .flow ol li p {
    text-align: left;
    font-size: calc(3.2 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  .flow ol li:nth-of-type(1) figure, .flow ol li:nth-of-type(5) figure {
    padding: 4% 0;
  }
}
@media only screen and (max-width: 768px) {
  .flow ol li:nth-of-type(1) figure img, .flow ol li:nth-of-type(5) figure img {
    width: calc(10.4 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  .flow ol li:nth-of-type(2) figure {
    padding: 3.5% 0;
  }
}
@media only screen and (max-width: 768px) {
  .flow ol li:nth-of-type(2) figure img {
    width: calc(6.4 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  .flow ol li:nth-of-type(3) figure {
    padding: 1% 0;
  }
}
@media only screen and (max-width: 768px) {
  .flow ol li:nth-of-type(3) figure img {
    width: calc(12 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  .flow ol li:nth-of-type(4) figure {
    padding: 7% 0;
  }
}
@media only screen and (max-width: 768px) {
  .flow ol li:nth-of-type(4) figure img {
    width: calc(8.4 * var(--vw));
  }
}
@media only screen and (max-width: 768px) {
  .flow ol li:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, calc(1.6 * var(--vw)));
    width: calc(4 * var(--vw));
    aspect-ratio: 1.41;
    background-color: #8292c9;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  }
}
@media only screen and (min-width: 769px) {
  .flow ol li:not(:last-of-type) h2::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(1.5rem, -50%);
    width: 2rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #8292c9;
  }
}
@media only screen and (min-width: 769px) {
  .flow ol figure {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 2;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .flow ol figure {
    width: 4.5rem;
    text-align: center;
  }
}
@media only screen and (min-width: 769px) {
  .flow ol figure img {
    max-width: none;
    height: 100%;
  }
}

.form {
  padding: 9rem max(2rem, 50% - 48rem);
  background-color: #f6f1d6;
}
@media only screen and (max-width: 768px) {
  .form {
    padding: 6% 4%;
  }
}
.form .title {
  margin: -15rem 0 4rem;
  padding-top: 15rem;
}
@media only screen and (max-width: 768px) {
  .form .title {
    margin: calc(-6.4rem - 6dvw) 0 calc(4 * var(--vw));
    padding-top: calc(6.4rem + 6dvw);
  }
}
.form .title img {
  width: 46%;
}
@media only screen and (max-width: 768px) {
  .form .title img {
    width: 60%;
  }
}
.form .lead {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .form .lead {
    margin-bottom: calc(4 * var(--vw));
    font-size: calc(3.2 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  .form-table {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 1.5rem;
    margin-bottom: 5rem;
  }
}
.form-table .name {
  display: flex;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  .form-table .name {
    justify-content: flex-end;
    align-items: flex-start;
    column-gap: 1.2rem;
    width: 24rem;
    padding-top: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .form-table .name {
    align-items: center;
    column-gap: calc(1.6 * var(--vw));
    margin-bottom: calc(0.8 * var(--vw));
    font-size: calc(3.2 * var(--vw));
  }
}
.form-table .name label {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .form-table .name label {
    column-gap: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .form-table .name label {
    width: 100%;
    column-gap: calc(1.6 * var(--vw));
  }
}
.form-table .name .required {
  width: 3.6rem;
  padding: 0.3rem 0.6rem;
  border-radius: 0.6rem;
  background-color: #007d41;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .form-table .name .required {
    width: calc(8 * var(--vw));
    padding: 0.1rem;
    border-radius: calc(0.8 * var(--vw));
    font-size: calc(3.2 * var(--vw));
  }
}
.form-table .name:nth-of-type(1), .form-table .name:nth-of-type(17) {
  align-items: center;
  padding-top: 0;
}
.form-table .item {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .form-table .item {
    width: calc(100% - 25.5rem);
  }
}
@media only screen and (max-width: 768px) {
  .form-table .item {
    column-gap: calc(4 * var(--vw));
    margin-bottom: calc(3.2 * var(--vw));
    font-size: calc(3.2 * var(--vw));
  }
}
.form-table .item label {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .form-table .item label {
    margin-left: 2rem;
    column-gap: 0.5rem;
  }
}
.form-table .item label input {
  display: none;
}
.form-table .item label .radio {
  width: 2.4rem;
  aspect-ratio: 1;
  padding: 0.3rem;
  border: 1px solid #b9baba;
  border-radius: 50%;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .form-table .item label .radio {
    width: calc(4.8 * var(--vw));
    padding: calc(0.8 * var(--vw));
  }
}
.form-table .item label .radio::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fff;
}
.form-table .item label:has(input:checked) .radio::before {
  background-color: #003994;
}
.form-table .item input[type=text],
.form-table .item input[type=tel],
.form-table .item input[type=email],
.form-table .item textarea {
  display: block;
  width: 100%;
  padding: 1.1rem;
  border: 0.1rem solid #b9baba;
  background-color: #fff;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: inherit;
  outline: none;
}
@media only screen and (max-width: 768px) {
  .form-table .item input[type=text],
  .form-table .item input[type=tel],
  .form-table .item input[type=email],
  .form-table .item textarea {
    padding: calc(0.8 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
.form-table .item textarea {
  resize: vertical;
  min-height: 25.2rem;
}
@media only screen and (max-width: 768px) {
  .form-table .item textarea {
    min-height: calc(24 * var(--vw));
  }
}
.form-table .item .error {
  width: 100%;
  margin-top: 0.5rem;
  font-weight: 700;
  color: #f00;
}
@media only screen and (max-width: 768px) {
  .form-table .item .error {
    margin-top: calc(0.8 * var(--vw));
  }
}
.form-table .item .confirm {
  width: 100%;
  padding: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .form-table .item .confirm {
    padding: 0;
  }
}
.form .link {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .form .link {
    margin-bottom: calc(3.2 * var(--vw));
    font-size: calc(3.2 * var(--vw));
  }
}
.form .link a {
  color: #003994;
}
.form .link a:hover, .form .link a:active {
  text-decoration: underline;
}
.form .btn {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .form .btn:has(input:nth-of-type(2)) {
    column-gap: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .form .btn:has(input:nth-of-type(2)) {
    flex-direction: column;
    row-gap: calc(4 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  .form .btn:has(input:nth-of-type(2)) input {
    width: calc(50% - 2rem);
  }
}
.form .btn input, .form .btn a {
  width: 100%;
  max-width: 72rem;
  border-radius: 2.8rem;
  padding: 1.6rem;
  line-height: 1.5;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .form .btn input, .form .btn a {
    padding: calc(1.6 * var(--vw));
    border-radius: calc(3.2 * var(--vw));
    font-size: calc(4 * var(--vw));
  }
}
.form .btn .submit {
  border: 0.3rem solid #f08000;
  background-color: #f08000;
  color: #fff;
  transition: background-color 0.3s;
}
.form .btn .submit:hover, .form .btn .submit:active {
  background-color: #fff;
  color: #f08000;
  cursor: pointer;
}
.form .btn .back {
  border: 0.3rem solid #f08000;
  background-color: #fff;
  color: #f08000;
  transition: background-color 0.3s;
}
.form .btn .back:hover, .form .btn .back:active {
  background-color: #f08000;
  color: #fff;
  cursor: pointer;
}

@keyframes fadein {
  0% {
    background-color: #fff;
    color: #fff;
  }
  100% {
    background-color: #5bc0c7;
    color: #5bc0c7;
  }
}
.page-footer {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5rem max(2rem, 50% - 48rem) 3rem;
}
@media only screen and (max-width: 768px) {
  .page-footer {
    padding: 4%;
  }
}
.page-footer .logo {
  width: 42rem;
  margin: 0 auto 2rem;
}
@media only screen and (max-width: 768px) {
  .page-footer .logo {
    width: 20.4rem;
    margin-bottom: 1.2rem;
  }
}
.page-footer .logo a {
  display: block;
}
.page-footer .logo-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 3.2rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .page-footer .logo-group {
    margin-bottom: 1.5rem;
  }
}
.page-footer .logo-group .item {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .page-footer .logo-group .item {
    font-size: 1rem;
  }
}
.page-footer .logo-group a img {
  width: 20rem;
}
@media only screen and (max-width: 768px) {
  .page-footer .logo-group a img {
    width: 10rem;
  }
}
.page-footer .logo-group div:nth-of-type(1) {
  width: 8rem;
}
.page-footer .logo-group div:nth-of-type(2) {
  width: 20rem;
}
.page-footer .logo-group div:nth-of-type(3) {
  width: 10rem;
}
@media only screen and (max-width: 768px) {
  .page-footer .logo-group div {
    display: none !important;
  }
}
.page-footer .link {
  display: flex;
  justify-content: center;
  column-gap: 3.2rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .page-footer .link {
    margin-bottom: calc(5.6 * var(--vw));
    column-gap: calc(4.8 * var(--vw));
    font-size: calc(2.4 * var(--vw));
  }
}
.page-footer .link a {
  color: #003994;
}
.page-footer .link a:hover, .page-footer .link a:active {
  text-decoration: underline;
}
.page-footer .copyright {
  display: block;
  text-align: center;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .page-footer .copyright {
    font-size: calc(2.4 * var(--vw));
  }
}

.page-top {
  position: fixed;
  right: 0;
  bottom: 0;
}
.page-top button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.4rem;
  aspect-ratio: 1;
  background-color: #003994;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 768px) {
  .page-top button {
    width: 3.2rem;
  }
}
.page-top button::before {
  content: "";
  position: relative;
  width: 2.8rem;
  aspect-ratio: 1;
  border-left: 0.5rem solid #fff;
  border-top: 0.5rem solid #fff;
  transform: rotate(45deg) translate(0.8rem, 0.5rem);
}
@media only screen and (max-width: 768px) {
  .page-top button::before {
    width: 1.4rem;
    border-left-width: 0.2rem;
    border-top-width: 0.2rem;
    transform: rotate(45deg) translate(0.4rem, 0.2rem);
  }
}
.page-top button:hover, .page-top button:active {
  opacity: 0.7;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */