@charset "UTF-8";



.body {
  color: #000;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.only-pc {
  display: block;
}

.only-sp {
  display: none;
}

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

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

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 100%;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #000;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/*
contact-form
----------------------------------------*/
.contact-form {
  margin: 0 auto;
  border: 2px solid #5C9D82;
  border-radius: .625rem;
  max-width: 1000px;
  overflow: hidden;
}

.contact-form__header {
  background-color: #5C9D82;
  padding: 9px 20px;
  padding: .5625rem 1.25rem;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.contact-form__body {
  background-color: #fff;
  padding: 58px 75px 65px;
  padding: 3.625rem 4.6875rem 4.0625rem;
}

.contact-form__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*
item / label
----------------------------------------*/
.contact-form__input-lists {
  gap: 38px;
  gap: 2.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 58px;
  margin-top: 3.625rem;
}

.contact-form__input-lists .contact-form__label {
  margin-bottom: 15px;
  margin-bottom: .9375rem;
}

.contact-form__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-form__label {
  gap: 10px 12px;
  gap: .625rem .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-form__required {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 1.25rem;
  background-color: #E34D0A;
  padding: 4px 14px;
  padding: .25rem .875rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
  letter-spacing: .3em;
  white-space: nowrap;
}

.contact-form__label-text {
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.contact-form__label-note {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .08em;
}

/*
radio
----------------------------------------*/
.contact-form__radio-group .wpcf7-radio {
  gap: 14px;
  gap: .875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.contact-form__radio-group span.wpcf7-list-item {
  display: block;
  margin: 0;
}

.contact-form__radio-group label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  cursor: pointer;
  border: 1px solid #d9d9d9;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  min-height: 60px;
  min-height: 3.75rem;
}

.contact-form__radio-group label input[type=radio] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  cursor: pointer;
  margin: 0 14px 0 0;
  margin: 0 .875rem 0 0;
  border: 2px solid #c6c6c6;
  border-radius: 50%;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}

.contact-form__radio-group label input[type=radio]:checked {
  border-color: #5C9D82;
}

.contact-form__radio-group label input[type=radio]:checked::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #5C9D82;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  content: '';
}

.contact-form__radio-group label input[type=radio]:focus-visible {
  outline: 2px solid #29BE9C;
  outline-offset: 2px;
}

.contact-form__radio-group label span.wpcf7-list-item-label {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .08em;
}

/*
date
----------------------------------------*/
.contact-form__date-item {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.contact-form__date-group {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding: 0 46px;
  padding: 0 2.875rem;
}

.contact-form__date-row {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.contact-form__date-label {
  gap: 21px;
  gap: 1.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 110px;
  min-width: 6.875rem;
}

.contact-form__date-num {
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.contact-form__date-fields {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.contact-form__date-wrap .wpcf7-form-control-wrap {
  display: block;
}

.contact-form__time-wrap .contact-form__select {
  padding: 16.5px 35px 16.5px 14px;
  padding: 1.03125rem 2.1875rem 1.03125rem .875rem;
  width: 279px;
  width: 17.4375rem;
  height: 68px;
  height: 4.25rem;
}

.contact-form__time-wrap .wpcf7-form-control-wrap {
  display: block;
}

.contact-form__date {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  background-color: #fff;
  padding: 33px 14px;
  padding: 2.0625rem .875rem;
  width: 100%;
  width: 279px;
  width: 17.4375rem;
  height: 55px;
  height: 3.4375rem;
  color: #000;
  font-size: 15px;
  font-size: .9375rem;
}

.contact-form__date:focus {
  outline: 2px solid #29BE9C;
  outline-offset: 0;
}

.contact-form__select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-position: right .75rem center;
  background-repeat: no-repeat;
  background-size: .75rem .5rem;
  padding: 10px 35px 10px 14px;
  padding: .625rem 2.1875rem .625rem .875rem;
  min-width: 130px;
  min-width: 8.125rem;
  height: 55px;
  height: 3.4375rem;
  color: #000;
  font-size: 15px;
  font-size: .9375rem;
}

.contact-form__select:focus {
  outline: 2px solid #29BE9C;
  outline-offset: 0;
}

/*
input / textarea
----------------------------------------*/
.contact-form__input-wrapper .wpcf7-form-control-wrap,
.contact-form__textarea-wrapper .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form__input {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-transition: background-color .3s, border-color .3s;
  transition: background-color .3s, border-color .3s;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: #eaeaea;
  padding: 16px 30px;
  padding: 1rem 1.875rem;
  width: 100%;
  height: 60px;
  height: 3.75rem;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
}

.contact-form__input::-webkit-input-placeholder {
  opacity: 1;
  color: #BEBEBE;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .08em;
}

.contact-form__input::-moz-placeholder {
  opacity: 1;
  color: #BEBEBE;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .08em;
}

.contact-form__input::-ms-input-placeholder {
  opacity: 1;
  color: #BEBEBE;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .08em;
}

.contact-form__input::placeholder {
  opacity: 1;
  color: #BEBEBE;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .08em;
}

.contact-form__input:focus {
  outline: none;
  border-color: #29BE9C;
  background-color: #fff;
}

.contact-form__input:not(:placeholder-shown) {
  border-color: #d9d9d9;
  background-color: #fff;
}

.contact-form__input.wpcf7-not-valid {
  border-color: #E34D0A;
}

.contact-form__textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-transition: background-color .3s, border-color .3s;
  transition: background-color .3s, border-color .3s;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: #eaeaea;
  padding: 15px 30px;
  padding: .9375rem 1.875rem;
  width: 100%;
  min-height: 170px;
  min-height: 10.625rem;
  resize: none;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}

.contact-form__textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #BEBEBE;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .08em;
}

.contact-form__textarea::-moz-placeholder {
  opacity: 1;
  color: #BEBEBE;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .08em;
}

.contact-form__textarea::-ms-input-placeholder {
  opacity: 1;
  color: #BEBEBE;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .08em;
}

.contact-form__textarea::placeholder {
  opacity: 1;
  color: #BEBEBE;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .08em;
}

.contact-form__textarea:focus {
  outline: none;
  border-color: #29BE9C;
  background-color: #fff;
}

.contact-form__textarea:not(:placeholder-shown) {
  border-color: #d9d9d9;
  background-color: #fff;
}

.contact-form__textarea.wpcf7-not-valid {
  border-color: #E34D0A;
}

/*
privacy
----------------------------------------*/
.contact-form__privacy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
  margin-top: 5rem;
}

.contact-form__privacy .wpcf7-acceptance {
  display: block;
}

.contact-form__privacy .wpcf7-list-item {
  display: block;
  margin: 0;
}

.contact-form__privacy .wpcf7-list-item label {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.contact-form__privacy input[type=checkbox] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: border-color .3s, background-color .3s;
  transition: border-color .3s, background-color .3s;
  cursor: pointer;
  border: 1px solid #C9C9C9;
  border-radius: 50%;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}

.contact-form__privacy input[type=checkbox]:checked {
  border-color: #5C9D82;
  background-color: #5C9D82;
}

.contact-form__privacy input[type=checkbox]:checked::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%) rotate(45deg);
  transform: translate(-50%, -60%) rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 7px;
  width: .4375rem;
  height: 12px;
  height: .75rem;
  content: '';
}

.contact-form__privacy input[type=checkbox]:focus-visible {
  outline: 2px solid #29BE9C;
  outline-offset: 2px;
}

.contact-form__privacy .wpcf7-list-item-label {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.contact-form__privacy-link {
  text-underline-offset: 2px;
  text-underline-offset: .125rem;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  color: #5C9D82;
  text-decoration: underline;
}

/*
submit
----------------------------------------*/
.contact-form__submit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.contact-form__button {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-transition: background-color .3s, border-color .3s, color .3s, opacity .3s;
  transition: background-color .3s, border-color .3s, color .3s, opacity .3s;
  cursor: not-allowed;
  border: 1px solid #CBCBCB;
  border-radius: .3125rem;
  background-color: transparent;
  width: 373px;
  width: 23.3125rem;
  height: 81px;
  height: 5.0625rem;
  color: #E5E5E5;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.contact-form__button:not(:disabled) {
  cursor: pointer;
  border-color: #29BE9C;
  background-color: #29BE9C;
  color: #fff;
}

/*
CF7 overrides
----------------------------------------*/
.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  margin-top: .375rem;
  color: #E34D0A;
  font-size: 13px;
  font-size: .8125rem;
}

.wpcf7-response-output {
  margin: 20px 0 0;
  margin: 1.25rem 0 0;
  border: 2px solid;
  padding: 15px 20px;
  padding: .9375rem 1.25rem;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .04em;
  text-align: center;
}

.wpcf7-response-output.wpcf7-validation-errors {
  border-color: #E34D0A;
  color: #E34D0A;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #5C9D82;
  color: #5C9D82;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0C4A6E;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #0C4A6E;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #000;
}

#toc_container .toc_list li::before {
  display: none;
  color: #0C4A6E;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #000;
}

/*
footer
----------------------------------------*/
.footer {
  padding: 28px 64px;
  padding: 1.75rem 4rem;
}

.footer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__logo-link {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  line-height: 0;
}

.footer__logo-figure {
  aspect-ratio: 301/46;
  margin: 0;
  width: 301px;
  width: 18.8125rem;
}

.footer__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__nav-list {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__nav-link {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  color: #222;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  text-decoration: none;
}

.footer__copyright {
  margin-top: 22px;
  margin-top: 1.375rem;
  color: #222;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-size: .75rem;
}

/*
fv
----------------------------------------*/
.fv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: #B8CEDC;
  padding: 20px;
  padding: 1.25rem;
  height: calc(100dvh - 76px);
  overflow: hidden;
}

