@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

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

q, blockquote {
  quotes: none;
}

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

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

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

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

.d-pc-none{
  display: none;
}
@media (max-width: 767px) {
  .d-pc-none {
      display: block;
    }
}

/*------------------------------
common
------------------------------*/
body {
  color: #2D2D2D;
  font-family: "Noto Sans JP", sans-serif;
}

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

.inner {
  width: 1032px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .inner {
    width: 400px;
  }
}

label {
  cursor: pointer;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* テキスト
------------------------------*/
.c-primary-title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.325;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 999px) {
  .c-primary-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .c-primary-title {
    font-size: 2.4rem;
  }
}

/* ボタン
------------------------------*/
.c-button {
  cursor: pointer;
  display: inline-block;
  width: min(500px, 70vw);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  max-width: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #B78900 0%, #2A9A3D 100%);
  font-size: min(5rem, 5vw);
  color: #fff;
  text-align: center;
  padding: 0.36em 0;
  position: relative;
}

@media (max-width: 767px) {
  .c-button {
    width: max-content;
    max-width: 100%;
    font-size: 2.4rem;
  }
}

/*------------------------------
header
------------------------------*/
header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100;
}
@media (min-width: 768px) {
  header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  header {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__logo {
  width: 46.1%;
  margin-right: 4%;
}
@media (min-width: 768px) {
  .header__logo {
    width: 190px;
    height: 50px;
  }
    .header__logo img{
      height: 50px;
    }
}
@media (max-width: 767px) {
  .header__logo {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .header__logo.left {
    opacity: 0;
    pointer-events: none;
    height: 35px;
  }
  .header__logo.left.active {
    opacity: 1;
    margin-right: 0;
  }
    .header__logo.left img {
      height: 86%;
    }
}

@media (max-width: 767px) {
  .header__logo.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 300px;
    max-width: 95%;
    padding-top: 5px;
    opacity: 1;
  }
  .header__logo.center.active {
    pointer-events: none;
    opacity: 0;
  }
    .header__logo.center img {
      height: 100%;
    }
}

.header__request a {
  width: 12.8em;
  font-size: min(1.8rem, 1.8229166667vw);
  padding: 0.9em 0;
}
.header__request a::after {
  right: 0.3em;
}
.header__request.init {
  opacity: 0;
}
@media (max-width: 767px) {
  .header__request a {
    display: none;
    width: 180px;
    font-size: 1.2rem;
  }
}

/*------------------------------
fv
------------------------------*/
.fv {
  width: 100%;
  aspect-ratio: 1032/625;
  max-height: 625px;
  background: url(../images/background_fv_sp.webp) no-repeat bottom 54% center/cover;
  position: relative;
  margin-top: calc(49px + min(31px, 3.003875969vw));
}
@media screen and (max-width: 999px) {
  .fv {
    aspect-ratio: 1032/750;
    background: url(../images/background_fv_sp.webp) no-repeat bottom 65% right -54px / 126%;
  }
}
@media (max-width: 767px) {
  .fv {
    padding-top: 80px;
    padding-top: calc(0px + min(15px, 6.6666666667vw));
    height: 380px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .fv__inner {
    padding: 0 min(2%, 7.5px);
    position: relative;
    height: 100%;
  }
}

.fv__heading {
  font-size: min(6rem, 5.4263565891vw);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4285714286;
  text-align: right;
  color: #fff;
  padding-top: 50px;
}
.fv__heading span{
  border-bottom: 1px solid #fff;
  padding-bottom: 0px;
  margin-bottom: 0px;
  padding-left: 10px;
  letter-spacing: 0.1em;
}
.fv__heading img {
  width: 80%;
  display: block;
  margin-left: auto;
  margin-top: 1%;
}
@media (max-width: 767px) {
  .fv__heading {
    font-size: min(1.2rem, 5.8666666667vw);
    padding-top: 20px;
  }
  .fv__heading span {
    font-size: min(3.5rem, 10vw);
  }
  .fv__heading img {
    width: 98%;
  }
}


.fv__subtxt{
  color: #fff;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
      margin-top: 260px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  .fv__subtxt {
      margin-top: 84px;
      position: absolute;
      bottom: 36px;
    }
}
.fv__subtxt h2{
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  width: fit-content;
  padding: 12px 15px;
}
.fv__subtxt h2::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/fv-sub02.svg");
  background-repeat: no-repeat;
  height: 100px;
  width: 100px;
  background-size: auto;
}
.fv__subtxt h2::after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("../images/fv-sub01.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  height: 100px;
  width: 100px;
  background-size: auto;
}


@media (max-width: 767px) {
  .fv__subtxt h2 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 20px;
  }
}
.fv__subtxt p{
  color: #fff;
  font-size: 34px;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .fv__subtxt p {
      color: #fff;
      font-size: 16px;
      line-height: 1.5em;
  }
}

.fv__box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(255, 255, 255, 0.8);
  margin-top: 3%;
  padding: 0% 3.7% 3%;
}
@media (max-width: 767px) {
  .fv__box {
    padding: 2% min(4%, 14px);
    width: 300px;
    max-width: 100%;
    margin-top: 19%;
  }
}

