@charset "UTF-8";
/* リセットCSS
===================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  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;
}
a:hover {
  opacity: 0.7;
}

/* フォント */
/* ========================================================
common
=========================================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #363636;
  font-weight: 500;
  background: #fff;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
}

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

.inner {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 100px;
}
@media (min-width: 768px) and (max-width: 1119px) {
  .inner {
    padding: 5.8%;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 4.6%;
  }
}

@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media (min-width: 1120px) {
  .is-sp {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1119px) {
  .is-sp {
    display: none !important;
  }
}
.section-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.45;
  border-bottom: 5px solid #E11E1E;
  padding-bottom: 7px;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 6.5vw;
  }
}

.red {
  color: #E11E1E;
}

/* ========================================================
header
=========================================================*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 20px;
}
@media (min-width: 768px) and (max-width: 1119px) {
  .header__content {
    padding: 0 15px;
    height: 73px;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .header__content {
    padding: 4% 4.6%;
    justify-content: space-between;
  }
}

.header__inner {
  padding: 0;
  width: 1820px;
  margin: 0 auto;
}

.header__logo {
  width: 235px;
}
@media (min-width: 768px) and (max-width: 1119px) {
  .header__logo {
    width: 22vw;
    max-width: 235px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: 46vw;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
}

.header__nav-item:nth-child(n+2) {
  margin-left: 40px;
}
.header__nav-item a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #363636;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 1119px) {
  .header__nav-item:nth-child(n+2) {
    margin-left: 15px;
  }
  .header__nav-item a {
    font-size: 1.5vw;
  }
}

.header__contact {
  margin-left: 40px;
}
.header__contact a {
  display: inline-block;
  width: 155px;
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.4705882353;
  font-weight: 700;
  color: #fff;
  padding: 5px 0;
  background: #E11E1E;
  border-radius: 3px;
}
@media (min-width: 768px) and (max-width: 1119px) {
  .header__contact {
    margin-left: 20px;
  }
  .header__contact a {
    font-size: 1.8vw;
  }
}
@media (max-width: 767px) {
  .header__contact {
    margin-left: 0;
    margin-top: 23%;
  }
  .header__contact a {
    font-size: 4.6vw;
    width: 100%;
  }
}

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

.drawer-icon__bars {
  width: 6.4vw;
  height: 4.2666666667vw;
  display: block;
  position: relative;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 100%;
  height: 9.2%;
  background: #E11E1E;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 50%;
  transform: translateY(-50%);
}

.drawer-icon__bar3 {
  top: unset;
  bottom: 0;
}

.drawer-content {
  width: 66%;
  min-width: 300px;
  height: 100vh;
  position: fixed;
  top: 12.2633637549vw;
  right: 0;
  background: #F3F3F3;
  padding: 23% 12%;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  position: absolute;
  transform: translateX(0);
}

.drawer-content__item:nth-child(n+2) {
  padding-top: 8%;
  border-top: 3px solid #E11E1E;
}
.drawer-content__item a {
  display: block;
  font-size: 4.6vw;
  font-weight: 700;
  line-height: 1.4857142857;
  color: #363636;
  text-decoration: none;
  padding-bottom: 0.8em;
}

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

/* ========================================================
mv
=========================================================*/
.mv {
  background: #E11E1E;
  margin-top: 73px;
}
@media (max-width: 767px) {
  .mv {
    margin-top: 12.2633637549vw;
  }
}

.mv__inner {
  width: 1820px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px 0 130px;
}
@media screen and (max-width: 1725px) {
  .mv__inner {
    padding: 0 3.4%;
  }
}
@media (max-width: 767px) {
  .mv__inner {
    padding: 4.6% 4.6% 15px;
  }
}

