@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  color: #333333;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: #fff;
}

img {
  width: 100%;
  height: auto;
}

.voiceNone {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 50px;
}
@media screen and (min-width:768px) {
  .voiceNone {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.68;
    margin-bottom: min(3.6603221083vw, 50px);
  }
}

a {
  text-decoration: none;
  transition: 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.btn {
  display: inline-block;
}

@media (hover: hover) {
  .hovAni {
    transition: 0.3s;
  }
  .hovAni:hover {
    opacity: 0.7;
  }
}
/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  background-color: #BFD6C8;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 1.8s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
    transform: scaleX(1);
  }
  100% {
    transform-origin: left;
    transform: scaleX(-50px);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 2.4s;
  animation-delay: 0.6s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.inner, .inner-s {
  width: 84%;
  height: 100%;
  max-width: 980px;
  margin: auto;
}
@media screen and (min-width:768px) {
  .inner, .inner-s {
    width: min(71.7423133236vw, 980px);
    padding: 0 min(2.3426061493vw, 32px);
  }
}

h2.section__ttl span {
  display: block;
}
h2.section__ttl .en {
  font-family: "Optima", "classico-urw", sans-serif;
  margin-bottom: 3px;
}
@media screen and (min-width:768px) {
  h2.section__ttl .en {
    margin-bottom: min(0.3660322108vw, 5px);
  }
}
h2.section__ttl .jp {
  font-family: YuMincho, "Yu Mincho", serif;
}

h2.underSection__ttl {
  margin-bottom: 38px;
}
@media screen and (min-width:768px) {
  h2.underSection__ttl {
    margin-bottom: min(6.149341142vw, 84px);
  }
}
h2.underSection__ttl span {
  display: block;
  width: -moz-max-content;
  width: max-content;
}
h2.underSection__ttl .en {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 400;
  color: #333333;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-family: "Optima", "classico-urw", sans-serif;
  margin-bottom: 3px;
}
@media screen and (min-width:768px) {
  h2.underSection__ttl .en {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.21;
    gap: min(0.8052708638vw, 11px);
    margin-bottom: 0;
  }
}
h2.underSection__ttl .en::before {
  content: "";
  display: inline-block;
  background: #BFD6C8;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
@media screen and (min-width:768px) {
  h2.underSection__ttl .en::before {
    width: min(0.5856515373vw, 8px);
    height: min(0.5856515373vw, 8px);
  }
}
h2.underSection__ttl .jp {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.72;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
}
@media screen and (min-width:768px) {
  h2.underSection__ttl .jp {
    font-size: min(1.756954612vw, 24px);
    line-height: 1.7;
  }
}

.page__ttl {
  margin: 60px 0 60px;
}
@media screen and (min-width:768px) {
  .page__ttl {
    margin: min(4.2459736457vw, 58px) 0 min(7.3206442167vw, 100px);
  }
}
.page__ttl span {
  display: block;
}
.page__ttl .en {
  font-size: 18px;
  font-weight: 400;
  color: #BFD6C8;
  text-align: left;
  line-height: 1.22;
  letter-spacing: 0.02em;
  font-family: "Optima", "classico-urw", sans-serif;
  margin-left: 6px;
}
@media screen and (min-width:768px) {
  .page__ttl .en {
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.16;
    margin-left: 0;
  }
}
.page__ttl .jp {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
}
@media screen and (min-width:768px) {
  .page__ttl .jp {
    font-size: min(2.0497803807vw, 28px);
    line-height: 1.79;
  }
}

.link__btn {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media screen and (min-width:768px) {
  .link__btn {
    gap: min(1.6837481698vw, 23px);
  }
}
.link__btn .txt {
  display: inline-flex;
  flex-direction: column;
  transition: 0.3s;
}
.link__btn span {
  transition: 0.3s;
}
.link__btn .en {
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  text-align: left;
  line-height: 1.16;
  letter-spacing: 0.02em;
  font-family: "Optima", "classico-urw", sans-serif;
}
@media screen and (min-width:768px) {
  .link__btn .en {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.21;
  }
}
.link__btn .jp {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.69;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
}
@media screen and (min-width:768px) {
  .link__btn .jp {
    font-size: min(1.317715959vw, 18px);
    line-height: 1.72;
  }
}
.link__btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333333;
  border-radius: 50%;
  width: 28px;
  height: 28px;
}
@media screen and (min-width:768px) {
  .link__btn .arrow {
    width: min(2.3426061493vw, 32px);
    height: min(2.3426061493vw, 32px);
    margin-top: min(0.7320644217vw, 10px);
  }
}

.link__btn:hover .arrow {
  border: 1px solid #BFD6C8;
}
.link__btn:hover span {
  color: #BFD6C8;
}

.link__btn--hovWhite:hover .arrow {
  border: 1px solid #fff;
}
.link__btn--hovWhite:hover span {
  color: #fff;
}

.snsNav {
  position: fixed;
  bottom: 24px;
  left: auto;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
@media screen and (min-width:768px) {
  .snsNav {
    gap: min(0.5856515373vw, 8px);
    bottom: min(2.3426061493vw, 32px);
    left: min(1.756954612vw, 24px);
    right: auto;
  }
}
.snsNav span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.snsNav img {
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  width: 48px;
  height: 48px;
}
@media screen and (min-width:768px) {
  .snsNav img {
    width: 48px;
    height: 48px;
  }
}
.snsNav img::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: #333 0 0 5px;
  border-radius: 50%;
  opacity: 0.05;
}

[data-aos=showRight_anime] {
  opacity: 0;
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1) !important;
  transition-duration: 1.2s !important;
  transform: translateX(40px) !important;
}

[data-aos=showRight_anime].aos-animate {
  opacity: 1;
}

[data-aos=showRight_anime].aos-animate {
  transform: translateX(0) !important;
}

[data-aos=showUp_anime] {
  opacity: 0;
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1) !important;
  transition-duration: 0.8s !important;
  transform: translateY(40px) !important;
}

[data-aos=showUp_anime].aos-animate {
  opacity: 1;
}

[data-aos=showUp_anime].aos-animate {
  transform: translateY(0) !important;
}

.fv--under {
  background: url(../../assets/img/common/bg_line_sp.png) no-repeat center 202px/contain;
  background-color: #fff;
  padding-top: 60px;
}
@media screen and (min-width:768px) {
  .fv--under {
    padding-top: min(4.39238653vw, 60px);
    background: url(../../assets/img/common/bg_line_pc.png) no-repeat center min(10.6149341142vw, 145px)/contain;
    background-color: #fff;
  }
}
.fv--under .mv_bg {
  height: 200px;
}
@media screen and (min-width:768px) {
  .fv--under .mv_bg {
    height: min(29.2825768668vw, 400px);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.fv--under .news__meta {
  padding: 65px 0 42px;
}
@media screen and (min-width:768px) {
  .fv--under .news__meta {
    padding: min(5.3440702782vw, 73px) 0 min(1.9765739385vw, 27px);
  }
}
.fv--under .news__meta .category-name {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  line-height: 1.66;
  letter-spacing: 0.02em;
  background: #BFD6C8;
  margin-bottom: 10px;
  padding: 0 10px;
}
@media screen and (min-width:768px) {
  .fv--under .news__meta .category-name {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.7;
    margin-bottom: min(0.5856515373vw, 8px);
    padding: 0 min(0.9516837482vw, 13px);
  }
}
.fv--under .news__meta time {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.71;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
}
@media screen and (min-width:768px) {
  .fv--under .news__meta time {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.68;
  }
}
.fv--under .news__meta .ttl {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-bottom: 8px;
}
@media screen and (min-width:768px) {
  .fv--under .news__meta .ttl {
    font-size: 24px;
    line-height: 1.666;
    margin-bottom: 0;
  }
}

.bg-none {
  background: none;
}

.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi span.pages {
  display: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 3px 5px;
  margin: 2px;
  border: none;
}
@media screen and (min-width:768px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: min(1.1713030747vw, 16px);
    padding: min(0.7320644217vw, 10px) min(0.878477306vw, 12px);
    margin: min(0.3660322108vw, 5px);
  }
}

.wp-pagenavi span.current {
  color: #87B599;
  border: 1px solid #87B599;
}

.footer {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(51, 51, 51, 0.0823529412);
}
@media screen and (min-width:768px) {
  .footer {
    box-shadow: 0 0 min(0.3660322108vw, 5px) rgba(51, 51, 51, 0.0823529412);
  }
}
.footer .inner--footer {
  position: relative;
  max-width: 1416px;
  width: 100%;
  margin: auto;
  padding: 97px 0 30px 0;
}
@media screen and (min-width:768px) {
  .footer .inner--footer {
    padding: min(5.8565153734vw, 80px) min(8.2723279649vw, 113px) min(1.4641288433vw, 20px);
  }
}
.footer .footer__content {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
@media screen and (min-width:768px) {
  .footer .footer__content {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: min(2.7086383602vw, 37px);
  }
}
.footer .info {
  text-align: center;
}
@media screen and (min-width:768px) {
  .footer .info {
    text-align: left;
  }
}
.footer .info img {
  width: 138px;
  margin: 0 auto 19px;
}
@media screen and (min-width:768px) {
  .footer .info img {
    width: min(11.7862371889vw, 161px);
    margin-bottom: min(0.5856515373vw, 8px);
  }
}
.footer .info .address,
.footer .info .tel {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.71;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
}
@media screen and (min-width:768px) {
  .footer .info .address,
  .footer .info .tel {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.71;
    text-align: left;
  }
}
.footer .footer__nav {
  margin-top: 0;
  padding: 58px 57px 0;
}
@media screen and (min-width:768px) {
  .footer .footer__nav {
    margin-top: min(1.2445095168vw, 17px);
    padding: 0;
  }
}
.footer .footer__nav .en {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  text-align: left;
  line-height: 1.18;
  letter-spacing: 0.02em;
  font-family: "Optima", "classico-urw", sans-serif;
}
@media screen and (min-width:768px) {
  .footer .footer__nav .en {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.18;
  }
}
.footer .footer__nav .jp {
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.76;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  white-space: nowrap;
}
@media screen and (min-width:768px) {
  .footer .footer__nav .jp {
    font-size: min(0.9516837482vw, 13px);
    line-height: 1.76;
  }
}
.footer .footer__nav .nav__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 53px;
}
@media screen and (min-width:768px) {
  .footer .footer__nav .nav__items {
    grid-template-columns: repeat(6, 1fr);
    gap: min(1.6837481698vw, 23px);
  }
}
.footer .footer__nav .nav__item > a {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
@media screen and (min-width:768px) {
  .footer .footer__nav .nav__item > a {
    margin-bottom: min(1.317715959vw, 18px);
  }
}
.footer .footer__nav .nav__item ul li a {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.66;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-bottom: 8px;
}
@media screen and (min-width:768px) {
  .footer .footer__nav .nav__item ul li a {
    font-size: min(0.878477306vw, 12px);
    line-height: 1.66;
    margin-bottom: min(0.5856515373vw, 8px);
  }
}
.footer .policy {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.76;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  text-decoration: underline;
}
@media screen and (min-width:768px) {
  .footer .policy {
    position: absolute;
    bottom: min(1.4641288433vw, 20px);
    right: min(8.1991215227vw, 112px);
    font-size: min(1.0980966325vw, 15px);
    line-height: 1.73;
  }
}
.footer .copy {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.71;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-top: 7px;
}
@media screen and (min-width:768px) {
  .footer .copy {
    font-size: min(1.0980966325vw, 15px);
    line-height: 1.73;
  }
}

.header {
  position: fixed;
  top: -80px;
  width: 100%;
  background: #fff;
  z-index: 99;
  transition: 0.4s;
}
.header .inner--header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: auto;
  padding-left: 15px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5647058824);
}
@media screen and (min-width:768px) {
  .header .inner--header {
    justify-content: start;
    width: 100%;
    height: min(4.39238653vw, 60px);
    padding-left: 0;
    border-bottom: min(0.0732064422vw, 1px) solid rgba(204, 204, 204, 0.5647058824);
  }
}
.header .header__ttl {
  width: 35%;
  z-index: 10;
}
@media screen and (min-width:768px) {
  .header .header__ttl {
    width: 100%;
    margin: min(0.2196193265vw, 3px) 0 0 min(1.8301610542vw, 25px);
  }
}
.header .header__ttl a {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .header__ttl img {
  width: 124px;
}
@media screen and (min-width:768px) {
  .header .header__ttl img {
    width: min(22.2547584187vw, 304px);
  }
}

.headder--fixed {
  position: fixed;
  top: 0;
}

/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed {
  top: 0;
}

.nav--header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: all 0.4s;
}
@media screen and (min-width:768px) {
  .nav--header {
    background: transparent;
    padding: min(0.5856515373vw, 8px) min(2.0497803807vw, 28px) 0 min(4.0263543192vw, 55px);
  }
}
.nav--header::before {
  position: absolute;
  top: 60px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(204, 204, 204, 0.5647058824);
}
@media screen and (min-width:768px) {
  .nav--header::before {
    display: none;
  }
}
.nav--header.view {
  display: block;
  visibility: visible;
  transform: translateX(0);
}
@media screen and (min-width:768px) {
  .nav--header {
    position: static;
    display: block;
    height: 100%;
    transform: translateX(0);
    visibility: visible;
    margin: 0;
  }
}
.nav--header .header__nav-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 90%;
  width: 75%;
  margin: 73px auto 0;
  padding-bottom: 50px;
  overflow-y: scroll;
}
@media screen and (min-width:768px) {
  .nav--header .header__nav-items {
    flex-direction: row;
    align-items: center;
    height: inherit;
    width: 100%;
    margin-top: 0;
    padding-bottom: 0;
    overflow: visible;
  }
}
.nav--header .header__nav-item {
  width: 100%;
  border-bottom: 0.5px solid #fff;
}
@media screen and (min-width:768px) {
  .nav--header .header__nav-item {
    height: 100%;
    border-bottom: none;
  }
}
.nav--header .header__nav-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0;
}
@media screen and (min-width:768px) {
  .nav--header .header__nav-link {
    align-items: center;
    height: 100%;
    padding: 0;
  }
}
@media screen and (min-width:768px) {
  .nav--header .header__nav-link span {
    transition: all 0.3s;
  }
}
.nav--header .en {
  font-size: 16px;
  font-weight: 500;
  color: #BFD6C8;
  text-align: left;
  line-height: 1.18;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
}
.nav--header .jp {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.68;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
}
@media screen and (min-width:768px) {
  .nav--header .jp {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.71;
    text-align: center;
  }
}
@media screen and (min-width:768px) {
  .nav--header .header__nav-link:hover .jp {
    color: #BFD6C8;
  }
  .nav--header .header__nav-link:hover.header__nav-link::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: min(0.2196193265vw, 3px);
    background-color: #BFD6C8;
  }
}
.nav--header .spView {
  display: block;
}
@media screen and (min-width:768px) {
  .nav--header .spView {
    display: none;
  }
}

