@charset "UTF-8";
@font-face {
  font-family: "Hiragino";
  src: url("../font/ヒラギノ明朝 ProN.ttc") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Hiragino";
  src: url("../font/ヒラギノ角ゴ Pro W3.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Hiragino";
  src: url("../font/ヒラギノ角ゴ Pro W6.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, 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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #211815;
  font-family: "Hiragino", sans-serif;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 min(16px, 1.1428571429vw);
}
@media (max-width: 767px) {
  .inner {
    padding: 0 min(16px, 4.2666666667vw);
    width: 400px;
  }
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* タイトル
------------------------------*/
.c-sec-ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  position: relative;
  padding: 0 3.6em;
}
.c-sec-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/img_bar.png) no-repeat center center/contain;
  width: 2.6em;
  aspect-ratio: 162/14;
}
.c-sec-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/img_bar.png) no-repeat center center/contain;
  width: 2.6em;
  aspect-ratio: 162/14;
}
@media (max-width: 767px) {
  .c-sec-ttl {
    font-size: min(1.8rem, 4.8vw);
  }
}

/* ボタン
------------------------------*/
.c-cta-button {
  width: 64%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.5em 0;
  font-size: min(3.6rem, 3vw);
  font-weight: 600;
  line-height: 1.7777777778;
  color: #fff;
  background: #4069af;
  border: 1px solid #4069af;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s;
}
.c-cta-button::after {
  display: inline-block;
  content: "";
  position: relative;
  background: #fff;
  width: 0.8em;
  aspect-ratio: 1/1;
  margin-left: 0.8em;
  transform: translateX(50%);
  transition: all 0.3s;
  -webkit-mask-image: url(../img/icon_arrpw.png);
          mask-image: url(../img/icon_arrpw.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (hover: hover) {
  .c-cta-button:hover {
    opacity: 1;
    background: #ffffff;
    color: #4069af;
  }
  .c-cta-button:hover::after {
    background: #4069af;
  }
}
@media (max-width: 767px) {
  .c-cta-button {
    width: 100%;
    font-size: 1.6rem;
  }
}

/*　お問い合わせ用ブロック
------------------------------*/
.c-contact-tel {
  background: #e0f1f6;
  padding: 18px 0;
  max-width: 930px;
  margin: 0 auto;
}

.c-contact-tel__label {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 767px) {
  .c-contact-tel__label {
    font-size: 1.6rem;
  }
}

.c-contact-tel__number {
  text-align: center;
}
.c-contact-tel__number a {
  display: inline-block;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.75;
  color: #3e8dbc;
  height: 100%;
}
@media (max-width: 767px) {
  .c-contact-tel__number a {
    font-size: min(2.8rem, 7.4666666667vw);
  }
}

.c-contact-tel__time {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7142857143;
  text-align: center;
}
@media (max-width: 767px) {
  .c-contact-tel__time {
    font-size: 1.2rem;
  }
}

/*------------------------------
header
------------------------------*/
header {
  padding: 20px 0;
}
@media (max-width: 767px) {
  header {
    padding: 10px 0;
  }
}

@media (min-width: 768px) {
  .header__inner {
    padding: 0;
    max-width: 95%;
  }
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 min(5px, 1.3333333333vw);
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .header__content {
    display: block;
  }
}

.header__logo {
  width: 150px;
}
@media (max-width: 767px) {
  .header__logo {
    width: 100px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header__nav {
    margin-top: 10px;
    justify-content: center;
  }
}

.header__button a {
  width: 17.7em;
  max-width: 100%;
  display: inline-block;
  font-size: min(1.9rem, 1.5833333333vw);
  font-weight: 600;
  line-height: 1.7368421053;
  color: #4069af;
  border: 1px solid #4069af;
  border-radius: 5px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 5px 0;
  position: relative;
  transition: all 0.3s;
}
.header__button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background: #4069af;
  width: 1.1em;
  aspect-ratio: 1/1;
  transition: all 0.3s;
  -webkit-mask-image: url(../img/icon_button-arrow.png);
          mask-image: url(../img/icon_button-arrow.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (hover: hover) {
  .header__button a:hover {
    opacity: 1;
    background: #4069af;
    color: #fff;
    border-color: #fff;
  }
  .header__button a:hover::after {
    background: #fff;
  }
}
@media (max-width: 767px) {
  .header__button a {
    font-size: min(1.4rem, 3.7333333333vw);
    width: 13.5em;
  }
  .header__button a::after {
    width: 0.8em;
    right: 0.2em;
  }
}

.header__tel {
  margin-left: min(15px, 1.25vw);
}
.header__tel a {
  display: inline-block;
  font-size: min(3rem, 2.5vw);
  font-weight: 600;
  line-height: 1.5;
  color: #4069af;
  letter-spacing: -0.01em;
}
.header__tel span {
  display: block;
  font-size: min(1.4rem, 1.1666666667vw);
  font-weight: 600;
  line-height: 1.3125;
  text-align: center;
}
@media (max-width: 767px) {
  .header__tel {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 2%;
    margin-top: 10px;
  }
  .header__tel a {
    font-size: 2rem;
    font-size: min(1.5rem, 4vw);
  }
  .header__tel span {
    font-size: min(1rem, 2.6666666667vw);
  }
}

.drawer-icon {
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
  background: #000;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
  background: #000;
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
  transition: transform 0.3s;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  padding: 50px 20px;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-menu li:nth-child(n+2) {
  margin-top: 25px;
}
.drawer-menu li a {
  display: block;
  font-size: 1.8rem;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*------------------------------
footer
------------------------------*/
footer {
  padding: 30px 0;
}

.footer__content {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__content {
    flex-wrap: wrap;
  }
}

.footer__block:first-child {
  width: 29.4%;
}
.footer__block:nth-child(2) {
  width: 34%;
}
.footer__block:nth-child(3) {
  width: 13.4%;
}
.footer__block:nth-child(4) {
  width: 20%;
}
.footer__block:nth-child(n+2) {
  border-left: 1px solid #dedfdf;
}
@media (max-width: 767px) {
  .footer__block:nth-child(n) {
    width: 100%;
  }
  .footer__block:nth-child(2), .footer__block:nth-child(4) {
    border-left: 1px solid #dedfdf;
    border: none;
  }
  .footer__block:nth-child(3) {
    border: none;
  }
  .footer__block:nth-child(n+3) {
    margin-top: 5%;
  }
}

.footer__info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.footer__logo {
  width: min(260px, 21.6666666667vw);
}
@media (max-width: 767px) {
  .footer__logo {
    width: 70%;
    margin: 0 auto;
  }
}

.footer__address {
  font-size: min(1.5rem, 1.25vw);
  font-weight: 300;
  line-height: 1.3333333333;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .footer__address {
    text-align: center;
    font-size: min(1.3rem, 3.4666666667vw);
    margin: 20px 0;
  }
}

.footer__contact {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.footer__contact a {
  display: inline-block;
  font-size: min(3rem, 2.5vw);
  font-weight: 600;
  line-height: 1.6666666667;
  color: #4069af;
}
.footer__contact span {
  display: block;
  font-size: min(1.6rem, 1.3333333333vw);
  font-weight: 600;
  line-height: 1.3125;
  text-align: right;
}
@media (max-width: 767px) {
  .footer__contact {
    height: auto;
  }
  .footer__contact a {
    font-size: min(1.4rem, 3.7333333333vw);
    font-size: min(1.6rem, 4.2666666667vw);
  }
  .footer__contact span {
    font-size: min(1rem, 2.6666666667vw);
    font-size: min(1.2rem, 3.2vw);
  }
}

.footer__sns {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer__sns a {
  display: inline-block;
  font-size: min(1.6rem, 1.3333333333vw);
  font-weight: 600;
  line-height: 1.3125;
}
.footer__sns img {
  display: block;
  width: min(38px, 3.1666666667vw);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__sns a {
    font-size: min(1.2rem, 3.2vw);
  }
  .footer__sns img {
    width: 50%;
  }
}

.footer__partners {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer__partners-label {
  display: block;
  font-size: min(1.6rem, 1.3333333333vw);
  font-weight: 600;
  line-height: 1.3125;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__partners-label {
    font-size: min(1.2rem, 3.2vw);
  }
}

.footer__partners-logo {
  width: min(160px, 16vw);
}
@media (max-width: 767px) {
  .footer__partners-logo {
    width: 70%;
    margin: 0 auto;
  }
}

/* ===============================
  トップページ
=============================== */
/*------------------------------
fv
------------------------------*/
@media (min-width: 768px) {
  .fv__inner {
    width: min(77%, 1078px);
    padding: 0;
  }
}

.fv__content {
  background: linear-gradient(90deg, #fff 0%, #e9f3f5 10%, #e9f3f5 50%, #e9f3f5 90%, #fff 100%);
  padding: min(4%, 56px) 0 min(2%, 28px);
  position: relative;
  overflow: hidden;
}
.fv__content p {
  font-weight: 600;
}
.fv__content p:nth-child(1) {
  font-size: min(2.9rem, 2.0714285714vw);
}
.fv__content p:nth-child(2), .fv__content p:nth-child(3) {
  font-size: min(5.6rem, 4vw);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  line-height: 1.5;
}
.fv__content p:nth-child(2)::after, .fv__content p:nth-child(3)::after {
  content: "";
  position: absolute;
  background: #fff134;
  transform: translate(-50%, -110%) skewX(-30deg);
  width: calc(100% + 0.5em);
  height: 0.3em;
  left: 50%;
  top: 100%;
}
.fv__content p:nth-child(2) span, .fv__content p:nth-child(3) span {
  position: relative;
  z-index: 10;
}
.fv__content p:nth-child(2) {
  margin-top: 0.2em;
}
.fv__content p:nth-child(3) {
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .fv__content p:nth-child(1) {
    text-align: center;
    font-size: min(25rem, 6.6666666667vw);
  }
  .fv__content p:nth-child(2), .fv__content p:nth-child(3) {
    margin: 0 auto;
    font-size: min(4rem, 10.6666666667vw);
  }
  .fv__content p:nth-child(2) {
    margin-top: 0.2em;
  }
}

.fv__img1 {
  width: 40%;
  margin-left: 1.5%;
  margin-top: 2%;
}
@media (max-width: 767px) {
  .fv__img1 {
    width: 80%;
    margin: 2% auto 0;
    display: block;
  }
}

@media (min-width: 768px) {
  .fv__img2 {
    position: absolute;
    top: 47%;
    right: 28.5%;
    right: calc(min(28.5%, 399px) + max(0px, (100vw - 1400px) / 2));
    transform: translate(50%, -50%);
    width: 62%;
    max-width: 868px;
  }
}

.fv__button {
  background: url(../img/bg_gradation.png) no-repeat center center/cover;
  padding: 20px 0;
}

/*------------------------------
about
------------------------------*/
.about {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .about {
    padding: 40px 0;
  }
}

.about__text {
  margin-top: 1.3em;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2;
  text-align: center;
}
.about__text span {
  display: inline-block;
  line-height: 1;
  border: 1px solid #211815;
  border-radius: 3px;
  padding: 0.5em 0;
  font-weight: 600;
  margin: 0px 0.2em;
  width: 7.4em;
}
@media (max-width: 767px) {
  .about__text {
    font-size: 1.4rem;
    font-size: min(1.4rem, 3.7333333333vw);
  }
  .about__text span {
    font-size: min(1.2rem, 3.2vw);
    width: 6.1em;
  }
}

.about__comparison {
  width: 86%;
  margin: 30px auto 0;
}
@media (max-width: 767px) {
  .about__comparison {
    width: calc(100% + min(16px, 4.2666666667vw) + max(0px, (100vw - 400px) / 2));
    overflow: scroll;
    overflow-y: hidden;
  }
  .about__comparison img {
    width: 800px;
    max-width: unset;
  }
}

.about__comparison-note {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 2em;
}

/*------------------------------
reason
------------------------------*/
.reason {
  background: #f4fafe;
  padding: 70px 0;
}
@media (max-width: 767px) {
  .reason {
    padding: 40px 0;
  }
}

.reason__list {
  display: flex;
  flex-wrap: wrap;
  width: 1130px;
  margin: 50px auto 0;
  max-width: 100%;
}
@media (max-width: 767px) {
  .reason__list {
    margin-top: 30px;
    display: block;
  }
}

.reason__item {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 2%;
  padding-left: 5%;
}
.reason__item:nth-child(2n) {
  position: relative;
}
.reason__item:nth-child(2n)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #cdcdce;
  width: 1px;
  height: 90%;
}
.reason__item:nth-child(n+3) {
  position: relative;
}
.reason__item:nth-child(n+3)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #cdcdce;
  width: 90%;
  height: 1px;
}
@media (min-width: 768px) {
  .reason__item:nth-child(1), .reason__item:nth-child(2) {
    padding-bottom: 3.3%;
  }
  .reason__item:nth-child(3), .reason__item:nth-child(4) {
    padding-top: 3.3%;
  }
}
@media (max-width: 767px) {
  .reason__item {
    width: 100%;
    padding: 20px 0;
  }
  .reason__item:nth-child(2n)::before {
    display: none;
  }
  .reason__item:nth-child(n+2)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #cdcdce;
    width: 90%;
    height: 1px;
  }
}

.reason__icon {
  width: min(117px, 9.75vw);
  width: 24%;
}
@media (max-width: 767px) {
  .reason__icon {
    width: 40px;
  }
}

.reason__content {
  width: 76%;
  padding-left: 4%;
}
@media (max-width: 767px) {
  .reason__content {
    width: calc(100% - 50px);
  }
}

.reason__heading {
  font-size: min(2.4rem, 2vw);
  font-weight: 600;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .reason__heading {
    font-size: 1.6rem;
  }
}

.reason__description {
  font-size: min(1.6rem, 1.3333333333vw);
  font-weight: 300;
  line-height: 1.3125;
}
@media (max-width: 767px) {
  .reason__description {
    font-size: 1.2rem;
  }
}

.reason__description--sm {
  font-size: min(1.1rem, 0.9166666667vw);
}

/*------------------------------
printer
------------------------------*/
.printer {
  padding: 70px 0;
}

.printer__text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.75;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .printer__text {
    font-size: min(1.6rem, 4.2666666667vw);
  }
}

.printer__list {
  display: flex;
  margin-top: 40px;
  width: 1090px;
  margin: 30px auto 0;
  max-width: 100%;
}
.printer__list li:nth-child(2) {
  margin-left: 38px;
}
@media (max-width: 767px) {
  .printer__list {
    display: block;
  }
  .printer__list li {
    width: 100%;
  }
  .printer__list li:nth-child(2) {
    margin-left: 0;
    margin-top: 20px;
  }
}

/*------------------------------
flow
------------------------------*/
.flow {
  padding: 90px 0;
  background: #f4fafe;
}
@media (max-width: 767px) {
  .flow {
    padding: 40px 0;
  }
}

.flow__text {
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.75;
  text-align: center;
}

.flow__step {
  display: flex;
  width: 93%;
  margin: 25px auto 0;
}
@media (max-width: 767px) {
  .flow__step {
    display: block;
  }
}

.flow__item {
  width: 16.72%;
}
.flow__item:nth-child(n+2) {
  margin-left: 4.1%;
  position: relative;
}
.flow__item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 25%;
  left: -4.1%;
  transform: translateX(-100%);
  background: url(../img/icon_arrow.png) no-repeat center center/contain;
  width: min(20px, 1.6666666667vw);
  aspect-ratio: 39/74;
}
@media (max-width: 767px) {
  .flow__item {
    width: 100%;
  }
  .flow__item:nth-child(n+2) {
    margin-left: 0;
    margin-top: 40px;
  }
  .flow__item:nth-child(n+2)::before {
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%) rotate(90deg);
    width: 15px;
  }
}

.flow__number {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  text-align: center;
}

.flow__icon {
  width: min(145px, 12.0833333333vw);
  margin: 0 auto;
}
.flow__icon img {
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
}
@media (max-width: 767px) {
  .flow__icon {
    width: 100px;
  }
}

.flow__heading {
  margin-top: 10%;
  font-size: min(1.7rem, 1.4166666667vw);
  font-weight: 600;
  line-height: 1.7058823529;
  text-align: center;
  background: url(../img/bg_gradation02.png) no-repeat center center/cover;
  color: #fff;
}
@media (max-width: 767px) {
  .flow__heading {
    font-size: 1.7rem;
  }
}

.flow__description {
  font-size: min(1.4rem, 1.5625vw);
  font-weight: 300;
  line-height: 1.4285714286;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .flow__description {
    font-size: 1.4rem;
  }
}

.flow__message {
  max-width: 740px;
  margin: 0 auto;
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  color: #4069af;
  border: 1px solid #4069af;
  border-radius: 5px;
  padding: 0.4em 0;
}
@media (max-width: 767px) {
  .flow__message {
    font-size: min(1.6rem, 4.2666666667vw);
  }
}

/*------------------------------
faq
------------------------------*/
.faq {
  padding: 90px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
}

.faq__iist {
  width: 90%;
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .faq__iist {
    margin-top: 30px;
  }
}

.faq__item {
  padding: 15px 0;
  border-bottom: 1px solid #dedfdf;
}

.faq__q {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.7058823529;
  position: relative;
  padding-left: 2.2em;
  cursor: pointer;
}
.faq__q::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  background: url(../img/faq_iconq.png) no-repeat center center/contain;
  width: 1.4em;
  aspect-ratio: 1/1;
}
.faq__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/icon_arrow-sm.png) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 30/17;
  transition: all 0.3s;
}
.faq__q.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 767px) {
  .faq__q {
    font-size: 1.4rem;
    padding-right: 1.5em;
  }
}