.mv__content {
  padding: 95px 0 84px;
  display: flex;
  padding-left: 8%;
  align-items: end;
}
@media screen and (max-width: 1725px) {
  .mv__content {
    padding-left: 0;
  }
}
@media screen and (max-width: 1099px) {
  .mv__content {
    padding: 5.5% 0 4.8%;
    display: block;
  }
}
@media (max-width: 767px) {
  .mv__content {
    padding: 0;
    display: block;
  }
}

.mv__content-text {
  width: 63%;
}
@media screen and (max-width: 1099px) {
  .mv__content-text {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mv__content-text {
    width: 100%;
  }
}

.mv__text p {
  display: inline-block;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.4814814815;
  padding: 0 3em 0 1em;
  background: url(../images/fv-text_bg.png) no-repeat center center/100%;
  aspect-ratio: 1134/104;
}
.mv__text p:nth-child(2) {
  margin-top: 2%;
}
@media screen and (max-width: 1725px) {
  .mv__text P {
    font-size: 2vw;
  }
}
@media screen and (max-width: 1099px) {
  .mv__text p {
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  .mv__text p {
    font-size: 3.6vw;
  }
}

.mv__heading01 {
  display: flex;
  align-items: center;
  margin-top: 4.9%;
}
.mv__heading01 span {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3214285714;
  color: #fff;
}
.mv__heading01 img {
  width: 628px;
  margin-left: 16px;
}
@media screen and (max-width: 1725px) {
  .mv__heading01 img {
    width: 38vw;
  }
}
@media screen and (max-width: 1099px) {
  .mv__heading01 {
    margin-top: 3%;
  }
  .mv__heading01 span {
    font-size: 2.6rem;
  }
  .mv__heading01 img {
    width: 540px;
    margin-left: 8px;
  }
}
@media (max-width: 767px) {
  .mv__heading01 span {
    font-size: 3.4vw;
  }
  .mv__heading01 img {
    width: 71vw;
    margin-left: 8px;
  }
}

.mv__heading02 {
  margin-top: 3.4%;
  color: #fff;
}
.mv__heading02 .note {
  display: block;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-top: 1%;
}
.mv__heading02 .note .is-sp-note {
  display: none;
}
@media screen and (max-width: 1099px) {
  .mv__heading02 {
    margin-top: 0;
  }
  .mv__heading02 .note {
    font-size: 1.8rem;
  }
  .mv__heading02 .note span {
    padding-left: 2.3em;
  }
  .mv__heading02 .note .is-sp-note {
    display: unset;
  }
}
@media (max-width: 767px) {
  .mv__heading02 .note {
    font-size: max(2.4vw, 12px);
  }
}
.note-inner {
  display: flex;
}
.note-inner p{
  margin-right: 1em;
}

.mv__heading-text-wrap {
  display: flex;
  align-items: center;
  font-size: 3.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 1099px) {
  .mv__heading-text-wrap {
    margin-top: 4%;
    align-items: start;
  }
}

.mv__heading-text01 {
  display: inline-block;
  font-size: 1.5rem;
  text-align: center;
  padding: 4px 8px 12px;
  border: 1px solid #fff;
  flex-shrink: 0;
}
.mv__heading-text01 .num {
  font-size: 2.5rem;
}
.mv__heading-text01 .large {
  font-size: 1.9rem;
}
@media screen and (max-width: 1099px) {
  .mv__heading-text01 {
    padding: 1% 2.4%;
    font-size: 2.1333333333vw;
  }
  .mv__heading-text01 .num {
    font-size: 3.6vw;
  }
  .mv__heading-text01 .large {
    font-size: 2.6666666667vw;
  }
}

.mv__heading-text02 {
  display: flex;
  align-items: baseline;
  margin-left: 10px;
}
.mv__heading-text02 span {
  display: inline-block;
  font-size: min(3.59375vw, 69px);
  line-height: 1;
}
.mv__heading-text02 p {
  font-size: min(2.7083333333vw, 52px);
}
.mv__heading-text02 p:nth-child(2) {
  font-size: min(1.875vw, 36px);
}
.mv__heading-text02 .attention {
  position: relative;
  margin-right: 1vw;
}
.mv__heading-text02 .attention::after {
  content: "※1";
  position: absolute;
  bottom: 60px;
  right: -15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 1725px) {
  .mv__heading-text02 span {
    font-size: 4vw;
  }
  .mv__heading-text02 p {
    font-size: 2vw;
  }
  .mv__heading-text02 .attention::after {
    bottom: 45%;
  }
}
@media screen and (max-width: 1099px) {
  .mv__heading-text02 {
    display: block;
    font-size: 7.6vw;
  }
  .mv__heading-text02 span {
    font-size: 76px;
  }
  .mv__heading-text02 p {
    font-size: 7.6vw;
  }
  .mv__heading-text02 p:nth-child(2) {
    font-size: 5.3333333333vw;
  }
  .mv__heading-text02 .attention::after {
    top: 21%;
    right: -1.3em;
  }
}
@media (max-width: 767px) {
  .mv__heading-text02 {
    display: block;
    font-size: 7.6vw;
  }
  .mv__heading-text02 span {
    font-size: 10vw;
  }
  .mv__heading-text02 p {
    margin-left: 0;
    line-height: 1.2;
  }
  .mv__heading-text02 .attention::after {
    bottom: 50%;
    top: 0;
  }
}

.mv__list {
  display: flex;
  margin-top: 5%;
}
.mv__list li {
  width: 27%;
}
.mv__list li:nth-child(n+2) {
  margin-left: 20px;
}
@media screen and (max-width: 1099px) {
  .mv__list {
    margin-top: 4%;
    justify-content: space-between;
  }
  .mv__list li {
    width: 33%;
  }
  .mv__list li:nth-child(n+2) {
    margin-left: 5px;
  }
}

.mv__content-image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  position: absolute;
  width: 37%;
  right: 25.5%;
  max-width: 756px;
  transform: translateX(50%);
}
.mv__content-image p {
  font-size: 3rem;
  font-weight: 700;
  text-align: left;
  margin-left: 23%;
  white-space: nowrap;
}
.mv__content-image span {
  display: block;
  font-weight: 700;
  text-align: center;
  padding: 5px 0;
  border: 1px solid #fff;
  font-size: 2.6rem;
  width: 71%;
  margin-top: -7%;
  margin-left: 20%;
}
@media screen and (min-width: 1921px) {
  .mv__content-image {
    right: calc(50% - 500px);
  }
}
@media screen and (max-width: 1725px) {
  .mv__content-image {
    width: 45%;
  }
  .mv__content-image p {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 1099px) {
  .mv__content-image {
    max-width: unset;
    position: unset;
    transform: unset;
    margin-top: 4%;
    width: 100%;
    align-items: center;
  }
  .mv__content-image p {
    font-size: 4vw;
    margin-left: 0;
  }
  .mv__content-image span {
    font-size: 4.4vw;
    width: 100%;
    margin-left: 0;
    margin-top: -17.7%;
    padding: 10px 0;
  }
  .mv__content-image img {
    width: 540px;
    max-width: 100%;
    margin-left: -10%;
  }
}

.mv__bottom {
  padding: 19px 0 16px;
  background: #363636;
}
.mv__bottom p {
  font-size: 4rem;
  line-height: 1.475;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.mv__bottom p span {
  font-size: 3.2rem;
}
@media screen and (max-width: 1099px) {
  .mv__bottom p {
    font-size: 4rem;
    line-height: 1.275;
  }
  .mv__bottom p span {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .mv__bottom p {
    font-size: 5.3vw;
  }
  .mv__bottom p span {
    font-size: 4.2vw;
  }
}

/* ========================================================
about
=========================================================*/
.about {
  padding: 109px 0 113px;
}

.about__top {
  display: flex;
  margin-top: 60px;
  padding-bottom: 30px;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 88%;
  margin: 60px auto 0;
}
.about__top::before {
  content: "";
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/mv_heading02.png) no-repeat center center/100%;
  aspect-ratio: 1852/444;
  width: 116%;
  z-index: -1;
}
.about__top::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/bar.png) no-repeat center center/cover;
  aspect-ratio: 1256/11;
  width: 626px;
}
@media (max-width: 767px) {
  .about__top {
    width: auto;
    display: block;
    margin-top: 37px;
  }
  .about__top::after {
    bottom: 0;
    width: 100%;
  }
  .about__top::before {
    width: 100%;
    top: 28%;
  }
}

.about__top-image {
  width: 18%;
  margin-left: 5%;
}
.about__top-image img {
  width: 143px;
  width: 100%;
}
@media (max-width: 767px) {
  .about__top-image {
    position: relative;
    text-align: center;
    width: auto;
    margin: 8% auto;
  }
  .about__top-image img {
    width: 35vw;
  }
}

.about__top-body {
  margin-left: 17px;
  width: 590px;
  max-width: 100%;
}
.about__top-body p {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.4444444444;
}
.about__top-body h3 {
  font-size: 3.9rem;
  line-height: 1.4358974359;
  font-weight: 900;
}
@media (max-width: 767px) {
  .about__top-body {
    margin-left: 0;
    width: 100%;
  }
  .about__top-body p {
    font-size: 4.1333333333vw;
  }
  .about__top-body h3 {
    font-size: 6vw;
  }
  .about__top-body .laege {
    font-size: 6.8vw;
  }
}

.about__bottom {
  display: flex;
  justify-content: center;
  padding-top: 59px;
  padding-left: 1%;
}
.about__bottom ul {
  width: 28%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about__bottom li {
  width: 125px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  padding: 12px 0;
  text-align: center;
  background: #E11E1E;
  border-radius: 6px;
}
.about__bottom li:nth-child(n+3) {
  margin-top: 10px;
}
.about__bottom p {
  width: 55%;
  margin-left: 2%;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .about__bottom {
    display: block;
    margin-top: 33px;
    padding: 0;
  }
  .about__bottom ul {
    width: 100%;
  }
  .about__bottom li {
    width: calc(25% - 9px);
    font-size: 3.3333333333vw;
    padding: 22px 0;
  }
  .about__bottom li:nth-child(n+2) {
    margin-left: 12px;
    margin-top: 0;
  }
  .about__bottom p {
    width: 100%;
    font-size: 3.7vw;
    padding-top: 0.9em;
    margin-left: 0;
  }
}

/* ========================================================
service
=========================================================*/
.service {
  padding: 104px 0 101px;
  background: #F7F7F7;
}

.service__block01 {
  margin-top: 34px;
}
.service__block01 h3 {
  font-size: 4.4rem;
  line-height: 1.4772727273;
  font-weight: 700;
  padding: 18px 0;
  background: #E11E1E;
  color: #fff;
  text-align: center;
  border-radius: 13px;
}
@media (max-width: 767px) {
  .service__block01 h3 {
    font-size: 5.8vw;
  }
}

.service__content {
  display: flex;
  margin-top: 17px;
  border-bottom: 3px solid #D1D1D1;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .service__content {
    flex-direction: column-reverse;
  }
}

.service__body {
  width: 64%;
  padding-left: 2%;
}
@media (max-width: 767px) {
  .service__body {
    width: 100%;
  }
}

.service__content-text {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 30px 0;
}
.service__content-text:first-child {
  border-bottom: 3px solid #D1D1D1;
}
.service__content-text p {
  font-size: 2.7rem;
  line-height: 1.4814814815;
  font-weight: 700;
}
.service__content-text .image01 {
  width: 189px;
}
.service__content-text .image02 {
  width: 247px;
}
@media (max-width: 767px) {
  .service__content-text {
    display: block;
    text-align: center;
    padding: 8% 0;
  }
  .service__content-text p {
    padding-bottom: 30px;
    font-size: 4.6vw;
  }
}

.service__block02 {
  padding-top: 68px;
  width: 790px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.service__block02 h3 {
  font-size: 4rem;
  line-height: 1.475;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #E11E1E;
  border-radius: 48px;
  padding: 19px 0;
}
@media (max-width: 767px) {
  .service__block02 h3 {
    font-size: 5.8vw;
  }
}

.service__text {
  padding-top: 1em;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.4857142857;
}
.service__text:nth-child(2) {
  padding-top: 38px;
}
.service__text.underLine {
  display: inline-block;
  border-bottom: 7px solid #E11E1E;
}
@media (max-width: 767px) {
  .service__text {
    font-size: 4.8vw;
  }
  .service__text.underLine {
    font-size: 5.8666666667vw;
  }
}

.service__image {
  width: 24%;
  margin-left: 7.4%;
}
@media (max-width: 767px) {
  .service__image {
    text-align: center;
    width: 100%;
    margin: 5% 0 0;
  }
  .service__image img {
    width: 62vw;
  }
}

.service__price {
  padding-top: 30px;
  font-size: 2.8rem;
  font-weight: 900;
  text-align: left;
  padding-left: 0.7em;
}
.service__price .num {
  font-size: 5.4rem;
}
.service__price .large {
  font-size: 4.1rem;
  margin-left: 0.8em;
}
@media (max-width: 767px) {
  .service__price {
    font-size: 4.1vw;
    line-height: 1.5;
    text-align: center;
    padding-left: 0;
    padding-top: 7%;
  }
  .service__price .num {
    font-size: 8.1vw;
  }
  .service__price .large {
    font-size: 6.1vw;
  }
}

.service__list {
  margin-top: 65px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service__list li {
  font-size: 2.3rem;
  line-height: 1.4782608696;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #E11E1E;
  border-radius: 6px;
  width: 32%;
  padding: 12px 0;
}
.service__list li.w100 {
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .service__list li {
    font-size: 3.3vw;
  }
  .service__list li.w100 {
    margin-top: 10px;
  }
  .service__list li.w100 span {
    font-size: 2.5vw;
  }
}

.service__item {
  margin-top: 60px;
}

/* ========================================================
point
=========================================================*/
.point {
  padding: 94px 0 100px;
}

.point-__title {
  font-size: 4.9rem;
  line-height: 1.4489795918;
  text-align: center;
  font-weight: 900;
}
@media (max-width: 767px) {
  .point-__title {
    font-size: 7.2vw;
  }
}

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

.point__item {
  border: 10px solid #ECEBEB;
  width: 48.8%;
  position: relative;
  padding: 0% 5.3% 3%;
  display: flex;
  flex-direction: column;
}
.point__item:nth-child(n+3) {
  margin-top: 22px;
}
@media (max-width: 767px) {
  .point__item {
    width: 100%;
    padding: 5.5%;
    aspect-ratio: unset;
  }
  .point__item:nth-child(n+2) {
    margin-top: 6%;
  }
}

.point__item-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #D3D3D3;
  position: absolute;
  top: 5px;
  left: 13px;
}
.point__item-num span {
  font-size: 4.1rem;
  display: block;
}
@media (max-width: 767px) {
  .point__item-num {
    font-size: 2.8vw;
    top: 24px;
    left: 23px;
  }
  .point__item-num span {
    font-size: 8.1vw;
  }
}

.point__item-image {
  border-bottom: 1px solid #E3E3E3;
  text-align: center;
  height: 182px;
  padding-top: 16px;
}
.point__item-image img {
  height: 80px;
  width: auto;
}
.point__item-image p {
  font-size: 2.2rem;
  line-height: 1.4545454545;
  font-weight: 900;
  text-align: center;
}
.point__item-image p span {
  display: inline-block;
  font-size: 3rem;
  line-height: 1.4666666667;
}
@media (min-width: 768px) and (max-width: 1119px) {
  .point__item-image p {
    font-size: 1.8rem;
  }
  .point__item-image p span {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .point__item-image {
    height: auto;
    padding-bottom: 4%;
  }
  .point__item-image p {
    font-size: 4vw;
  }
  .point__item-image p span {
    font-size: 5.6vw;
  }
  .point__item-image img {
    height: min(17.1428571429vw, 80px);
  }
}

.point__item-body {
  padding-top: 20px;
}
.point__item-body p {
  font-size: 1.5rem;
  line-height: 1.4666666667;
}
.point__item-body p span {
  font-size: 2.2rem;
  color: #E11E1E;
  font-weight: 700;
}
@media (max-width: 767px) {
  .point__item-body {
    padding-top: 30px;
  }
  .point__item-body p {
    font-size: 3.4vw;
  }
  .point__item-body p span {
    font-size: 5.2vw;
  }
  .point__item-body span {
    font-size: 5.2vw;
  }
}

.point__item-w100 {
  width: 100%;
}
.point__item-w100 .point__item-body p {
  padding: 0 50px;
}
@media screen and (min-width: 768px) {
  .point__item-w100 .point__item-image {
    display: flex;
    justify-content: space-between;
    width: 69%;
    padding: 46px 0 27px;
    height: auto;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .point__item-w100 .point__item-body p {
    padding: 0;
  }
}

.point__item-chart {
  margin-top: 30px;
}
.point__item-chart h3 {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin: 40px 0 21px;
}
@media (max-width: 767px) {
  .point__item-chart h3 {
    font-size: 4.6vw;
  }
  .point__item-chart img {
    margin-top: 35px;
  }
}

/* ========================================================
flow
=========================================================*/
.flow {
  padding: 75px 0 109px;
  background: #F7F7F7;
}

.flow__items {
  display: flex;
  justify-content: space-between;
  margin-top: 81px;
}
@media (max-width: 767px) {
  .flow__items {
    display: block;
    padding: 0 8%;
  }
}

.flow__item {
  width: 28%;
}
.flow__item:nth-child(n+2) {
  position: relative;
}
.flow__item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translate(-50%, -50%);
  background: url(../images/flow-arrow.png) no-repeat center center/contain;
  width: 17px;
  height: 150%;
}
.flow__item h3 {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #D2D2D2;
}
.flow__item h3 p {
  font-size: 2rem;
  font-size: min(1.7857142857vw, 20px);
  font-weight: 900;
  line-height: 1.45;
  padding-left: 14px;
}
@media (max-width: 767px) {
  .flow__item {
    width: 552px;
    max-width: 100%;
    margin: 0 auto;
  }
  .flow__item:nth-child(n) {
    padding: 0;
  }
  .flow__item:not(:nth-child(3)) {
    padding-bottom: 26%;
  }
  .flow__item:nth-child(n+2)::before {
    top: -20%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    background: url(../images/flow-arrow.png) no-repeat center center/100%;
    width: auto;
    height: 71.4285714286vw;
    max-height: 370px;
    aspect-ratio: 35/394;
  }
  .flow__item h3 {
    padding-bottom: 25px;
  }
  .flow__item h3 p {
    font-size: 4.5333333333vw;
    margin-top: 0.6em;
  }
  .flow__item p {
    font-size: 3.7vw;
  }
}

.flow__item-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #E11E1E;
  text-align: center;
}
.flow__item-num span {
  display: block;
  font-size: 4.1rem;
}
@media (max-width: 767px) {
  .flow__item-num span {
    font-size: 9.4666666667vw;
  }
}

.flow__item-text {
  padding-top: 10px;
  font-size: clamp(12px, 1.3392857143vw, 15px);
  line-height: 1.4666666667;
}
@media (max-width: 767px) {
  .flow__item-text {
    padding-top: 16px;
  }
}

/* ========================================================
contact
=========================================================*/
.contact {
  padding: 93px 0 67px;
}

.contact-form {
  width: 796px;
  max-width: 100%;
  margin: 49px auto 0;
}
@media (max-width: 767px) {
  .contact-form {
    margin: 11% auto 0;
  }
}

.contact__form-item {
  display: flex;
  justify-content: space-between;
  padding: 24px 35px;
}
.contact__form-item:nth-child(n+2) {
  border-top: 1px solid #E5E5E5;
}
.contact__form-item:last-child {
  padding-bottom: 44px;
  border-bottom: 1px solid #E5E5E5;
}
.contact__form-item:first-child dd {
  background: none;
}
.contact__form-item dt {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4;
  width: 296px;
}
.contact__form-item dt span {
  color: #E11E1E;
  font-size: 9px;
  vertical-align: top;
}
.contact__form-item dd {
  width: calc(100% - 330px);
  font-size: 1.5rem;
  background: #EFEFEF;
}
.contact__form-item dd input[type=text],
.contact__form-item dd input[type=email],
.contact__form-item dd input[type=tel],
.contact__form-item dd textarea {
  border: none;
  background: #EFEFEF;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  padding: 0.25em 0.5em;
}
.contact__form-item dd textarea {
  resize: vertical;
  min-height: 248px;
}
.contact__form-item dd label:nth-child(2) {
  margin-left: 40px;
}
.contact__form-item dd input[type=radio] {
  position: relative;
  visibility: hidden;
  margin-right: 1.4em;
}
.contact__form-item dd input[type=radio]::before {
  content: "";
  position: absolute;
  border: 1.5px solid #D7D7D7;
  width: 23px;
  aspect-ratio: 1/1;
  right: -100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
}
.contact__form-item dd input[type=radio]::after {
  content: "";
  position: absolute;
  border: 2px solid #E11E1E;
  border-top: none;
  border-left: none;
  width: 8px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}
.contact__form-item dd input[type=radio]:checked::after {
  visibility: visible;
}
@media (max-width: 767px) {
  .contact__form-item {
    display: block;
    padding: 7% 4%;
  }
  .contact__form-item dt {
    font-size: 3.6vw;
    width: 100%;
    letter-spacing: 0.1em;
  }
  .contact__form-item dt span {
    margin-left: 2%;
    margin-top: -1%;
    display: inline-block;
    font-size: 2.5333333333vw;
  }
  .contact__form-item dd {
    width: 100%;
    margin-top: 6%;
    font-size: 3.6vw;
    height: 80px;
  }
  .contact__form-item dd input[type=radio] {
    margin-right: 4%;
    width: 7.2%;
    width: min(6vw, 45px);
  }
  .contact__form-item dd input[type=radio]::before {
    width: 100%;
  }
  .contact__form-item dd input[type=radio]::after {
    width: 44.4%;
    height: auto;
    aspect-ratio: 16/24;
    bottom: 0;
    transform: translate(-50%, 0) rotate(45deg);
    border: 4px solid #E11E1E;
    border-top: 0;
    border-left: 0;
  }
  .contact__form-item dd label:nth-child(2) {
    margin-left: 13%;
  }
  .contact__form-item dd textarea {
    height: 420px;
  }
  .contact__form-item dd:has(textarea), .contact__form-item dd:has(input[type=radio]) {
    height: auto;
  }
}

.privacy__wrap {
  width: 100%;
  overflow: auto;
  border: 5px solid #E5E5E5;
  margin-top: 43px;
}

.contact__privacy {
  padding: 18px 60px;
  font-size: 1.3rem;
  line-height: 1.6923076923;
  font-weight: 400;
  height: 270px;
}
.contact__privacy h2 {
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__privacy {
    height: 570px;
    padding: 48px 20px;
  }
  .contact__privacy h2 {
    font-size: 4.6vw;
  }
}

.privacy__top {
  padding-top: 31px;
  padding-bottom: 24px;
  border-bottom: 1px solid #858585;
}

.privacy__content {
  padding-top: 27px;
}

.privacy__item h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
.privacy__item:nth-child(n+2) {
  margin-top: 23px;
}
.privacy__item a {
  color: #363636;
}

.contact__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 37px;
}
.contact__checkbox p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}
.contact__checkbox input {
  position: relative;
  visibility: hidden;
  margin-right: 1.4em;
}
.contact__checkbox input::before {
  content: "";
  position: absolute;
  border: 1.5px solid #D7D7D7;
  width: 23px;
  aspect-ratio: 1/1;
  right: -100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
}
.contact__checkbox input::after {
  content: "";
  position: absolute;
  border: 2px solid #E11E1E;
  border-top: none;
  border-left: none;
  width: 8px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}