.fv__slider {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.fv__slider .swiper-wrapper {
  height: 100%;
}

.fv__slider .swiper-slide {
  height: 100%;
}

.fv__slide-figure {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
}

.fv__slide-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.fv__image {
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 30;
  margin: 0;
  width: 31.25vw;
  max-width: 500px;
  pointer-events: none;
}

.fv__image-pc {
  aspect-ratio: 941/976;
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.fv__image-sp {
  aspect-ratio: 830/448;
  display: none;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.fv__label {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  border-top-right-radius: 10px;
  border-top-right-radius: .625rem;
  background-color: #3FA4C4;
  width: 151px;
  width: 9.4375rem;
  height: 50px;
  height: 3.125rem;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.fv__label-delta {
  aspect-ratio: 12/9;
  display: block;
  margin-top: 7px;
  margin-top: .4375rem;
  width: 12px;
  width: .75rem;
  height: auto;
}

.fv__image-note {
  position: absolute;
  right: 10px;
  right: .625rem;
  bottom: 8px;
  bottom: .5rem;
  z-index: 2;
  margin: 0;
  background-color: rgba(255, 255, 255, .85);
  padding: 3px 8px;
  padding: .1875rem .5rem;
  pointer-events: none;
  color: #524B40;
  font-size: 11px;
  font-size: .6875rem;
  letter-spacing: .02em;
}

/*
cta-sns
----------------------------------------*/
.cta-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 8%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 50;
}

.cta-sns__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #E5E5D8;
  background-color: #fff;
  width: 86px;
  width: 5.375rem;
  height: 60px;
  height: 3.75rem;
  color: #524B40;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
}

.cta-sns__link--instagram {
  border-top-left-radius: 10px;
  border-top-left-radius: .625rem;
}

.cta-sns__link--pinterest {
  border-bottom-left-radius: 10px;
  border-bottom-left-radius: .625rem;
}

/*
cta-buttons
----------------------------------------*/
.cta-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 30%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 130;
}

.cta-buttons__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.cta-buttons__btn--line {
  background-color: #29BE9C;
  width: 65px;
  width: 4.0625rem;
  height: 170px;
  height: 10.625rem;
  letter-spacing: .1em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
  text-orientation: upright;
}

.cta-buttons__btn--visit {
  background-color: #F0801C;
  width: 65px;
  width: 4.0625rem;
  height: 170px;
  height: 10.625rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .1em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*
cta-section
----------------------------------------*/
.cta-section {
  background-color: #66837B;
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
}

.cta-section__inner {
  margin: 0 auto;
}

.cta-section__title {
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}

.cta-section__title::before, .cta-section__title::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
  width: 35px;
  width: 2.1875rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.cta-section__title::before {
  left: -45px;
  left: -2.8125rem;
  rotate: 60deg;
}

.cta-section__title::after {
  right: -45px;
  right: -2.8125rem;
  rotate: 120deg;
}

.cta-wrapper-other .cta-buttons {
  gap: 54px;
  gap: 3.375rem;
  position: static;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 33px;
  margin-top: 2.0625rem;
}

.cta-button-line-wrapper,
.cta-button-reserve-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta-speech-bubble {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 80;
  border-radius: 1.5rem;
  padding: 5px 35px;
  padding: .3125rem 2.1875rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

.cta-speech-bubble::after {
  position: absolute;
  bottom: -6px;
  bottom: -.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.cta-speech-bubble--line {
  background-color: #fff;
  color: #29BE9C;
}

.cta-speech-bubble--line::after {
  border-top: 6px solid #fff;
}

.cta-speech-bubble--reserve {
  background-color: #F0801C;
  color: #fff;
}

.cta-speech-bubble--reserve::after {
  border-top: 6px solid #F0801C;
}

.cta-button {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
  margin-top: .625rem;
  border-radius: .625rem;
  padding: 31px 20px 18px;
  padding: 1.9375rem 1.25rem 1.125rem;
  width: 100%;
  width: 402px;
  width: 25.125rem;
  max-width: 402px;
  height: 100px;
  height: 6.25rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
}

.cta-button-line {
  background-color: #29BE9C;
  color: #fff;
}

.cta-button-reserve {
  background-color: #fff;
  color: #F0801C;
}

.cta-icon {
  aspect-ratio: 62/78;
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 28px;
  width: 1.75rem;
  height: auto;
}

.cta-button__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.cta-arrow {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 58%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 29px;
  width: 1.8125rem;
  height: auto;
}

/*
worry
----------------------------------------*/
.worry {
  background-color: #fff;
}

.worry::before {
  aspect-ratio: 370/90;
  display: block;
  margin: 0 auto;
  background-image: url('../img/deco-plants-top.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 370px;
  width: 23.125rem;
  content: '';
}

.worry::after {
  aspect-ratio: 1500/49;
  display: block;
  margin-top: 100px;
  margin-top: 6.25rem;
  background-image: url('../img/deco-worry-bottom-pc.webp');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  content: '';
}

.worry__title {
  margin-top: 50px;
  margin-top: 3.125rem;
  color: #524B40;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}

.worry__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px;
  padding: 0 1.875rem;
  width: 100%;
}

.worry__illust {
  margin: 0;
}

.worry__illust-img {
  aspect-ratio: 2370/494;
  margin-top: 50px;
  margin-top: 3.125rem;
  width: 1167px;
  width: 72.9375rem;
  max-width: 1167px;
  height: auto;
}

.worry__message {
  margin-top: 64px;
  margin-top: 4rem;
  border-top: 1px solid #3FA4C4;
  border-bottom: 1px solid #3FA4C4;
  padding: 28px 0;
  padding: 1.75rem 0;
  width: 100%;
  max-width: 1200px;
}

.worry__message .worry__message-text {
  margin: 0;
  color: #3FA4C4;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6538461538;
  text-align: center;
}

/*
support
----------------------------------------*/
.support {
  position: relative;
}

.support::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/support-bg-pc.webp) top center/100% auto repeat-y;
  width: 100%;
  height: 100%;
  content: '';
}

.support__sub {
  position: relative;
  z-index: 20;
  width: 100%;
}

.support__sub::before {
  aspect-ratio: 284/211;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/deco-support-left.webp) top left/contain no-repeat;
  width: 284px;
  width: 17.75rem;
  content: '';
}

.support__sub::after {
  aspect-ratio: 221/224;
  display: block;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/deco-support-right.webp) top left/contain no-repeat;
  width: 221px;
  width: 13.8125rem;
  content: '';
  content: '';
}

.support__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  padding: 120px 30px 106px;
  padding: 7.5rem 1.875rem 6.625rem;
  width: 100%;
  max-width: 1260px;
}

.support__title {
  color: #524B40;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}

.support__title span {
  display: block;
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 36px;
  font-size: 2.25rem;
  letter-spacing: .04em;
  line-height: 1.4166666667;
}

.support__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 56px;
  margin-top: 3.5rem;
  border-radius: .625rem;
  background-color: #FFFDFA;
  padding: 255px 100px 60px;
  padding: 15.9375rem 6.25rem 3.75rem;
  width: 100%;
}

.support__header {
  aspect-ratio: 1200/187;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 42px;
  padding-top: 2.625rem;
  width: 100%;
}

.support__header::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../img/support-wave-pc.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
}

.support__sub-header {
  position: relative;
  padding-top: 17px;
  padding-top: 1.0625rem;
}