.fv__box-heading {
  font-size: min(4.8rem, 4.6511627907vw);
  font-weight: 600;
  line-height: 1.2777777778;
  color: #051E60;
}
.fv__box-heading em {
  border-bottom: 3px solid #DB7F22;
  font-size: min(5.6rem, 5.4263565891vw);
}
@media (max-width: 767px) {
  .fv__box-heading {
    font-size: min(1.8rem, 4.8vw);
  }
  .fv__box-heading em {
    font-size: min(2.4rem, 6.4vw);
  }
}

.fv__box-heading--lg {
  font-size: min(8rem, 7.7519379845vw);
}
@media (max-width: 767px) {
  .fv__box-heading--lg {
    font-size: min(4rem, 10.6666666667vw);
  }
}

.fv__list {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  padding-right: 3%;
}
@media (max-width: 767px) {
  .fv__list {
    display: block;
  }
  .fv__list li:nth-child(n+2) {
    margin-top: 1%;
  }
}

.fv__item-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .fv__item-title {
    font-size: min(1.8rem, 4.8vw);
  }
}

.fv__item-num {
  font-size: min(2rem, 1.9379844961vw);
  font-weight: 600;
  line-height: 1;
  color: #DB7F22;
}
.fv__item-num small {
  display: block;
  font-size: min(1.2rem, 1.1627906977vw);
  margin-top: 0.6em;
}
@media (max-width: 767px) {
  .fv__item-num {
    font-size: min(1.8rem, 4.8vw);
  }
  .fv__item-num small {
    font-size: min(1.2rem, 3.2vw);
  }
}

@media (min-width: 768px) {
  .fv__item-num--lg {
    font-size: min(5rem, 4.8449612403vw);
  }
}
.fv__item-notes {
  display: inline-block;
  font-size: min(1rem, 0.9689922481vw);
  line-height: 1.6;
  font-weight: 400;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .fv__item-notes {
    font-size: min(1rem, 2.6666666667vw);
  }
}

