@charset "UTF-8";
.lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "M PLUS 1p", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
}

html {
  color: #000;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  z-index: 50;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  padding: clamp(1.875rem, -0.128rem + 2.347vw, 2.688rem);
}
.c-header .img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-header .img img {
  width: clamp(6.25rem, 0.086rem + 7.22vw, 8.75rem);
}

.c-footer {
  color: #0D163C;
}
.c-footer .inner-block {
  max-width: clamp(77.875rem, 9.452rem + 80.144vw, 105.625rem);
}
.c-footer .wrap {
  width: 100%;
  padding-top: clamp(4rem, 0.301rem + 4.332vw, 5.5rem);
  padding-bottom: clamp(3.75rem, 0.051rem + 4.332vw, 5.25rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-footer .wrap .sns-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-footer .wrap .sns-area p {
  font-size: 18px;
}
.c-footer .wrap .sns-area ul {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.375rem, -0.166rem + 1.805vw, 2rem);
}
.c-footer .wrap .sns-area ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: translate 0.3s ease-in-out;
  transition: translate 0.3s ease-in-out;
}
.c-footer .wrap .sns-area ul li a:focus-visible {
  translate: 0 5px;
}
.c-footer .wrap .link-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(3.375rem, 0.601rem + 3.249vw, 4.5rem);
}
.c-footer .wrap .link-area ul {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.375rem, -0.166rem + 1.805vw, 2rem);
  font-size: 14px;
}
.c-footer .wrap .link-area ul a {
  -webkit-transition: -webkit-text-decoration 0.3s ease-in-out;
  transition: -webkit-text-decoration 0.3s ease-in-out;
  transition: text-decoration 0.3s ease-in-out;
  transition: text-decoration 0.3s ease-in-out, -webkit-text-decoration 0.3s ease-in-out;
}
.c-footer .wrap .link-area ul a:focus-visible {
  -webkit-text-decoration: underline solid #0D163C;
          text-decoration: underline solid #0D163C;
}
.c-footer .wrap .link-area .copyright {
  text-align: center;
}