.support__sub-header::before {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url('../img/icon-leaf.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  width: 1.5rem;
  content: '';
}

.support__sub-header-text {
  color: #D6E8E3;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
}

.support__header-text {
  position: relative;
  z-index: 10;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.support__item {
  gap: 30px;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.support__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.support__item:not(:first-child) {
  margin-top: 110px;
  margin-top: 6.875rem;
}

.support__item-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.support__item-no {
  position: relative;
  padding-left: 25px;
  padding-left: 1.5625rem;
  color: #5C9D82;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.support__item-no::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #5C9D82;
  width: 12px;
  width: .75rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.support__item-title {
  margin-top: 12px;
  margin-top: .75rem;
  color: #7F6A5A;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.625;
}

.support__item-text {
  margin-top: 10px;
  margin-top: .625rem;
  color: #524B40;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .02em;
  line-height: 2;
}

.support__item-right {
  aspect-ratio: 425/283;
  display: block;
  width: 425px;
  width: 26.5625rem;
  max-width: 425px;
  height: auto;
}

.support__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*
point
----------------------------------------*/
.point {
  margin-top: 38px;
  margin-top: 2.375rem;
  width: 100%;
}

.point__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #5C9D82;
  border-radius: .3125rem;
  background-color: #F6FDF7;
  padding: 40px 40px;
  padding: 2.5rem 2.5rem;
}

.point__title {
  margin: 0;
  color: #5C9D82;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.point__list {
  gap: 10px 45px;
  gap: .625rem 2.8125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 27px;
  margin-top: 1.6875rem;
  margin-left: 30px;
  margin-left: 1.875rem;
  padding: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  list-style: none;
}

.point__item {
  position: relative;
  padding-left: 22px;
  padding-left: 1.375rem;
  width: 275px;
  width: 17.1875rem;
  max-width: 275px;
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.point__item::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #5C9D82;
  width: 11px;
  width: .6875rem;
  height: 11px;
  height: .6875rem;
  content: '';
}

/*
consultation
----------------------------------------*/
.consultation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  border: 1px solid #5C9D82;
  border-radius: .3125rem;
  background-color: #F6FDF7;
  padding: 40px 30px;
  padding: 2.5rem 1.875rem;
  width: 100%;
}

.consultation__title {
  color: #5C9D82;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.consultation__list {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 30px;
  margin-top: 1.875rem;
  list-style: none;
}

.consultation__item {
  border: 1px solid #BCBCAB;
  border-radius: 2.125rem;
  background-color: #fff;
  padding: 12px 30px;
  padding: .75rem 1.875rem;
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.consultation__message {
  margin-top: 22px;
  margin-top: 1.375rem;
  color: #9F6940;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.consultation__divider {
  margin-top: 28px;
  margin-top: 1.75rem;
  background: repeating-linear-gradient(to right, #5C9D82 0, #5C9D82 2px, transparent 2px, transparent 4px);
  width: 100%;
  max-width: 820px;
  height: 1px;
}

.consultation__group {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 32px;
  margin-top: 2rem;
  width: 100%;
  max-width: 820px;
}

.consultation__left {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.consultation__left p {
  color: #524B40;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .02em;
  line-height: 2;
}

.consultation__right {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.consultation__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background-color: #958E71;
  width: 322px;
  width: 20.125rem;
  max-width: 322px;
  height: 56px;
  height: 3.5rem;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
}

.consultation__link span {
  position: relative;
}

.consultation__icon {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 54%;
  right: -30px;
  right: -1.875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14px;
  width: .875rem;
  height: auto;
}

/*
reform
----------------------------------------*/
.reform {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
}

.reform__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #5C9D82;
  border-radius: .3125rem;
  background-color: #F6FDF7;
  padding: 40px 50px;
  padding: 2.5rem 3.125rem;
}

.reform__grid {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.reform__figure {
  aspect-ratio: 210/147;
  margin: 0;
  overflow: hidden;
}

.reform__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.reform__caption {
  margin-top: 8px;
  margin-top: .5rem;
  color: #524B40;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-align: center;
}

.reform__title {
  margin-top: 60px;
  margin-top: 3.75rem;
  color: #5C9D82;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.reform__list {
  gap: 8px 20px;
  gap: .5rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  margin-top: 1.75rem;
  padding: 0;
  width: 100%;
  max-width: 850px;
  list-style: none;
}

.reform__list-item {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2.1875rem;
  background-color: #fff;
  padding: 14px 20px;
  padding: .875rem 1.25rem;
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.reform__check {
  aspect-ratio: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  width: 1.25rem;
  height: auto;
}

.reform__divider {
  margin-top: 28px;
  margin-top: 1.75rem;
  background: repeating-linear-gradient(to right, #5C9D82 0, #5C9D82 2px, transparent 2px, transparent 4px);
  width: 100%;
  max-width: 820px;
  height: 1px;
}

.reform__message {
  margin-top: 25px;
  margin-top: 1.5625rem;
  color: #9F6940;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

/*
difference
----------------------------------------*/
.difference {
  background-image: url('../img/difference-bg.webp');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 59px 20px;
  padding: 3.6875rem 1.25rem;
}

.difference__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.difference__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #958E71;
  border-radius: .625rem;
  background-color: #fff;
  padding: 70px 60px 67px;
  padding: 4.375rem 3.75rem 4.1875rem;
}

.sec-label {
  position: relative;
  padding-top: 17px;
  padding-top: 1.0625rem;
  text-align: center;
}

.sec-label::before {
  aspect-ratio: 18/20;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url('../img/icon-leaf-2.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  width: 1.375rem;
  content: '';
}

.sec-label__text {
  color: #5C9D82;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.difference__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #7F6A5A;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
}

.difference__figure {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.difference__img {
  aspect-ratio: 1360/694;
  display: block;
  width: 100%;
  width: 680px;
  width: 42.5rem;
  max-width: 680px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.difference__list {
  gap: 60px;
  gap: 3.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 10px;
  margin-top: .625rem;
  width: 100%;
  max-width: 860px;
}

.difference__item-title {
  color: #5C9D82;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.difference__item-divider {
  margin-top: 12px;
  margin-top: .75rem;
  background-image: repeating-linear-gradient(to right, #5C9D82 0, #5C9D82 .125rem, transparent .125rem, transparent .25rem);
  height: 1px;
  height: .0625rem;
}

.difference__item-text {
  margin-top: 10px;
  margin-top: .625rem;
  color: #524B40;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}

.difference__item-text span {
  color: #5C9D82;
}

/*
plan
----------------------------------------*/
.plan {
  position: relative;
  background-color: #F5F5EE;
  padding: 0 20px 107px;
  padding: 0 1.25rem 6.6875rem;
}

.plan::before {
  aspect-ratio: 370/90;
  display: block;
  margin: 0 auto;
  background-image: url('../img/deco-plants-top.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 370px;
  width: 23.125rem;
  content: '';
}

.plan__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  width: 100%;
  max-width: 1160px;
  max-width: 72.5rem;
}

.plan__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #7F6A5A;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
}

.plan__content {
  margin-top: 58px;
  margin-top: 3.625rem;
  width: 100%;
  max-width: 900px;
  max-width: 56.25rem;
}

.plan__divider {
  background-image: repeating-linear-gradient(to right, #5C9D82 0, #5C9D82 .125rem, transparent .125rem, transparent .25rem);
  height: 1px;
  height: .0625rem;
}

.plan__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan__item {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid transparent;
  -o-border-image: repeating-linear-gradient(to right, #5C9D82 0, #5C9D82 2px, transparent 2px, transparent 4px) 1;
  border-image: repeating-linear-gradient(to right, #5C9D82 0, #5C9D82 2px, transparent 2px, transparent 4px) 1;
  padding: 15px 20px;
  padding: .9375rem 1.25rem;
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556;
}

.plan__item::before {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: calc(.7777777778em - .3125rem);
  border-radius: 50%;
  background-color: #5C9D82;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.plan__item:last-child {
  border-bottom: none;
  -o-border-image: none;
  border-image: none;
}

.plan__message {
  margin-top: 35px;
  margin-top: 2.1875rem;
  color: #9F6940;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.7272727273;
  text-align: center;
}

/*
case
----------------------------------------*/
.case {
  background-image: url('../img/bg-light-blue.webp');
  background-repeat: repeat;
  background-size: 834px auto;
  padding: 100px 30px 130px;
  padding: 6.25rem 1.875rem 8.125rem;
}

.case__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  width: 100%;
  max-width: 1240px;
}

.case__title {
  margin-top: 13px;
  margin-top: .8125rem;
  color: #524B40;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.case__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-column-gap: 3.75rem;
  -moz-column-gap: 3.75rem;
  column-gap: 3.75rem;
  margin-top: 57px;
  margin-top: 3.5625rem;
}

.case__item-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.case__item {
  background-color: #CCE5E8;
  padding: 40px 40px 50px;
  padding: 2.5rem 2.5rem 3.125rem;
  width: 100%;
}

.case__item-title {
  color: #524B40;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
}

.case__item-divider {
  margin-top: 10px;
  margin-top: .625rem;
  background-image: repeating-linear-gradient(to right, #5C9D82 0, #5C9D82 .125rem, transparent .125rem, transparent .25rem);
  height: 1px;
  height: .0625rem;
}

.case__images {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.case__item-time {
  margin-top: 10px;
  margin-top: .625rem;
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}

.case__left,
.case__right {
  gap: 4px;
  gap: .25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
}

.case__image {
  aspect-ratio: 242/175;
  width: 100%;
  height: auto;
}

.case__caption {
  color: #5D8B9E;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
}

.case__points {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.case__point {
  margin-top: 27px;
  margin-top: 1.6875rem;
}

.case__point--adjustment {
  margin-top: 87px;
  margin-top: 5.4375rem;
}

.case__point-title {
  border-radius: 1.4375rem;
  background-color: #fff;
  padding: 8px 10px;
  padding: .5rem .625rem;
  color: #5D8B9E;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
}

.case__point-text {
  margin-top: 12px;
  margin-top: .75rem;
  color: #524B40;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}

/*
case-accordion
----------------------------------------*/
.case-accordion__btn {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background-color: #5D8B9E;
  padding: 23px 20px;
  padding: 1.4375rem 1.25rem;
  width: 100%;
}

.case-accordion__btn-text {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}

.case-accordion__icon {
  position: absolute;
  top: 50%;
  right: 60px;
  right: 3.75rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fff;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
}

.case-accordion__icon::before, .case-accordion__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #5D8B9E;
  width: 12px;
  width: .75rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.case-accordion__icon::before {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.case-accordion__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.case-accordion__btn[aria-expanded=true] .case-accordion__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.case-accordion__body {
  -webkit-transition: height .4s ease;
  transition: height .4s ease;
  background-color: #fff;
  height: 0;
  overflow: hidden;
}

/*
case-voice
----------------------------------------*/
.case-voice {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 30px 40px 0;
  padding: 1.875rem 2.5rem 0;
  width: 100%;
}

.case-voice__figure {
  aspect-ratio: 159/115;
  display: none;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  width: 159px;
  width: 9.9375rem;
  overflow: hidden;
}

.case-voice__img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.case-voice__info {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.case-voice__age {
  color: #5D8B9E;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.case-voice__request {
  margin: 0;
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.case-voice__text {
  margin: 0;
  padding: 20px 40px 40px;
  padding: 1.25rem 2.5rem 2.5rem;
  color: #524B40;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}

/*
features
----------------------------------------*/
.features {
  position: relative;
  background-color: #F5F5EE;
  padding: 133px 20px 90px;
  padding: 8.3125rem 1.25rem 5.625rem;
}

.features::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: url('../img/features-bg-pc.webp') top center/100% auto no-repeat;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: '';
}

.features__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  width: 100%;
}

.features__title {
  margin-top: 17px;
  margin-top: 1.0625rem;
  color: #524B40;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.features__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 108px;
  margin-top: 6.75rem;
  background-color: #fff;
  padding: 0 60px 75px;
  padding: 0 3.75rem 4.6875rem;
  width: 100%;
  max-width: 1200px;
}

.features__grid {
  gap: 60px;
  gap: 3.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.features__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 75px;
  padding-top: 4.6875rem;
}

.features__number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -42px;
  top: -2.625rem;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #72AAC1;
  width: 84px;
  width: 5.25rem;
  height: 84px;
  height: 5.25rem;
  color: #fff;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 300;
  letter-spacing: .08em;
}

.features__figure {
  aspect-ratio: 320/207;
  margin: 0;
  overflow: hidden;
}

.features__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.features__item-title {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #5D8B9E;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.features__item-text {
  margin-top: 12px;
  margin-top: .75rem;
  color: #524B40;
  font-size: min(1.2698412698vw, 16px);
  font-size: min(1.2698412698vw, 1rem);
  letter-spacing: 0;
  line-height: 1.875;
}

.features__result {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 17px;
  margin-top: 1.0625rem;
  border-radius: .3125rem;
  background-color: #4E90AC;
  padding: 31px 25px;
  padding: 1.9375rem 1.5625rem;
  width: 100%;
  color: #fff;
  text-align: center;
}

.features__result::before {
  position: absolute;
  top: -1px;
  top: -.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 12px solid #fff;
  border-top: .75rem solid #fff;
  border-right: 17px solid transparent;
  border-right: 1.0625rem solid transparent;
  border-left: 17px solid transparent;
  border-left: 1.0625rem solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.features__result-text {
  font-size: min(1.4285714286vw, 18px);
  font-size: min(1.4285714286vw, 1.125rem);
  font-weight: 700;
  line-height: 1.6666666667;
}

/*
features__conclusion
----------------------------------------*/
.features__conclusion {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 48px;
  margin-top: 3rem;
}

.features__conclusion-line {
  background-color: #5D8B9E;
  width: 1px;
  height: 47px;
  height: 2.9375rem;
}

.features__conclusion-text {
  color: #5D8B9E;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}

.features__conclusion-highlight {
  text-decoration-thickness: 4px;
  text-decoration-thickness: .25rem;
  text-underline-offset: 6px;
  text-underline-offset: .375rem;
  -webkit-text-decoration-color: #FFD1A7;
  text-decoration-color: #FFD1A7;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

/*
features__staff
----------------------------------------*/
.features__staff {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 75px;
  margin-top: 4.6875rem;
  margin-right: -60px;
  margin-right: -3.75rem;
  margin-left: -60px;
  margin-left: -3.75rem;
  background-color: #F5F5EE;
  padding: 23px 33px 23px 60px;
  padding: 1.4375rem 2.0625rem 1.4375rem 3.75rem;
  width: 100%;
  max-width: 1080px;
}

.features__staff-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 23px;
  margin-top: 1.4375rem;
}

.features__staff-header {
  gap: 22px;
  gap: 1.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.features__staff-icon {
  aspect-ratio: 49/38;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 49px;
  width: 3.0625rem;
  height: auto;
}

.features__staff-title {
  color: #5D8B9E;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.features__staff-divider {
  margin-top: 18px;
  margin-top: 1.125rem;
  background: repeating-linear-gradient(to right, #4E90AC 0, #4E90AC 2px, transparent 2px, transparent 4px);
  height: 1px;
}

.features__staff-text {
  margin-top: 18px;
  margin-top: 1.125rem;
  color: #524B40;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}

.features__staff-figure {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  width: 298px;
  width: 18.625rem;
}

.features__staff-img {
  aspect-ratio: 298/210;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/*
area
----------------------------------------*/
.area {
  background-color: #F5F5EE;
  padding-top: 41px;
  padding-top: 2.5625rem;
}

.area__inner {
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1060px;
  max-width: 66.25rem;
  text-align: center;
}

.area__title {
  margin-top: 5px;
  margin-top: .3125rem;
  color: #524B40;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.area__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 59px auto 0;
  margin: 3.6875rem auto 0;
  padding-right: 20px;
  padding-right: 1.25rem;
  max-width: 1501px;
  max-width: 93.8125rem;
}

.area__map-figure {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  margin: 0;
  min-width: 0;
  max-width: 921px;
  max-width: 57.5625rem;
}

.area__map-img {
  display: block;
  width: 100%;
  height: auto;
}

.area__box {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 1;
  margin-left: -100px;
  margin-left: -6.25rem;
  background-color: #fff;
  padding: 40px 55px;
  padding: 2.5rem 3.4375rem;
  width: 529px;
  width: 33.0625rem;
  min-height: 407px;
  min-height: 25.4375rem;
}

.area__prefecture + .area__prefecture {
  margin-top: 16px;
  margin-top: 1rem;
}

.area__prefecture-name {
  color: #5D8B9E;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.area__cities {
  margin-top: 5px;
  margin-top: .3125rem;
  color: #524B40;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6666666667;
}

.area__text {
  margin-top: 45px;
  margin-top: 2.8125rem;
  color: #524B40;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}

/*
subsidy
----------------------------------------*/
.subsidy {
  position: relative;
  background-color: #F5F5EE;
  padding-top: 130px;
  padding-top: 8.125rem;
  overflow: hidden;
}

.subsidy::before {
  aspect-ratio: 329/219;
  display: block;
  position: absolute;
  top: 130px;
  top: 8.125rem;
  left: 0;
  z-index: 1;
  background: url('../img/deco-area-left.webp') top left/contain no-repeat;
  width: 329px;
  width: 20.5625rem;
  pointer-events: none;
  content: '';
}

.subsidy__content {
  margin-left: 204px;
  margin-left: 12.75rem;
  border-radius: 12.5rem 0 0 0;
  background-color: #fff;
  padding: 8.625rem max(9.375rem, (100vw - 84.375rem) / 2) 7.5rem calc((100vw - 84.375rem) / 2);
  max-height: 693px;
  max-height: 43.3125rem;
}

.subsidy__title {
  color: #524B40;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.subsidy__line {
  margin-top: 20px;
  margin-top: 1.25rem;
  background: repeating-linear-gradient(to right, #4E90AC 0, #4E90AC 2px, transparent 2px, transparent 4px);
  height: 1px;
}

.subsidy__text {
  margin-top: 34px;
  margin-top: 2.125rem;
  max-width: 917px;
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8888888889;
}

.subsidy__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  margin-top: 45px;
  margin-top: 2.8125rem;
  background-color: #958E71;
  width: 380px;
  width: 23.75rem;
  height: 69px;
  height: 4.3125rem;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}

/*----------------------------------------
flow
----------------------------------------*/
.flow {
  position: relative;
  position: relative;
  background-color: #E1ECED;
  padding-top: 136px;
  padding-top: 8.5rem;
  padding-bottom: 160px;
  padding-bottom: 10rem;
}

.flow::before {
  aspect-ratio: 1500/900;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url('../img/flow-bg-pc.webp');
  background-position: center top;
  background-size: cover;
  width: 100%;
  height: auto;
  max-height: 900px;
  content: '';
}

.flow__inner {
  gap: 60px;
  gap: 3.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1219px;
  max-width: 76.1875rem;
}

.flow__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 28px;
  margin-top: 1.75rem;
  width: 342px;
  width: 21.375rem;
}

.flow__catch {
  margin-top: 17px;
  margin-top: 1.0625rem;
  color: #524B40;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.flow__title {
  margin-top: 8px;
  margin-top: .5rem;
  color: #524B40;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

.flow__body {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 728px;
}

.flow__item {
  position: relative;
  border-radius: .625rem;
  background-color: #fff;
  padding: 41px 30px 41px 51px;
  padding: 2.5625rem 1.875rem 2.5625rem 3.1875rem;
}

.flow__item::before {
  display: block;
  position: absolute;
  bottom: -13px;
  bottom: -.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #33A8B3;
  background-color: #33A8B3;
  width: 1px;
  width: .0625rem;
  width: 25px;
  width: 1.5625rem;
  height: 36px;
  height: 2.25rem;
  height: 13px;
  height: .8125rem;
  content: '';
}

.flow__item:last-child::before {
  display: none;
}

.flow__item-header {
  gap: 18px;
  gap: 1.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flow__item-num {
  position: relative;
  padding-right: 20px;
  padding-right: 1.25rem;
  color: #33A8B3;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.flow__item-num::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #33A8B3;
  width: 1px;
  width: .0625rem;
  height: 36px;
  height: 2.25rem;
  content: '';
}

.flow__item-title {
  color: #524B40;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.flow__item-text {
  margin-top: 16px;
  margin-top: 1rem;
  color: #524B40;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}

.flow__item-btns {
  gap: 26px;
  gap: 1.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 34px;
  margin-top: 2.125rem;
}

.flow__item-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #958E71;
  height: 69px;
  height: 4.3125rem;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}

.flow__illust {
  aspect-ratio: 406/327;
  position: absolute;
  bottom: -22px;
  bottom: -1.375rem;
  left: 68px;
  left: 4.25rem;
  width: 406px;
  width: 25.375rem;
  pointer-events: none;
}

.flow__illust-img {
  width: 100%;
  height: 100%;
}

/*----------------------------------------
shop
----------------------------------------*/
.shop {
  padding-top: 127px;
  padding-top: 7.9375rem;
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}

.shop__inner {
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1180px;
  max-width: 73.75rem;
}

.shop__head {
  text-align: center;
}

.shop__title {
  margin-top: 6px;
  margin-top: .375rem;
  color: #524B40;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.shop__body {
  gap: 46px;
  gap: 2.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 58px;
  margin-top: 3.625rem;
}

.shop__image-wrap {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 570px;
  width: 35.625rem;
}

.shop__image {
  aspect-ratio: 570/406;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.shop__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.shop__logo {
  aspect-ratio: 366/57;
  width: 366px;
  width: 22.875rem;
}

.shop__info {
  gap: 14px;
  gap: .875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 41px;
  margin-top: 2.5625rem;
}

.shop__info-item {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.shop__info-icon {
  aspect-ratio: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 3px;
  margin-top: .1875rem;
  width: 22px;
  width: 1.375rem;
}

.shop__info-icon--time {
  margin-top: 7px;
  margin-top: .4375rem;
  width: 20px;
  width: 1.25rem;
}

.shop__info-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.shop__address {
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.shop__map-link {
  gap: 6px;
  gap: .375rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px;
  margin-top: .5rem;
  color: #5C9D82;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
}

.shop__map-link-icon {
  aspect-ratio: 1;
  width: 14px;
  width: .875rem;
}

.shop__hours {
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.shop__hours-note {
  margin-top: 4px;
  margin-top: .25rem;
  color: #E02200;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.shop__holiday {
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.shop__facilities {
  gap: 14px 40px;
  gap: .875rem 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 16px;
  margin-top: 1rem;
  background-color: #F5F5EE;
  padding: 22px 24px 20px 80px;
  padding: 1.375rem 1.5rem 1.25rem 5rem;
}

.shop__facility {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 180px;
  width: 11.25rem;
}

.shop__facility-icon {
  aspect-ratio: 1;
  width: 22px;
  width: 1.375rem;
}

.shop__facility-text {
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

/* shop__slider ----------------------------------------------------------------- */
.shop__slider {
  position: relative;
  margin-top: 75px;
  margin-top: 4.6875rem;
  overflow: hidden;
}

.shop__slider .swiper {
  margin-left: 23.6111111111vw;
  width: calc(100% - 23.6111111111vw);
  overflow: visible;
}

/* purgecss対策で明示的に指定 */
.shop__slider .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
}

.shop__slider .swiper-slide {
  aspect-ratio: 390/278;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26.0416666667vw;
  height: auto;
}

.shop__slider-item {
  overflow: hidden;
}

.shop__slider-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.shop__slider-btn {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  border-radius: 50%;
  background-color: #fff;
  width: 35px;
  width: 2.1875rem;
}

.shop__slider-btn--prev {
  left: 30px;
  left: 1.875rem;
}

.shop__slider-btn--next {
  right: 30px;
  right: 1.875rem;
}

.shop__slider-btn-icon {
  aspect-ratio: 1;
  width: 12px;
  width: .75rem;
}

/*----------------------------------------
faq
----------------------------------------*/
.faq {
  background-color: #F5F5EE;
  padding-top: 113px;
  padding-top: 7.0625rem;
  padding-bottom: 145px;
  padding-bottom: 9.0625rem;
}

.faq__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1020px;
  max-width: 63.75rem;
}

.faq__title {
  margin-top: 3px;
  margin-top: .1875rem;
  color: #524B40;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.faq__list {
  gap: 26px;
  gap: 1.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 70px;
  margin-top: 4.375rem;
  padding: 0;
  width: 100%;
  max-width: 980px;
  max-width: 61.25rem;
  list-style: none;
}

.faq__item {
  border-radius: .625rem;
  background-color: #fff;
  padding: 30px 60px 23px;
  padding: 1.875rem 3.75rem 1.4375rem;
}

.faq__question {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-image: repeating-linear-gradient(90deg, #4E90AC 0, #4E90AC 2px, transparent 2px, transparent 4px);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 5px;
  padding-bottom: .3125rem;
}

.faq__q {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #4E90AC;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}

.faq__question-text {
  color: #524B40;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

.faq__answer {
  margin-top: 12px;
  margin-top: .75rem;
  color: #524B40;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  width: 100%;
}

.header.is-fixed {
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  padding-left: 64px;
  padding-left: 4rem;
  height: 76px;
  height: 4.75rem;
}

.header__logo {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.header__logo span {
  margin-top: 14px;
  margin-top: .875rem;
  background-color: #707070;
  width: 1px;
  width: .0625rem;
  height: 26px;
  height: 1.625rem;
}

.header__logo-link {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  line-height: 0;
}

.header__logo-figure {
  aspect-ratio: 294/55;
  margin: 0;
  width: 294px;
  width: 18.375rem;
}

.header__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__logo-text {
  margin-top: 14px;
  margin-top: .875rem;
  color: #524B40;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.header__controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.header__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #5C9D82;
  width: 182px;
  width: 11.375rem;
  height: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  white-space: nowrap;
}

.header__hamburger {
  gap: 6px;
  gap: .375rem;
  -webkit-tap-highlight-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  width: 95px;
  width: 5.9375rem;
  height: 76px;
  height: 4.75rem;
}

.header__bar {
  display: block;
  -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
  border-radius: .125rem;
  background: #5C9D82;
  width: 28px;
  width: 1.75rem;
  height: 2px;
  height: .125rem;
  pointer-events: none;
}

.header__hamburger.is-opened .header__bar:nth-child(1) {
  -webkit-transform: translateY(.5rem) rotate(45deg);
  transform: translateY(.5rem) rotate(45deg);
}

.header__hamburger.is-opened .header__bar:nth-child(2) {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  opacity: 0;
}

.header__hamburger.is-opened .header__bar:nth-child(3) {
  -webkit-transform: translateY(-.5rem) rotate(-45deg);
  transform: translateY(-.5rem) rotate(-45deg);
}

.header__drawer {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 76px;
  top: 4.75rem;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  z-index: 120;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background: #66837B;
  width: 640px;
  width: 40rem;
  max-width: 100%;
  height: calc(100dvh - 4.75rem);
  overflow-y: auto;
}

.header__drawer.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.header__nav {
  margin: 0;
  padding: 48px 94.5px;
  padding: 3rem 5.90625rem;
  list-style: none;
}

.header__nav-item + .header__nav-item {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.header__nav-link {
  display: block;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  text-decoration: none;
}

.header__nav-sub {
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  list-style: none;
}

.header__nav-sub-item + .header__nav-sub-item {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.header__nav-sub-link {
  display: block;
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
  color: #C6DDD3;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
}

.header__nav-sub-link::before {
  display: absolute;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #C6DDD3;
  width: 12px;
  width: .75rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.header__overlay {
  position: fixed;
  top: 76px;
  top: 4.75rem;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 119;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
  background: rgba(0, 0, 0, .4);
}

.header__drawer.is-opened + .header__overlay {
  visibility: visible;
  opacity: 1;
}

.u-overflowHidden {
  overflow: hidden;
}

/*
contact-tel
----------------------------------------*/
.contact {
  background-color: #F5F5EE;
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
}

.contact__inner {
  margin: 0 auto;
  max-width: 1000px;
  max-width: 62.5rem;
}

.contact-tel__box {
  border: 2px solid #5C9D82;
  border-radius: .625rem;
  overflow: hidden;
}

.contact-tel__heading {
  background-color: #5C9D82;
  padding: 9px 20px;
  padding: .5625rem 1.25rem;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.contact-tel__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  padding: 27px 20px 48px;
  padding: 1.6875rem 1.25rem 3rem;
  text-align: center;
}

.contact-tel__number {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #5C9D82;
  font-size: 58px;
  font-size: 3.625rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}

.contact-tel__hours {
  margin-top: 0;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-form-wrapper {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.thanks {
  background-color: #F5F5EE;
  padding: 80px 20px 100px;
  padding: 5rem 1.25rem 6.25rem;
}

.thanks__inner {
  margin: 0 auto;
  width: 750px;
  width: 46.875rem;
  max-width: 750px;
  text-align: center;
}

.thanks__check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
}

.thanks__check-icon {
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  color: #5C9D82;
}

.thanks__title {
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
  color: #5C9D82;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5;
}

.thanks__body {
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
  border-radius: .625rem;
  background-color: #fff;
  padding: 36px 40px;
  padding: 2.25rem 2.5rem;
  text-align: left;
}

.thanks__text {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

.thanks__note {
  margin-bottom: 0;
  color: #777;
  font-size: 13px;
  font-size: .8125rem;
  line-height: 1.8;
}

.thanks__tel-box {
  margin-bottom: 48px;
  margin-bottom: 3rem;
  border: 2px solid #5C9D82;
  border-radius: .625rem;
  overflow: hidden;
}

.thanks__tel-label {
  background-color: #5C9D82;
  padding: 9px 20px;
  padding: .5625rem 1.25rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.thanks__tel-number {
  display: block;
  background-color: #fff;
  padding: 20px 20px 8px;
  padding: 1.25rem 1.25rem .5rem;
  color: #5C9D82;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}

.thanks__tel-hours {
  margin-bottom: 0;
  background-color: #fff;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  text-align: center;
}

.thanks__btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thanks__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  border-radius: 3.125rem;
  background-color: #5C9D82;
  padding: 16px 48px;
  padding: 1rem 3rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
}

.thanks__btn:hover {
  opacity: .8;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  margin: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #0C4A6E;
  background-image: none;
  padding: 1em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #fff;
  color: #0C4A6E;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {

  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #0C4A6E;
  background-color: #0C4A6E;
  color: #fff;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover, .c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(6.9836065574, 43.0655737705, 64.0163934426);
  background-color: #0C4A6E;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #0C4A6E;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #0C4A6E;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #0C4A6E;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  background-color: #65a7ce;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: .7;
}

.c-totop.is-active:hover, .c-totop.is-active:focus {
  opacity: 1;
}

.p-article__date + .p-article__date {
  margin-left: 20px;
}

.p-article__label {
  margin-left: 20px;
}

.p-article__title {
  margin-top: 31px;
  font-size: 20px;
  line-height: 1.5;
}

.p-article__eyecatch {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid #e7e0db;
  border-bottom: 1px solid #e7e0db;
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 15px;
  line-height: 2;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
}

.p-article__body h1 {
  font-size: 32px;
  font-size: 2rem;
}

.p-article__body h2 {
  background-color: #000;
  padding: .3em .4em;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid #000;
  padding-left: .5em;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-article__body h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-article__body h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-article__body .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-article__body .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  content: 'ー';
}

.p-article__body ul {
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1em;
}

.p-article__body ul li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.p-article__body table {
  border: none;
  width: 100%;
}

.p-article__body table th,
.p-article__body table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #000;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-article__body * + * {
  margin-top: 25px;
}

.p-article__body *:first-child {
  margin-top: 0;
}

.p-article__body .wp-block-spacer, .p-article__body .wp-block-spacer + * {
  margin-top: 0;
}

.p-article__body p {
  font-weight: 400;
}

.p-article__body ul,
.p-article__body ol {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  margin-left: 10px;
  margin-left: .625rem;
}

.p-article__body ul ul,
.p-article__body ul ol,
.p-article__body ol ul,
.p-article__body ol ol {
  margin-top: 15px;
  margin-top: .9375rem;
  margin-left: 0;
}

.p-article__body ul li,
.p-article__body ol li {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
}

.p-article__body ol {
  padding-left: 1.25em;
}

.p-article__body ol > li:not([class]) {
  list-style: decimal;
}

.p-article__body ol > li:not([class])::marker {
  color: #0C4A6E;
  font-weight: 700;
}

.p-article__body li:not([class]) + li {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-article__body a:not([class]) {
  color: #0C4A6E;
  text-decoration: underline;
}

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body blockquote,
.p-article__body q {
  position: relative;
  background-color: #F8F8F8;
  padding: 1em 4em;
}

.p-article__body blockquote::before, .p-article__body blockquote::after,
.p-article__body q::before,
.p-article__body q::after {
  position: absolute;
  color: #b2b2b2;
  font: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: .5em;
  content: '\f10d';
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .5em;
  bottom: 0;
  content: '\f10e';
}

.p-article__body q {
  display: inline-block;
}

.p-article__body dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-article__body dt,
.p-article__body dd {
  border-top: 1px solid #e7e0db;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-article__body dt:last-of-type,
.p-article__body dd:last-of-type {
  border-bottom: 1px solid #e7e0db;
}

.p-article__body dt {
  width: 33%;
  font-weight: 700;
}

.p-article__body dd {
  width: 67%;
}

.p-article__body pre {
  overflow: auto;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  white-space: pre;
}

.p-article__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-article__body .alignleft {
  float: left;
  margin-right: 1em;
}

.p-article__body .alignright {
  float: right;
  margin-left: 1em;
}

.p-article__body .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__body .gallery-columns-4 {
  gap: 20px;
}

.p-article__body .gallery-columns-4 > .gallery-item {
  width: calc((100% - 60px) / 4);
}

.p-article__body .gallery-item {
  margin-top: 0;
}

.p-article__body .gallery-icon {
  text-align: center;
}

.p-article__links {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #0C4A6E;
  width: 2em;
  height: 2em;
  color: #0C4A6E;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

.post-page-numbers + .post-page-numbers {
  margin-left: 10px;
}

.post-page-numbers.current {
  background-color: #0C4A6E;
  color: #fff;
}

.post-page-numbers.dots {
  border: none;
}

.p-drawer {
  z-index: 120;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 121;
  cursor: pointer;
  padding: 19px 17.5px;
  padding: 1.1875rem 1.09375rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #000;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: 'CLOSE';
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 25px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 5px;
  background: #000;
  width: 100%;
  height: 3px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 120;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #fff;
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #000;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: .5em;
}

.p-drawer__navLink {
  display: block;
  padding-top: .5em;
  padding-bottom: .5em;
}

.p-footer {
  background-color: #0C4A6E;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  text-align: center;
}

.p-footer__logo {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-footer__logo img,
.p-footer__logo svg {
  width: 200px;
  width: 12.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__copy {
  padding: 10px 0;
  padding: .625rem 0;
  color: #000;
}

/************************************************************************
* p-fv
************************************************************************/
.p-header {
  background-color: #0C4A6E;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__logo {
  z-index: 121;
  height: 90%;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #0C4A6E;
  width: 2em;
  height: 2em;
  color: #0C4A6E;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 10px;
  margin-left: .625rem;
}

.page-numbers.current {
  background-color: #0C4A6E;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 1500px) {

  .subsidy__content {
    padding: 138px 150px 120px 190px;
    padding: 8.625rem 9.375rem 7.5rem 11.875rem;
  }
}

@media (max-width: 1280px) {

  .flow__inner {
    gap: 120px;
    gap: 7.5rem;
  }
}

@media screen and (max-width: 1260px) {

  html {
    font-size: 1.2698412698vw;
  }

  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {

  html {
    font-size: 3.738317757vw;
  }

  .only-pc {
    display: none;
  }

  .only-sp {
    display: block;
  }

  .contact-form__body {
    padding: 35px 20px;
    padding: 2.1875rem 1.25rem;
  }

  .contact-form__input-lists {
    gap: 28px;
    gap: 1.75rem;
    margin-top: 38px;
    margin-top: 2.375rem;
  }

  .contact-form__required {
    padding: 3px 10px;
    padding: .1875rem .625rem;
    font-size: 13px;
    font-size: .8125rem;
  }

  .contact-form__label-text {
    font-size: 16px;
    font-size: 1rem;
  }

  .contact-form__label-note {
    font-size: 13px;
    font-size: .8125rem;
  }

  .contact-form__radio-group .wpcf7-radio {
    gap: 10px;
    gap: .625rem;
    grid-template-columns: 1fr;
  }

  .contact-form__radio-group label input[type=radio] {
    margin: 0 9.8px 0 0;
    margin: 0 .6125rem 0 0;
    width: 24px;
    width: 1.5rem;
    height: 24px;
    height: 1.5rem;
  }

  .contact-form__radio-group label input[type=radio]:checked::before {
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
  }

  .contact-form__radio-group label span.wpcf7-list-item-label {
    font-size: 15px;
    font-size: .9375rem;
  }

  .contact-form__date-item {
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .contact-form__date-group {
    padding: 0 15px;
    padding: 0 .9375rem;
  }

  .contact-form__date-row {
    gap: 8px;
    gap: .5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .contact-form__date-num {
    font-size: 16px;
    font-size: 1rem;
  }

  .contact-form__date-fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .contact-form__time-wrap .contact-form__select {
    padding: 16.5px 10px;
    padding: 1.03125rem .625rem;
    width: 100%;
    height: 55px;
    height: 3.4375rem;
  }

  .contact-form__date {
    padding: 16.5px 10px;
    padding: 1.03125rem .625rem;
    width: 100%;
    font-size: 14px;
    font-size: .875rem;
  }

  .contact-form__select {
    font-size: 14px;
    font-size: .875rem;
  }

  .contact-form__input {
    padding: 12px 15px;
    padding: .75rem .9375rem;
    font-size: 15px;
    font-size: .9375rem;
  }

  .contact-form__input::-webkit-input-placeholder {
    font-size: 15px;
    font-size: .9375rem;
  }

  .contact-form__input::-moz-placeholder {
    font-size: 15px;
    font-size: .9375rem;
  }

  .contact-form__input::-ms-input-placeholder {
    font-size: 15px;
    font-size: .9375rem;
  }

  .contact-form__input::placeholder {
    font-size: 15px;
    font-size: .9375rem;
  }

  .contact-form__textarea {
    font-size: 15px;
    font-size: .9375rem;
  }

  .contact-form__textarea::-webkit-input-placeholder {
    font-size: 15px;
    font-size: .9375rem;
  }

  .contact-form__textarea::-moz-placeholder {
    font-size: 15px;
    font-size: .9375rem;
  }

  .contact-form__textarea::-ms-input-placeholder {
    font-size: 15px;
    font-size: .9375rem;
  }

  .contact-form__textarea::placeholder {
    font-size: 15px;
    font-size: .9375rem;
  }

  .contact-form__privacy {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .contact-form__button {
    width: 100%;
    height: 65px;
    height: 4.0625rem;
  }

  :root {
    --header-height: 76px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .footer {
    padding: 20px 20px 103px;
    padding: 1.25rem 1.25rem 6.4375rem;
  }

  .footer__top {
    gap: 17px;
    gap: 1.0625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer__nav-list {
    gap: 40px;
    gap: 2.5rem;
  }

  .footer__copyright {
    margin-top: 49px;
    margin-top: 3.0625rem;
  }

  .fv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px;
    padding: .625rem;
    height: calc(100dvh - 60px);
  }

  .fv__slider {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 100%;
    height: var(--fv-slider-height, 35vh);
  }

  .fv__slider--after {
    margin-top: var(--fv-gap, 0);
  }

  .fv__image {
    top: 50%;
    width: calc(100% - .625rem);
    max-width: 500px;
  }

  .fv__image-pc {
    aspect-ratio: 414/224;
  }

  .fv__image-sp {
    display: block;
  }

  .fv__label {
    width: 100px;
    width: 6.25rem;
    height: 42px;
    height: 2.625rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .fv__label--before {
    top: 0;
    bottom: auto;
    border-top-right-radius: 0;
    border-bottom-right-radius: 10px;
    border-bottom-right-radius: .625rem;
  }

  .fv__slider--before .fv__image-note {
    top: 8px;
    top: .5rem;
    bottom: auto;
  }

  .cta-sns {
    bottom: 3%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .cta-sns__link {
    height: 55px;
    height: 3.4375rem;
  }

  .cta-buttons {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .cta-buttons.is-visible {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .cta-buttons__btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .cta-buttons__btn--line {
    -webkit-box-shadow: 0 200px 0 #29BE9C;
    box-shadow: 0 200px 0 #29BE9C;
    width: 50%;
    height: 70px;
    height: 4.375rem;
    letter-spacing: .04em;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }

  .cta-buttons__btn--visit {
    -webkit-box-shadow: 0 200px 0 #F0801C;
    box-shadow: 0 200px 0 #F0801C;
    width: 50%;
    height: 70px;
    height: 4.375rem;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }

  .cta-section {
    padding: 57px 15px 52px;
    padding: 3.5625rem .9375rem 3.25rem;
  }

  .cta-section__title {
    font-size: 23px;
    font-size: 1.4375rem;
  }

  .cta-section__title::before {
    top: 55%;
    left: -35px;
    left: -2.1875rem;
    width: 30px;
    width: 1.875rem;
  }

  .cta-section__title::after {
    top: 55%;
    right: -35px;
    right: -2.1875rem;
    width: 30px;
    width: 1.875rem;
  }

  .cta-wrapper-other .cta-buttons {
    gap: 32px;
    gap: 2rem;
    top: auto;
    left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
  }

  .cta-wrapper-other .cta-buttons.is-visible {
    -webkit-transform: none;
    transform: none;
  }

  .cta-wrapper-other .cta-buttons {
    margin-top: 33px;
    margin-top: 2.0625rem;
  }

  .cta-button-line-wrapper,
  .cta-button-reserve-wrapper {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .cta-button {
    margin-top: 20px;
    margin-top: 1.25rem;
    border-radius: .3125rem;
    padding: 25px 20px 20px;
    padding: 1.5625rem 1.25rem 1.25rem;
    width: 360px;
    width: 22.5rem;
    max-width: inherit;
    height: 90px;
    height: 5.625rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .cta-icon {
    width: 26px;
    width: 1.625rem;
  }

  .cta-arrow {
    top: 55%;
    right: 25px;
    right: 1.5625rem;
    width: 24px;
    width: 1.5rem;
  }

  .worry::before {
    width: 304px;
    width: 19rem;
  }

  .worry::after {
    aspect-ratio: 428/49;
    margin-top: 60px;
    margin-top: 3.75rem;
    background-image: url('../img/deco-worry-bottom-sp.webp');
  }

  .worry__title {
    margin-top: 22px;
    margin-top: 1.375rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .worry__illust-img {
    aspect-ratio: 764/1106;
    margin-top: 29px;
    margin-top: 1.8125rem;
    width: 382px;
    width: 23.875rem;
  }

  .worry__message {
    margin-top: 28px;
    margin-top: 1.75rem;
    padding: 19px 0;
    padding: 1.1875rem 0;
    width: 388px;
    width: 24.25rem;
  }

  .worry__message .worry__message-text {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5454545455;
  }

  .support::before {
    background-image: url(../img/support-bg-sp.webp);
  }

  .support::after {
    aspect-ratio: 304/74;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../img/deco-plants-top.webp) top center/contain no-repeat;
    width: 304px;
    width: 19rem;
    content: '';
  }

  .support__sub::before {
    display: none;
  }

  .support__sub::after {
    display: none;
  }

  .support__inner {
    padding: 135px 20px 90px;
    padding: 8.4375rem 1.25rem 5.625rem;
  }

  .support__title {
    font-size: 21px;
    font-size: 1.3125rem;
  }

  .support__title span {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: .02em;
    white-space: nowrap;
  }

  .support__contents {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 195px 15px 60px;
    padding: 12.1875rem .9375rem 3.75rem;
  }

  .support__header {
    aspect-ratio: 384/157;
    padding-top: 22px;
    padding-top: 1.375rem;
  }

  .support__header::before {
    background-image: url('../img/support-wave-sp.webp');
  }

  .support__header-text {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .support__item {
    gap: 15px;
    gap: .9375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .support__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .support__item:not(:first-child) {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .support__item-left {
    width: 100%;
  }

  .support__item-right {
    width: 100%;
  }

  .point {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .point__inner {
    padding: 20px;
    padding: 1.25rem;
  }

  .point__title {
    font-size: 18px;
    font-size: 1.125rem;
    text-align: left;
  }

  .point__list {
    gap: 12px;
    gap: .75rem;
    grid-template-columns: 1fr;
    margin-top: 15px;
    margin-top: .9375rem;
    margin-left: 0;
  }

  .point__item {
    padding-left: 14px;
    padding-left: .875rem;
    max-width: inherit;
  }

  .point__item::before {
    left: -10px;
    left: -.625rem;
  }

  .consultation {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 18px 10px 45px;
    padding: 1.125rem .625rem 2.8125rem;
  }

  .consultation__title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }

  .consultation__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .consultation__item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
  }

  .consultation__message {
    margin-top: 15px;
    margin-top: .9375rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.7777777778;
    text-align: left;
  }

  .consultation__divider {
    margin-top: 37px;
    margin-top: 2.3125rem;
    width: 100%;
  }

  .consultation__group {
    gap: 30px;
    gap: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 37px;
    margin-top: 2.3125rem;
  }

  .consultation__left {
    margin-left: 0;
  }

  .consultation__left p {
    padding: 0 3px;
    padding: 0 .1875rem;
  }

  .consultation__right {
    padding: 0 10px;
    padding: 0 .625rem;
    width: 100%;
  }

  .consultation__link {
    width: 100%;
    max-width: inherit;
  }

  .reform {
    margin-top: 8px;
    margin-top: .5rem;
  }

  .reform__inner {
    padding: 56px 20px 25px;
    padding: 3.5rem 1.25rem 1.5625rem;
  }

  .reform__grid {
    gap: 12px 2px;
    gap: .75rem .125rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .reform__caption {
    margin-top: 6px;
    margin-top: .375rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .reform__title {
    margin-top: 36px;
    margin-top: 2.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }

  .reform__list {
    gap: 8px 6px;
    gap: .5rem .375rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .reform__list-item {
    gap: 7px 6px;
    gap: .4375rem .375rem;
    border-radius: .5625rem;
    padding: 9px 5px;
    padding: .5625rem .3125rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .reform__check {
    width: 13px;
    width: .8125rem;
  }

  .reform__divider {
    margin-top: 30px;
    margin-top: 1.875rem;
    width: 104.5%;
  }

  .reform__message {
    margin-top: 26px;
    margin-top: 1.625rem;
    width: 103%;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.7777777778;
    text-align: left;
  }

  .difference {
    padding: 45px 20px 95px;
    padding: 2.8125rem 1.25rem 5.9375rem;
  }

  .difference__box {
    padding: 35px 10px 65px;
    padding: 2.1875rem .625rem 4.0625rem;
  }

  .difference__title {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.4583333333;
    text-align: center;
  }

  .difference__figure {
    margin-top: 33px;
    margin-top: 2.0625rem;
  }

  .difference__img {
    aspect-ratio: 720/566;
    width: 360px;
    width: 22.5rem;
  }

  .difference__list {
    gap: 46px;
    gap: 2.875rem;
    grid-template-columns: 1fr;
    margin-top: 32px;
    margin-top: 2rem;
  }

  .difference__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .difference__item-divider {
    margin-top: 10px;
    margin-top: .625rem;
    width: 346px;
    width: 21.625rem;
  }

  .difference__item-text {
    margin-top: 12px;
    margin-top: .75rem;
    padding: 0 7px;
    padding: 0 .4375rem;
  }

  .plan {
    padding: 0 20px 85px;
    padding: 0 1.25rem 5.3125rem;
  }

  .plan::before {
    width: 304px;
    width: 19rem;
  }

  .plan__inner {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .plan__title {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0;
  }

  .plan__content {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .plan__item {
    gap: 12px;
    gap: .75rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 15px 11px;
    padding: .9375rem .6875rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.625;
  }

  .plan__item::before {
    margin-top: calc(.8125em - .25rem);
    width: 11px;
    width: .6875rem;
    height: 11px;
    height: .6875rem;
  }

  .plan__message {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0;
    line-height: 1.7777777778;
    text-align: left;
  }

  .case {
    padding: 70px 20px 91px;
    padding: 4.375rem 1.25rem 5.6875rem;
  }

  .case__inner {
    padding: 0;
  }

  .case__title {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0;
  }

  .case__list {
    gap: 70px 0;
    gap: 4.375rem 0;
    grid-template-columns: 1fr;
  }

  .case__item {
    padding: 48px 12px 62px;
    padding: 3rem .75rem 3.875rem;
  }

  .case__item-title {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .case__images {
    margin-top: 28px;
    margin-top: 1.75rem;
  }

  .case__item-time {
    margin-top: 8px;
    margin-top: .5rem;
  }

  .case__caption {
    font-size: 13px;
    font-size: .8125rem;
  }

  .case__points {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 6px;
    margin-top: .375rem;
  }

  .case__point--adjustment {
    margin-top: 27px;
    margin-top: 1.6875rem;
  }

  .case-accordion__icon {
    right: 20px;
    right: 1.25rem;
  }

  .case-voice {
    gap: 14px;
    gap: .875rem;
    padding: 25px 12px 0;
    padding: 1.5625rem .75rem 0;
  }

  .case-voice__text {
    padding: 15px 15px 30px;
    padding: .9375rem .9375rem 1.875rem;
  }

  .features::before {
    background-position: 83% top;
    background-size: cover;
    height: 586px;
    height: 36.625rem;
  }

  .features {
    padding: 100px 20px 70px;
    padding: 6.25rem 1.25rem 4.375rem;
  }

  .features__title {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0;
  }

  .features__box {
    margin-top: 100px;
    margin-top: 6.25rem;
    padding: 0 15px 50px;
    padding: 0 .9375rem 3.125rem;
  }

  .features__grid {
    gap: 0;
    grid-template-columns: 1fr;
    padding: 0 18px;
    padding: 0 1.125rem;
  }

  .features__item {
    padding-top: 71px;
    padding-top: 4.4375rem;
  }

  .features__item:not(:first-child) {
    margin-top: 103px;
    margin-top: 6.4375rem;
  }

  .features__item-text {
    margin-top: 7px;
    margin-top: .4375rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .features__result {
    -webkit-box-flex: inherit;
    -webkit-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    height: 151px;
    height: 9.4375rem;
  }

  .features__result-text {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .features__conclusion {
    margin-top: 28px;
    margin-top: 1.75rem;
  }

  .features__conclusion-line {
    height: 45px;
    height: 2.8125rem;
  }

  .features__conclusion-text {
    margin-top: 5px;
    margin-top: .3125rem;
    font-size: 21px;
    font-size: 1.3125rem;
    text-align: left;
  }

  .features__staff {
    gap: 35px;
    gap: 2.1875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
    margin-top: 3.125rem;
    margin-right: -20px;
    margin-right: -1.25rem;
    margin-left: -20px;
    margin-left: -1.25rem;
    padding: 16px 17px 60px;
    padding: 1rem 1.0625rem 3.75rem;
  }

  .features__staff-left {
    width: 100%;
  }

  .features__staff-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .features__staff-divider {
    margin-top: 21px;
    margin-top: 1.3125rem;
  }

  .features__staff-text {
    margin-top: 13px;
    margin-top: .8125rem;
  }

  .features__staff-figure {
    width: 325px;
    width: 20.3125rem;
  }

  .area {
    padding-top: 30px;
    padding-top: 1.875rem;
  }

  .area__inner {
    padding: 0;
  }

  .area__title {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0;
  }

  .area__body {
    display: block;
    margin-top: 39px;
    margin-top: 2.4375rem;
    padding-right: 0;
  }

  .area__map-figure {
    width: 100%;
    max-width: none;
    overflow: hidden;
  }

  .area__map-img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }

  .area__box {
    margin-top: -10px;
    margin-top: -.625rem;
    margin-right: 0;
    margin-left: auto;
    padding: 24px 0 24px 43px;
    padding: 1.5rem 0 1.5rem 2.6875rem;
    width: 366px;
    width: 22.875rem;
    min-height: auto;
  }

  .area__cities {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .area__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.7857142857;
  }

  .subsidy {
    padding-top: 175px;
    padding-top: 10.9375rem;
  }

  .subsidy::before {
    aspect-ratio: 264/176;
    top: 75px;
    top: 4.6875rem;
    width: 264px;
    width: 16.5rem;
  }

  .subsidy__content {
    margin-left: auto;
    border-radius: 6.25rem 0 0 0;
    padding: 107px 33px 68px 40px;
    padding: 6.6875rem 2.0625rem 4.25rem 2.5rem;
    width: 394px;
    width: 24.625rem;
    max-height: none;
  }

  .subsidy__title {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0;
  }

  .subsidy__text {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.125;
  }

  .subsidy__btn {
    margin-top: 35px;
    margin-top: 2.1875rem;
    width: 100%;
  }

  .flow {
    background-position: left center;
    padding-top: 93px;
    padding-top: 5.8125rem;
    padding-bottom: 54px;
    padding-bottom: 3.375rem;
    overflow-x: clip;
  }

  .flow::before {
    width: 1013px;
    width: 63.3125rem;
  }

  .flow__inner {
    gap: 36px;
    gap: 2.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flow__head {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
    width: 100%;
  }

  .flow__title {
    margin-top: 6px;
    margin-top: .375rem;
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0;
  }

  .flow__item {
    padding: 40px;
    padding: 2.5rem;
  }

  .flow__item-btns {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .flow__item-btn {
    height: 60px;
    height: 3.75rem;
  }

  .flow__item-btn {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .flow__illust {
    position: relative;
    bottom: -90px;
    bottom: -5.625rem;
    left: 20px;
    left: 1.25rem;
    width: 208px;
    width: 13rem;
  }

  .flow__illust-img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left center;
    object-position: left center;
  }

  .shop {
    padding-top: 105px;
    padding-top: 6.5625rem;
    padding-bottom: 0;
  }

  .shop__title {
    margin-top: 11px;
    margin-top: .6875rem;
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0;
  }

  .shop__body {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .shop__image-wrap {
    width: 100%;
  }

  .shop__content {
    margin-top: 45px;
    margin-top: 2.8125rem;
    width: 100%;
  }

  .shop__logo {
    aspect-ratio: 285/44;
    width: 285px;
    width: 17.8125rem;
  }

  .shop__info {
    gap: 16px;
    gap: 1rem;
    margin-top: 18px;
    margin-top: 1.125rem;
  }

  .shop__address {
    line-height: 1.7777777778;
  }

  .shop__map-link {
    gap: 14px;
    gap: .875rem;
    margin-top: 3px;
    margin-top: .1875rem;
    font-size: 26px;
    font-size: 1.625rem;
  }

  .shop__map-link-icon {
    width: 23px;
    width: 1.4375rem;
  }

  .shop__facilities {
    gap: 14px 0;
    gap: .875rem 0;
    gap: 14px 20px;
    gap: .875rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 11.25rem);
    margin-top: 24px;
    margin-top: 1.5rem;
    padding: 22px 12px;
    padding: 1.375rem .75rem;
  }

  .shop__slider {
    margin-top: 23px;
    margin-top: 1.4375rem;
  }

  .shop__slider .swiper {
    margin-left: 0;
    width: 390px;
    width: 24.375rem;
  }

  .shop__slider .swiper-slide {
    width: 390px;
    width: 24.375rem;
    height: 280px;
    height: 17.5rem;
  }

  .shop__slider-image {
    height: 280px;
    height: 17.5rem;
  }

  .shop__slider-btn--prev {
    left: 10px;
    left: .625rem;
  }

  .shop__slider-btn--next {
    right: 10px;
    right: .625rem;
  }

  .faq {
    padding-top: 100px;
    padding-top: 6.25rem;
    padding-bottom: 133px;
    padding-bottom: 8.3125rem;
  }

  .faq__title {
    margin-top: 15px;
    margin-top: .9375rem;
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0;
  }

  .faq__list {
    gap: 21px;
    gap: 1.3125rem;
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .faq__item {
    padding: 25px 20px 12px;
    padding: 1.5625rem 1.25rem .75rem;
  }

  .faq__question {
    padding-bottom: 7px;
    padding-bottom: .4375rem;
  }

  .faq__answer {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .header.is-opened {
    background: #66837B;
  }

  .header__inner {
    padding-left: 20px;
    padding-left: 1.25rem;
    height: 60px;
    height: 3.75rem;
  }

  .header__logo {
    gap: 6.8px;
    gap: .425rem;
  }

  .header__logo span {
    margin-top: 12px;
    margin-top: .75rem;
    height: 22px;
    height: 1.375rem;
  }

  .header__logo-figure {
    aspect-ratio: 232/41;
    width: 232px;
    width: 14.5rem;
  }

  .header__logo-text {
    font-size: 14px;
    font-size: .875rem;
  }

  .header__contact {
    display: none;
  }

  .header__hamburger {
    width: 65px;
    width: 4.0625rem;
    height: 60px;
    height: 3.75rem;
  }

  .header__drawer {
    top: 60px;
    top: 3.75rem;
    width: 100%;
    height: calc(100dvh - 3.75rem);
  }

  .header__nav {
    padding: 120px 50.5px 170px;
    padding: 7.5rem 3.15625rem 10.625rem;
  }

  .header__nav-link {
    font-size: 19px;
    font-size: 1.1875rem;
  }

  .header__nav-sub {
    margin-top: 29px;
    margin-top: 1.8125rem;
  }

  .header__overlay {
    display: none;
  }

  .contact {
    padding: 48px 20px;
    padding: 3rem 1.25rem;
  }

  .contact-tel__heading {
    font-size: 16px;
    font-size: 1rem;
  }

  .contact-tel__body {
    padding: 36px 20px 32px;
    padding: 2.25rem 1.25rem 2rem;
  }

  .contact-tel__number {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .contact-tel__hours {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .thanks {
    padding: 60px 20px 80px;
    padding: 3.75rem 1.25rem 5rem;
    min-height: calc(100vh - var(--header-height));
  }

  .thanks__inner {
    width: 100%;
  }

  .thanks__check-icon {
    width: 52px;
    width: 3.25rem;
    height: 52px;
    height: 3.25rem;
  }

  .thanks__title {
    margin-bottom: 28px;
    margin-bottom: 1.75rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .thanks__body {
    margin-bottom: 28px;
    margin-bottom: 1.75rem;
    padding: 28px 24px;
    padding: 1.75rem 1.5rem;
  }

  .thanks__text {
    font-size: 14px;
    font-size: .875rem;
  }

  .thanks__note {
    font-size: 12px;
    font-size: .75rem;
  }

  .thanks__tel-box {
    margin-bottom: 36px;
    margin-bottom: 2.25rem;
  }

  .thanks__tel-label {
    font-size: 14px;
    font-size: .875rem;
  }

  .thanks__tel-number {
    padding: 16px 20px 8px;
    padding: 1rem 1.25rem .5rem;
    font-size: 36px;
    font-size: 2.25rem;
  }

  .thanks__tel-hours {
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    font-size: 13px;
    font-size: .8125rem;
  }

  .thanks__btn {
    padding: 14px 36px;
    padding: .875rem 2.25rem;
    width: 100%;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-article__title {
    font-size: 24px;
  }

  .p-article__body {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 16px;
  }

  .p-article__body table th,
  .p-article__body table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-article__body table th {
    width: 153px;
    width: 9.5625rem;
  }

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 40px) / 3);
  }

  .p-footer__logo {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-header__logo {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-header__nav {
    display: block;
    margin-left: auto;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-header__nav ul {
    gap: 46px;
    gap: 2.875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-header__nav li > a {
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
  }

  .p-header__drawer {
    display: none;
  }
}

@media screen and (max-width: 479px) {

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 20px) / 2);
  }
}

@media (hover: hover) {

  .contact-form__privacy-link:hover {
    opacity: .7;
  }

  .contact-form__button:not(:disabled):hover {
    opacity: .7;
  }

  .cta-sns__link:hover {
    opacity: .7;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }

  .cta-buttons__btn:hover {
    opacity: .7;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }

  .cta-button:hover {
    opacity: .7;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }

  .case-accordion__btn:hover {
    opacity: .7;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }
}

@media (hover: hover) and (pointer: fine) {

  .footer__logo-link:hover {
    opacity: .7;
  }

  .footer__nav-link:hover {
    opacity: .7;
  }

  .consultation__link:hover {
    opacity: .7;
  }

  .subsidy__btn:hover {
    opacity: .7;
  }

  .flow__item-btn:hover {
    opacity: .7;
  }

  .shop__map-link:hover {
    opacity: .7;
  }

  .header__logo-link:hover {
    opacity: .7;
  }

  .header__contact:hover {
    opacity: .7;
  }

  .header__nav-link:hover {
    opacity: .7;
  }

  .header__nav-sub-link:hover {
    opacity: .7;
  }
}
/*# sourceMappingURL=map/style.css.map */