.faq__a {
  display: none;
  margin-top: 15px;
  background: #f4fafe;
  padding: 40px 30px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3333333333;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .faq__a {
    font-size: 1.4rem;
  }
}

.faq__button {
  margin-top: 65px;
  text-align: center;
}
.faq__button button {
  background: #fff;
  display: inline-block;
  width: 276px;
  max-width: 100%;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.7894736842;
  text-align: center;
  border: 1px solid #dedfdf;
  border-radius: 24px;
  padding: 5px 0;
  position: relative;
}
.faq__button button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 13px;
  aspect-ratio: 30/17;
  -webkit-mask-image: url(../img/icon_arrow-sm.png);
          mask-image: url(../img/icon_arrow-sm.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #211815;
}
.faq__button.is-open {
  display: none;
}
@media (max-width: 767px) {
  .faq__button {
    margin-top: 30px;
  }
  .faq__button button {
    font-size: 1.6rem;
  }
}

.faq__button--close button::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq__more,
.faq__button--close {
  display: none;
}

/*------------------------------
cta
------------------------------*/
.cta {
  background: url(../img/bg_gradation.png) no-repeat center center/cover;
  padding: 20px 0;
}

.cta__message {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(2.2rem, 1.8333333333vw);
  font-weight: 600;
  line-height: 1.3181818182;
  letter-spacing: 0.01em;
  text-align: center;
  position: relative;
  padding: 0 1em;
}
.cta__message::before {
  content: "";
  width: 0.18em;
  height: 2.27em;
  background: #2e4961;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
}
.cta__message::after {
  content: "";
  width: 0.18em;
  height: 2.27em;
  background: #2e4961;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
}
.cta__message img {
  width: 3.4em;
}
@media (max-width: 767px) {
  .cta__message {
    font-size: min(1.4rem, 3.7333333333vw);
  }
}

