@charset "UTF-8";
/*basic.css RESET*/
/* RESET */
html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, fieldset, input {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, pre, code, address, caption, cite, code, em, strong, th {
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
}

ul, ol {
  list-style: none;
}

fieldset, img {
  border: none;
}

caption, th {
  text-align: left;
}

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

input {
  margin: 0;
  padding: 0;
}

textarea {
  font-size: 12px;
}

/* BASE */
html {
  margin-bottom: 1px;
  height: 100%;
  background-color: #FFF;
}

html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, fieldset, input {
  font-size: 14px;
  color: #333;
}

html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, fieldset, input, select, option, a, span, button {
  font-family: "Noto Sans JP", Meiryo, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #424242;
}

/* HIDE HACK FROM MAC-IE5 \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* END HIDING */
/* LINK */
a:link, a:visited {
  color: #0277bd;
  text-decoration: underline;
}

a:hover {
  color: #0071B9;
  text-decoration: none;
}

a:focus {
  outline: none;
}

/* IMG */
img {
  margin: 0;
  padding: 0;
  border: 0;
}

/* css3 */
a:hover img {
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  -moz-opacity: 0.7;
  opacity: 0.7;
}

body {
  background-color: #FFF;
}

#container {
  width: 960px;
}

#page_block5 {
  clear: both;
}

.bgblue-pastel {
  background-color: #b6e2f5;
}

.bgred-pastel {
  background-color: #f5b6b6;
}

/*---------*/
img {
  vertical-align: top;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

#container {
  width: 100%;
  margin: 0 auto;
}

body {
  counter-reset: number 0;
}

header {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 14px 0 14px 32px;
  position: sticky;
  z-index: 100;
  top: 0;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.2);
}
header .header_cta_wrap {
  display: flex;
  margin-right: 17px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
header .header_cta_wrap .cta_btn,
header .header_cta_wrap .cta_btn:link,
header .header_cta_wrap .cta_btn:visited {
  box-shadow: none;
  border: none;
  border-radius: 8px;
  font-size: 26px;
  max-width: 320px;
  width: 320px;
}
header .header_cta_wrap .cta_btn::before,
header .header_cta_wrap .cta_btn:link::before,
header .header_cta_wrap .cta_btn:visited::before {
  max-width: 40px;
}
header .header_cta_wrap .cta_btn::after,
header .header_cta_wrap .cta_btn:link::after,
header .header_cta_wrap .cta_btn:visited::after {
  max-width: 10px;
}

.logo a {
  display: block;
  width: 224px;
  height: 64px;
  aspect-ratio: 64/224;
  /*margin: 14px 0 14px 32px;*/
  background: url(../img/logo.svg) no-repeat;
}

.logo a:hover {
  opacity: 0.8;
}

.main_img {
  position: relative;
}

.main_img img {
  display: block;
  width: 100%;
  margin: auto;
}

/* -------------------------- 汎用クラス ここから -------------------------- */
.txt_yellow {
  color: #F6FF00;
}

.txt_red {
  color: #EA705A;
}

.subhead_wrap {
  text-align: center;
  margin-bottom: min(7.3%, 74px);
}
.subhead_wrap p {
  font-size: 24px;
  font-weight: bold;
  background-image: url(../img/icon_eyecatch.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top center;
  padding-top: 36px;
}
.subhead_wrap h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2.2px;
}

section .inner_wrap {
  max-width: 1008px;
  margin: 0 auto;
}

.cta_btn,
.cta_btn:link,
.cta_btn:visited {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 496px;
  background-color: #aaa;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: 0 8px 0px 0px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  padding: min(1.2%, 12px) 16px;
}
.cta_btn:hover,
.cta_btn:link:hover,
.cta_btn:visited:hover {
  filter: contrast(150%);
}
.cta_btn::before,
.cta_btn:link::before,
.cta_btn:visited::before {
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  max-width: 64px;
  aspect-ratio: 1/1;
}
.cta_btn::after,
.cta_btn:link::after,
.cta_btn:visited::after {
  display: block;
  content: "";
  background-image: url(../img/icon_cta_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  aspect-ratio: 24/40;
  max-width: 24px;
  width: 100%;
}

.cta_btn.dl,
.cta_btn.dl:link {
  background-color: #01D58B;
}
.cta_btn.dl::before,
.cta_btn.dl:link::before {
  background-image: url(../img/icon_dl.svg);
}

.cta_btn.info,
.cta_btn.info:link {
  background-color: #EA705A;
}
.cta_btn.info::before,
.cta_btn.info:link::before {
  background-image: url(../img/icon_info.svg);
}

/* -------------------------- コンテンツ領域（PC） ここから -------------------------- */
#container main section.mv {
  background-image: url(../img/bg_01_01.png), url(../img/bg_01_02.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left 145px, right 220px;
  background-size: 50%, 50%;
  background-color: #01add6;
  padding: 55px 0px 45px;
  overflow: hidden;
}
#container main section.mv .mv_wrap {
  background-image: url(../img/mv_img.png);
  background-repeat: no-repeat;
  background-position: top 60px right;
  background-size: min(60%, 850px);
  width: 100%;
  max-width: 1287px;
  margin: 0 auto;
  width: 100%;
  transform: translate(146px, 0);
}
#container main section.mv .mv_wrap .mv_left .mv_top_txt {
  font-size: 30px;
  line-height: 1.2;
  color: #FFF;
  font-weight: bold;
  margin-bottom: 2px;
}
#container main section.mv .mv_wrap .mv_left .mv_top_txt .txt_yellow {
  font-family: "Jost", sans-serif;
  font-size: 64px;
}
#container main section.mv .mv_wrap .mv_left .h1_wrap {
  width: 100%;
  max-width: 525px;
  background-color: #fff;
  border-radius: 14px;
  padding: 28px 0 25px;
  margin-bottom: 25px;
}
#container main section.mv .mv_wrap .mv_left .h1_wrap .h1_top {
  font-size: 24px;
  font-weight: 500;
  padding-left: 34px;
  margin-bottom: 3px;
}
#container main section.mv .mv_wrap .mv_left .h1_wrap h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 2px;
  margin: 0 0 6px 34px;
}
#container main section.mv .mv_wrap .mv_left .h1_wrap .h1_bottom {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  max-width: 456px;
  margin: 0 auto;
}
#container main section.mv .mv_wrap .mv_left .h1_wrap .h1_bottom span {
  font-size: 24px;
  font-weight: 700;
  color: #01ADD6;
  line-height: 1;
}
#container main section.mv .mv_wrap .mv_left .h1_wrap .h1_bottom .h1_txt_deco {
  background-color: #01ADD6;
  color: #fff;
  border-radius: 100vw;
  padding: 3px 20px 3px 4px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