.online__block {
  display: none;
  height: 60px;
  background: #523A32;
  z-index: 99;
}
@media screen and (min-width:768px) {
  .online__block {
    display: block;
    height: min(4.39238653vw, 60px);
    margin-left: 0;
  }
}
.online__block a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: inherit;
  height: 60px;
  width: 60px;
  z-index: 10;
}
@media screen and (min-width:768px) {
  .online__block a {
    height: 100%;
    width: min(14.6412884334vw, 200px);
  }
}
.online__block span {
  display: flex;
  align-items: center;
}
@media screen and (min-width:768px) {
  .online__block span {
    gap: min(0.5856515373vw, 8px);
  }
}
.online__block span img {
  width: 20px;
}
@media screen and (min-width:768px) {
  .online__block span img {
    width: min(1.6105417277vw, 22px);
    height: min(1.756954612vw, 24px);
  }
}
.online__block span::after {
  display: none;
}
@media screen and (min-width:768px) {
  .online__block span::after {
    display: block;
    content: "オンラインストア";
    display: inline-block;
    font-size: min(1.0248901903vw, 14px);
    font-weight: 500;
    color: #fff;
    text-align: left;
    line-height: 1.71;
    letter-spacing: 0.02em;
    font-family: YuMincho, "Yu Mincho", serif;
  }
}

/*2階層目を持つliの矢印の設定*/
.nav--header ul li.has-child::before,
.nav--header ul li.has-child::after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  background: #333333;
}

.nav--header ul li.has-child::before {
  position: absolute;
  right: 15px;
  top: 35px;
}
@media screen and (min-width:768px) {
  .nav--header ul li.has-child::before {
    display: none;
  }
}

.nav--header ul li.has-child::after {
  position: absolute;
  right: 15px;
  top: 35px;
  transform: rotate(90deg);
}
@media screen and (min-width:768px) {
  .nav--header ul li.has-child::after {
    display: none;
  }
}

.nav--header ul li.has-child.active::after {
  display: none;
}

/*2階層目以降は横並びにしない*/
.nav--header ul ul {
  display: block;
  padding: 18px 0 23px;
  border-top: 0.5px solid #fff;
}
@media screen and (min-width:768px) {
  .nav--header ul ul {
    display: flex;
    padding: 0;
    border-top: none;
  }
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
.nav--header ul li {
  position: relative;
}

.nav--header ul li li a {
  position: relative;
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.73;
  letter-spacing: 0.05em;
  padding: 12px 0 12px 35px;
}
@media screen and (min-width:768px) {
  .nav--header ul li li a {
    font-size: min(1.0248901903vw, 14px);
    color: #fff;
    text-align: left;
    line-height: 1.21;
    width: -moz-max-content;
    width: max-content;
    padding: min(0.7320644217vw, 10px) min(2.5622254758vw, 35px);
  }
}
.nav--header ul li li a:hover span.en,
.nav--header ul li li a:hover span.jp {
  color: #BFD6C8;
}
.nav--header ul li li a.pcNav {
  position: relative;
  display: none;
}
@media screen and (min-width:768px) {
  .nav--header ul li li a.pcNav {
    display: flex;
    align-items: center;
    width: min(27.0863836018vw, 370px);
    height: min(9.0775988287vw, 124px);
    padding: 0 0 0 min(2.196193265vw, 30px);
  }
}
.nav--header ul li li a.pcNav::before {
  position: absolute;
  top: 25px;
  right: 0;
  content: "";
  display: block;
  width: min(0.0732064422vw, 1px);
  height: min(5.8565153734vw, 80px);
  background: #BFD6C8;
}
.nav--header ul li li a.pcNav figure {
  display: flex;
  align-items: center;
  gap: min(1.4641288433vw, 20px);
}
.nav--header ul li li a.pcNav figure img {
  width: min(8.7115666179vw, 119px);
}
.nav--header ul li li a.pcNav figcaption {
  display: flex;
  flex-direction: column;
}
.nav--header ul li li a.pcNav figcaption span.en {
  display: flex;
  align-items: center;
  gap: min(0.7320644217vw, 10px);
  font-size: min(1.0248901903vw, 14px);
  text-align: left;
  color: #333333;
  transition: 0.3s;
}
.nav--header ul li li a.pcNav figcaption span.en::before {
  content: "";
  display: inline-block;
  background: #BFD6C8;
  border-radius: 50%;
  width: min(0.5856515373vw, 8px);
  height: min(0.5856515373vw, 8px);
}
.nav--header ul li li a.pcNav figcaption span.jp {
  text-align: left;
  font-size: min(1.1713030747vw, 16px);
  transition: 0.3s;
}
.nav--header ul li li a.spNav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav--header ul li li a.spNav::before {
  content: "";
  display: inline-block;
  background: #BFD6C8;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
@media screen and (min-width:768px) {
  .nav--header ul li li a.spNav {
    display: none;
  }
}
.nav--header ul li li a:hover span.en,
.nav--header ul li li a:hover span.jp {
  color: #BFD6C8 !important;
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
.nav--header li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: max(-27.0863836018vw, -370px);
  background: #fff;
  visibility: hidden;
  transition: all 0.3s;
  opacity: 0;
  z-index: 4;
}
@media screen and (min-width:768px) {
  .nav--header li.has-child ul {
    background: #EDF2EF;
  }
}

/*hoverしたら表示*/
.nav--header li.has-child:hover > ul,
.nav--header li.has-child ul li:hover > ul,
.nav--header li.has-child:active > ul,
.nav--header li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*==768px以下の形状*/
@media screen and (max-width: 768px) {
  .nav--header {
    padding: 0;
  }
  .nav--header ul {
    display: block;
  }
  .nav--header li.has-child ul,
  .nav--header li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
  }
}
.hamburger {
  position: relative;
  width: 64px;
  height: 60px;
  padding: 0;
  margin: 0 0 0 auto;
  z-index: 99;
}
@media screen and (min-width:768px) {
  .hamburger {
    display: none;
    margin: 0;
  }
}
.hamburger div {
  width: 24px;
  height: 1px;
  border: 1px solid #523A32;
  background: #523A32;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.hamburger div:nth-child(1) {
  top: 37%;
}
.hamburger div:nth-child(2) {
  top: 50%;
  transition: 0s;
  visibility: visible;
}
.hamburger div:nth-child(3) {
  top: 63%;
}
.hamburger .close {
  display: none;
}

.hamburger.active div:nth-child(1) {
  transform: translate(-50%, 5px) rotate(-45deg);
  background: #523A32;
}

.hamburger.active div:nth-child(2) {
  background: #fff;
  border: 1px solid #fff;
  visibility: hidden;
}

.hamburger.active div:nth-child(3) {
  transform: translate(-50%, -10px) rotate(45deg);
  background: #523A32;
  transition: 0.3s;
}

.hamburger.active .close {
  display: block;
}

.hamburger.active .open {
  display: none;
}

.breadcrumbs {
  font-size: 12px;
  font-weight: 300;
  color: #8E8E8E;
  text-align: left;
  line-height: 1.66;
  letter-spacing: 0.05em;
  margin: 13px 0 0;
  list-style: none;
}
@media screen and (min-width:768px) {
  .breadcrumbs {
    font-size: min(0.878477306vw, 12px);
    margin: min(0.5856515373vw, 8px) 0 0;
  }
}
.breadcrumbs span {
  font-size: 12px;
  font-weight: 300;
  color: #8E8E8E;
  text-align: left;
  line-height: 1.66;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .breadcrumbs span {
    font-size: min(0.878477306vw, 12px);
  }
}

.fv {
  position: relative;
  overflow: hidden;
}
.fv .logo {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100px;
}
@media screen and (min-width:768px) {
  .fv .logo {
    top: min(1.4641288433vw, 20px);
    left: min(2.196193265vw, 30px);
    width: min(9.8828696925vw, 135px);
    height: min(8.1259150805vw, 111px);
  }
}
.fv .fvMenu {
  position: absolute;
  top: 30px;
  right: 125px;
  width: 20px;
  height: 14px;
  background: url(../../assets/img/common/icon_menu_white.png) no-repeat center center/contain;
}
@media screen and (min-width:768px) {
  .fv .fvMenu {
    top: min(4.0263543192vw, 55px);
    right: min(22.9136163982vw, 313px);
    width: min(1.4641288433vw, 20px);
    height: min(1.0248901903vw, 14px);
    cursor: pointer;
  }
}
.fv .fvMenu::before {
  content: "Menu";
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 1.18;
  letter-spacing: 0.02em;
  position: absolute;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  font-family: "Optima", "classico-urw", sans-serif;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width:768px) {
  .fv .fvMenu::before {
    font-size: min(1.1713030747vw, 16px);
  }
}
.fv .onlineBtn {
  position: absolute;
  top: 24px;
  right: 23px;
  width: 25px;
  height: 25px;
  background: url(../../assets/img/common/icon_online_white.png) no-repeat center center/contain;
}
@media screen and (min-width:768px) {
  .fv .onlineBtn {
    top: min(3.6603221083vw, 50px);
    right: min(15.1537335286vw, 207px);
    width: min(1.6837481698vw, 23px);
    height: min(1.8301610542vw, 25px);
  }
}
.fv .onlineBtn a {
  display: block;
  width: 100%;
  height: 100%;
}
.fv .onlineBtn::before {
  display: none;
}
@media screen and (min-width:768px) {
  .fv .onlineBtn::before {
    display: block;
    content: "オンラインストア";
    font-size: min(1.0248901903vw, 14px);
    font-weight: 400;
    color: #fff;
    text-align: left;
    line-height: 1.18;
    letter-spacing: 0.02em;
    position: absolute;
    top: 50%;
    left: min(2.4158125915vw, 33px);
    width: -moz-max-content;
    width: max-content;
    transform: translateY(-50%);
    font-family: "Optima", "classico-urw", sans-serif;
  }
}
.fv .fv_movie {
  position: relative;
  width: 100%;
  height: auto;
  z-index: -1;
}
@media screen and (min-width:768px) {
  .fv .fv_movie {
    width: 100%;
  }
}
.fv .section__ttl {
  position: absolute;
  top: 47%;
  left: 52%;
  width: 100%;
  opacity: 0;
  transform: translate(-50%, 0);
}
@media screen and (min-width:768px) {
  .fv .section__ttl {
    top: 47.5%;
    left: 50%;
  }
}
.fv .section__ttl span {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: YuMincho, "Yu Mincho", serif;
}
@media screen and (min-width:768px) {
  .fv .section__ttl span {
    font-size: min(2.9282576867vw, 40px);
    line-height: 1.7;
  }
}
.fv .section__ttl.fadeup {
  animation-name: fadeupAnime;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes fadeupAnime {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.sp-video {
  display: block;
}

.pc-video {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-video {
    display: none;
  }
  .pc-video {
    display: block;
  }
}
.ourStory {
  background: url(../../assets/img/index/bg_line_sp.png) no-repeat center 78px/contain;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .ourStory {
    background: url(../../assets/img/index/bg_line_pc.png) no-repeat center min(9.5168374817vw, 130px)/contain;
    background-color: #fff;
  }
}
.ourStory .inner--ourStory {
  padding: 177px 0 110px;
  margin-top: -2px;
}
@media screen and (min-width:768px) {
  .ourStory .inner--ourStory {
    margin-top: max(-0.1464128843vw, -2px);
    padding: min(9.5168374817vw, 130px) min(2.3426061493vw, 32px) min(10.2489019034vw, 140px);
  }
}
.ourStory .section__ttl {
  margin-bottom: 38px;
}
@media screen and (min-width:768px) {
  .ourStory .section__ttl {
    margin-bottom: min(4.4655929722vw, 61px);
  }
}
.ourStory .section__ttl .en {
  font-size: 32px;
  font-weight: 400;
  color: #BFD6C8;
  text-align: left;
  line-height: 1.22;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .ourStory .section__ttl .en {
    font-size: min(3.513909224vw, 48px);
    line-height: 1.21;
  }
}
.ourStory .section__ttl .jp {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .ourStory .section__ttl .jp {
    font-size: min(2.0497803807vw, 28px);
    line-height: 1.71;
  }
}
.ourStory .content__area {
  display: flex;
  flex-direction: column;
  gap: 43px;
}
@media screen and (min-width:768px) {
  .ourStory .content__area {
    flex-direction: row;
    gap: min(5.8565153734vw, 80px);
  }
}
.ourStory .textarea {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media screen and (min-width:768px) {
  .ourStory .textarea {
    gap: min(1.1713030747vw, 16px);
  }
}
.ourStory .textarea p {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .ourStory .textarea p {
    font-size: min(1.1713030747vw, 16px);
    line-height: 2;
  }
}
@media screen and (min-width:768px) {
  .ourStory .image {
    padding-top: min(0.5856515373vw, 8px);
  }
}
.ourStory .image img {
  width: 100%;
}
@media screen and (min-width:768px) {
  .ourStory .image img {
    width: min(25.6222547584vw, 350px);
  }
}
.ourStory .btn__block--ourStory {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .ourStory .btn__block--ourStory {
    margin-top: min(3.0014641288vw, 41px);
  }
}

.products {
  background: #BFD6C8;
}
.products .inner--products {
  padding: 112px 0 105px;
}
@media screen and (min-width:768px) {
  .products .inner--products {
    padding: min(9.5168374817vw, 130px) 0 min(9.5168374817vw, 130px);
  }
}
.products .section__ttl {
  margin-bottom: 40px;
}
@media screen and (min-width:768px) {
  .products .section__ttl {
    margin-bottom: min(5.1244509517vw, 70px);
  }
}
.products .section__ttl .en {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 1.22;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .products .section__ttl .en {
    font-size: min(4.0995607613vw, 56px);
    line-height: 1.19;
  }
}
.products .section__ttl .jp {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.68;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .products .section__ttl .jp {
    font-size: min(1.317715959vw, 18px);
    line-height: 1.72;
  }
}
.products .content__area {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.products .content__area .swiper {
  padding-bottom: 98px;
}
@media screen and (min-width:768px) {
  .products .content__area .swiper {
    margin: min(5.1244509517vw, 70px) 0 0;
    padding-bottom: min(9.5168374817vw, 130px);
  }
}
.products .content__area .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 48px;
}
@media screen and (min-width:768px) {
  .products .content__area .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    top: min(34.7730600293vw, 475px);
  }
}
.products .content__area .swiper-slide {
  background: #fff;
  border: 1px solid #BFD6C8;
  transition: 0.3s;
}
@media screen and (min-width:768px) {
  .products .content__area .swiper-slide {
    height: min(31.1127379209vw, 425px);
    padding: min(4.39238653vw, 60px) min(1.2445095168vw, 17px) min(4.0263543192vw, 55px);
  }
}
@media (hover: hover) {
  .products .content__area .swiper-slide:hover {
    background: #EDF2EF;
  }
}
.products .content__area .slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  height: 100%;
  padding: 45px 20px 25px;
}
@media screen and (min-width:768px) {
  .products .content__area .slide {
    gap: min(1.8301610542vw, 25px);
    padding: 0;
  }
}
.products .content__area .slide-media {
  text-align: center;
}
.products .content__area .slide-media img {
  width: 80%;
  height: auto;
}
@media screen and (min-width:768px) {
  .products .content__area .slide-media img {
    width: auto;
    height: min(14.2752562225vw, 195px);
  }
}
.products .content__area .slide-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-bottom: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid #BFD6C8;
}
@media screen and (min-width:768px) {
  .products .content__area .slide-title {
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.3;
    margin-bottom: min(0.878477306vw, 12px);
    padding-bottom: min(0.6588579795vw, 9px);
  }
}
.products .content__area .slide-title span {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .products .content__area .slide-title span {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.85;
  }
}
.products .content__area p {
  font-size: 14px;
  font-weight: 300;
  color: #333333;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
@media screen and (min-width:768px) {
  .products .content__area p {
    font-size: min(1.1713030747vw, 16px);
    letter-spacing: 0.02em;
    line-height: 1.62;
  }
}
.products .content__area .swiper-pagination-bullet {
  background: #fff;
  width: 16px;
  height: 16px;
}
@media screen and (min-width:768px) {
  .products .content__area .swiper-pagination-bullet {
    width: min(1.1713030747vw, 16px);
    height: min(1.1713030747vw, 16px);
  }
}
.products .content__area .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.products .content__area .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}
@media screen and (min-width:768px) {
  .products .content__area .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .products .content__area .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 min(0.7320644217vw, 10px);
  }
}
.products .link__btn {
  justify-content: center;
}