.contact__checkbox input:checked::after {
  visibility: visible;
}
@media (max-width: 767px) {
  .contact__checkbox {
    align-items: start;
  }
  .contact__checkbox p {
    font-size: 3.0666666667vw;
  }
  .contact__checkbox input {
    margin-right: 6%;
    width: min(6vw, 45px);
    aspect-ratio: 1/1;
  }
  .contact__checkbox input::before {
    width: 100%;
  }
  .contact__checkbox input::after {
    width: 44.4%;
    height: auto;
    aspect-ratio: 16/24;
    top: 47%;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 4px solid #E11E1E;
    border-top: 0;
    border-left: 0;
  }
}

.contact__submit {
  margin-top: 51px;
  text-align: center;
  padding-bottom: 174px;
}
.contact__submit input {
  display: inline-block;
  width: 318px;
  max-width: 100%;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  border: none;
  background: #E11E1E;
  padding: 10px 0;
}
.contact__submit input:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .contact__submit {
    margin-top: 20%;
    padding-bottom: 30%;
  }
  .contact__submit input {
    font-size: 3.8666666667vw;
    width: 63%;
    padding: 2% 0;
  }
}

.contact__disclaimer {
  border-top: 1px solid #D1D1D1;
  padding-top: 40px;
  padding-left: 1%;
}
.contact__disclaimer h2 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4705882353;
}
.contact__disclaimer h2 span {
  position: relative;
  display: inline-block;
  padding: 0 1.5em;
}
.contact__disclaimer h2 span::before {
  content: "<<";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.contact__disclaimer h2 span::after {
  content: ">>";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.contact__disclaimer ul {
  padding-top: 10px;
}
.contact__disclaimer li {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
.contact__disclaimer li:nth-child(n+2) {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .contact__disclaimer {
    padding: 3% 5% 0;
  }
  .contact__disclaimer li {
    font-size: 2.9333333333vw;
  }
  .contact__disclaimer h2 span {
    font-size: 2.9333333333vw;
    padding: 0 1.8em;
  }
  .contact__disclaimer h2 span::before {
    font-size: 1.4rem;
  }
  .contact__disclaimer h2 span::after {
    font-size: 1.4rem;
  }
}

/* ========================================================
footer
=========================================================*/
footer {
  background: #363636;
  padding: 33px 0 32px;
  text-align: center;
  color: #fff;
}
footer h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}
footer p {
  font-size: 1.5rem;
  line-height: 1.4666666667;
  padding-top: 17px;
}

.footer__copyright {
  font-size: 1.3rem;
  line-height: 1.4615384615;
  font-weight: 400;
  padding-top: 20px;
}

/* ========================================================
topTop
=========================================================*/
.topTop {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 66px;
}
@media (max-width: 767px) {
  .topTop {
    width: 13.3vw;
  }
}

/* ========================================================
thanks
=========================================================*/
.thanks-message {
  text-align: center;
  margin: 16% 0 30%;
  font-size: 20px;
}
.thanks-message a {
  color: inherit;
}
.thanks-message p:nth-child(2) {
  margin-top: 5%;
}