#container main section.mv .mv_wrap .mv_left .h1_wrap .h1_bottom .h1_txt_deco::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_circle-check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
}
#container main section.mv .mv_wrap .mv_left .mv_circle {
  width: 100%;
  max-width: 525px;
  margin-bottom: 21px;
}
#container main section.mv .mv_wrap .mv_left .mv_circle img {
  width: 100%;
}
#container main section.mv .mv_wrap .mv_left .mv_attention {
  margin-left: 3px;
}
#container main section.mv .mv_wrap .mv_left .mv_attention li {
  font-size: 16px;
  color: #fff;
}
#container main section.plan {
  background-color: #fff;
  background-image: url(../img/bg_02_01.png), url(../img/bg_02_02.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top 30% left 8%, bottom 5.4% right 5.7%;
  background-size: 27.3%, 23.4%;
  background-attachment: fixed;
  padding: min(11%, 208px) 0 min(6.3%, 120px);
}
#container main section.plan .plan_img_wrap img {
  width: 100%;
}
#container main section.plan .sp_plan_img_wrap {
  display: none;
  padding: 0 0 0 3%;
}
#container main section.plan .sp_plan_img_wrap img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 562px;
}
#container main section.strongpoint {
  background-color: #ECF0F3;
  background-image: url(../img/bg_03_01.png), url(../img/bg_03_02.png), url(../img/bg_03_03.png), url(../img/bg_03_04.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: top 6.6% left 0%, top 42.9% right 5.4%, bottom 29.5% left 0%, bottom 2.1% right 0%;
  background-size: 35.9%, 30.5%, 23.2%, 23.3%;
  padding: min(11%, 208px) 0 min(5.7%, 110px);
}
#container main section.strongpoint .inner_wrap {
  max-width: 1112px;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette + .strong_cassette {
  margin-top: min(7%, 80px);
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(odd) {
  flex-direction: row;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(odd) .text_wrap {
  border-radius: 40px 40px 0 40px;
  box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.2);
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(odd) .text_wrap::before {
  left: 9.2%;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(odd) .text_wrap .text_inner {
  padding: min(5.9%, 46px) min(9%, 54px) min(5.9%, 46px) min(13.3%, 104px);
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(even) {
  flex-direction: row-reverse;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(even) .text_wrap {
  border-radius: 40px 40px 40px 0;
  box-shadow: -8px 8px 0px 0px rgba(0, 0, 0, 0.2);
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(even) .text_wrap::before {
  left: 3.2%;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(even) .text_wrap .text_inner {
  padding: min(5.9%, 46px) min(13.3%, 104px) min(5.9%, 46px) min(9%, 54px);
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap {
  background: #FFF;
  width: 70.6%;
  position: relative;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  position: absolute;
  top: 1%;
  font-family: "Jost", sans-serif;
  font-size: 80px;
  font-weight: bold;
  color: #ECF0F3;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap .text_inner {
  position: relative;
  z-index: 10;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap .text_inner .strong_head {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1.3%;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap .text_inner .strong_head .txt_red {
  font-size: 40px;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap .text_inner .strong_title {
  background-color: #01ADD6;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 5.5px 16px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 1.1%;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap .text_inner .strong_text {
  font-size: 16px;
  line-height: 1.45;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap .text_inner .strong_attention {
  font-size: 16px;
  color: #666;
  text-align: right;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .img_wrap {
  width: 26.4%;
}
#container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .img_wrap img {
  width: 100%;
}
#container main section.design {
  background-color: #fff;
  padding: min(11%, 208px) 0 min(5.7%, 110px);
  overflow: hidden;
}
#container main section.design .swiper {
  overflow: visible;
  transition-timing-function: linear;
  --swiper-pagination-bottom: 44px;
  --swiper-pagination-bullet-width: 16px;
  --swiper-pagination-bullet-height: 16px;
  --swiper-pagination-bullet-horizontal-gap: 8px;
  --swiper-pagination-color: #01ADD6;
  --swiper-pagination-bullet-inactive-color: #333;
  --swiper-pagination-bullet-inactive-opacity: 1;
  padding-bottom: 117px;
}
#container main section.design .swiper .swiper-wrapper {
  overflow: visible;
}
#container main section.design .swiper .swiper-wrapper .swiper-slide {
  opacity: 0.6;
}
#container main section.design .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#container main section.design .swiper .swiper-wrapper .swiper-slide .theme_name {
  visibility: hidden;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}
#container main section.design .swiper .swiper-wrapper .swiper-slide-active {
  opacity: 1;
}
#container main section.design .swiper .swiper-wrapper .swiper-slide-active .theme_name {
  visibility: visible;
}
#container main section.design .swiper .swiper-button-prev,
#container main section.design .swiper .swiper-button-next {
  width: min(4.2%, 80px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100vw;
  background-color: #01ADD6;
  color: #fff;
  position: absolute;
  top: calc(50% - 117px);
  transform: translate(0, -50%);
}
#container main section.design .swiper .swiper-button-prev:hover,
#container main section.design .swiper .swiper-button-next:hover {
  opacity: 0.8;
}
#container main section.design .swiper .swiper-button-prev::after,
#container main section.design .swiper .swiper-button-next::after {
  margin: 0 auto;
  font-size: clamp(1.667rem, 2.679vw - 0.619rem, 3.667rem);
}
#container main section.design .swiper .swiper-button-prev {
  left: 25%;
}
#container main section.design .swiper .swiper-button-prev::after {
  transform: translate(-3px, 0);
}
#container main section.design .swiper .swiper-button-next {
  right: 25%;
}
#container main section.design .swiper .swiper-button-next::after {
  transform: translate(3px, 0);
}
#container main section.design .design_btn_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 450/64;
  margin: 0 auto;
  height: auto;
  background-color: #333333;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}