.c-btn01 {
  -webkit-box-shadow: 0px 7px 0px 0px #A6A9B2;
  box-shadow: 0px 7px 0px 0px #A6A9B2;
  background-color: #1E4DC6;
  border-radius: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px;
  max-width: clamp(25.313rem, 0.347rem + 29.242vw, 35.438rem);
  width: 100%;
  margin-inline: auto;
}
.c-btn01:focus-visible {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.c-btn01 .click-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: clamp(0rem, -0.925rem + 1.083vw, 0.375rem);
  aspect-ratio: 99/94;
  background-color: #FFFFFF;
  padding-block: clamp(0.313rem, -0.15rem + 0.542vw, 0.5rem);
  padding-inline: clamp(0.5rem, -0.116rem + 0.722vw, 0.75rem);
  border-radius: 10px;
}
.c-btn01 .click-area .click-img {
  width: clamp(1.375rem, -0.166rem + 1.805vw, 2rem);
  height: clamp(1.375rem, -0.166rem + 1.805vw, 2rem);
}
.c-btn01 .click-area .txt {
  color: #1E4DC6;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.259rem + 0.722vw, 1.125rem);
  text-align: center;
  line-height: 0.9em;
}
.c-btn01 .click-area .txt .bigger {
  font-size: clamp(1.25rem, 0.171rem + 1.264vw, 1.688rem);
}
.c-btn01 .inn-txt {
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  font-size: clamp(1.125rem, 0.663rem + 0.542vw, 1.313rem);
}
.c-btn01 .arrow-area {
  margin-top: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-btn01 .arrow-area .arrow-img {
  width: clamp(1rem, -0.079rem + 1.264vw, 1.438rem);
  height: clamp(1rem, -0.079rem + 1.264vw, 1.438rem);
}

.c-btn02 {
  -webkit-box-shadow: 0px 10px 0px 0px #A6A9B2;
  box-shadow: 0px 10px 0px 0px #A6A9B2;
  background-color: #1E4DC6;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: clamp(41.25rem, -0.359rem + 48.736vw, 58.125rem);
  background-color: #FFFFFF;
}
.c-btn02:focus-visible {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.c-btn02 .img-area {
  background-color: #E6F7FF;
  padding: 12px 15px 11px 0;
  border-radius: 10px 0 0 10px;
  height: auto;
}
.c-btn02 .txt-area {
  text-align: center;
}
.c-btn02 .txt-area .ico-map {
  width: clamp(2.563rem, 0.097rem + 2.888vw, 3.563rem);
}
.c-btn02 .txt-area .txt {
  font-size: clamp(1.375rem, 0.231rem + 1.37vw, 1.875rem);
  color: #1E4DC6;
  font-weight: bold;
}

.c-btn03 {
  background-color: #1E4DC6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px;
  padding-bottom: clamp(0.625rem, 0.339rem + 0.342vw, 0.75rem);
}
.c-btn03 .click-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: clamp(0rem, -0.925rem + 1.083vw, 0.375rem);
  background-color: #FFFFFF;
  padding-block: clamp(0.313rem, -0.089rem + 0.84vw, 0.625rem);
  padding-inline: clamp(0.313rem, -0.402rem + 0.856vw, 0.625rem);
  border-radius: 10px;
}
.c-btn03 .click-area .txt {
  color: #1E4DC6;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.303rem + 0.685vw, 1.125rem);
  text-align: center;
  line-height: 1;
}
.c-btn03 .click-area .txt .bottom {
  font-size: clamp(0.75rem, 0.178rem + 0.685vw, 1rem);
}
.c-btn03 .click-area .txt .bottom .bigger {
  font-weight: bold;
  font-size: clamp(1.063rem, 0.348rem + 0.856vw, 1.375rem);
}
.c-btn03 .inn-txt {
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.3;
  font-size: clamp(1rem, 0.285rem + 0.856vw, 1.313rem);
}
.c-btn03 .arrow-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-btn03 .arrow-area .arrow-img {
  width: clamp(1rem, -0.079rem + 1.264vw, 1.438rem);
  height: clamp(1rem, -0.079rem + 1.264vw, 1.438rem);
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
html {
  scrollbar-gutter: stable;
}

.home {
  position: relative;
  overflow: hidden;
}
.home .fade-block {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
.home .fade-block.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.home .c-label {
  position: relative;
  padding: clamp(0.125rem, -0.491rem + 0.722vw, 0.375rem) clamp(1.5rem, -0.349rem + 2.166vw, 2.25rem);
  background-image: -webkit-gradient(linear, left top, right top, from(#00AAFF), to(#1E4DC6));
  background-image: linear-gradient(90deg, #00AAFF 0%, #1E4DC6 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 40px;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.3333333333;
}
.home .c-label::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 8px;
  -webkit-clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
  background-color: #00AAFF;
  left: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.home .c-label.toleft {
  background-image: -webkit-gradient(linear, right top, left top, from(#00AAFF), to(#1E4DC6));
  background-image: linear-gradient(270deg, #00AAFF 0%, #1E4DC6 100%);
}
.home .c-label.toleft::before {
  left: inherit;
  right: -5px;
  rotate: 180deg;
}
.home .fv-section {
  background: url("../img/background-img.webp") no-repeat center center;
  padding-block: clamp(6.25rem, 4.417rem + 3.819vw, 9rem);
  background-size: cover;
}
.home .fv-section .voices-area {
  grid-area: voice;
  align-self: end;
  margin-bottom: clamp(1.375rem, -0.166rem + 1.805vw, 2rem);
}
.home .fv-section .voices-area .c-label {
  font-size: clamp(1rem, 0.384rem + 0.722vw, 1.25rem);
  letter-spacing: 0.05em;
  line-height: 1.25;
  padding: clamp(1.125rem, 0.2rem + 1.083vw, 1.5rem) clamp(1.5rem, -0.966rem + 2.888vw, 2.5rem);
}
.home .fv-section .voices-area .c-label::before {
  width: 12px;
  height: 13px;
  left: -10px;
}
.home .fv-section .voices-area .c-label.toleft::before {
  left: inherit;
  right: -10px;
}
.home .fv-section .voices-area .c-label:nth-child(2) {
  margin-top: clamp(0.563rem, -0.054rem + 0.722vw, 0.813rem);
  margin-left: auto;
}
.home .fv-section .subtxt-area {
  grid-area: subtxt;
  text-align: center;
}
.home .fv-section .subtxt-area img {
  width: clamp(19.188rem, -0.076rem + 22.563vw, 27rem);
}
.home .fv-section .slider-area {
  grid-area: slider;
  align-self: center;
  max-width: 755px;
  height: auto;
}
.home .fv-section .slider-area .slick-list img {
  border-radius: 18px;
}
.home .fv-section .ttl-area {
  grid-area: ttl;
  text-align: center;
  margin-top: clamp(1.313rem, -0.074rem + 1.625vw, 1.875rem);
  margin-bottom: clamp(1.25rem, 0.447rem + 1.67vw, 1.875rem);
}
.home .fv-section .ttl-area img {
  width: clamp(26.25rem, 22.959rem + 6.86vw, 28.813rem);
  height: auto;
}
.home .fv-section .btn-area {
  grid-area: btn;
  text-align: center;
}
.home .fv-section .btn-area .sub {
  display: inline-block;
}
.home .fv-section .btn-area .sub .txt {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 1em;
  color: #1E4DC6;
  font-weight: bold;
  text-align: center;
}
.home .fv-section .btn-area .sub .txt::before, .home .fv-section .btn-area .sub .txt::after {
  position: absolute;
  content: "";
  width: clamp(0.625rem, 0.009rem + 0.722vw, 0.875rem);
  height: clamp(1.188rem, 0.109rem + 1.264vw, 1.625rem);
  background: url("../img/border-img01.svg") no-repeat center center;
  bottom: 0;
  top: 0;
  margin: auto;
}
.home .fv-section .btn-area .sub .txt::before {
  left: 0;
}
.home .fv-section .btn-area .sub .txt::after {
  right: 0;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.home .concern-section {
  background-color: #F9F9FC;
  position: relative;
  padding-top: 82px;
}
.home .concern-section::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  background-image: url(../img/bg-top-purple.webp);
  background-size: cover;
  background-repeat: repeat-x;
  top: -18px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.home .concern-section .top-txt {
  text-align: center;
  font-size: clamp(1.75rem, 0.606rem + 1.37vw, 2.25rem);
  line-height: 1.5555555556;
  padding-bottom: clamp(2rem, 0.767rem + 1.444vw, 2.5rem);
  color: #0D163C;
}
.home .concern-section .top-txt .bold {
  font-weight: bold;
}
.home .concern-section .top-txt .bold.blue {
  position: relative;
  z-index: 1;
}
.home .concern-section .top-txt .bold.blue::after {
  position: absolute;
  content: "";
  width: 8em;
  height: 0.4em;
  background-color: #B4D0DB;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.home .concern-section .top-txt .bold.purple {
  position: relative;
  z-index: 1;
}
.home .concern-section .top-txt .bold.purple::after {
  position: absolute;
  content: "";
  width: 7em;
  height: 0.4em;
  background-color: #B8B4DB;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.home .concern-section .concern-list {
  display: grid;
}
.home .concern-section .concern-list .concern {
  text-align: center;
  display: inline-block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
  position: relative;
}
.home .concern-section .concern-list .concern::after {
  position: absolute;
  content: "";
  width: 200%;
  height: 200%;
  background: url("../img/moya01.svg") no-repeat center center;
  background-size: contain;
  top: 0;
  bottom: 0;
  left: -50%;
  margin: auto;
  z-index: -1;
}
.home .concern-section .concern-list .concern:nth-child(1) {
  grid-area: moya1;
}
.home .concern-section .concern-list .concern:nth-child(2) {
  grid-area: moya2;
  justify-self: end;
}
.home .concern-section .concern-list .concern:nth-child(2)::after {
  background-image: url("../img/moya02.svg");
}
.home .concern-section .concern-list .concern:nth-child(3) {
  grid-area: moya3;
}
.home .concern-section .concern-list .concern:nth-child(3)::after {
  background-image: url("../img/moya03.svg");
}
.home .concern-section .concern-list .concern:nth-child(4) {
  grid-area: moya4;
  justify-self: start;
}
.home .concern-section .concern-list .concern:nth-child(4)::after {
  background-image: url("../img/moya04.svg");
}
.home .concern-section .concern-list .concern:nth-child(5) {
  grid-area: moya5;
}
.home .concern-section .concern-list .concern:nth-child(5)::after {
  background-image: url("../img/moya05.svg");
}
.home .concern-section .concern-list .concern .inn-txt {
  font-size: clamp(0.875rem, 0.714rem + 0.33vw, 1rem);
  white-space: nowrap;
  line-height: 1.375;
}
.home .concern-section .concern-list .img {
  grid-area: img;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
.home .concern-section .concern-list .img img {
  width: 100%;
  height: auto;
}
.home .concern-section .concern-img {
  width: 100%;
  height: auto;
  text-align: center;
}
.home .concern-section .concern-img img {
  max-width: 500px;
  width: 100%;
  height: auto;
}
.home .points-section {
  position: relative;
}
.home .points-section .wrap .inner-block {
  position: relative;
  z-index: 5;
  padding-top: 82px;
  padding-bottom: 120px;
}
.home .points-section .wrap .inner-block::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  background-image: url(../img/bg-top-white.webp);
  background-size: cover;
  background-repeat: repeat-x;
  top: -18px;
  left: 0;
  right: 0;
  margin: auto;
}
.home .points-section .wrap .inner-block .subtxt-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(0.625rem, -0.519rem + 1.37vw, 1.125rem);
}
.home .points-section .wrap .inner-block .subtxt-area .txt {
  position: relative;
  padding-inline: 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #1E4DC6;
  font-size: clamp(1.25rem, 0.392rem + 1.027vw, 1.625rem);
}
.home .points-section .wrap .inner-block .subtxt-area .txt::before, .home .points-section .wrap .inner-block .subtxt-area .txt::after {
  position: absolute;
  content: "";
  width: clamp(1.5rem, 0.575rem + 1.083vw, 1.875rem);
  height: clamp(3rem, 1.151rem + 2.166vw, 3.75rem);
  background: url("../img/border-img03.svg") no-repeat center center;
  background-size: contain;
  bottom: 0;
  top: 0;
  margin: auto;
}
.home .points-section .wrap .inner-block .subtxt-area .txt::before {
  left: 0;
}
.home .points-section .wrap .inner-block .subtxt-area .txt::after {
  right: 0;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.home .points-section .wrap .inner-block .toptxt {
  text-align: center;
  color: #0D163C;
}
.home .points-section .wrap .inner-block .toptxt .normal {
  font-size: clamp(1.5rem, 0.499rem + 1.199vw, 1.938rem);
}
.home .points-section .wrap .inner-block .toptxt .bigger {
  font-size: clamp(1.625rem, 0.481rem + 1.37vw, 2.125rem);
}
.home .points-section .wrap .inner-block .toptxt .big {
  font-size: clamp(2.25rem, 0.534rem + 2.055vw, 3rem);
}
.home .points-section .wrap .inner-block .point-list-area .ttl {
  text-align: center;
  color: #0D163C;
}
.home .points-section .wrap .inner-block .point-list-area .ttl .sub {
  font-size: clamp(1rem, 0.428rem + 0.685vw, 1.25rem);
}
.home .points-section .wrap .inner-block .point-list-area .ttl .bigger {
  font-size: clamp(2rem, 0.284rem + 2.055vw, 2.75rem);
  line-height: 1.2727272727;
}
.home .points-section .wrap .inner-block .point-list-area .ttl .bigger .big {
  font-size: clamp(5rem, 0.711rem + 5.137vw, 6.875rem);
  line-height: 1;
}
.home .points-section .wrap .inner-block .point-list-area .point-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: clamp(1.25rem, 0.106rem + 1.37vw, 1.75rem);
  padding-top: clamp(2.25rem, 0.248rem + 2.397vw, 3.125rem);
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  position: relative;
}
.home .points-section .wrap .inner-block .point-list-area .point-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  border-top: 12px solid transparent;
  background: -webkit-gradient(linear, left top, right top, from(#00AAFF), to(#1E4DC6)) border-box border-box;
  background: linear-gradient(90deg, #00AAFF 0%, #1E4DC6 100%) border-box border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) border-box;
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.home .points-section .wrap .inner-block .point-list-area .point-list li .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .points-section .wrap .inner-block .point-list-area .point-list li .img img {
  max-height: 168px;
}
.home .points-section .wrap .inner-block .point-list-area .point-list li .c-label {
  margin-top: clamp(1.313rem, 0.026rem + 1.541vw, 1.875rem);
}
.home .points-section .wrap .inner-block .point-list-area .point-list li .head {
  margin-top: clamp(1rem, 0.428rem + 0.685vw, 1.25rem);
  font-size: clamp(1rem, -0.144rem + 1.37vw, 1.5rem);
  line-height: 1.625;
  font-weight: bold;
}
.home .points-section .wrap .inner-block .point-list-area .point-list li .desc {
  font-size: clamp(0.75rem, 0.178rem + 0.685vw, 1rem);
  line-height: 1.6666666667;
  padding-top: clamp(1rem, 0.285rem + 0.856vw, 1.313rem);
  margin-top: clamp(1rem, 0.285rem + 0.856vw, 1.313rem);
  position: relative;
}
.home .points-section .wrap .inner-block .point-list-area .point-list li .desc::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #1E4DC6 5px, transparent 5px);
  background-size: 10px 1px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.home .points-section .wrap .slide-text-area-box {
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}
.home .points-section .wrap .slide-text-area-box .slide-text-area {
  width: 100%;
  height: 1.5em;
}
.home .points-section .wrap .slide-text-area-box .slide-text-area .slide-text-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .points-section .wrap .slide-text-area-box .slide-text-area .slide-text-wrap .slide-text {
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
  padding-right: 2em;
  color: #f6f8f9;
}
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.home .example-section {
  padding-block: clamp(6.25rem, -0.041rem + 7.534vw, 9rem);
}
.home .example-section .head-ttl {
  font-size: clamp(1.875rem, 0.731rem + 1.37vw, 2.375rem);
  line-height: 1.2368421053;
  font-weight: 500;
  color: #0D163C;
  text-align: center;
}
.home .example-section .subtxt {
  font-size: clamp(1rem, 0.714rem + 0.342vw, 1.125rem);
  line-height: 1.6111111111;
  font-weight: 500;
  text-align: center;
  margin-block: clamp(1.75rem, -0.538rem + 2.74vw, 2.75rem);
}
.home .example-section .hint-txt {
  margin-inline: auto;
  margin-bottom: clamp(1.875rem, 0.159rem + 2.055vw, 2.625rem);
  padding-left: 3em;
}
.home .example-section .hint-txt::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background: url(../img/ico-search.svg) no-repeat center center/contain;
  left: 0.5em;
  top: 0;
  bottom: 0;
  margin: auto;
}
.home .example-section .example-area .example-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(195px, clamp(12.188rem, 0.749rem + 13.699vw, 17.188rem)));
}
.home .example-section .example-area .example-list .example .example-modal {
  aspect-ratio: 1;
  width: 100%;
  display: block;
  position: relative;
}
.home .example-section .example-area .example-list .example .example-modal:focus-visible .img-box::after {
  background: rgba(255, 255, 255, 0.2); /* 20% 白 */
}
.home .example-section .example-area .example-list .example .example-modal .img-box {
  width: 100%;
  height: 100%;
  position: relative;
}
.home .example-section .example-area .example-list .example .example-modal .img-box img {
  width: 100%;
  height: 100%;
}
.home .example-section .example-area .example-list .example .example-modal .img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  width: 100%;
  height: 100%;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.home .example-section .example-area .example-list .example .example-modal .info-box {
  pointer-events: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 12px;
  line-height: 1.5;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1fr 20px;
}
.home .example-section .example-area .example-list .example .example-modal .info-box .info {
  display: grid;
  grid-template-columns: auto 1fr;
  width: 100%;
  white-space: nowrap;
}
.home .example-section .example-area .example-list .example .example-modal .info-box .info .type,
.home .example-section .example-area .example-list .example .example-modal .info-box .info .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 4px;
  font-weight: 300;
  line-height: 1.5;
}
.home .example-section .example-area .example-list .example .example-modal .info-box .info .type {
  background-color: #05AAFF;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .example-section .example-area .example-list .example .example-modal .info-box .info .type.skyblue {
  background-color: #45CAD0;
}
.home .example-section .example-area .example-list .example .example-modal .info-box .info .price {
  background-color: #224397;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.home .example-section .example-area .example-list .example .example-modal .info-box .open {
  background-color: #BABABA;
  aspect-ratio: 1;
  padding: 5px;
  width: 20px;
  height: 20px;
}
.home .example-section .example-area .example-list .example .example-modal .info-box .open svg {
  fill: transparent;
  stroke: #224397;
}
.home .example-section .caution-txt {
  font-size: 10px;
  line-height: 1.6;
  margin-top: clamp(1.875rem, 0.159rem + 2.055vw, 2.625rem);
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
.home .flow-section {
  background-color: #ECF5F8;
  padding-top: clamp(7.5rem, -1.079rem + 10.274vw, 11.25rem);
  padding-bottom: clamp(4rem, -0.003rem + 4.795vw, 5.75rem);
  position: relative;
}
.home .flow-section::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  background-image: url(../img/bg-skyblue.webp);
  background-size: cover;
  background-repeat: repeat-x;
  left: 0;
  right: 0;
  top: -18px;
  margin: auto;
}
.home .flow-section::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  background-image: url(../img/bg-skyblue.webp);
  background-size: cover;
  background-repeat: repeat-x;
  left: 0;
  right: 0;
  bottom: -18px;
  margin: auto;
  rotate: 180deg;
}
.home .flow-section .wrap .list-area {
  width: 100%;
}
.home .flow-section .wrap .list-area .ttl {
  text-align: center;
  font-size: clamp(1.875rem, 0.445rem + 1.712vw, 2.5rem);
  line-height: 1.2333333333;
  margin-bottom: clamp(1.75rem, 0.034rem + 2.055vw, 2.5rem);
  color: #0D163C;
}
.home .flow-section .wrap .list-area ul > li {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, -0.18rem + 1.712vw, 1.875rem);
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: clamp(1.25rem, 0.106rem + 1.37vw, 1.75rem);
}
.home .flow-section .wrap .list-area ul > li + li {
  margin-top: clamp(1.25rem, 0.106rem + 1.37vw, 1.75rem);
}
.home .flow-section .wrap .list-area ul > li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #1E4DC6 5px, transparent 5px);
  background-size: 10px 1px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.home .flow-section .wrap .list-area ul > li .c-label {
  white-space: nowrap;
}
.home .flow-section .wrap .list-area ul > li .texts .head {
  font-size: clamp(1rem, 0.428rem + 0.685vw, 1.25rem);
  line-height: 1.375;
  font-weight: bold;
}
.home .flow-section .wrap .list-area ul > li .texts .desc {
  margin-top: clamp(0.313rem, -0.402rem + 0.856vw, 0.625rem);
  font-size: clamp(0.75rem, 0.178rem + 0.685vw, 1rem);
  line-height: 1.5;
}
.home .flow-section .wrap .video-area {
  text-align: center;
}
.home .flow-section .wrap .video-area .ttl {
  margin-inline: auto;
  margin-bottom: 14px;
}
.home .flow-section .wrap .video-area .video {
  width: 100%;
  aspect-ratio: 442/250;
}
.home .flow-section .wrap .video-area .video iframe {
  aspect-ratio: 442/250;
  width: 100%;
  height: auto;
}
.home .qa-section {
  padding-top: clamp(10rem, 0.754rem + 10.83vw, 13.75rem);
  padding-bottom: clamp(7.5rem, 1.336rem + 7.22vw, 10rem);
}
.home .qa-section .ttl {
  text-align: center;
  font-size: clamp(1.875rem, 0.445rem + 1.712vw, 2.5rem);
  line-height: 1.225;
  color: #0D163C;
}
.home .qa-section .subtxt {
  margin-top: clamp(1.75rem, -0.395rem + 2.568vw, 2.688rem);
  margin-bottom: clamp(3.188rem, -0.244rem + 4.11vw, 4.688rem);
  text-align: center;
  font-size: clamp(1rem, 0.285rem + 0.856vw, 1.313rem);
  line-height: 1.6666666667;
}
.home .qa-section .qa-list {
  color: #0D163C;
}
.home .qa-section .qa-list > li {
  border: 1px solid #E1E7EA;
}
.home .qa-section .qa-list > li + li {
  margin-top: clamp(0.625rem, 0.053rem + 0.685vw, 0.875rem);
}
.home .qa-section .qa-list > li .tab-head {
  text-align: left;
  width: 100%;
  padding: clamp(1.25rem, 0.106rem + 1.37vw, 1.75rem);
}
.home .qa-section .qa-list > li .tab-head .inn-txt {
  position: relative;
  width: 100%;
  display: block;
  line-height: 1.3571428571;
  font-size: clamp(0.875rem, 0.303rem + 0.685vw, 1.125rem);
  font-weight: bold;
  padding-right: 20px;
}
.home .qa-section .qa-list > li .tab-head .inn-txt::before, .home .qa-section .qa-list > li .tab-head .inn-txt::after {
  position: absolute;
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  background: url(../img/line-blue.svg) no-repeat center center/contain;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.home .qa-section .qa-list > li .tab-head .inn-txt::after {
  -webkit-transition: rotate 0.3s ease-in-out;
  transition: rotate 0.3s ease-in-out;
  rotate: 90deg;
}
.home .qa-section .qa-list > li .tab-head .inn-txt.is-active::after {
  rotate: 0deg;
}
.home .qa-section .qa-list > li .js-aco-cont {
  display: none;
  font-size: clamp(0.75rem, 0.178rem + 0.685vw, 1rem);
  line-height: 1.5;
  padding-block: clamp(2.5rem, 1.07rem + 1.712vw, 3.125rem);
  padding-inline: clamp(1.25rem, 0.106rem + 1.37vw, 1.75rem);
  position: relative;
}
.home .qa-section .qa-list > li .js-aco-cont::before {
  position: absolute;
  content: "";
  width: calc(100% - clamp(1.25rem, 0.106rem + 1.37vw, 1.75rem) * 2);
  height: 1px;
  background-color: #E1E7EA;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.home .qa-section .qa-list > li .js-aco-cont .txt + .txt {
  margin-top: 1.5em;
}
.home .qa-section .qa-list > li .js-aco-cont .bold {
  font-weight: bold;
  font-size: clamp(0.875rem, 0.303rem + 0.685vw, 1.125rem);
  margin-top: 1.5em;
}
.home .qa-section .qa-list > li .js-aco-cont .inn-list {
  margin-top: 1em;
  counter-reset: count;
}
.home .qa-section .qa-list > li .js-aco-cont .inn-list li {
  text-indent: -1.4em;
  padding-left: 1.4em;
}
.home .qa-section .qa-list > li .js-aco-cont .inn-list li::before {
  counter-increment: count;
  content: counter(count) ". ";
}
.home .search-area {
  background-color: #1E4DC6;
  padding-block: clamp(6.25rem, 0.086rem + 7.22vw, 8.75rem);
  position: relative;
}
.home .search-area::before, .home .search-area::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  background-image: url(../img/bg-top.webp);
  background-size: cover;
  background-repeat: repeat-x;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.home .search-area::before {
  top: -18px;
}
.home .search-area::after {
  bottom: -18px;
  rotate: 180deg;
}
.home .search-area .subtxt-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(1.313rem, -0.383rem + 1.986vw, 2rem);
}
.home .search-area .subtxt-area .txt {
  position: relative;
  padding-inline: 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  font-size: clamp(1.25rem, 0.392rem + 1.027vw, 1.625rem);
}
.home .search-area .subtxt-area .txt::before, .home .search-area .subtxt-area .txt::after {
  position: absolute;
  content: "";
  width: clamp(1.5rem, 0.575rem + 1.083vw, 1.875rem);
  height: clamp(3rem, 1.151rem + 2.166vw, 3.75rem);
  background: url("../img/border-img02.svg") no-repeat center center;
  bottom: 0;
  top: 0;
  margin: auto;
}
.home .search-area .subtxt-area .txt::before {
  left: 0;
}
.home .search-area .subtxt-area .txt::after {
  right: 0;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.home .search-area .btn-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mfp-bg {
  background: #FFFFFF;
}

.mfp-content {
  max-width: clamp(62.5rem, 11.027rem + 61.644vw, 85rem);
  padding-inline: 80px;
}
.mfp-content .example-content .example-inner {
  display: grid;
  grid-template-areas: "close close" "info slide" "btn slide";
  grid-template-columns: clamp(22rem, 1.697rem + 24.315vw, 30.875rem) minmax(280px, 1fr);
  -webkit-column-gap: clamp(3.125rem, -0.021rem + 3.767vw, 4.5rem);
     -moz-column-gap: clamp(3.125rem, -0.021rem + 3.767vw, 4.5rem);
          column-gap: clamp(3.125rem, -0.021rem + 3.767vw, 4.5rem);
}
.mfp-content .example-content .example-inner .info-area {
  grid-area: info;
  margin-bottom: clamp(1.625rem, -0.949rem + 3.082vw, 2.75rem);
}
.mfp-content .example-content .example-inner .info-area .ttl {
  font-size: clamp(1.25rem, 0.535rem + 0.856vw, 1.563rem);
  margin-bottom: clamp(0.625rem, -0.805rem + 1.712vw, 1.25rem);
}
.mfp-content .example-content .example-inner .info-area .info-list {
  font-size: clamp(1rem, 0.428rem + 0.685vw, 1.25rem);
  line-height: 1.2;
}
.mfp-content .example-content .example-inner .info-area .info-list .company,
.mfp-content .example-content .example-inner .info-area .info-list .price {
  margin-bottom: 4px;
}
.mfp-content .example-content .example-inner .info-area .info-list .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.mfp-content .example-content .example-inner .info-area .info-list .company .head {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.mfp-content .example-content .example-inner .info-area .info-list .note {
  font-size: 14px;
  line-height: 1.2857142857;
  font-weight: 400;
  margin-bottom: 5px;
}
.mfp-content .example-content .example-inner .info-area .info-list .info {
  line-height: 1.4;
}
.mfp-content .example-content .example-inner .btn-area {
  grid-area: btn;
}
.mfp-content .example-content .example-inner .btn-area .c-btn01 {
  max-width: clamp(20.625rem, 1.466rem + 22.945vw, 29rem);
}
.mfp-content .example-content .example-inner .btn-area .c-btn01 .click-area {
  aspect-ratio: inherit;
  padding: clamp(0.438rem, -0.277rem + 0.856vw, 0.75rem) clamp(0.188rem, -0.813rem + 1.199vw, 0.625rem);
}
.mfp-content .example-content .example-inner .btn-area .c-btn01 .inn-txt {
  font-size: clamp(1rem, 0.428rem + 0.685vw, 1.25rem);
}
.mfp-content .example-content .example-inner .slide-area {
  grid-area: slide;
  overflow: hidden;
  position: relative;
}
.mfp-content .example-content .example-inner .slide-area .slide-box {
  margin-bottom: 0;
  padding-bottom: 23px;
}
.mfp-content .example-content .example-inner .slide-area .slide-box img {
  width: 100%;
}
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  bottom: 2px;
}
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-dots li {
  margin-inline: 4px;
  width: 8px;
  height: 8px;
}
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-dots li button {
  padding: 0;
}
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-dots li button::before {
  content: "";
  background-color: #CED2DD;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-dots li.slick-active button::before {
  background-color: #1E4DC6;
}
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-prev,
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-next {
  width: 34px;
  height: 34px;
  z-index: 2;
}
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-prev::before,
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-next::before {
  position: absolute;
  content: "";
  background: url("../img/ico-arrow-circle.svg") no-repeat center center/contain;
  width: 34px;
  height: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-prev {
  left: 5px;
}
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-prev::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.mfp-content .example-content .example-inner .slide-area .slide-box .slick-next {
  right: 5px;
}
.mfp-content .example-content .example-inner .slide-area .info-box {
  position: absolute;
  bottom: 0;
  left: 0;
}
.mfp-content .example-content .example-inner .slide-area .info-box .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.938rem, 0.509rem + 0.514vw, 1.125rem);
  line-height: 1.5555555556;
  color: #FFFFFF;
}
.mfp-content .example-content .example-inner .slide-area .info-box .info .type,
.mfp-content .example-content .example-inner .slide-area .info-box .info .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-inline: 4px;
  font-weight: 300;
  line-height: 1.5;
}
.mfp-content .example-content .example-inner .slide-area .info-box .info .type {
  background-color: #05AAFF;
}
.mfp-content .example-content .example-inner .slide-area .info-box .info .type.skyblue {
  background-color: #45CAD0;
}
.mfp-content .example-content .example-inner .slide-area .info-box .info .price {
  background-color: #224397;
}
.mfp-content .example-content .example-inner .modal-close-btn {
  grid-area: close;
  margin-bottom: clamp(0.75rem, -0.108rem + 1.027vw, 1.125rem);
}
.mfp-content .example-content .example-inner .modal-close-btn .modal-close {
  position: inherit;
  width: clamp(1.688rem, 0.115rem + 1.884vw, 2.375rem);
  height: clamp(1.688rem, 0.115rem + 1.884vw, 2.375rem);
  line-height: 1;
  font-size: unset;
  margin-left: auto;
  opacity: 1;
}
.mfp-content .example-content .example-inner .modal-close-btn .modal-close:focus-visible svg {
  stroke: #A6A9B2;
}
.mfp-content .example-content .example-inner .modal-close-btn .modal-close svg {
  fill: transparent;
  stroke: #BABABA;
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.95;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-header {
    padding: 40px 20px 30px 20px;
  }
  .c-header .img img {
    width: 60px;
  }
  .c-footer {
    padding-bottom: 58px;
  }
  .c-footer .wrap {
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 40px;
  }
  .c-footer .wrap .sns-area {
    max-width: 375px;
  }
  .c-footer .wrap .sns-area p {
    font-size: 16px;
  }
  .c-footer .wrap .link-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .c-footer .wrap .link-area ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-footer .wrap .link-area ul li:nth-child(3) {
    width: 100%;
    text-align: center;
    display: block;
  }
  .c-btn02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-btn02 .img-area {
    padding: 14px 4px 4px 4px;
    text-align: center;
    border-radius: 10px 10px 0 0;
  }
  .c-btn02 .txt-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px;
    gap: 12px;
  }
  .c-btn02 .txt-area .txt {
    font-size: 18px;
  }
  .c-btn03 {
    width: 100%;
    padding: 5px;
    padding-right: 12px;
  }
  .c-btn03 .click-area {
    padding: 12px;
  }
  .c-btn03 .inn-txt {
    text-align: center;
    font-size: 16px;
  }
  .c-btn03 .arrow-area .arrow-img {
    width: 16px;
    height: 16px;
  }
  .home .fv-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .home .fv-section .voices-area {
    margin-bottom: clamp(0.5rem, -1.529rem + 5.797vw, 1.25rem);
    max-width: 600px;
    padding-inline: clamp(0rem, -3.382rem + 9.662vw, 1.25rem);
    margin-inline: auto;
  }
  .home .fv-section .subtxt-area {
    z-index: 3;
    position: relative;
    margin-bottom: -8px;
  }
  .home .fv-section .slider-area .slick-list img {
    aspect-ratio: 370/236;
  }
  .home .fv-section .ttl-area {
    margin-top: -8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }
  .home .fv-section .btn-area .sub .txt {
    font-size: 16px;
  }
  .home .concern-section .top-txt {
    font-size: 20px;
  }
  .home .points-section .wrap .inner-block {
    padding-top: 30px;
  }
  .home .points-section .wrap .inner-block .subtxt-area .txt {
    padding-inline: 2em;
  }
  .home .points-section .wrap .inner-block .subtxt-area .txt::before, .home .points-section .wrap .inner-block .subtxt-area .txt::after {
    width: 24px;
    height: 48px;
  }
  .home .points-section .wrap .inner-block .toptxt {
    line-height: 1.3333333333;
  }
  .home .points-section .wrap .inner-block .toptxt .normal {
    font-size: 24px;
  }
  .home .points-section .wrap .inner-block .toptxt .bigger {
    font-size: 26px;
  }
  .home .points-section .wrap .inner-block .toptxt .big {
    font-size: 36px;
    line-height: 1.0277777778;
  }
  .home .points-section .wrap .inner-block .point-list-area {
    margin-top: 24px;
  }
  .home .points-section .wrap .inner-block .point-list-area .ttl {
    margin-inline: auto;
  }
  .home .points-section .wrap .inner-block .point-list-area .point-list {
    margin-top: 16px;
  }
  .home .points-section .wrap .inner-block .point-list-area .point-list li + li {
    margin-top: 24px;
  }
  .home .points-section .wrap .inner-block .point-list-area .point-list li::before {
    border-top-width: 8px;
  }
  .home .points-section .wrap .slide-text-area-box {
    font-size: 22px;
    padding-top: 270px;
  }
  .home .example-section .inner-block {
    padding-inline: 4px;
  }
  .home .example-section .hint-txt {
    margin-bottom: 32px;
  }
  .home .example-section .example-area .example-list .example .example-modal .info-box {
    grid-template-columns: 1fr 18px;
  }
  .home .example-section .example-area .example-list .example .example-modal .info-box .info .type {
    padding-inline: 2px;
  }
  .home .example-section .example-area .example-list .example .example-modal .info-box .open {
    width: 18px;
    height: 18px;
  }
  .home .example-section .example-area .example-list .example .example-modal .info-box .open svg {
    width: 6px;
    height: 6px;
  }
  .home .example-section .caution-txt {
    line-height: 2;
    margin-top: 24px;
    padding-inline: 36px;
  }
  .home .flow-section {
    padding-top: 120px;
  }
  .home .flow-section .wrap .list-area {
    padding-inline: 20px;
    margin-bottom: 24px;
  }
  .home .flow-section .wrap .list-area .ttl {
    font-size: 30px;
  }
  .home .flow-section .wrap .list-area ul > li {
    gap: 20px;
  }
  .home .flow-section .wrap .list-area ul > li .texts .head {
    font-size: 16px;
  }
  .home .flow-section .wrap .list-area ul > li .texts .desc {
    font-size: 12px;
  }
  .home .qa-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .home .qa-section .subtxt {
    font-size: 16px;
  }
  .home .search-area .subtxt-area .txt {
    padding-inline: 2em;
    font-size: 18px;
  }
  .home .search-area .subtxt-area .txt::before, .home .search-area .subtxt-area .txt::after {
    width: 24px;
    height: 48px;
  }
  .home .float-btn-area {
    position: fixed;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  .mfp-content {
    max-width: 480px;
    padding-inline: 20px;
    margin-inline: auto;
  }
  .mfp-content .example-content .example-inner {
    grid-template-areas: "close" "slide" "info" "btn";
    grid-template-columns: auto;
  }
  .mfp-content .example-content .example-inner .info-area {
    margin-top: 10px;
    margin-bottom: 25px;
  }
  .mfp-content .example-content .example-inner .info-area .ttl {
    margin-bottom: 10px;
  }
  .mfp-content .example-content .example-inner .slide-area .slide-box {
    padding-bottom: 22px;
  }
  .mfp-content .example-content .example-inner .slide-area .slide-box .slick-dots {
    bottom: 4px;
  }
  .mfp-content .example-content .example-inner .slide-area .info-box .info {
    font-size: 15px;
    line-height: 1.5333333333;
  }
  .mfp-content .example-content .example-inner .modal-close-btn {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 80px;
    padding-right: 80px;
    max-width: clamp(72.5rem, 10.857rem + 72.202vw, 97.5rem);
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-footer .wrap .sns-area {
    max-width: clamp(20rem, 1.507rem + 21.661vw, 27.5rem);
  }
  .c-btn02 {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-btn02 .img-area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .c-btn02 .txt-area {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 14px;
  }
  .c-btn03 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 15px 0 0 15px;
    gap: 12px;
  }
  .c-btn03 .inn-txt {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .c-btn03 .arrow-area {
    margin-top: auto;
  }
  .home .fv-section .wrap {
    display: grid;
    grid-template-areas: "slider voice" "slider subtxt" "slider ttl" "slider btn";
    grid-template-rows: auto;
    grid-template-columns: minmax(300px, 1fr) 1fr;
    -webkit-column-gap: clamp(1.875rem, -0.282rem + 2.527vw, 2.75rem);
       -moz-column-gap: clamp(1.875rem, -0.282rem + 2.527vw, 2.75rem);
            column-gap: clamp(1.875rem, -0.282rem + 2.527vw, 2.75rem);
  }
  .home .fv-section .voices-area {
    max-width: clamp(24.375rem, 19.559rem + 10.03vw, 28.125rem);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .home .fv-section .slider-area .slick-list img {
    aspect-ratio: 540/500;
  }
  .home .fv-section .btn-area .sub .txt {
    font-size: clamp(0.875rem, 0.583rem + 0.608vw, 1.313rem);
  }
  .home .concern-section .concern-list {
    grid-template-rows: minmax(120px, 8.3333333333vw) 13.0208333333vw;
    grid-template-columns: auto 6.9270833333vw minmax(140px, 15.625vw) minmax(140px, 15.625vw) 6.9270833333vw auto;
    grid-template-areas: "moya2 moya2 moya3 moya3 moya4 moya4" "moya1 moya1 img img moya5 moya5";
    color: #0D163C;
  }
  .home .concern-section .concern-list .concern {
    justify-self: center;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
  .home .concern-section .concern-list .concern:nth-child(1)::after {
    width: 168px;
    height: 110px;
    left: 0;
    right: 0;
  }
  .home .concern-section .concern-list .concern:nth-child(2)::after {
    width: 153px;
    height: 110px;
    right: -50%;
  }
  .home .concern-section .concern-list .concern:nth-child(4)::after {
    width: 130px;
    height: 105px;
    left: 0;
    right: 0;
  }
  .home .concern-section .concern-list .img {
    justify-self: center;
  }
  .home .points-section .wrap .inner-block .point-list-area {
    margin-top: clamp(2.125rem, 1.875rem + 0.521vw, 2.5rem);
    padding-top: clamp(1.875rem, 0.958rem + 1.91vw, 3.25rem);
    position: relative;
  }
  .home .points-section .wrap .inner-block .point-list-area .ttl {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  .home .points-section .wrap .inner-block .point-list-area .point-list {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: clamp(1.25rem, 0.106rem + 1.37vw, 1.75rem);
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .home .points-section .wrap .inner-block .point-list-area .point-list li:nth-child(2) {
    height: calc(100% - clamp(5.625rem, 1.336rem + 5.137vw, 7.5rem));
  }
  .home .points-section .wrap .slide-text-area-box {
    padding-top: clamp(9rem, -5.794rem + 17.329vw, 15rem);
    padding-bottom: clamp(4rem, 0.918rem + 3.61vw, 5.25rem);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: clamp(4.875rem, 0.252rem + 5.415vw, 6.75rem);
  }
  .home .example-section .example-area .example-list {
    gap: clamp(0.375rem, 0.089rem + 0.342vw, 0.5rem);
  }
  .home .flow-section .wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: clamp(3.5rem, 0.068rem + 4.11vw, 5rem);
       -moz-column-gap: clamp(3.5rem, 0.068rem + 4.11vw, 5rem);
            column-gap: clamp(3.5rem, 0.068rem + 4.11vw, 5rem);
  }
  .home .flow-section .wrap .list-area {
    max-width: clamp(27.5rem, 1.764rem + 30.822vw, 38.75rem);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .home .flow-section .wrap .video-area {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .home .float-btn-area {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease-in-out, scale 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, scale 0.3s ease-in-out;
    display: inline-block;
    position: fixed;
    top: 35%;
    right: 0;
    z-index: 100;
  }
  .home .float-btn-area:focus-visible {
    scale: 105%;
  }
  .home .float-btn-area.is-hidden {
    opacity: 1;
    pointer-events: visible;
  }
  .mfp-content .example-content .example-inner .info-area {
    -webkit-align-self: end;
        -ms-flex-item-align: end;
            align-self: end;
  }
  .mfp-content .example-content .example-inner .btn-area {
    -webkit-align-self: start;
        -ms-flex-item-align: start;
            align-self: start;
  }
}
@media only screen and (max-width: 1080px) {
  .c-footer .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (1080px >= width >= 767px) {
  .c-footer .wrap {
    gap: 14px;
  }
  .c-footer .wrap .sns-area {
    margin-right: auto;
  }
  .c-footer .wrap .link-area {
    margin-left: auto;
  }
  .c-btn01 .inn-txt {
    font-size: 1.6666666667vw;
  }
  .home .fv-section .voices-area .c-label {
    padding: 1em 1.5em;
    font-size: 1.6666666667vw;
  }
  .home .fv-section .subtxt-area img {
    max-width: clamp(16.25rem, 9.019rem + 15.064vw, 19.188rem);
  }
  .home .fv-section .ttl-area {
    margin-bottom: clamp(1.25rem, -2.596rem + 8.013vw, 2.813rem);
  }
}
@media (any-hover: hover) {
  .c-footer .wrap .sns-area ul li a:hover {
    translate: 0 5px;
  }
  .c-footer .wrap .link-area ul a:hover {
    -webkit-text-decoration: underline solid #0D163C;
            text-decoration: underline solid #0D163C;
  }
  .c-btn01:hover {
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .c-btn02:hover {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .home .example-section .example-area .example-list .example .example-modal:hover .img-box::after {
    background: rgba(255, 255, 255, 0.2); /* 20% 白 */
  }
  .mfp-content .example-content .example-inner .modal-close-btn .modal-close:hover svg {
    stroke: #A6A9B2;
  }
}
@media only screen and (max-width: 767pxpx) {
  .c-btn01 .inn-txt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 400px) {
  .c-btn02 .txt-area .txt {
    font-size: 4.5vw;
  }
  .home .search-area .subtxt-area .txt {
    font-size: 4.5vw;
  }
}
@media (900px >= width >= 767px) {
  .home .concern-section .top-txt {
    font-size: clamp(1.375rem, -0.807rem + 4.545vw, 1.75rem);
    padding-bottom: clamp(1rem, -4.818rem + 12.121vw, 2rem);
  }
  .home .concern-section .concern-list .concern .inn-txt {
    font-size: clamp(0.75rem, 0.023rem + 1.515vw, 0.875rem);
    display: inline-block;
  }
}
@media only screen and (min-width: 1000px) {
  .home .concern-section .concern-list .concern:nth-child(2) {
    margin-right: -40px;
  }
  .home .concern-section .concern-list .concern:nth-child(4) {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1366px) {
  .home .example-section .example-area .example-list {
    grid-template-columns: repeat(5, minmax(195px, 1fr));
  }
}
@media only screen and (max-width: 1160px) {
  .home .example-section .example-area .example-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
}
@media only screen and (max-width: 389px) {
  .home .example-section .example-area .example-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .home .example-section .example-area .example-list .example .example-modal .info-box {
    grid-template-columns: 1fr 16px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 480px) {
  .home .example-section .example-area .example-list .example .example-modal .info-box .open {
    width: 16px;
    height: 16px;
  }
}
@media (1020px >= width >= 767px) {
  .home .flow-section .wrap .list-area {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .home .flow-section .wrap .list-area ul > li .c-label {
    font-size: clamp(0.875rem, 0.494rem + 0.794vw, 1rem);
  }
  .home .flow-section .wrap .video-area .ttl {
    font-size: clamp(0.875rem, 0.494rem + 0.794vw, 1rem);
  }
}
@media only screen and (max-width: 1366px) {
  .home .qa-section .qa-list > li .tab-head .inn-txt::before, .home .qa-section .qa-list > li .tab-head .inn-txt::after {
    width: 20px;
    height: 3px;
  }
}
@media only screen and (min-width: 768px) and (any-hover: hover) {
  .home .float-btn-area:hover {
    scale: 105%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1020px) {
  .mfp-content {
    padding-inline: clamp(1.25rem, -10.179rem + 23.81vw, 5rem);
  }
  .mfp-content .example-content .example-inner {
    grid-template-columns: minmax(320px, 1fr) minmax(1fr, 280px);
  }
}
@media only screen and (max-width: 1336px) {
  .mfp-content .example-content .example-inner {
    -webkit-column-gap: clamp(1.75rem, -1.396rem + 3.767vw, 3.125rem);
       -moz-column-gap: clamp(1.75rem, -1.396rem + 3.767vw, 3.125rem);
            column-gap: clamp(1.75rem, -1.396rem + 3.767vw, 3.125rem);
  }
}