.fv__button {
  text-align: center;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.fv__button a {
  padding: 1em 0;
  font-size: min(3rem, 4.8449612403vw);
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .fv__button {
    max-width: 100%;
    display: none;
  }
  .fv__button a {
    font-size: min(2rem, 5.3333333333vw);
    padding: 0.5em;
  }
}


/*------------------------------
.savings
------------------------------*/
.savings__container{
    background: #F8F5EA;
    padding: 65px 0 80px;
        font-family: "Noto Serif JP", serif;
}
.savings__container h2{
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto 50px auto;
  font-size: 3.5rem;
  white-space: nowrap;
}
.savings__container h2 img{
  width: 196px;
  margin: 0 10px;
}
@media (max-width: 767px){
  .savings__container h2 {
    display: block;
    }
    .savings__container h2 img {
      width: 196px;
      margin: 0 auto 10px auto;
      display: block;
    }
}

.savings__container .c-primary-title{
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.savings__block{
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .savings__block {
      width: 90%;
      display: block;
    }
}
.savings__block-content{
  width: 48%;
}
@media (max-width: 767px) {
  .savings__block-content {
      width: 100%;
    }
}
@media (max-width: 767px) {
  .savings__block-content-img02{
    width: 100%;
      height: 180px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
  }
}

.savings__block-content h3{
  color: #058117;
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.5em;
  font-weight: bold;
}
.savings__block-content .annotation{
  font-size: 12px;
  margin-top: 20px;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .savings__block-content .annotation {
    font-size: 10px;
    margin-bottom: 40px;
    }
}


/*------------------------------
features
------------------------------*/
.features__block {
  background: #F8F5EA;
  padding: 65px 0 80px;
}
.features__block:nth-child(2) {
  margin-top: 50px;
}
.features__block:nth-child(2) .features__top {
  flex-direction: row-reverse;
  text-align: right;
}
.features__block:nth-child(2) .features__content {
  flex-direction: row-reverse;
  align-items: center;
}
.features__block:nth-child(2) .features__lead {
  padding-left: 0;
  padding-right: 5%;
}
.features__block:nth-child(2) .features__image {
  width: 40%;
  display: block;
  margin: 0 auto;
}
.features__block:nth-child(2) .features__data-content {
  margin-top: 0;
}
@media (max-width: 767px) {
  .features__block {
    padding: 30px 0 40px;
  }
  .features__block:nth-child(2) {
    margin-top: 0;
  }
  .features__block:nth-child(2) .features__top {
    text-align: left;
  }
  .features__block:nth-child(2) .features__image {
    width: 100%;
    margin: 30px auto 0;
  }
}

.features__top {
  display: flex;
}
@media (max-width: 767px) {
  .features__top {
    display: block;
  }
}

.features__lead {
  width: 50%;
  padding-left: 5%;
}
.features__lead h2 {
  font-size: min(6rem, 5.8139534884vw);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
.features__lead p {
  font-size: min(2.4rem, 2.3255813953vw);
  line-height: 2;
  font-weight: 500;
  margin-top: 2.25em;
}
@media (max-width: 767px) {
  .features__lead {
    width: 100%;
  }
  .features__lead h2 {
    font-size: 4rem;
  }
  .features__lead p {
    font-size: 1.8rem;
  }
}

.features__image {
  width: 50%;
}
@media (max-width: 767px) {
  .features__image {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
  }
}

.features__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1%;
}
@media (max-width: 767px) {
  .features__content {
    display: block;
    margin-top: 40px;
  }
}

.features__value {
  width: 48%;
}
@media (max-width: 767px) {
  .features__value {
    width: 100%;
  }
}

.features__value-title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.7083333333;
}
.features__value-title small {
  font-size: 1.8rem;
}

.features__value-num {
  font-size: 2.4rem;
  font-weight: 600;
  color: #DB7F22;
}
.features__value-num small {
  display: block;
  font-size: 2rem;
  margin-top: 0.7em;
}

.features__value-num--lg {
  display: inline-block;
  font-size: 6rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .features__value-num--lg {
    font-size: 5rem;
  }
}

.features__text {
  font-size: min(2rem, 1.8229166667vw);
  font-weight: 400;
  line-height: 1.5;
  padding: 15px;
  background: #FFECD9;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .features__text {
    font-size: 1.6rem;
  }
}

.features__text--emphasis {
  font-weight: 600;
  color: #DB7F22;
}

.features__data {
  width: 50%;
}
@media (max-width: 767px) {
  .features__data {
    width: 100%;
    margin-top: 20px;
  }
}

.features__data-notes {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
}

.features__data-content {
  margin-top: 47px;
}
@media (max-width: 767px) {
  .features__data-content {
    margin-top: 20px;
  }
}

.features__data-item:nth-child(2) {
  margin-top: 45px;
}

.features__data-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 11px;
}

.features__table {
  table-layout: fixed;
  width: 100%;
  border: 1px solid #8A8A8A;
}
.features__table th, .features__table td {
  border-right: 1px solid #707070;
}
.features__table th {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  padding: 6px 0;
  border-bottom: 1px solid #8A8A8A;
}
.features__table td {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  padding: 9px 0;
  background: #fff;
}
@media (max-width: 767px) {
  .features__table th {
    font-size: 1.4rem;
  }
  .features__table td {
    font-size: 1.6rem;
  }
}

.features__table--green th {
  background: #D7E4AC;
}
.features__table--green td {
  color: #9AB92E;
}

.features__table--grey th {
  background: #D1D1D1;
}
.features__table--grey td {
  color: #8A8A8A;
}

/*------------------------------
warranty
------------------------------*/
.warranty {
  padding: 60px 0 65px;
}