#container main section.design .design_btn_wrap a:hover {
  opacity: 0.8;
}
#container main section.design .design_btn_wrap a::after {
  display: block;
  content: "";
  background-image: url(../img/icon_cta_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  aspect-ratio: 24/40;
  max-width: 10px;
  width: 100%;
  margin-left: 16px;
}
#container main section.compare {
  background-color: #ECF0F3;
  background-image: url(../img/bg_04_01.png), url(../img/bg_04_02.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top 271.3% left 0%, bottom -78.7% right -1.5%;
  background-size: 33.3%, 32.1%;
  background-attachment: fixed;
  padding: min(11%, 208px) 0 min(6.3%, 121px);
}
#container main section.compare .compare_text {
  font-size: 24px;
  margin-bottom: min(5.5%, 55px);
}
#container main section.compare .compare_text .txt_red {
  font-weight: bold;
}
#container main section.compare .compare_img_wrap {
  margin-bottom: 7px;
}
#container main section.compare .compare_img_wrap img {
  width: 100%;
}
#container main section.compare .sp_compare_img_wrap {
  display: none;
  padding: 0 0 0 3%;
}
#container main section.compare .sp_compare_img_wrap img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 442px;
}
#container main section.compare .compare_attention {
  font-size: 16px;
  text-align: right;
}
#container main section.compare .compare_attention::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../img/icon_question.svg);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 1em;
  vertical-align: middle;
  margin-right: 6px;
}
#container main section.flow {
  background-color: #fff;
  background-image: url(../img/bg_05_01.png), url(../img/bg_05_02.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top 22.5% left 3.9%, bottom 12.7% right 9.4%;
  background-size: 36%, 25.5%;
  padding: min(11%, 208px) 0 min(6.3%, 121px);
}
#container main section.flow .flow_list li {
  background-color: #ECF0F3;
  border-radius: 100vw;
  box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 20px 0 20px 107px;
}
#container main section.flow .flow_list li + li {
  margin-top: 16px;
}
#container main section.flow .flow_list li::before {
  content: "";
  display: inline-block;
  width: 100%;
  max-width: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  position: absolute;
  width: 80px;
  height: 80px;
  top: 12px;
  left: 12px;
}
#container main section.flow .flow_list li h3 {
  font-size: 24px;
  font-weight: 600;
}
#container main section.flow .flow_list li h3 .step_title {
  display: inline-block;
  color: #fff;
  background-color: #01ADD6;
  border-radius: 8px;
  line-height: 1;
  padding: 6px 13px 2px;
  margin-right: 8.1px;
}
#container main section.flow .flow_list li .flow_txt {
  font-size: 18px;
  font-weight: 500;
}
#container main section.flow .flow_list li.step01::before {
  background-image: url(../img/icon_flow_step01.svg);
}
#container main section.flow .flow_list li.step02::before {
  background-image: url(../img/icon_flow_step02.svg);
}
#container main section.flow .flow_list li.step03::before {
  background-image: url(../img/icon_flow_step03.svg);
}
#container main section.flow .flow_list li.step04::before {
  background-image: url(../img/icon_flow_step04.svg);
}
#container main section.flow .flow_list li.step05::before {
  background-image: url(../img/icon_flow_step05.svg);
}
#container main section.flow .flow_list li.step06::before {
  background-image: url(../img/icon_flow_step06.svg);
}
#container main section.qa {
  background-color: #ECF0F3;
  padding: min(11%, 208px) 0 min(6.3%, 121px);
}
#container main section.qa .qa_wrap + .qa_wrap {
  margin-top: min(4.6%, 47px);
}
#container main section.qa .qa_wrap > dt {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding: 17px 70px 17px 56px;
  cursor: pointer;
}
#container main section.qa .qa_wrap > dt:hover {
  opacity: 0.8;
}
#container main section.qa .qa_wrap > dt:hover .icon {
  opacity: 0.5;
}
#container main section.qa .qa_wrap > dt::before {
  content: "Q";
  font-family: "Jost", sans-serif;
  font-size: 45px;
  font-weight: bold;
  color: #01ADD6;
  position: absolute;
  line-height: 1;
  top: 14px;
  left: 0;
}
#container main section.qa .qa_wrap > dt::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 4px solid #fff;
  position: absolute;
  bottom: -30px;
  right: 0;
  animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