.cta__button {
  margin-top: 12px;
}

/* ===============================
  問い合わせ
=============================== */
.contact {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .contact {
    padding: 20px 0 40px;
  }
}

.contact__title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.7428571429;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__title {
    font-size: 2.8rem;
  }
}

.contact__message {
  margin-top: 35px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__message {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}

.contact__form {
  max-width: 930px;
  margin: 0 auto;
  margin-top: 65px;
}
.contact__form dt, .contact__form dd {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.75;
}
.contact__form dt:nth-of-type(n + 2), .contact__form dd:nth-of-type(n + 2) {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .contact__form {
    margin-top: 30px;
  }
  .contact__form dt:nth-of-type(n + 2) {
    margin-top: 25px;
  }
  .contact__form dd:nth-of-type(n + 2) {
    margin-top: 10px;
  }
}

.contact__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact__items {
    display: block;
  }
}

.contact__label {
  width: 200px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.contact__label.contact__label-start {
  align-items: start;
}
.contact__label.contact__label-start .contact__required {
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .contact__label {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
}

.contact__input {
  width: calc(100% - 230px);
}
.contact__input input[type=text],
.contact__input input[type=tel],
.contact__input input[type=email],
.contact__input textarea {
  font: inherit;
  width: 100%;
  border: 1px solid #c5c6c6;
  border-radius: 6px;
  padding: 10px;
}
.contact__input textarea {
  resize: vertical;
  min-height: 210px;
}
@media (max-width: 767px) {
  .contact__input {
    width: 100%;
    margin-top: 10px;
  }
}

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

.contact__input-item {
  display: flex;
  align-items: center;
  width: 50%;
}
.contact__input-item span {
  display: block;
  width: 50px;
  text-align: right;
  margin-right: 5px;
}
.contact__input-item input {
  width: calc(100% - 50px);
}

.contact__required {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7272727273;
  color: #fff;
  background: #48a389;
  border-radius: 2px;
  padding: 0 0.6em;
  margin-left: 1em;
}

.contact__submit {
  margin-top: 40px;
}

.contact__button {
  max-width: 350px;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  border: 1px solid #69abdd;
  border-radius: 34px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.7222222222;
  color: #69abdd;
  text-align: center;
  padding: 1em 0;
  cursor: not-allowed;
}
.contact__button.act {
  background: #69abdd;
  color: #fff;
  cursor: pointer;
}
.contact__button.act input {
  pointer-events: auto;
}
.contact__button input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.contact__cta {
  margin-top: 40px;
}

.invalid-caution { /* バリデーションエラーメッセージ */
  width: 100%;
  color: #C1262D;
  font-size: 1.6rem;
}

/* ===============================
  サンクスページ
=============================== */
.thanks {
  padding: 130px 0 80px;
}
@media (max-width: 767px) {
  .thanks {
    padding: 60px 0 40px;
  }
}

.thanks__title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.7428571429;
  text-align: center;
}
@media (max-width: 767px) {
  .thanks__title {
    font-size: 2.8rem;
    font-size: min(2.8rem, 7.4666666667vw);
  }
}

.thanks__message {
  margin-top: 2.7em;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 767px) {
  .thanks__message {
    margin-top: 30px;
    font-size: min(1.6rem, 4.2666666667vw);
  }
}

.thanks__cta {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .thanks__cta {
    font-size: 60px;
  }
}
/*# sourceMappingURL=style.css.map */