.warranty__box {
  width: 94%;
  margin: 0 auto;
  border: 8px solid #051264;
  padding: 3.3% 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .warranty__box {
    display: block;
    width: 100%;
    border: 5px solid #051264;
  }
}

.warranty__content {
  width: 62%;
}
.warranty__content p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 3em;
}
@media (max-width: 767px) {
  .warranty__content {
    width: 100%;
  }
  .warranty__content h2 {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .warranty__content p {
    margin-top: 15px;
  }
}

.warranty__image {
  width: min(238px, 23.8vw);
}
@media (max-width: 767px) {
  .warranty__image {
    width: 100%;
    max-width: 238px;
    margin: 20px auto 0;
  }
}

/*------------------------------
case
------------------------------*/
.case {
  padding-bottom: 92px;
  padding-top: 50px;
  font-family: "Noto Serif JP", serif;
}

.case .c-primary-title{
  margin-bottom: 60px;
}

.case__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  /* 改行を許可 */
  gap: 2%;
  /* カラム間の余白 */
}

.case__list li {
  width: 49%;
  margin-bottom: 40px;
  /* 2カラムに分割 */
}

/* 画面が767px以下の場合は1カラムに */
@media (max-width: 767px) {
  .case__list {
    display: block;
  }

  .case__list li {
    width: 100%;
  }

  .case__list li:nth-child(n+2) {
    margin-left: 0;
    margin-top: 20px;
  }
}

.case__item-title {
  font-size: min(2rem, 1.953125vw);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .case__item-title {
    font-size: 1.8rem;
  }
}

.case__item-image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}
.case__item-image.dec {
  position: relative;
}
.case__item-image.dec::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  -webkit-backdrop-filter: brightness(80%);
          backdrop-filter: brightness(80%);
}

.case__item-tag {
  display: flex;
  margin-top: 12px;
}
.case__item-tag span {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  background: #3CB92E;
  border-radius: 3px;
  text-align: center;
  padding: 0.3em 0.7em;
}
.case__item-tag span:nth-child(n+2) {
  margin-left: 10px;
}
@media screen and (max-width: 999px) {
  .case__item-tag {
    flex-wrap: wrap;
  }
  .case__item-tag span {
    font-size: 1rem;
  }
}

/*------------------------------
appeal
------------------------------*/
.appeal {
  background: #FFF5E3;
  padding: 80px 0;
}

.appeal__title {
  position: relative;
}
.appeal__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/appeal_title-en.png) no-repeat center center/contain;
  background: url(../images/appeal_title-en.svg) no-repeat center center/contain;
  width: 560px;
  max-width: 95%;
  aspect-ratio: 1122/122;
}
.appeal__title span {
  position: relative;
}

.appeal__list {
  margin-top: 32px;
  display: flex;
  align-items: stretch;
}
.appeal__list li {
  width: 31.9666666667%;
  aspect-ratio: 320/800;
  background: #fff;
  padding: 2.6% 2%;
  position: relative;
}
.appeal__list li:nth-child(n+2) {
  margin-left: 2%;
}
.appeal__list li h3 {
  font-size: min(4rem, 3.125vw);
  min-height: 3.5em;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #EBB13D;
}
.appeal__list li p {
  font-size: min(1.4rem, 1.8229166667vw);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 30px;
}
.appeal__list li iframe, .appeal__list li img {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 87.5%;
  aspect-ratio: 280/180;
  height: auto;
}
@media screen and (max-width: 999px) {
  .appeal__list li p {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .appeal__list {
    display: block;
  }
  .appeal__list li {
    width: 100%;
    padding: 15px;
    aspect-ratio: unset;
  }
  .appeal__list li:nth-child(n+2) {
    margin-left: 0;
    margin-top: 20px;
  }
  .appeal__list li h3 {
    font-size: 3rem;
    min-height: unset;
  }
  .appeal__list li p {
    font-size: 1.4rem;
  }
  .appeal__list li iframe, .appeal__list li img {
    position: unset;
    transform: unset;
    width: 100%;
    margin-top: 25px;
  }
}

.appeal__num {
  display: block;
  font-size: min(6rem, 5.2083333333vw);
  font-weight: 600;
  line-height: 1.3333333333;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .appeal__num {
    font-size: 4.5rem;
  }
}

.appeal__heading {
  padding-top: 30px;
  font-size: min(2.8rem, 2.6041666667vw);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .appeal__heading {
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  .appeal__heading {
    font-size: 2rem;
  }
}


/*------------------------------
target
------------------------------*/
.target {
  background: url(../images/target_bg.jpg) no-repeat center center/cover;
  padding: 70px 0;
}
.target h2 {
  line-height: 1.6;
}
@media (max-width: 767px) {
  .target h2 {
    font-size: min(2rem, 5.3333333333vw);
  }
}

.target__content {
  background: rgba(255, 255, 255, 0.8);
  padding: 6%;
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
}

.target__list {
  margin: 5.8% auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.target__list li {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.5;
  position: relative;
  padding-left: 2.8em;
}
.target__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/icon_check.png) no-repeat center center/contain;
  width: 1.6em;
  aspect-ratio: 76/76;
}
@media (max-width: 767px) {
  .target__list li {
    font-size: 1.4rem;
    padding-left: 2em;
  }
  .target__list li::before {
    width: 1.3em;
  }
}

/*------------------------------
contact
------------------------------*/
.contact {
  padding: 125px 0 50px;
}
.contact h2 {
  line-height: 2;
}
@media (max-width: 767px) {
  .contact {
    padding: 60px 0 20px;
  }
}

.contact__box {
  position: relative;
  margin-top: 10%;
  border: 1px solid #707070;
  padding: 35px 20px 60px;
}
.contact__box::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #2D2D2D;
  width: 130px;
  aspect-ratio: 130/35;
}
@media (max-width: 767px) {
  .contact__box {
    margin-top: 80px;
  }
  .contact__box::before {
    top: -40px;
    width: 80px;
  }
}