#container main section.qa .qa_wrap > dt .icon {
  display: block;
  width: 40px;
  height: 48px;
  background-image: url(../img/icon_qa_plus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 0;
}
#container main section.qa .qa_wrap > dt.active::after {
  display: none;
}
#container main section.qa .qa_wrap > dt.active .icon {
  background-image: url(../img/icon_qa_minus.svg);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#container main section.qa .qa_wrap > dd {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  padding: 24px 32px;
}
#container main section.qa .qa_wrap > dd .qa_subtitle {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: #333333;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  padding: 3px 11px;
  margin: 8px 0;
}
#container main section.qa .qa_wrap > dd .sub_difinition {
  display: flex;
}
#container main section.qa .qa_wrap > dd .sub_difinition dt {
  font-size: 18px;
  width: 50%;
  width: max(30%, 270px);
}
#container main section.qa .qa_wrap > dd .sub_difinition dd {
  font-size: 18px;
  width: 50%;
}
#container footer section.footer_content {
  background: #01ADD6;
  padding: min(2.6%, 48px) 0;
}
#container footer section.footer_content .footer_balloon {
  text-align: center;
}
#container footer section.footer_content .footer_balloon img {
  width: 100%;
  max-width: 801px;
  margin: 0 auto;
}
#container footer section.footer_content .footer_copy {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-top: -1.5%;
  line-height: 1.1;
}
#container footer section.footer_content .footer_copy .txt_yellow {
  font-family: "Jost", sans-serif;
  font-size: 80px;
}
#container footer section.footer_content .footer_copy_small {
  color: #fff;
  text-align: center;
  font-size: 24px;
  margin-bottom: min(2.3%, 23px);
}
#container footer section.footer_content .cta_flex_wrap {
  display: flex;
  justify-content: space-between;
}