.news {
  background: url(../../assets/img/index/bg_line_sp.png) no-repeat center bottom 73px/contain;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .news {
    background: url(../../assets/img/index/bg_line_pc.png) no-repeat center min(38.579795022vw, 527px)/contain;
    background-color: #fff;
  }
}
.news .inner--news {
  padding: 112px 0 150px;
}
@media screen and (min-width:768px) {
  .news .inner--news {
    padding: min(9.2972181552vw, 127px) min(2.3426061493vw, 32px) min(11.7130307467vw, 160px);
  }
}
.news .section__ttl {
  margin-bottom: 56px;
}
@media screen and (min-width:768px) {
  .news .section__ttl {
    margin-bottom: min(3.2942898975vw, 45px);
  }
}
.news .section__ttl .en {
  font-size: 40px;
  font-weight: 400;
  color: #BFD6C8;
  text-align: left;
  line-height: 1.22;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .news .section__ttl .en {
    font-size: min(3.513909224vw, 48px);
    line-height: 1.21;
  }
}
.news .section__ttl .jp {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .news .section__ttl .jp {
    font-size: min(1.317715959vw, 18px);
    line-height: 1.71;
  }
}
.news .content__area ul {
  margin-bottom: 65px;
}
@media screen and (min-width:768px) {
  .news .content__area ul {
    margin-bottom: min(4.7584187408vw, 65px);
  }
}
.news .content__area li {
  margin-bottom: 30px;
  padding-bottom: 27px;
  border-bottom: 1px solid #333;
}
@media screen and (min-width:768px) {
  .news .content__area li {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.news .content__area li a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .news .content__area li a {
    flex-direction: row;
    gap: min(1.0980966325vw, 15px);
    padding: min(1.8301610542vw, 25px) 0 min(1.5373352855vw, 21px);
  }
}
.news .content__area li .news__meta {
  display: flex;
  gap: 15px;
}
@media screen and (min-width:768px) {
  .news .content__area li .news__meta {
    gap: min(2.196193265vw, 30px);
  }
}
.news .content__area li .news__meta time {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.71;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  transition: 0.3s;
}
@media screen and (min-width:768px) {
  .news .content__area li .news__meta time {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.68;
  }
}
.news .content__area li .news__meta .category-name {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  line-height: 1.66;
  letter-spacing: 0.02em;
  height: 26px;
  width: -moz-max-content;
  width: max-content;
  padding: 0 16px;
  background: #BFD6C8;
}
@media screen and (min-width:768px) {
  .news .content__area li .news__meta .category-name {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.71;
    height: min(1.9033674963vw, 26px);
    padding: 0 min(0.9516837482vw, 13px);
  }
}
.news .content__area li .ttl {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.02em;
  transition: 0.3s;
}
@media screen and (min-width:768px) {
  .news .content__area li .ttl {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.68;
  }
}
.news .content__area li a:hover .ttl,
.news .content__area li a:hover time {
  color: #BFD6C8;
}

.parallax {
  width: 100%;
  height: 420px;
}
@media screen and (min-width:768px) {
  .parallax {
    height: min(35.1390922401vw, 480px);
  }
}

.parallax::before {
  content: "";
  display: block;
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 100%;
  height: 95%;
  z-index: -2;
  background: url(../../assets/img/index/parallax_bg_sp.png) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .parallax::before {
    background: url(../../assets/img/index/parallax_bg_pc.png) no-repeat center center/cover;
  }
}

/*フッターまでスクロールしたら消す*/
.is-hidden::before {
  visibility: hidden;
  opacity: 0;
}

.faq {
  background: url(../../assets/img/index/bg_line_sp.png) no-repeat center 117px/contain;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .faq {
    background: url(../../assets/img/index/bg_line_pc.png) no-repeat center min(7.3206442167vw, 100px)/contain;
    background-color: #fff;
  }
}
.faq .inner--faq {
  padding: 200px 0 110px;
}
@media screen and (min-width:768px) {
  .faq .inner--faq {
    padding: min(9.2972181552vw, 127px) min(2.3426061493vw, 32px) min(11.7130307467vw, 160px);
  }
}
.faq .section__ttl {
  margin-bottom: 52px;
}
@media screen and (min-width:768px) {
  .faq .section__ttl {
    margin-bottom: min(6.149341142vw, 84px);
  }
}
.faq .section__ttl .en {
  font-size: 40px;
  font-weight: 400;
  color: #BFD6C8;
  text-align: center;
  line-height: 1.22;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .faq .section__ttl .en {
    font-size: min(3.513909224vw, 48px);
    line-height: 1.21;
  }
}
.faq .section__ttl .jp {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .faq .section__ttl .jp {
    font-size: min(1.317715959vw, 18px);
    line-height: 1.71;
  }
}
.faq .content__area {
  /*アコーディオン全体*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
.faq .content__area .panel {
  width: 100%;
  margin-bottom: 75px;
}
@media screen and (min-width:768px) {
  .faq .content__area .panel {
    margin-bottom: min(5.4904831625vw, 75px);
  }
}
.faq .content__area .panel:last-child {
  margin-bottom: 0;
}
.faq .content__area .panel .ttl {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.68;
  letter-spacing: 0.02em;
  margin-bottom: 25px;
}
@media screen and (min-width:768px) {
  .faq .content__area .panel .ttl {
    gap: min(1.6837481698vw, 23px);
    font-size: min(1.317715959vw, 18px);
    line-height: 1.72;
    margin-bottom: min(2.9282576867vw, 40px);
  }
}
.faq .content__area .panel .ttl::before {
  content: "";
  display: inline-block;
  background: #BFD6C8;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
@media screen and (min-width:768px) {
  .faq .content__area .panel .ttl::before {
    width: min(1.317715959vw, 18px);
    height: min(1.317715959vw, 18px);
  }
}
.faq .content__area .accordion-area section {
  border-bottom: 1px solid #BFD6C8;
}
@media screen and (min-width:768px) {
  .faq .content__area .accordion-area section {
    border-bottom: min(0.0732064422vw, 1px) solid #BFD6C8;
  }
}
.faq .content__area .accordion-area li:first-child section {
  border-top: 1px solid #BFD6C8;
}
@media screen and (min-width:768px) {
  .faq .content__area .accordion-area li:first-child section {
    border-top: min(0.0732064422vw, 1px) solid #BFD6C8;
  }
}
.faq .content__area .question {
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  cursor: pointer;
  height: 70px;
  padding: 3px 35px 0 10px;
  gap: 13px;
}
@media screen and (min-width:768px) {
  .faq .content__area .question {
    height: auto;
    padding: min(1.6105417277vw, 22px) 0 min(1.5373352855vw, 21px) min(1.8301610542vw, 25px);
    gap: 0;
  }
}
.faq .content__area .answer {
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  cursor: pointer;
  padding: 17px 27px 17px 10px;
  gap: 13px;
}
@media screen and (min-width:768px) {
  .faq .content__area .answer {
    padding: min(1.6105417277vw, 22px) 0 min(1.5373352855vw, 21px) min(1.8301610542vw, 25px);
    gap: 0;
  }
}
.faq .content__area .answer {
  display: flex;
  align-items: baseline;
}
.faq .content__area .question dt,
.faq .content__area .answer dt {
  font-size: 18px;
  font-weight: 300;
  color: #333333;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-family: "Optima", "classico-urw", sans-serif;
}
@media screen and (min-width:768px) {
  .faq .content__area .question dt,
  .faq .content__area .answer dt {
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.3;
    margin-right: min(1.2445095168vw, 17px);
  }
}
.faq .content__area .question dd,
.faq .content__area .answer dd {
  font-size: 14px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .faq .content__area .question dd,
  .faq .content__area .answer dd {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.68;
  }
}
.faq .content__area .accordion__ttl {
  position: relative;
}
.faq .content__area .accordion__ttl::before,
.faq .content__area .accordion__ttl::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 1px;
  background: #333;
}
@media screen and (min-width:768px) {
  .faq .content__area .accordion__ttl::before,
  .faq .content__area .accordion__ttl::after {
    width: min(1.4641288433vw, 20px);
    height: min(0.0732064422vw, 1px);
  }
}
.faq .content__area .accordion__ttl::before {
  top: 50%;
  right: 11px;
  transform: rotate(0deg);
}
@media screen and (min-width:768px) {
  .faq .content__area .accordion__ttl::before {
    right: min(2.635431918vw, 36px);
  }
}
.faq .content__area .accordion__ttl::after {
  top: 50%;
  right: 11px;
  transform: rotate(90deg);
}
@media screen and (min-width:768px) {
  .faq .content__area .accordion__ttl::after {
    right: min(2.635431918vw, 36px);
  }
}
.faq .content__area .accordion__ttl.close::before {
  background: #333333;
}
.faq .content__area .accordion__ttl.close::after {
  display: none;
}
.faq .content__area .accordion__ttl.close {
  background: #BFD6C8;
}
.faq .content__area .accordion__txt {
  display: none;
  position: relative;
  background: #fff;
}

.contact {
  background: #BFD6C8;
}
.contact .inner--contact {
  display: flex;
  flex-direction: column;
  padding: 113px 0 0;
}
@media screen and (min-width:768px) {
  .contact .inner--contact {
    flex-direction: row;
    padding: 0;
  }
}
.contact .section__ttl {
  margin-bottom: 20px;
}
@media screen and (min-width:768px) {
  .contact .section__ttl {
    margin-bottom: min(1.4641288433vw, 20px);
  }
}
.contact .section__ttl .en {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 1.22;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .contact .section__ttl .en {
    font-size: min(3.513909224vw, 48px);
    line-height: 1.21;
  }
}
.contact .section__ttl .jp {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.68;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .contact .section__ttl .jp {
    font-size: min(1.317715959vw, 18px);
    line-height: 1.72;
  }
}
.contact .ttl__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 84%;
  height: 100%;
  margin: auto;
  padding-bottom: 42px;
}
@media screen and (min-width:768px) {
  .contact .ttl__block {
    width: 100%;
    padding: min(0.3660322108vw, 5px) min(9.1508052709vw, 125px) 0 min(7.3206442167vw, 100px);
  }
}
.contact .ttl__block p {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.73;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .contact .ttl__block p {
    font-size: min(1.0980966325vw, 15px);
    line-height: 1.73;
  }
}
.contact .contact__block {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 104px 0 88px;
}
@media screen and (min-width:768px) {
  .contact .contact__block {
    max-width: min(29.2825768668vw, 400px);
    height: min(29.2825768668vw, 400px);
    padding: 0;
  }
}
.contact .contact__block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.contact .contact__block:hover.contact__block::before {
  transform: scale(1.05);
}
.contact .mail__block::before {
  background: url(../../assets/img/index/contact_btn_1.jpg) no-repeat center center/cover;
}
.contact .tel__block::before {
  background: url(../../assets/img/index/contact_btn_2.jpg) no-repeat center center/cover;
}
.contact .contactLink__btn {
  position: relative;
  width: 84%;
  height: 100%;
  margin: auto;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .contact .contactLink__btn {
    width: 100%;
    padding: min(2.196193265vw, 30px);
    gap: min(1.6837481698vw, 23px);
  }
}
.contact .contactLink__btn .en {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 1.21;
  letter-spacing: 0.02em;
  font-family: "Optima", "classico-urw", sans-serif;
}
@media screen and (min-width:768px) {
  .contact .contactLink__btn .en {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.21;
  }
}
.contact .contactLink__btn .jp {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.72;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
}
@media screen and (min-width:768px) {
  .contact .contactLink__btn .jp {
    font-size: min(1.317715959vw, 18px);
    line-height: 1.72;
  }
}
.contact .contactLink__btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
@media screen and (min-width:768px) {
  .contact .contactLink__btn .arrow {
    width: min(2.3426061493vw, 32px);
    height: min(2.3426061493vw, 32px);
    margin-top: min(0.7320644217vw, 10px);
  }
}
.contact .contactLink__btn:hover .arrow {
  color: #333333;
  border: 1px solid #fff;
  background: #fff;
}
.contact .contactLink__btn:hover {
  transform: skew(1.05);
  background-size: 1.05;
}

.company {
  background: url(../../assets/img/about/bg_line02_sp.png) no-repeat center 514px/contain;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .company {
    background: url(../../assets/img/about/bg_line02_pc.png) no-repeat center min(57.1010248902vw, 780px)/contain;
    background-color: #fff;
  }
}
.company .inner--company {
  padding: 77px 0 113px;
}
@media screen and (min-width:768px) {
  .company .inner--company {
    padding: min(11.5666178624vw, 158px) 0 min(16.4714494876vw, 225px);
  }
}
.company h2.underSection__ttl {
  margin-bottom: 38px;
}
@media screen and (min-width:768px) {
  .company h2.underSection__ttl {
    margin-bottom: min(6.149341142vw, 84px);
  }
}
.company .company__list01 {
  display: flex;
  flex-direction: column;
  margin-bottom: 205px;
}
@media screen and (min-width:768px) {
  .company .company__list01 {
    flex-direction: row;
    gap: min(7.3206442167vw, 100px);
    margin-bottom: min(3.2942898975vw, 45px);
    padding-left: min(2.4158125915vw, 33px);
    padding-right: min(2.196193265vw, 30px);
  }
}
.company .company__list01 .textarea {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media screen and (min-width:768px) {
  .company .company__list01 .textarea {
    gap: min(0.439238653vw, 6px);
  }
}
.company .company__list01 .textarea p {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .company .company__list01 .textarea p {
    font-size: min(1.1713030747vw, 16px);
  }
}
.company .company__list02 {
  position: relative;
  padding: 0 0 30px;
}
@media screen and (min-width:768px) {
  .company .company__list02 {
    padding: min(5.8565153734vw, 80px) 0;
    padding-left: min(2.4158125915vw, 33px);
  }
}
.company .company__list02 .company_img {
  position: relative;
  margin-top: -80px;
}
@media screen and (min-width:768px) {
  .company .company__list02 .company_img {
    position: absolute;
    width: min(22.8404099561vw, 312px);
    height: min(15.4465592972vw, 211px);
    bottom: max(-9.663250366vw, -132px);
    right: max(-9.5168374817vw, -130px);
  }
}
.company .company__list02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #EDF2EF;
  z-index: -1;
}
.company .company__list02 dl {
  position: relative;
  display: grid;
  grid-template-columns: auto;
  padding: 38px 0 30px;
}
@media screen and (min-width:768px) {
  .company .company__list02 dl {
    grid-template-columns: auto 100%;
    gap: min(1.6837481698vw, 23px) min(7.3206442167vw, 100px);
    padding: min(0.878477306vw, 12px) 0 min(0.7320644217vw, 10px) min(15.2269399707vw, 208px);
  }
}
.company .company__list02 dl::before {
  display: none;
}
@media screen and (min-width:768px) {
  .company .company__list02 dl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: #fff;
    left: min(23.4260614934vw, 320px);
  }
}
.company .company__list02 dt {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.02em;
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 4px;
}
@media screen and (min-width:768px) {
  .company .company__list02 dt {
    font-size: min(1.0980966325vw, 15px);
    margin-bottom: 0;
  }
}
.company .company__list02 dd {
  font-size: 14px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #fff;
  margin-bottom: 19px;
  padding-bottom: 19px;
}
@media screen and (min-width:768px) {
  .company .company__list02 dd {
    font-size: min(1.0980966325vw, 15px);
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.history {
  background: url(../../assets/img/about/bg_line03_sp.png) no-repeat center bottom 110px/contain;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .history {
    background: url(../../assets/img/about/bg_line03_pc.png) no-repeat center min(41.3616398243vw, 565px)/contain;
    background-color: #fff;
  }
}
.history .inner--history {
  padding: 0 0 205px;
}
@media screen and (min-width:768px) {
  .history .inner--history {
    padding: 0 0 min(13.17715959vw, 180px);
  }
}
.history h2.underSection__ttl {
  margin-bottom: 41px;
}
@media screen and (min-width:768px) {
  .history h2.underSection__ttl {
    margin-bottom: min(6.149341142vw, 84px);
  }
}
.history .history__content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:768px) {
  .history .history__content {
    flex-direction: row;
    gap: min(7.906295754vw, 108px);
    padding: min(5.6368960469vw, 77px) 0 0 min(2.9282576867vw, 40px);
  }
}
.history .content__area dl {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  gap: 23px 38px;
}
@media screen and (min-width:768px) {
  .history .content__area dl {
    grid-template-columns: auto 100%;
    gap: min(2.2693997072vw, 31px) min(4.39238653vw, 60px);
  }
}
.history .content__area dl::before {
  position: absolute;
  top: 12px;
  left: 74px;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #BFD6C8;
}
@media screen and (min-width:768px) {
  .history .content__area dl::before {
    width: min(0.0732064422vw, 1px);
    top: min(1.2445095168vw, 17px);
    left: min(7.467057101vw, 102px);
  }
}
.history .content__area dt {
  position: relative;
  font-size: 24px;
  font-weight: 400;
  color: #87B599;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-family: "Optima", "classico-urw", sans-serif;
}
@media screen and (min-width:768px) {
  .history .content__area dt {
    font-size: min(2.3426061493vw, 32px);
    line-height: 1.21;
  }
}
.history .content__area dt::before {
  position: absolute;
  top: 30%;
  right: -23px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #BFD6C8;
  border-radius: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width:768px) {
  .history .content__area dt::before {
    right: max(-2.5622254758vw, -35px);
    width: min(0.878477306vw, 12px);
    height: min(0.878477306vw, 12px);
  }
}
.history .content__area dd {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding-top: 7px;
}
@media screen and (min-width:768px) {
  .history .content__area dd {
    flex-direction: row;
    align-items: center;
    gap: min(0.5856515373vw, 8px);
    font-size: min(1.0980966325vw, 15px);
    line-height: 1.6;
    padding-top: 0;
  }
}
.history .content__area dd span {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.21;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  width: 100%;
}
@media screen and (min-width:768px) {
  .history .content__area dd span {
    font-size: min(1.1713030747vw, 16px);
    line-height: 2;
    width: min(2.9282576867vw, 40px);
  }
}

.access {
  background: linear-gradient(to bottom, #fff 59%, #BFD6C8 59%);
}
@media screen and (min-width:768px) {
  .access {
    background: linear-gradient(to bottom, #fff 57%, #BFD6C8 57%);
  }
}
.access .inner--access {
  padding: 0 0 94px;
}
@media screen and (min-width:768px) {
  .access .inner--access {
    padding: min(5.7833089312vw, 79px) 0 min(9.1508052709vw, 125px) min(2.4158125915vw, 33px);
  }
}
.access h2.underSection__ttl {
  margin-bottom: 38px;
}
@media screen and (min-width:768px) {
  .access h2.underSection__ttl {
    margin-bottom: min(6.149341142vw, 84px);
  }
}
.access .access__content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:768px) {
  .access .access__content {
    flex-direction: row;
    gap: min(8.0527086384vw, 110px);
  }
}
.access .content__area .txt01 {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
@media screen and (min-width:768px) {
  .access .content__area .txt01 {
    font-size: min(1.1713030747vw, 16px);
    margin-bottom: min(0.3660322108vw, 5px);
  }
}
.access .content__area .txt02 {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 11px;
}
@media screen and (min-width:768px) {
  .access .content__area .txt02 {
    font-size: min(1.1713030747vw, 16px);
    margin-bottom: min(0.878477306vw, 12px);
  }
}
.access .content__area .gmap__link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 300;
  color: #87B599;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  gap: 9px;
  margin-bottom: 30px;
  text-decoration: underline;
}
@media screen and (min-width:768px) {
  .access .content__area .gmap__link {
    font-size: min(1.1713030747vw, 16px);
    gap: min(0.5856515373vw, 8px);
    margin-bottom: min(2.196193265vw, 30px);
  }
}
.access .content__area .gmap__link::before {
  content: "";
  display: inline-block;
  background: url(../../assets/img/common/icon_map-pin.png) no-repeat center center/contain;
  width: 16px;
  height: 20px;
}
@media screen and (min-width:768px) {
  .access .content__area .gmap__link::before {
    width: min(1.317715959vw, 18px);
    height: min(1.6105417277vw, 22px);
  }
}
.access .content__area .gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 63.6942%;
}
@media screen and (min-width:768px) {
  .access .content__area .gmap {
    width: min(69.0336749634vw, 943px);
    height: min(27.8916544656vw, 381px);
    padding-top: 40.8798%;
  }
}
.access .content__area .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.products--under01 {
  background: linear-gradient(to bottom, #fff 59%, #BFD6C8 59%);
}
@media screen and (min-width:768px) {
  .products--under01 {
    background: linear-gradient(to bottom, #fff min(40.9956076135vw, 560px), #BFD6C8 min(40.9956076135vw, 560px));
  }
}
.products--under01 .inner--products {
  padding: 95px 0 110px;
}
@media screen and (min-width:768px) {
  .products--under01 .inner--products {
    padding: min(11.5666178624vw, 158px) min(2.3426061493vw, 32px) min(9.3704245974vw, 128px);
  }
}

.products--under02 {
  background: linear-gradient(to bottom, #fff 59%, #BFD6C8 59%);
}
@media screen and (min-width:768px) {
  .products--under02 {
    background: linear-gradient(to bottom, #fff min(34.7730600293vw, 475px), #BFD6C8 min(34.7730600293vw, 475px));
  }
}
.products--under02 .inner--products {
  padding: 112px 0 110px;
}
@media screen and (min-width:768px) {
  .products--under02 .inner--products {
    padding: min(11.5666178624vw, 158px) min(2.3426061493vw, 32px) min(9.3704245974vw, 128px);
  }
}

.products--under h2.underSection__ttl {
  margin-bottom: 22px;
}
@media screen and (min-width:768px) {
  .products--under h2.underSection__ttl {
    margin-bottom: min(2.5622254758vw, 35px);
  }
}
.products--under .content__area .textarea p {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 59px;
}
@media screen and (min-width:768px) {
  .products--under .content__area .textarea p {
    font-size: min(1.1713030747vw, 16px);
    margin-bottom: min(4.0263543192vw, 55px);
  }
}
.products--under .content__area ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width:768px) {
  .products--under .content__area ul {
    flex-direction: row;
    gap: min(1.4641288433vw, 20px);
  }
}
.products--under .content__area li {
  border: 1px solid #87B599;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .products--under .content__area li {
    width: min(21.3762811127vw, 292px);
    border: min(0.0732064422vw, 1px) solid #87B599;
    border-radius: min(0.7320644217vw, 10px);
  }
}
.products--under .content__area a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 32px 32px 29px 32px;
  background: #fff;
  transition: 0.3s;
}
@media screen and (min-width:768px) {
  .products--under .content__area a {
    padding: min(2.3426061493vw, 32px) min(2.196193265vw, 30px) min(2.0497803807vw, 28px) min(2.3426061493vw, 32px);
  }
}
@media (hover: hover) {
  .products--under .content__area a:hover {
    background: #EDF2EF;
  }
}
.products--under .content__area .item__img {
  text-align: center;
}
.products--under .content__area .item__img img {
  width: 67%;
}
@media screen and (min-width:768px) {
  .products--under .content__area .item__img img {
    width: 74%;
  }
}
.products--under .content__area .item-content {
  margin-top: 19px;
}
@media screen and (min-width:768px) {
  .products--under .content__area .item-content {
    margin-top: min(1.3909224012vw, 19px);
  }
}
.products--under .content__area .item-content .item-ttl {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-bottom: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid #BFD6C8;
}
@media screen and (min-width:768px) {
  .products--under .content__area .item-content .item-ttl {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.31;
    margin-bottom: min(0.878477306vw, 12px);
    padding-bottom: min(0.439238653vw, 6px);
  }
}
.products--under .content__area .item-content p {
  font-size: 12px;
  font-weight: 300;
  color: #333333;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 13px;
}
@media screen and (min-width:768px) {
  .products--under .content__area .item-content p {
    font-size: min(0.878477306vw, 12px);
    margin: 0 auto min(1.0980966325vw, 15px);
    width: -moz-max-content;
    width: max-content;
  }
}
.products--under .content__area .caution {
  font-size: 12px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 13px;
}
@media screen and (min-width:768px) {
  .products--under .content__area .caution {
    font-size: min(0.878477306vw, 12px);
    margin-top: min(0.9516837482vw, 13px);
  }
}
.products--under .mv__content {
  padding: 70px 0 0;
}
@media screen and (min-width:768px) {
  .products--under .mv__content {
    padding: min(5.1244509517vw, 70px) 0 0;
  }
}
.products--under .mv__content .mv__ttl {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.72;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-bottom: 42px;
}
@media screen and (min-width:768px) {
  .products--under .mv__content .mv__ttl {
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.7;
    margin-bottom: min(4.831625183vw, 66px);
  }
}
.products--under .mv__content .mv__ttl::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  left: 50%;
  bottom: -10px;
  background: #fff;
  transform: translate(-50%);
}
@media screen and (min-width:768px) {
  .products--under .mv__content .mv__ttl::before {
    bottom: max(-1.317715959vw, -18px);
    width: min(5.8565153734vw, 80px);
    height: min(0.0732064422vw, 1px);
  }
}
.products--under .mv__content .mv__area {
  text-align: center;
}
.products--under .mv__content .mv__area video {
  width: 100%;
}

.linkArea {
  background: url(../../assets/img/common/bg_line.png) no-repeat center 85px/contain;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .linkArea {
    background: url(../../assets/img/common/bg_line02_pc.png) no-repeat center min(27.3060029283vw, 373px)/contain;
    background-color: #fff;
  }
}
.linkArea .inner--linkArea {
  padding: 80px 0 114px;
}
@media screen and (min-width:768px) {
  .linkArea .inner--linkArea {
    padding: min(11.7130307467vw, 160px) min(2.3426061493vw, 32px) min(11.7130307467vw, 160px);
  }
}
.linkArea .linkArea__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width:768px) {
  .linkArea .linkArea__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.linkArea .link__block {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 315/144;
}
@media screen and (min-width:768px) {
  .linkArea .link__block {
    width: min(32.2108345534vw, 440px);
    height: min(19.9121522694vw, 272px);
    border-radius: min(0.7320644217vw, 10px);
  }
}
.linkArea .link__block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.linkArea .link__block:hover.link__block::before {
  transform: scale(1.05);
}
.linkArea .faq__block::before {
  background: url(../../assets/img/index/contact_btn_1.jpg) no-repeat center center/cover;
}
.linkArea .onlineShop__block::before {
  background: url(../../assets/img/index/contact_btn_2.jpg) no-repeat center center/cover;
}
.linkArea .link__areaBtn {
  position: relative;
  width: 84%;
  height: 100%;
  margin: auto;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .linkArea .link__areaBtn {
    width: 100%;
    padding: min(2.196193265vw, 30px);
    padding-left: min(3.513909224vw, 48px);
    gap: min(3.2942898975vw, 45px);
  }
}
.linkArea .link__areaBtn .en {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 1.21;
  letter-spacing: 0.02em;
  font-family: "Optima", "classico-urw", sans-serif;
}
@media screen and (min-width:768px) {
  .linkArea .link__areaBtn .en {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.21;
  }
}
.linkArea .link__areaBtn .jp {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.72;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
}
@media screen and (min-width:768px) {
  .linkArea .link__areaBtn .jp {
    font-size: min(1.317715959vw, 18px);
    line-height: 1.72;
  }
}
.linkArea .link__areaBtn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
@media screen and (min-width:768px) {
  .linkArea .link__areaBtn .arrow {
    width: min(2.3426061493vw, 32px);
    height: min(2.3426061493vw, 32px);
    margin-top: min(0.7320644217vw, 10px);
  }
}
.linkArea .link__areaBtn:hover .arrow {
  color: #333333;
  border: 1px solid #fff;
  background: #fff;
}
.linkArea .link__areaBtn:hover {
  transform: skew(1.05);
  background-size: 1.05;
}

.fv--introduction {
  padding-top: 60px;
  background: linear-gradient(to bottom, #fff 30%, #EFF4F1 30%);
}
@media screen and (min-width:768px) {
  .fv--introduction {
    padding-top: min(4.39238653vw, 60px);
    background: linear-gradient(to bottom, #fff min(16.9838945827vw, 232px), #EFF4F1 min(16.9838945827vw, 232px));
  }
}
.fv--introduction .inner--fv--introduction {
  padding-bottom: 47px;
}
@media screen and (min-width:768px) {
  .fv--introduction .inner--fv--introduction {
    padding-bottom: min(5.8565153734vw, 80px);
  }
}
.fv--introduction .introduction {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0 0;
}
@media screen and (min-width:768px) {
  .fv--introduction .introduction {
    flex-direction: row;
    gap: min(5.8565153734vw, 80px);
    padding: min(4.6120058565vw, 63px) 0 0;
  }
}
.fv--introduction .introduction__img {
  text-align: center;
}
@media screen and (min-width:768px) {
  .fv--introduction .introduction__img {
    width: min(23.8653001464vw, 326px);
  }
}
.fv--introduction .introduction__img .mv_bg {
  width: 48%;
}
@media screen and (min-width:768px) {
  .fv--introduction .introduction__img .mv_bg {
    width: 100%;
  }
}
.fv--introduction .introduction__txtcontent {
  width: 100%;
}
@media screen and (min-width:768px) {
  .fv--introduction .introduction__txtcontent {
    width: min(37.3352855051vw, 510px);
  }
}
.fv--introduction h2.item__ttl {
  margin-bottom: 10px;
}
@media screen and (min-width:768px) {
  .fv--introduction h2.item__ttl {
    margin-bottom: min(4.0995607613vw, 50px);
  }
}
.fv--introduction h2.item__ttl span {
  display: block;
}
@media screen and (min-width:768px) {
  .fv--introduction h2.item__ttl span {
    width: -moz-max-content;
    width: max-content;
  }
}
.fv--introduction h2.item__ttl .jp {
  font-size: 12px;
  font-weight: 300;
  color: #333333;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .fv--introduction h2.item__ttl .jp {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.28;
    text-align: left;
    margin-bottom: min(0.3660322108vw, 5px);
  }
}
.fv--introduction h2.item__ttl .en {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
}
@media screen and (min-width:768px) {
  .fv--introduction h2.item__ttl .en {
    font-size: min(2.2693997072vw, 31px);
    line-height: 1.29;
    text-align: left;
  }
}
.fv--introduction .itemIntroduction_img {
  margin-bottom: 10px;
}
@media screen and (min-width:768px) {
  .fv--introduction .itemIntroduction_img {
    width: 82%;
    margin-bottom: min(1.0980966325vw, 15px);
  }
}
.fv--introduction .caution {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.3;
  letter-spacing: 0.05em;
  gap: 5px;
  margin-bottom: 20px;
}
@media screen and (min-width:768px) {
  .fv--introduction .caution {
    font-size: min(0.878477306vw, 12px);
    line-height: 1.16;
    gap: min(0.439238653vw, 6px);
    margin-bottom: min(2.2693997072vw, 31px);
  }
}
.fv--introduction .item__btn {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width:768px) {
  .fv--introduction .item__btn {
    flex-direction: row;
    gap: min(1.1713030747vw, 16px);
  }
}
.fv--introduction .item__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 2.28;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  height: 48px;
  width: 235px;
  margin: auto;
  border-radius: 4px;
}
@media screen and (min-width:768px) {
  .fv--introduction .item__btn a {
    font-size: min(1.0248901903vw, 14px);
    line-height: 2.28;
    height: min(3.513909224vw, 48px);
    border-radius: min(0.2928257687vw, 4px);
  }
}
.fv--introduction .item__btn a span {
  display: flex;
  align-items: center;
  gap: 13px;
}
@media screen and (min-width:768px) {
  .fv--introduction .item__btn a span {
    gap: min(0.7320644217vw, 10px);
  }
}
.fv--introduction .dl__link {
  background-color: #87B599;
}
@media screen and (min-width:768px) {
  .fv--introduction .dl__link {
    width: min(17.2035139092vw, 235px);
  }
}
@media screen and (min-width:768px) {
  .fv--introduction .dl__link span {
    gap: min(0.7320644217vw, 10px);
  }
}
.fv--introduction .dl__link span::before {
  content: "";
  display: inline-block;
  background: url(../../assets/img/common/icon_dl.png) no-repeat center center/contain;
  width: 18px;
  height: 18px;
}
@media screen and (min-width:768px) {
  .fv--introduction .dl__link span::before {
    width: min(1.317715959vw, 18px);
    height: min(1.317715959vw, 18px);
  }
}
.fv--introduction .store__link {
  background-color: #523A32;
}
@media screen and (min-width:768px) {
  .fv--introduction .store__link {
    width: min(14.3484626647vw, 196px);
  }
}
@media screen and (min-width:768px) {
  .fv--introduction .store__link span {
    gap: min(0.7320644217vw, 10px);
  }
}
.fv--introduction .store__link span::before {
  content: "";
  display: inline-block;
  background: url(../../assets/img/common/icon_online_white.png) no-repeat center center/contain;
  width: 22px;
  height: 22px;
}
@media screen and (min-width:768px) {
  .fv--introduction .store__link span::before {
    width: min(1.6105417277vw, 22px);
    height: min(1.6105417277vw, 22px);
  }
}

.concept {
  background: linear-gradient(to bottom, #fff 645px, #EFF4F1 645px);
}
@media screen and (min-width:768px) {
  .concept {
    background: linear-gradient(to bottom, #fff min(44.289897511vw, 605px), #EFF4F1 min(44.289897511vw, 605px));
  }
}
.concept .inner--concept {
  padding: 62px 0 60px;
}
@media screen and (min-width:768px) {
  .concept .inner--concept {
    padding: min(5.8565153734vw, 80px) min(2.3426061493vw, 32px) min(7.3206442167vw, 100px);
  }
}
.concept .content__area {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:768px) {
  .concept .content__area {
    flex-direction: row;
    gap: min(4.6852122987vw, 64px);
  }
}
.concept .content__area .textarea {
  margin-bottom: 33px;
}
@media screen and (min-width:768px) {
  .concept .content__area .textarea {
    width: min(31.3323572474vw, 428px);
    margin-bottom: 0;
  }
}
.concept .content__area h2.underSection__ttl {
  margin-bottom: 12px;
}
@media screen and (min-width:768px) {
  .concept .content__area h2.underSection__ttl {
    margin-bottom: min(1.2445095168vw, 17px);
  }
}
.concept .content__area h2.underSection__ttl span {
  font-size: 12px;
}
@media screen and (min-width:768px) {
  .concept .content__area h2.underSection__ttl span {
    font-size: min(1.0248901903vw, 14px);
  }
}
.concept .content__area .content__ttl {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-bottom: 24px;
}
@media screen and (min-width:768px) {
  .concept .content__area .content__ttl {
    font-size: min(1.756954612vw, 24px);
    line-height: 1.7;
    margin-bottom: min(2.4890190337vw, 34px);
  }
}
.concept .content__area p {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
@media screen and (min-width:768px) {
  .concept .content__area p {
    font-size: min(1.1713030747vw, 16px);
    margin-bottom: min(1.2445095168vw, 17px);
  }
}
.concept .content__area .concept__img {
  margin-bottom: 130px;
}
@media screen and (min-width:768px) {
  .concept .content__area .concept__img {
    margin-bottom: 0;
  }
}
@media screen and (min-width:768px) {
  .concept .content__area .concept__img img {
    width: min(47.5109809663vw, 649px);
    height: min(25.1830161054vw, 344px);
    margin-right: calc(50% - 50vw);
  }
}
.concept .point {
  padding: 28px 0 47px;
}
@media screen and (min-width:768px) {
  .concept .point {
    padding-top: min(8.0527086384vw, 110px);
  }
}
.concept .point ul {
  display: flex;
  flex-direction: column;
  gap: 43px;
}
@media screen and (min-width:768px) {
  .concept .point ul {
    flex-direction: row;
    justify-content: center;
    gap: min(3.513909224vw, 48px);
  }
}
.concept .point li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}
@media screen and (min-width:768px) {
  .concept .point li {
    flex-direction: column;
    gap: min(1.6837481698vw, 23px);
    width: min(17.5695461201vw, 240px);
  }
}
.concept .point .item__img {
  text-align: center;
}
.concept .point .item__img img {
  width: 91px;
}
@media screen and (min-width:768px) {
  .concept .point .item__img img {
    width: min(10.2489019034vw, 140px);
  }
}
.concept .point .item-content .item-point {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  text-align: left;
  line-height: 1.21;
  letter-spacing: 0.02em;
  font-family: "Optima", "classico-urw", sans-serif;
  margin-bottom: 20px;
}
@media screen and (min-width:768px) {
  .concept .point .item-content .item-point {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.21;
    text-align: center;
    margin-bottom: min(2.4890190337vw, 34px);
  }
}
.concept .point .item-content .item-point span {
  font-size: 20px;
  line-height: 1.15;
  margin-left: 5px;
}
@media screen and (min-width:768px) {
  .concept .point .item-content .item-point span {
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.15;
    margin-left: min(0.3660322108vw, 5px);
  }
}
.concept .point .item-content .item-point::before {
  position: absolute;
  top: 31px;
  left: 25px;
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: #BFD6C8;
  transform: translate(-50%);
}
@media screen and (min-width:768px) {
  .concept .point .item-content .item-point::before {
    top: min(2.8550512445vw, 39px);
    width: min(3.3674963397vw, 46px);
    height: min(0.0732064422vw, 1px);
  }
}
.concept .point .item-content .item-ttl {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.68;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-bottom: 5px;
}
@media screen and (min-width:768px) {
  .concept .point .item-content .item-ttl {
    font-size: min(1.317715959vw, 18px);
    line-height: 1.72;
    text-align: center;
    margin-bottom: min(0.5124450952vw, 7px);
  }
}
.concept .point .item-content .item-txt {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .concept .point .item-content .item-txt {
    font-size: min(1.0980966325vw, 15px);
    line-height: 1.6;
  }
}

.howToUse .inner--howToUse {
  padding: 112px 0 100px;
}
@media screen and (min-width:768px) {
  .howToUse .inner--howToUse {
    padding: min(11.7130307467vw, 160px) min(2.3426061493vw, 32px) min(11.7130307467vw, 160px);
  }
}
.howToUse h2.underSection__ttl {
  margin-bottom: 48px;
}
@media screen and (min-width:768px) {
  .howToUse h2.underSection__ttl {
    margin-bottom: min(2.635431918vw, 36px);
  }
}
.howToUse .content__area li {
  margin-bottom: 65px;
}
@media screen and (min-width:768px) {
  .howToUse .content__area li {
    margin-bottom: min(3.2942898975vw, 45px);
  }
}
.howToUse .content__area li:last-child {
  margin-bottom: 0;
}
.howToUse .content__area h3.use__ttl {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.68;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  gap: 7px;
  margin-bottom: 5px;
}
@media screen and (min-width:768px) {
  .howToUse .content__area h3.use__ttl {
    font-size: min(1.317715959vw, 18px);
    line-height: 1.72;
    gap: min(1.1713030747vw, 16px);
    margin-bottom: min(0.439238653vw, 6px);
  }
}
.howToUse .content__area h3.use__ttl span {
  font-size: 48px;
  font-weight: 400;
  color: #BFD6C8;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-family: "Optima", "classico-urw", sans-serif;
  margin-top: -5px;
}
@media screen and (min-width:768px) {
  .howToUse .content__area h3.use__ttl span {
    font-size: min(3.513909224vw, 48px);
    line-height: 1.2;
    margin-top: 0;
  }
}
.howToUse .content__area .item-content {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
@media screen and (min-width:768px) {
  .howToUse .content__area .item-content {
    flex-direction: row;
    gap: min(3.513909224vw, 48px);
  }
}
.howToUse .content__area .item__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:768px) {
  .howToUse .content__area .item__img img {
    width: min(34.4070278184vw, 470px);
    height: min(21.5226939971vw, 294px);
  }
}
.howToUse .content__area .item-txtcontent .txt {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
@media screen and (min-width:768px) {
  .howToUse .content__area .item-txtcontent .txt {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.5;
    margin-bottom: min(0.9516837482vw, 13px);
  }
}
.howToUse .content__area .item-txtcontent .list__ttl {
  font-size: 15px;
  font-weight: 500;
  color: #87B599;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}
@media screen and (min-width:768px) {
  .howToUse .content__area .item-txtcontent .list__ttl {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.5;
    margin-bottom: min(0.3660322108vw, 5px);
  }
}
.howToUse .content__area .item-txtcontent dl.list01 {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 3px 0;
  margin-bottom: 13px;
}
@media screen and (min-width:768px) {
  .howToUse .content__area .item-txtcontent dl.list01 {
    grid-template-columns: min(11.0541727672vw, 151px) 1fr;
    gap: min(0.2928257687vw, 4px) 0;
    margin-bottom: min(0.9516837482vw, 13px);
  }
}
.howToUse .content__area .item-txtcontent dl.list01 dt {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding: 7px 0 6px;
  background: #87B599;
}
@media screen and (min-width:768px) {
  .howToUse .content__area .item-txtcontent dl.list01 dt {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.5;
    padding: min(0.3660322108vw, 5px) 0;
  }
}
.howToUse .content__area .item-txtcontent dl.list01 dd {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding: 7px 16px 6px;
  background: #EFF4F1;
}
@media screen and (min-width:768px) {
  .howToUse .content__area .item-txtcontent dl.list01 dd {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.5;
    padding: min(0.3660322108vw, 5px) min(1.1713030747vw, 16px);
  }
}
.howToUse .content__area .item-txtcontent dl.list02 dt {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  gap: 12px;
  margin-bottom: 3px;
}
@media screen and (min-width:768px) {
  .howToUse .content__area .item-txtcontent dl.list02 dt {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.5;
    gap: min(0.7320644217vw, 10px);
    margin-bottom: 0;
  }
}
.howToUse .content__area .item-txtcontent dl.list02 dt::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #87B599;
}
@media screen and (min-width:768px) {
  .howToUse .content__area .item-txtcontent dl.list02 dt::before {
    width: min(1.1713030747vw, 16px);
    height: min(1.1713030747vw, 16px);
  }
}
.howToUse .content__area .item-txtcontent dl.list02 dd {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}
@media screen and (min-width:768px) {
  .howToUse .content__area .item-txtcontent dl.list02 dd {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.5;
    margin-bottom: min(0.6588579795vw, 9px);
  }
}
.howToUse .content__area .item-txtcontent .caution {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .howToUse .content__area .item-txtcontent .caution {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.5;
  }
}

.productSpecifications {
  background: #BFD6C8;
}
.productSpecifications .inner--productSpecifications {
  padding: 49px 0 110px;
}
@media screen and (min-width:768px) {
  .productSpecifications .inner--productSpecifications {
    padding: min(8.9311859444vw, 122px) min(2.3426061493vw, 32px) min(11.7130307467vw, 160px);
  }
}
.productSpecifications .content__area {
  background: #fff;
  border: 1px solid #707070;
  padding: 42px 31px 80px;
}
@media screen and (min-width:768px) {
  .productSpecifications .content__area {
    padding: min(5.6368960469vw, 77px) min(6.8814055637vw, 94px) min(7.027818448vw, 96px);
    border: min(0.0732064422vw, 1px) solid #707070;
  }
}
.productSpecifications .content__area .productSpecifications__ttl {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.72;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-bottom: 24px;
}
@media screen and (min-width:768px) {
  .productSpecifications .content__area .productSpecifications__ttl {
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.7;
    margin-bottom: min(3.0014641288vw, 41px);
  }
}
.productSpecifications .content__area dl {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 46px;
}
@media screen and (min-width:768px) {
  .productSpecifications .content__area dl {
    grid-template-columns: min(11.1273792094vw, 152px) 1fr;
    margin-bottom: min(5.8565153734vw, 80px);
  }
}
.productSpecifications .content__area dt {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-bottom: none;
  padding: 13px 0 0 9px;
}
@media screen and (min-width:768px) {
  .productSpecifications .content__area dt {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.68;
    text-align: center;
    padding: min(1.3909224012vw, 19px) 0 min(1.2445095168vw, 17px);
    border-bottom: min(0.0732064422vw, 1px) solid #8E8E8E;
  }
}
.productSpecifications .content__area dt:first-child {
  border-top: 1px solid #8E8E8E;
}
@media screen and (min-width:768px) {
  .productSpecifications .content__area dt:first-child {
    border-top: min(0.0732064422vw, 1px) solid #8E8E8E;
  }
}
.productSpecifications .content__area dd {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #8E8E8E;
  padding: 1px 0 12px 9px;
}
@media screen and (min-width:768px) {
  .productSpecifications .content__area dd {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.68;
    padding: min(1.3909224012vw, 19px) 0 min(1.2445095168vw, 17px) min(3.7335285505vw, 51px);
    border-bottom: min(0.0732064422vw, 1px) solid #8E8E8E;
  }
}
.productSpecifications .content__area dd:first-of-type {
  border-top: none;
}
@media screen and (min-width:768px) {
  .productSpecifications .content__area dd:first-of-type {
    border-top: min(0.0732064422vw, 1px) solid #8E8E8E;
  }
}
.productSpecifications .content__area .productSpecifications__btn .productSpecifications__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  background: #87B599;
  border-radius: 4px;
  width: 235px;
  height: 48px;
  margin: auto;
}
@media screen and (min-width:768px) {
  .productSpecifications .content__area .productSpecifications__btn .productSpecifications__link {
    font-size: min(1.0248901903vw, 14px);
    line-height: 2.28;
    border-radius: min(0.2928257687vw, 4px);
    width: min(17.2035139092vw, 235px);
    height: min(3.513909224vw, 48px);
  }
}
.productSpecifications .content__area .productSpecifications__btn .productSpecifications__link span {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .productSpecifications .content__area .productSpecifications__btn .productSpecifications__link span {
    gap: min(0.7320644217vw, 10px);
  }
}
.productSpecifications .content__area .productSpecifications__btn .productSpecifications__link span::before {
  content: "";
  display: inline-block;
  background: url(../../assets/img/common/icon_dl.png) no-repeat center center/contain;
  width: 18px;
  height: 18px;
}
@media screen and (min-width:768px) {
  .productSpecifications .content__area .productSpecifications__btn .productSpecifications__link span::before {
    width: min(1.317715959vw, 18px);
    height: min(1.317715959vw, 18px);
  }
}

.newsList {
  background: url(../../assets/img/news/bg_line_sp.png) no-repeat center bottom 60px/contain;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .newsList {
    background: url(../../assets/img/news/bg_line_pc.png) no-repeat center bottom min(5.8565153734vw, 80px)/contain;
    background-color: #fff;
  }
}
.newsList .inner--newsList {
  padding: 62px 0 110px;
}
@media screen and (min-width:768px) {
  .newsList .inner--newsList {
    padding: min(8.1991215227vw, 112px) min(2.3426061493vw, 32px) min(13.4699853587vw, 184px);
  }
}
.newsList h2.underSection__ttl {
  margin-bottom: 13px;
}
@media screen and (min-width:768px) {
  .newsList h2.underSection__ttl {
    margin-bottom: min(1.3909224012vw, 19px);
  }
}
.newsList h2.underSection__ttl span {
  font-size: 12px;
}
@media screen and (min-width:768px) {
  .newsList h2.underSection__ttl span {
    font-size: min(1.0248901903vw, 14px);
  }
}
.newsList .category__items {
  margin-bottom: 72px;
}
@media screen and (min-width:768px) {
  .newsList .category__items {
    margin-bottom: min(5.8565153734vw, 80px);
  }
}
.newsList .category__items li {
  display: inline-block;
  margin-right: 6px;
}
@media screen and (min-width:768px) {
  .newsList .category__items li {
    margin-right: min(1.9765739385vw, 27px);
  }
}
.newsList .category__items a {
  font-size: 14px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .newsList .category__items a {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.5;
  }
}
.newsList .content__area ul {
  margin-bottom: 65px;
}
@media screen and (min-width:768px) {
  .newsList .content__area ul {
    margin-bottom: min(4.7584187408vw, 65px);
  }
}
.newsList .content__area li {
  margin-bottom: 30px;
  padding-bottom: 27px;
  border-bottom: 1px solid #333;
}
@media screen and (min-width:768px) {
  .newsList .content__area li {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.newsList .content__area li a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .newsList .content__area li a {
    flex-direction: row;
    gap: min(1.0980966325vw, 15px);
    padding: min(1.8301610542vw, 25px) 0 min(1.5373352855vw, 21px);
  }
}
.newsList .content__area .news__meta {
  display: flex;
  gap: 15px;
}
@media screen and (min-width:768px) {
  .newsList .content__area .news__meta {
    gap: min(2.196193265vw, 30px);
  }
}
.newsList .content__area .news__meta time {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.71;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  transition: 0.3s;
}
@media screen and (min-width:768px) {
  .newsList .content__area .news__meta time {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.68;
  }
}
.newsList .content__area .news__meta .category-name {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  line-height: 1.66;
  letter-spacing: 0.02em;
  background: #BFD6C8;
  padding: 0 16px;
  width: -moz-max-content;
  width: max-content;
  height: 26px;
}
@media screen and (min-width:768px) {
  .newsList .content__area .news__meta .category-name {
    font-size: min(1.0248901903vw, 14px);
    line-height: 1.71;
    height: min(1.9033674963vw, 26px);
    padding: 0 min(0.9516837482vw, 13px);
  }
}
.newsList .content__area .ttl {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.02em;
  transition: 0.3s;
}
@media screen and (min-width:768px) {
  .newsList .content__area .ttl {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.68;
  }
}
.newsList .content__area a:hover .ttl,
.newsList .content__area a:hover time {
  color: #BFD6C8;
}

.newsContent {
  background: #EFF4F1;
}
.newsContent .inner--newsContent {
  padding: 62px 0 110px;
}
@media screen and (min-width:768px) {
  .newsContent .inner--newsContent {
    padding: min(5.8565153734vw, 80px) min(2.3426061493vw, 32px) min(11.7130307467vw, 160px);
  }
}
.newsContent article {
  padding: 50px 31px 80px;
  background: #fff;
}
@media screen and (min-width:768px) {
  .newsContent article {
    padding: min(5.8565153734vw, 80px) min(5.8565153734vw, 80px) min(8.1991215227vw, 112px);
  }
}
.newsContent article h2 {
  font-size: 16px;
  font-weight: 500;
  color: #87B599;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  border-bottom: 2px solid #87B599;
}
@media screen and (min-width:768px) {
  .newsContent article h2 {
    font-size: 18px;
    line-height: 1.333;
    margin-bottom: 30px;
    border-bottom: min(0.1464128843vw, 2px) solid #87B599;
  }
}
.newsContent article h3 {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
}
@media screen and (min-width:768px) {
  .newsContent article h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}
.newsContent article p {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
  min-height: 1.6rem;
}
.newsContent .btn__block {
  text-align: center;
  max-width: 387px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (min-width:768px) {
  .newsContent .btn__block {
    margin-top: min(5.4904831625vw, 75px);
  }
}
.newsContent .btn__block a {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .newsContent .btn__block a {
    font-size: 16px;
    line-height: 1.4;
  }
}
.newsContent .btn__block .prev__btn {
  float: left;
}
.newsContent .btn__block .next__btn {
  float: right;
}

.policy {
  background: url(../../assets/img/privacyPolicy/bg_line_sp.png) no-repeat center bottom 50px/contain;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .policy {
    background: url(../../assets/img/privacyPolicy/bg_line_pc.png) no-repeat center bottom min(5.8565153734vw, 80px)/contain;
    background-color: #fff;
  }
}
.policy .inner--policy {
  padding: 0 0 110px;
}
@media screen and (min-width:768px) {
  .policy .inner--policy {
    padding: 0 min(2.3426061493vw, 32px) min(15.7393850659vw, 215px);
  }
}
.policy .first__content {
  position: relative;
  padding: 73px 0 75px;
}
@media screen and (min-width:768px) {
  .policy .first__content {
    padding: min(7.6866764275vw, 105px) 0 min(5.4904831625vw, 75px);
  }
}
.policy .first__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #EDF2EF;
  z-index: -1;
}
.policy .first__content .ttl {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
@media screen and (min-width:768px) {
  .policy .first__content .ttl {
    font-size: min(1.317715959vw, 18px);
    line-height: 1.333;
    margin-bottom: min(1.1713030747vw, 16px);
  }
}
.policy .first__content .txt {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .policy .first__content .txt {
    font-size: min(1.1713030747vw, 16px);
  }
}
.policy .second__content {
  padding: 61px 0 0;
}
@media screen and (min-width:768px) {
  .policy .second__content {
    padding: min(5.710102489vw, 78px) 0 0;
  }
}
.policy .second__content .ttl {
  font-size: 15px;
  font-weight: 500;
  color: #87B599;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #BFD6C8;
}
@media screen and (min-width:768px) {
  .policy .second__content .ttl {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.5;
    margin-bottom: min(1.3909224012vw, 19px);
    padding-bottom: min(0.8052708638vw, 11px);
    border-bottom: min(0.0732064422vw, 1px) solid #BFD6C8;
  }
}
.policy .second__content .txt {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
@media screen and (min-width:768px) {
  .policy .second__content .txt {
    font-size: min(1.1713030747vw, 16px);
    margin-bottom: min(4.1727672035vw, 57px);
  }
}
.policy .second__content .txt:last-child {
  margin-bottom: 0;
}
.policy .second__content .txt span {
  display: block;
}
@media screen and (min-width:768px) {
  .policy .second__content .txt span {
    margin-top: min(0.5856515373vw, 8px);
  }
}

.contactSelect .inner--contactSelect {
  padding: 57px 0 41px;
}
@media screen and (min-width:768px) {
  .contactSelect .inner--contactSelect {
    padding: min(9.0043923865vw, 123px) min(2.3426061493vw, 32px) min(4.5387994143vw, 62px);
  }
}
.contactSelect .content__area .faqBtn__txt {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
@media screen and (min-width:768px) {
  .contactSelect .content__area .faqBtn__txt {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.5;
    margin-bottom: min(3.2942898975vw, 45px);
  }
}
.contactSelect .content__area .faqBtn__txt a {
  color: #87B599;
  text-decoration: underline;
}
.contactSelect .faqBtn__block {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 144px;
  overflow: hidden;
  margin-bottom: 113px;
  border-radius: 10px;
}
@media screen and (min-width:768px) {
  .contactSelect .faqBtn__block {
    width: 100%;
    height: min(12.1522693997vw, 166px);
    margin-bottom: min(11.7130307467vw, 160px);
    border-radius: min(0.7320644217vw, 10px);
  }
}
.contactSelect .faqBtn__block a,
.contactSelect .faqBtn__block .en,
.contactSelect .faqBtn__block .jp {
  color: #fff;
}
.contactSelect .faqBtn__block .arrow {
  border-color: #fff;
}
.contactSelect .faqBtn__block a.link__btn {
  width: 100%;
  height: 100%;
  padding: 0 0 0 32px;
}
@media screen and (min-width:768px) {
  .contactSelect .faqBtn__block a.link__btn {
    gap: min(5.7833089312vw, 79px);
    padding: 0 0 0 min(5.8565153734vw, 80px);
  }
}
.contactSelect .faqBtn__block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  z-index: -1;
}
.contactSelect .faqBtn__block:hover.faqBtn__block::before {
  transform: scale(1.05);
}
.contactSelect .faqBtn__block::before {
  background: url(../../assets/img/contact/fag_bg_sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .contactSelect .faqBtn__block::before {
    background: url(../../assets/img/contact/fag_bg_pc.jpg) no-repeat center center/cover;
  }
}
.contactSelect .contactSelect__list01 {
  display: flex;
  flex-direction: column;
  margin-bottom: 93px;
}
@media screen and (min-width:768px) {
  .contactSelect .contactSelect__list01 {
    flex-direction: row;
    gap: min(6.4421669107vw, 88px);
    margin-bottom: min(10.2489019034vw, 140px);
  }
}
.contactSelect .contactSelect__list01 h2.underSection__ttl {
  margin-bottom: 22px;
}
@media screen and (min-width:768px) {
  .contactSelect .contactSelect__list01 h2.underSection__ttl {
    margin-bottom: min(6.149341142vw, 84px);
  }
}
.contactSelect .contactSelect__list01 .textarea {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
@media screen and (min-width:768px) {
  .contactSelect .contactSelect__list01 .textarea {
    gap: min(1.4641288433vw, 20px);
    margin-top: max(-0.3660322108vw, -5px);
  }
}
.contactSelect .contactSelect__list01 .textarea p {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .contactSelect .contactSelect__list01 .textarea p {
    font-size: min(1.1713030747vw, 16px);
  }
}
.contactSelect .contactSelect__list02 {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 0;
}
@media screen and (min-width:768px) {
  .contactSelect .contactSelect__list02 {
    flex-direction: row;
    gap: min(4.6120058565vw, 63px);
    margin-bottom: 0;
  }
}
.contactSelect .contactSelect__list02 h2.underSection__ttl {
  margin-bottom: 0;
}
.contactSelect .contactSelect__list02 .textarea {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media screen and (min-width:768px) {
  .contactSelect .contactSelect__list02 .textarea {
    gap: min(1.4641288433vw, 20px);
    margin-top: max(-0.3660322108vw, -5px);
  }
}
.contactSelect .contactSelect__list02 .textarea p {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .contactSelect .contactSelect__list02 .textarea p {
    font-size: min(1.1713030747vw, 16px);
  }
}

.contactForm {
  background: #BFD6C8;
}
.contactForm .inner--contactForm {
  padding: 82px 0 102px;
}
@media screen and (min-width:768px) {
  .contactForm .inner--contactForm {
    padding: min(9.3704245974vw, 128px) min(2.3426061493vw, 32px) min(11.7130307467vw, 160px);
  }
}
.contactForm .content__area {
  background: #fff;
  padding: 27px 33px 64px;
}
@media screen and (min-width:768px) {
  .contactForm .content__area {
    padding: min(5.3440702782vw, 73px) min(6.8081991215vw, 93px) min(9.3704245974vw, 128px);
  }
}
.contactForm .contactForm__ttl {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-bottom: 50px;
}
@media screen and (min-width:768px) {
  .contactForm .contactForm__ttl {
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.7;
    margin-bottom: min(3.0014641288vw, 41px);
  }
}
.contactForm .first__items {
  border-top: 1px solid #8E8E8E;
}
.contactForm .form__items {
  padding: 30px 0 30px;
  border-bottom: 1px solid #8E8E8E;
}
@media screen and (min-width:768px) {
  .contactForm .form__items {
    padding: min(2.1229868228vw, 29px) min(3.3674963397vw, 46px) min(2.8550512445vw, 39px);
    border-bottom: min(0.0732064422vw, 1px) solid #8E8E8E;
  }
}
.contactForm .form__items .form__item-header {
  margin-bottom: 13px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-header {
    margin-bottom: min(1.5373352855vw, 21px);
  }
}
.contactForm .form__items .form__item-header span {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.733;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-header span {
    font-size: min(1.1713030747vw, 16px);
    line-height: 1.68;
  }
}
.contactForm .form__items .form__item-header .required {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.16em;
  background: #CB3737;
  border-radius: 2px;
  height: 19px;
  padding: 0 9px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-header .required {
    font-size: min(0.9516837482vw, 13px);
    line-height: 1.76;
    height: min(1.3909224012vw, 19px);
    padding: 0 min(0.6588579795vw, 9px);
  }
}
.contactForm .form__items .form__item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body {
    flex-direction: row;
    gap: 0;
  }
}
.contactForm .form__items .form__item-body span {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body span {
    font-size: min(1.0980966325vw, 15px);
    line-height: 1.5;
  }
}
.contactForm .form__items .form__item-body .caution {
  font-size: 13px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.84;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body .caution {
    font-size: min(1.0980966325vw, 15px);
    line-height: 1.5;
  }
}
.contactForm .form__items .form__item-body .form__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body .form__item {
    gap: min(2.196193265vw, 30px);
  }
}
.contactForm .form__items .form__item-body input {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 0 8px;
  border: 1px solid #9FC0C7;
  border-radius: 3px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body input {
    font-size: min(1.0980966325vw, 15px);
    line-height: 1.5;
    padding: 0 min(0.5856515373vw, 8px);
    border: min(0.0732064422vw, 1px) solid #9FC0C7;
    border-radius: min(0.2196193265vw, 3px);
  }
}
.contactForm .form__items .form__item-body textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #9FC0C7;
  border-radius: 3px;
  padding: 10px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body textarea {
    height: min(14.6412884334vw, 200px);
    border: min(0.0732064422vw, 1px) solid #9FC0C7;
    border-radius: min(0.2196193265vw, 3px);
    padding: min(0.7320644217vw, 10px);
  }
}
.contactForm .form__items .form__item-body select {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 0 8px;
  border: 1px solid #9FC0C7;
  border-radius: 3px;
  background: #fff;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body select {
    font-size: min(1.0980966325vw, 15px);
    line-height: 1.5;
    padding: 0 min(0.5856515373vw, 8px);
    border: min(0.0732064422vw, 1px) solid #9FC0C7;
    border-radius: min(0.2196193265vw, 3px);
  }
}
.contactForm .form__items .form__item-body input[type=checkbox] {
  width: 22px;
  height: 22px;
  color: #87B599;
  border: 1px solid #87B599;
  margin-left: -29px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body input[type=checkbox] {
    width: min(2.196193265vw, 30px);
    height: min(2.196193265vw, 30px);
    margin-left: 0;
  }
}
.contactForm .form__items .form__item-body input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contactForm .form__items .form__item-body input::-moz-placeholder, .contactForm .form__items .form__item-body textarea::-moz-placeholder {
  color: #E3E3E3;
}
.contactForm .form__items .form__item-body input::placeholder,
.contactForm .form__items .form__item-body textarea::placeholder {
  color: #E3E3E3;
}
.contactForm .form__items .form__item-body .color-green {
  color: #87B599;
}
.contactForm .form__items .form__item-body .ttl {
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body .ttl {
    width: min(2.3426061493vw, 32px);
  }
}
.contactForm .form__items .form__item-body .acceptance__item {
  padding-left: 17px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body .acceptance__item {
    padding-left: 0;
  }
}
.contactForm .form__items .form__item-body .w-100 {
  display: block;
  width: 100%;
}
.contactForm .form__items .form__item-body .w-189 {
  width: 189px;
  height: 40px;
  padding: 10px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body .w-189 {
    width: min(13.8360175695vw, 189px);
    height: min(2.9282576867vw, 40px);
    padding: min(0.7320644217vw, 10px);
  }
}
.contactForm .form__items .form__item-body .w-224 {
  max-width: 224px;
  width: 100%;
  height: 40px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body .w-224 {
    width: min(16.3982430454vw, 224px);
    height: min(2.9282576867vw, 40px);
  }
}
.contactForm .form__items .form__item-body .w-320 {
  max-width: 320px;
  width: 100%;
  height: 40px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body .w-320 {
    width: min(23.4260614934vw, 320px);
    height: min(2.9282576867vw, 40px);
  }
}
.contactForm .form__items .form__item-body--email {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body--email {
    gap: min(1.1713030747vw, 16px);
  }
}
.contactForm .form__items .form__item-body--email .form__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (min-width:768px) {
  .contactForm .form__items .form__item-body--email .form__item {
    gap: min(0.7320644217vw, 10px);
  }
}
.contactForm .btn__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 60px;
}
@media screen and (min-width:768px) {
  .contactForm .btn__block {
    gap: min(1.756954612vw, 24px);
    margin-top: min(5.8565153734vw, 80px);
  }
}
.contactForm .btn__block .btn__confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.02em;
  margin: auto;
  width: 235px;
  height: 48px;
  background: #87B599;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .contactForm .btn__block .btn__confirm {
    font-size: min(1.1713030747vw, 16px);
    width: min(17.2035139092vw, 235px);
    height: min(3.513909224vw, 48px);
    border-radius: min(0.2928257687vw, 4px);
  }
}

.wpcf7-not-valid-tip {
  color: #CB3737 !important;
}

label {
  cursor: pointer;
}

.confirm {
  background: #BFD6C8;
}
.confirm .inner--contactFormAfter {
  padding: 107px 0 112px;
}
@media screen and (min-width:768px) {
  .confirm .inner--contactFormAfter {
    padding: min(10.2489019034vw, 140px) min(2.3426061493vw, 32px) min(11.7130307467vw, 160px);
  }
}
.confirm .contactFormAfter__content {
  padding: 61px 34px 70px;
  background: #fff;
}
@media screen and (min-width:768px) {
  .confirm .contactFormAfter__content {
    padding: min(5.8565153734vw, 80px) min(5.8565153734vw, 80px) min(8.0527086384vw, 110px);
  }
}
.confirm .contactFormAfter__ttl {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 44px;
}
@media screen and (min-width:768px) {
  .confirm .contactFormAfter__ttl {
    font-size: min(1.4641288433vw, 20px);
    line-height: 1.2;
    margin-bottom: min(4.4655929722vw, 61px);
  }
}
.confirm dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  margin-bottom: 64px;
  padding: 39px 0 21px;
  border-top: 1px solid #8E8E8E;
  border-bottom: 1px solid #8E8E8E;
}
@media screen and (min-width:768px) {
  .confirm dl {
    grid-template-columns: min(20.8638360176vw, 285px) 1fr;
    gap: min(0.9516837482vw, 13px) 0;
    padding: min(3.1478770132vw, 43px) min(3.513909224vw, 48px) min(3.1478770132vw, 43px);
    margin-bottom: min(4.6852122987vw, 64px);
  }
}
.confirm dl dt {
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.733;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .confirm dl dt {
    font-size: min(1.0980966325vw, 15px);
    line-height: 1.733;
  }
}
.confirm dl dd {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media screen and (min-width:768px) {
  .confirm dl dd {
    font-size: min(1.0980966325vw, 15px);
    line-height: 1.56;
    margin-bottom: 0;
  }
}
.confirm .btn__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width:768px) {
  .confirm .btn__block {
    gap: min(1.756954612vw, 24px);
  }
}
.confirm .btn__block input[type=button],
.confirm .btn__block input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.02em;
  margin: auto;
  width: 235px;
  height: 48px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .confirm .btn__block input[type=button],
  .confirm .btn__block input[type=submit] {
    font-size: min(1.1713030747vw, 16px);
    width: min(17.2035139092vw, 235px);
    height: min(3.513909224vw, 48px);
    border-radius: min(0.2928257687vw, 4px);
  }
}
.confirm .btn__block .back__btn {
  background: #8E8E8E;
}
.confirm .btn__block .send__btn {
  background: #87B599;
}

.completion {
  background: #BFD6C8;
}
.completion .inner--contactFormAfter {
  padding: 107px 0 112px;
}
@media screen and (min-width:768px) {
  .completion .inner--contactFormAfter {
    padding: min(10.2489019034vw, 140px) min(2.3426061493vw, 32px) min(11.7130307467vw, 160px);
  }
}
.completion .contactFormAfter__content {
  padding: 58px 0 63px;
  background: #fff;
}
@media screen and (min-width:768px) {
  .completion .contactFormAfter__content {
    padding: min(5.4172767204vw, 74px) 0 min(5.8565153734vw, 80px);
  }
}
.completion .contactFormAfter__ttl {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-family: YuMincho, "Yu Mincho", serif;
  margin-bottom: 22px;
}
@media screen and (min-width:768px) {
  .completion .contactFormAfter__ttl {
    font-size: min(1.4641288433vw, 20px);
    margin-bottom: min(1.4641288433vw, 20px);
  }
}
.completion .contactFormAfter__txt {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 45px;
}
@media screen and (min-width:768px) {
  .completion .contactFormAfter__txt {
    font-size: min(1.1713030747vw, 16px);
    margin-bottom: min(3.2942898975vw, 45px);
  }
}
.completion .btn__block a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.02em;
  margin: auto;
  width: 235px;
  height: 48px;
  background: #87B599;
  border-radius: 4px;
}
@media screen and (min-width:768px) {
  .completion .btn__block a {
    font-size: min(1.1713030747vw, 16px);
    width: min(17.2035139092vw, 235px);
    height: min(3.513909224vw, 48px);
    border-radius: min(0.2928257687vw, 4px);
  }
}

@media screen and (min-width:768px) {
  .sp-inlineblock {
    display: inline-block !important;
  }
}
@media screen and (max-width:767px) {
  .sp-inlineblock {
    display: none !important;
  }
}

@media screen and (min-width:768px) {
  .sp-block {
    display: none !important;
  }
}
@media screen and (max-width:767px) {
  .sp-block {
    display: block !important;
  }
}

@media screen and (max-width:767px) {
  .sp-inlineblocknone {
    display: inline-block !important;
  }
}
@media screen and (min-width:768px) {
  .sp-inlineblocknone {
    display: none !important;
  }
}

@media screen and (max-width:767px) {
  .sp-none {
    display: none !important;
  }
}
@media screen and (min-width:768px) {
  .sp-none {
    display: block !important;
  }
}/*# sourceMappingURL=style.css.map */