.contact__content {
  width: 757px;
  max-width: 100%;
  margin: 0 auto;
}

.contact__tel {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.contact__tel a {
  color: #2D2D2D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__tel a img {
  width: 25px;
  margin-right: 4px;
}
.contact__tel p:nth-of-type(2) {
  margin-top: 20px;
}

.contact__notice {
  margin-top: 30px;
  background: #E6FCDB;
  padding: 28px 20px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7142857143;
}

.contact-form {
  margin-top: 27px;
}

.contact-form__list dt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3333333333;
}
.contact-form__list dt:nth-of-type(n + 2) {
  margin-top: 30px;
}
.contact-form__list dd {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 15px;
}
.contact-form__list input[type=text],
.contact-form__list input[type=tel],
.contact-form__list input[type=email],
.contact-form__list textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  border: 1px solid #707070;
  width: 373px;
  max-width: 100%;
  padding: 8px;
  font-size: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.contact-form__list input[type=text]::-moz-placeholder, .contact-form__list input[type=tel]::-moz-placeholder, .contact-form__list input[type=email]::-moz-placeholder, .contact-form__list textarea::-moz-placeholder {
  font-size: 1.6rem;
  font-weight: bold;
  color: #8A8A8A;
}
.contact-form__list input[type=text]::placeholder,
.contact-form__list input[type=tel]::placeholder,
.contact-form__list input[type=email]::placeholder,
.contact-form__list textarea::placeholder {
  font-size: 1.6rem;
  font-weight: bold;
  color: #8A8A8A;
}
.contact-form__list textarea {
  min-height: 102px;
  resize: vertical;
}
.contact-form__list select {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .contact-form__list select {
    font-size: 1.4rem;
  }
}

.contact-form__required,
.contact-form__notreq {
  display: inline-block;
  width: 44px;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-left: 20px;
}

.contact-form__required {
  background: #CB040F;
}

.contact-form__notreq {
  background: #8A8A8A;
}

.contact-form__checkbox label:nth-child(n+2) {
  margin-left: 50px;
}
@media (max-width: 767px) {
  .contact-form__checkbox label {
    display: block;
  }
  .contact-form__checkbox label:nth-child(n+2) {
    margin-left: 0;
    margin-top: 10px;
  }
}

.contact-form__postcode {
  display: flex;
  align-items: center;
}
.contact-form__postcode img {
  width: 16px;
  margin-right: 5px;
  margin-left: 10px;
}
.contact-form__postcode input[type=text] {
  width: 85px;
}

.contact-form__address {
  margin-top: 10px;
}
.contact-form__address p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
}

.contact-form__tel p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
}