/* -------------------------- コンテンツ領域（PC） ここまで -------------------------- */
footer .ad_number {
  margin: 24px auto 0;
  text-align: center;
  color: #aaa;
}

footer .copyright {
  font-size: 16px;
  display: block;
  margin: 10px 0 0;
  padding-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, fieldset, input {
    margin: 0;
    padding: 0;
  }
  h1, h2, h3, h4, h5, h6, pre, code, address, caption, cite, code, em, strong, th {
    font-size: 1em;
    font-weight: normal;
    font-style: normal;
  }
  ul, ol {
    list-style: none;
  }
  fieldset, img {
    border: none;
  }
  caption, th {
    text-align: left;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
  }
  input {
    margin: 0;
    padding: 0;
  }
  textarea {
    font-size: 12px;
  }
  html {
    height: 100%;
  }
  html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, fieldset, input {
    font-size: 12px;
    color: #333;
  }
  html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, fieldset, input, select, option, a, span {
    font-family: "Noto Sans JP", "Verdana", Meiryo, "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .clear {
    clear: both;
  }
  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .clearfix {
    display: inline-block;
  }
  * html .clearfix {
    height: 1%;
  }
  .clearfix {
    display: block;
  }
  .clearfix {
    overflow: hidden;
  }
  a:link, a:visited {
    color: #0277bd;
    text-decoration: none;
  }
  a:focus {
    outline: none;
  }
  img {
    margin: 0;
    padding: 0;
    border: 0;
  }
  hr {
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #999;
    height: 1px;
    margin-bottom: 15px;
  }
  hr.dot {
    border-width: 1px 0 0 0;
    border-style: dotted;
    border-color: #999;
    height: 1px;
  }
  hr.dash {
    border-width: 1px 0 0 0;
    border-style: dashed;
    border-color: #999;
    height: 1px;
  }
  .mt5 {
    margin-top: 5px !important;
  }
  .mt10 {
    margin-top: 10px !important;
  }
  .mt15 {
    margin-top: 15px !important;
  }
  .mt20 {
    margin-top: 20px !important;
  }
  .mt25 {
    margin-top: 25px !important;
  }
  .mt30 {
    margin-top: 30px !important;
  }
  .mb5 {
    margin-bottom: 5px !important;
  }
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb25 {
    margin-bottom: 25px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .floR {
    float: right !important;
  }
  .floL {
    float: left !important;
  } /*a:hover img{-webkit-opacity:0.7;opacity:0.7}*/
  body {
    background-color: #FFF;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
  }
  .sp_area_1 {
    background: #fffce9 !important;
  }
  i, cite, em, var, address, dfn {
    font-style: normal;
  }
  iframe {
    vertical-align: top;
  }
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .easy_registration a:hover {
    opacity: 1;
  }
  a.tap {
    opacity: 1;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  #container {
    width: auto;
  }
  /* -------------------------- コンテンツ領域（SP） ここから -------------------------- */
  .subhead_wrap p {
    font-size: clamp(1.5rem, 0.924vw + 1.211rem, 2rem);
    padding-top: 22px;
    background-size: min(20%, 69px);
  }
  .subhead_wrap h2 {
    font-size: clamp(2.833rem, 3.39vw + 1.774rem, 4.667rem);
  }
  #container header {
    padding: 9px 0 9px 21px;
    position: static;
  }
  #container header .header_cta_wrap {
    display: none;
  }
  #container header .logo a {
    width: 100%;
    max-width: 105px;
    height: 30px;
    aspect-ratio: 105/30;
  }
  #container main section.mv {
    padding: 30px 0px 45px;
    background-position: left 5px, right 320px;
    background-size: 120.5%, 81%;
  }
  #container main section.mv .mv_wrap {
    transform: translate(0, 0);
    background-image: none;
  }
  #container main section.mv .mv_wrap .mv_left .mv_top_txt {
    text-align: center;
    font-size: clamp(1.667rem, 1.541vw + 1.185rem, 2.5rem);
  }
  #container main section.mv .mv_wrap .mv_left .mv_top_txt .txt_yellow {
    font-size: clamp(3.333rem, 3.698vw + 2.178rem, 5.333rem);
  }
  #container main section.mv .mv_wrap .mv_left .h1_wrap {
    width: 90%;
    margin: 0 auto;
    padding: 28px 4% 25px;
  }
  #container main section.mv .mv_wrap .mv_left .h1_wrap .h1_top {
    font-size: clamp(1.667rem, 0.616vw + 1.474rem, 2rem);
    margin-left: 0;
    padding-left: 0;
  }
  #container main section.mv .mv_wrap .mv_left .h1_wrap h1 {
    font-size: clamp(3rem, 3.082vw + 2.037rem, 4.667rem);
    margin-left: 0;
  }
  #container main section.mv .mv_wrap .mv_left .h1_wrap .h1_bottom {
    justify-content: flex-start;
    align-items: center;
    -moz-column-gap: 6px;
         column-gap: 6px;
  }
  #container main section.mv .mv_wrap .mv_left .h1_wrap .h1_bottom .h1_txt_deco {
    padding: 3px 14px 3px 14px;
    padding: 8px 12px 8px 12px;
    font-size: clamp(1.333rem, 1.233vw + 0.948rem, 2rem);
  }
  #container main section.mv .mv_wrap .mv_left .h1_wrap .h1_bottom .h1_txt_deco::before {
    display: none;
  }
  #container main section.mv .mv_wrap .mv_sp {
    margin: 20px 0;
  }
  #container main section.mv .mv_wrap .mv_sp img {
    width: 90%;
    margin: 0 auto;
  }
  #container main section.mv .mv_wrap .mv_left .mv_circle {
    width: 90%;
    max-width: initial;
    margin: 0 auto;
  }
  #container main section.mv .mv_wrap .mv_left .mv_circle img {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
  }
  #container main section.mv .mv_wrap .mv_left .mv_attention {
    width: 90%;
    margin: 10px auto;
  }
  #container main section.plan {
    padding: min(19.2%, 72px) 0 min(12.5%, 48px);
    background-position: top 33.3% left -161%, bottom 5.4% right 5.7%;
    background-size: 77.3%, 23.4%;
  }
  #container main section.plan .sp_plan_img_wrap {
    display: flex;
  }
  #container main section.plan .sp_plan_img_wrap .js-scrollable {
    padding-right: 3%;
  }
  #container main section.strongpoint {
    padding: min(19.6%, 73px) 0 min(7.4%, 28px);
    background-position: top 44px left -52px, top 28.2% right 5.4%, bottom 31.5% left 0%, bottom 0.9% right 0%;
    background-size: 100%, 85.3%, 23.2%, 79.6%;
  }
  #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(odd), #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(even) {
    flex-direction: column;
  }
  #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(odd) .text_wrap::before, #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(even) .text_wrap::before {
    top: -3%;
    left: 3.2%;
  }
  #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(odd) .text_wrap .text_inner, #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette:nth-child(even) .text_wrap .text_inner {
    padding: min(10%, 32px) min(5%, 17px);
  }
  #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap {
    width: 90%;
    margin: 0 auto;
  }
  #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap .text_inner .strong_head {
    font-size: clamp(1.833rem, 1.541vw + 1.352rem, 2.667rem);
    line-height: 1.2;
    margin-bottom: min(8%, 24px);
  }
  #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap .text_inner .strong_head .txt_red {
    font-size: clamp(2.5rem, 1.541vw + 2.018rem, 3.333rem);
  }
  #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap .text_inner .strong_title {
    font-size: clamp(1.333rem, 0.308vw + 1.237rem, 1.5rem);
  }
  #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .text_wrap .text_inner .strong_attention {
    text-align: left;
  }
  #container main section.strongpoint .inner_wrap .strong_content_wrap .strong_cassette .img_wrap {
    width: 50%;
    margin: 5% auto;
  }
  #container main section.design {
    padding: min(19.3%, 72px) 0 min(12.5%, 48px);
  }
  #container main section.design .swiper .swiper-button-prev,
  #container main section.design .swiper .swiper-button-next {
    width: 48px;
    top: calc(50% - 50px);
  }
  #container main section.design .swiper .swiper-button-prev {
    left: 5%;
  }
  #container main section.design .swiper .swiper-button-next {
    right: 5%;
  }
  #container main section.design .design_btn_wrap {
    width: 80%;
    margin: 0 auto;
  }
  #container main section.design .design_btn_wrap a {
    font-size: clamp(1.5rem, 0.924vw + 1.211rem, 2rem);
  }
  #container main section.compare {
    padding: min(19.6%, 73px) 0 min(12.2%, 46px);
    background-position: top -5.7% left 5%, bottom -78.7% right -8.5%;
    background-size: 71.7%, 32.1%;
  }
  #container main section.compare .inner_wrap .compare_text {
    font-size: clamp(1.5rem, 0.924vw + 1.211rem, 2rem);
    width: 90%;
    margin: 0 auto 7%;
  }
  #container main section.compare .inner_wrap .compare_attention {
    width: 90%;
    margin: 0 auto;
    text-align: left;
  }
  #container main section.compare .inner_wrap .sp_compare_img_wrap {
    display: flex;
  }
  #container main section.compare .inner_wrap .sp_compare_img_wrap .js-scrollable {
    padding-right: 3%;
    margin-bottom: 5%;
  }
  #container main section.compare .inner_wrap .tax_txt {
    width: 90%;
    margin: 0 auto 2%;
  }
  #container main section.flow {
    padding: min(19.6%, 73px) 0 min(13.9%, 52px);
    background-position: top 2.3% left 12.9%, bottom 0.7% right -26.6%;
    background-size: 65%, 60%;
  }
  #container main section.flow .inner_wrap .flow_list {
    width: 90%;
    margin: 0 auto;
  }
  #container main section.flow .inner_wrap .flow_list li {
    border-radius: 24px;
    padding: 16px 10px 16px 76px;
  }
  #container main section.flow .inner_wrap .flow_list li::before {
    width: 56px;
    height: 56px;
    top: 16px;
    left: 13px;
  }
  #container main section.flow .inner_wrap .flow_list li h3 {
    font-size: clamp(1.5rem, 0.924vw + 1.211rem, 2rem);
  }
  #container main section.flow .inner_wrap .flow_list li h3 .step_title {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-family: "Jost", sans-serif;
    font-size: clamp(1.5rem, 0.924vw + 1.211rem, 2rem);
    border-radius: 4px;
    margin-bottom: 3px;
  }
  #container main section.flow .inner_wrap .flow_list li .flow_txt {
    font-size: clamp(1.333rem, 0.308vw + 1.237rem, 1.5rem);
    margin-left: -62px;
    margin-top: 5px;
  }
  #container main section.qa {
    padding: min(19.6%, 73px) 0 min(13.9%, 52px);
  }
  #container main section.qa .inner_wrap .qa_wrap {
    width: 90%;
    margin: 0 auto;
  }
  #container main section.qa .inner_wrap .qa_wrap > dt {
    font-size: clamp(1.5rem, 2.157vw + 0.826rem, 2.667rem);
    padding: 17px 16% 17px 11%;
  }
  #container main section.qa .inner_wrap .qa_wrap > dt::before {
    font-size: clamp(2.833rem, 3.39vw + 1.774rem, 4.667rem);
  }
  #container main section.qa .inner_wrap .qa_wrap > dt::after {
    display: none;
  }
  #container main section.qa .inner_wrap .qa_wrap > dt .icon {
    width: 42px;
    height: 48px;
    top: 50%;
    transform: translate(0, -50%);
  }
  #container main section.qa .inner_wrap .qa_wrap > dd {
    padding: 24px 16px;
    font-size: clamp(1.333rem, 0.308vw + 1.237rem, 1.5rem);
  }
  #container main section.qa .inner_wrap .qa_wrap > dd .qa_subtitle {
    font-size: clamp(1.333rem, 0.308vw + 1.237rem, 1.5rem);
  }
  #container main section.qa .inner_wrap .qa_wrap > dd .sub_difinition {
    flex-direction: column;
    margin-bottom: 6px;
  }
  #container main section.qa .inner_wrap .qa_wrap > dd .sub_difinition dt {
    font-size: clamp(1.333rem, 0.308vw + 1.237rem, 1.5rem);
    padding: 0;
    width: 100%;
  }
  #container main section.qa .inner_wrap .qa_wrap > dd .sub_difinition dd {
    font-size: clamp(1.333rem, 0.308vw + 1.237rem, 1.5rem);
    width: 100%;
    margin-left: 1em;
  }
  #container footer {
    padding-bottom: 56px;
  }
  #container footer section.footer_content {
    padding: 19% 0;
  }
  #container footer section.footer_content .inner_wrap .footer_balloon {
    width: 90%;
    margin: 0 auto;
  }
  #container footer section.footer_content .inner_wrap .footer_copy {
    font-size: clamp(2.667rem, 1.233vw + 2.281rem, 3.333rem);
    margin-bottom: 2.8%;
  }
  #container footer section.footer_content .inner_wrap .footer_copy .txt_yellow {
    font-size: clamp(5.667rem, 1.849vw + 5.089rem, 6.667rem);
  }
  #container footer section.footer_content .inner_wrap .footer_copy_small {
    font-size: clamp(1.5rem, 0.924vw + 1.211rem, 2rem);
  }
  #container footer section.footer_content .inner_wrap .cta_flex_wrap {
    row-gap: 33px;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
  #container footer section.footer_content .inner_wrap .cta_flex_wrap .cta_btn,
  #container footer section.footer_content .inner_wrap .cta_flex_wrap .cta_btn:link,
  #container footer section.footer_content .inner_wrap .cta_flex_wrap .cta_btn:visited {
    font-size: clamp(1.833rem, 1.541vw + 1.352rem, 2.667rem);
    border-width: 4px;
    padding: min(3.6%, 12px) 14px;
  }
  #container footer section.footer_content .inner_wrap .cta_flex_wrap .cta_btn::before,
  #container footer section.footer_content .inner_wrap .cta_flex_wrap .cta_btn:link::before,
  #container footer section.footer_content .inner_wrap .cta_flex_wrap .cta_btn:visited::before {
    max-width: 48px;
  }
  #container footer section.footer_content .inner_wrap .cta_flex_wrap .cta_btn::after,
  #container footer section.footer_content .inner_wrap .cta_flex_wrap .cta_btn:link::after,
  #container footer section.footer_content .inner_wrap .cta_flex_wrap .cta_btn:visited::after {
    max-width: 16px;
  }
  #container footer small.copyright {
    background-color: #D0DAE9;
    font-size: 12px;
    color: #333;
  }
  #container footer .sp_footer_cta {
    position: fixed;
    width: 100%;
    bottom: 0;
    display: flex;
    z-index: 101;
  }
  #container footer .sp_footer_cta .sp_cta_btn {
    width: 50%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  #container footer .sp_footer_cta .sp_cta_btn:hover {
    filter: contrast(150%);
  }
  #container footer .sp_footer_cta .sp_cta_btn::after {
    display: block;
    content: "";
    background-image: url(../img/icon_cta_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    aspect-ratio: 24/40;
    max-width: 10px;
    width: 100%;
    margin-left: 8px;
  }
  #container footer .sp_footer_cta .sp_cta_btn.dl {
    background-color: #01D58B;
  }
  #container footer .sp_footer_cta .sp_cta_btn.info {
    background-color: #EA705A;
  }
  /* -------------------------- コンテンツ領域（SP） ここまで -------------------------- */
  footer .ad_number {
    width: auto;
    margin: 24px 16px;
  }
  footer .footer_links {
    width: auto;
    margin: 24px 16px;
  }
  footer .footer_links li a {
    font-size: 11px;
  }
  footer .copyright {
    background: #424242;
    margin: 0;
    padding: 16px;
    border: 0;
    color: #fff;
  }
  .ripple {
    position: relative;
    overflow: hidden;
    transition: 0.2s;
    z-index: 1;
  }
  .ripple .rp-effect { /*エフェクト*/
    position: absolute;
    display: inline-block;
    border-radius: 50%;
    opacity: 0.3; /*波紋の濃さ*/
    transform: scale(0);
    background: #0277BD; /*波紋色*/
    animation: ripple 500ms forwards cubic-bezier(0, 0, 0.2, 1);
    pointer-events: none;
    z-index: -1;
    transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1), width 0.3s cubic-bezier(0, 0, 0.2, 1), height 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.6s cubic-bezier(0, 0, 0.2, 1);
  }
  @keyframes ripple {
    to {
      opacity: 0;
      transform: scale(2);
    }
  }
  /* //@media screen and (max-width: 679px) */
}/*# sourceMappingURL=style.css.map */