.contact-form__area {
  display: flex;
  align-items: center;
}
.contact-form__area .contact-form__select {
  width: 282px;
}
@media (max-width: 767px) {
  .contact-form__area label {
    font-size: 1.4rem;
  }
  .contact-form__area .contact-form__select {
    width: 220px;
  }
}

.contact-form__select {
  max-width: 100%;
  position: relative;
}
.contact-form__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: url(../images/icon_arrow.png) no-repeat center center/contain;
  width: 18px;
  aspect-ratio: 46/16;
  pointer-events: none;
}
.contact-form__select select {
  width: 100%;
  padding: 2px 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.contact-form--store select {
  display: none;
}
.contact-form--store.init select:first-child {
  display: block;
}

.contact-form__company label,
.contact-form__area label {
  width: 5.5em;
}

.contact-form__company {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.contact-form__company .contact-form__select {
  width: 282px;
}
@media (max-width: 767px) {
  .contact-form__company label {
    font-size: 1.4rem;
  }
  .contact-form__company .contact-form__select {
    width: 220px;
  }
}

.contact-form__privacy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7142857143;
  text-align: center;
  border: 1px solid #4DBA18;
  margin: 4em auto 0;
  padding: 0.2em 2em;
  position: relative;
}
.contact-form__privacy::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../images/icon_arrow.png) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 46/16;
  pointer-events: none;
}
.contact-form__privacy small {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .contact-form__privacy small {
    display: block;
  }
}

.contact-form__consent {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.contact-form__submit {
  margin-top: 42px;
  text-align: center;
}

.contact-form__submit-button {
  padding: 0.25em 0;
}
.contact-form__submit-button::after {
  right: 0.6em;
}
.contact-form__submit-button input {
  border: none;
  background: unset;
  font-size: min(5rem, 5vw);
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  width: 100%;
}

#valid_mes {
  text-align: center;
  color: #CB040F;
  font-size: 1.6rem;
  margin-top: 1em;
}

label {
  /* 固定 */
}
label .hasInput {
  position: relative;
  width: 1em;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid #707070;
  line-height: 0;
  display: inline-block;
  margin-right: 0.2em;
}
label .hasInput::after {
  content: "";
  position: absolute;
  background: url(../images/icon_check2.png) no-repeat center center/100%;
  aspect-ratio: 52/48;
  width: 1.8em;
  left: -50%;
  top: 10%;
  transform: translate(0%, -50%) rotate(-15deg);
  display: none;
}
label:has(:checked) .hasInput::after {
  display: block;
}
label input[type=checkbox], label [type=radio] {
  opacity: 0;
  margin: 0;
}

.confirm-message {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

/*------------------------------
footer
------------------------------*/
footer {
  padding-bottom: 20px;
}

.footer__copyright {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
}

/*------------------------------
confirm
------------------------------*/
.only-confirm {
  display: none;
}

.form_confirm {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100svh;
  height: 100svh;
  overflow-y: scroll;
  padding-bottom: 100px;
  z-index: 300;
  display: none;
}

body.confirm .only-confirm {
  display: block;
}
body.confirm .not-confirm {
  display: none;
}
body.confirm .form_confirm {
  display: block;
}
body.confirm .form_confirm form {
  width: 700px;
  max-width: 100%;
  margin: 100px auto 0;
  padding: 0 16px;
}
body.confirm .form_confirm form input,
body.confirm .form_confirm form textarea,
body.confirm .form_confirm form select {
  pointer-events: none;
}
body.confirm .form_confirm form .contact-form__submit input {
  pointer-events: auto;
}
body.confirm .form_confirm .contact-form__checkbox {
  position: relative;
}
body.confirm .form_confirm .contact-form__checkbox::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
}
body.confirm .form_confirm form input,
body.confirm .form_confirm form textarea,
body.confirm .form_confirm form select {
  border: none;
}
body.confirm .contact-form__select::after {
  display: none;
}
body.confirm input::-moz-placeholder {
  display: none;
  color: transparent !important;
}
body.confirm input::placeholder {
  display: none;
  color: transparent !important;
}

  .fv__button.fv__sp {
      display: block;
      width: 100%;
      position: fixed;
      z-index: 10;
    }
    .fv__button.fv__sp .c-button {
      width: 100%;
      max-width: 100%;
      border-radius: 0;
      font-size: 2.4rem;
    }


/*# sourceMappingURL=style.css.map */