@charset "UTF-8";
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --content_width: 1000px;
  --content-both_space: 15px;
  --header_height:90px;
  --waves_height: 60px;
}

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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

html {
  -ms-overflow-style: scrollbar;
  font-size: 62.5%;
  overflow: auto;
}

body {
  background-color: #EFF0EA;
  color: #333333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: 100%;
  letter-spacing: 0;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

a,
button {
  color: inherit;
  text-decoration: none;
}

picture {
  display: block;
  line-height: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  background-color: transparent;
  border: none;
  border: none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  position: relative;
  vertical-align: middle;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  border-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}
[role=tabpanel][hidden] {
  display: none;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.js-fade,
.js-fade-child {
  opacity: 0;
  transition: 1s ease;
}

/* 下からふわっと */
.fadeBottom {
  transform: translate(0, 4rem);
}

.fadeUp {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: fadeUpAnime;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 右から */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translate(18rem, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes circlemove {
  0% {
    bottom: 10rem;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes circlemoveSp {
  0% {
    bottom: 8rem;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* -------------------------------------------*/
/* layout
-------------------------------------------------------*/
/**
 * input
 *
 */
input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
  border: none;
  border-radius: 0.4rem;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 1.2rem 1.5rem;
  position: relative;
  width: 100%;
}

input[type=number] {
  -moz-appearance: textfield;
}

/**
 * textarea
 *
 */
textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  box-shadow: none;
  color: #333333;
  font-size: 16px;
  height: 160px;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 1.2rem 1.5rem;
  position: relative;
  width: 100%;
}

input[type=text]:disabled {
  background: transparent;
  cursor: not-allowed;
}
input[type=text]:disabled::-moz-placeholder {
  color: #333333;
  opacity: 1;
}
input[type=text]:disabled::placeholder {
  color: #333333;
  opacity: 1;
}

/**
 * radio
 *
 */
input[type=radio] {
  display: none;
  vertical-align: middle;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

input[type=radio] + .mwform-radio-field-text {
  cursor: pointer;
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 10px 10px 10px 40px;
  position: relative;
  transition: 0.5;
  transition-property: color;
  vertical-align: middle;
}

input[type=radio] + .mwform-radio-field-text::before {
  border: 1px solid #7f7f7f;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s ease;
  width: 20px;
  z-index: 2;
}

input[type=radio] + .mwform-radio-field-text::after {
  background-color: #58692D;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 12px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  z-index: 5;
}

input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

/**
 * checkbox
 *
 */
input[type=checkbox] {
  display: none;
  vertical-align: middle;
}

input[type=checkbox] + .smf-checkbox-control__label,
input[type=checkbox] + .checkbox-inner {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 25px;
  position: relative;
}
input[type=checkbox] + .smf-checkbox-control__label::before,
input[type=checkbox] + .checkbox-inner::before {
  background: #fff;
  border: 1px #ccc solid;
  border-radius: 3px;
  box-sizing: border-box;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 20px;
  z-index: 2;
}

input[type=checkbox] + .smf-checkbox-control__label::after,
input[type=checkbox] + .checkbox-inner::after {
  background: url(../img/icon/icon_check.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  height: 9px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 8px;
  width: 12px;
  z-index: 3;
}

input[type=checkbox]:checked + .smf-checkbox-control__label::after,
input[type=checkbox]:checked + .checkbox-inner::after {
  opacity: 1;
}

/**
 * snow-monkey-form
 *
 */
.snow-monkey-form p {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.snow-monkey-form p.l-form__text {
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.snow-monkey-form p.l-form__text + .wp-block-snow-monkey-forms-item {
  margin-top: 80px;
}
.snow-monkey-form p + .wp-block-snow-monkey-forms-item {
  margin-top: 30px;
}
.snow-monkey-form .privacy-text {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
.snow-monkey-form .privacy-text a {
  text-decoration: underline;
}

.wp-block-snow-monkey-forms-item.smf-item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.wp-block-snow-monkey-forms-item.smf-item.hidden-field {
  display: none;
}
.wp-block-snow-monkey-forms-item.smf-item + .wp-block-snow-monkey-forms-item.smf-item {
  margin-top: 3.2rem;
}
.wp-block-snow-monkey-forms-item.smf-item + * {
  margin-top: 4rem;
}

.smf-item__col--label {
  align-items: center;
  display: flex;
}
.smf-item__col--controls {
  width: 100%;
}
.smf-item__label label {
  display: block;
}
.smf-item__label__text {
  align-items: center;
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  gap: 0.8rem;
  line-height: 1;
  position: relative;
}
.smf-item .smf-label-required,
.smf-item .smf-label-optional {
  border-radius: 0.2rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  padding-inline: 0.3rem;
}
.smf-item .smf-label-required {
  background: #ED6A02;
}
.smf-item .smf-label-optional {
  background: #888888;
}
.smf-item__description {
  color: #333333;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}
.smf-item__controls .smf-textarea-control__control, .smf-item__controls .smf-text-control__control {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  box-shadow: none;
  color: #333333;
  padding: 1.2rem 1.5rem;
}
.smf-item__controls .smf-textarea-control__control {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  box-shadow: none;
  color: #333333;
  padding: 1.2rem 1.5rem;
}
.smf-item__controls .smf-select-control {
  max-width: 32rem;
  width: 100%;
}
.smf-item__controls .smf-select-control__control {
  border: 1px solid #CCCCCC;
  border-radius: 0.4rem;
  box-shadow: none;
  color: #CCCCCC;
  font-size: 16px;
  line-height: 1.5;
  padding: 1.2rem 1.5rem;
  width: 100%;
}
.smf-item__controls .smf-select-control__toggle::before {
  aspect-ratio: 10/5;
  background: url(../images/icon/icon_form-toggle.svg) 50%/contain no-repeat;
  border: none;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}
.smf-item__controls .smf-checkboxes-control__control {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 16px;
  gap: 10px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.smf-item__controls .smf-checkboxes-control__control:invalid {
  color: #888;
}
.smf-item__controls .smf-checkboxes-control__control:not(:invalid) {
  color: #333333;
}
.smf-item__controls .smf-checkboxes-control__control .smf-label {
  margin-right: 0 !important;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.smf-item__controls .smf-checkbox-control__control {
  margin-top: 0.3rem;
}
.smf-item__controls .smf-radio-buttons-control__control {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  gap: 1.6rem 2.4rem;
  line-height: 1;
}
.smf-item__controls .smf-radio-button-control {
  align-items: center;
  gap: 0.4rem;
}
.smf-item__controls .smf-radio-button-control__control {
  border-color: #CCCCCC;
  margin: 0;
}
.smf-item__controls .smf-control-description {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 10px;
}
.smf-item .smf-placeholder {
  position: relative;
}
.smf-item .smf-placeholder .smf-error-messages {
  white-space: nowrap;
}
.smf-item .smf-error-messages {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 0;
  padding-left: 1rem;
}
.smf-item.--checkboxes {
  align-items: center;
}
.smf-item.--checkboxes .smf-item__label {
  padding-top: 0;
}
.smf-item.--content .smf-item__label {
  padding-top: 137px;
}

.smf-action {
  margin-top: 6.4rem;
}

.smf-button-control {
  display: block;
  margin-inline: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
  z-index: 1;
}
.smf-button-control::after {
  aspect-ratio: 12/9;
  background-color: #58692D;
  content: "";
  display: block;
  -webkit-mask: url(../images/icon/icon_arrow.svg) 50%/contain no-repeat;
  mask: url(../images/icon/icon_arrow.svg) 50%/contain no-repeat;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  z-index: 2;
}
.smf-button-control button[type=submit] {
  background: #fff;
  border: 1px solid #58692D;
  border-radius: 2px;
  color: #58692D;
  display: block;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding-block: 12px;
  padding-inline: 24px 91px;
  position: relative;
  text-align: left;
  width: 100%;
}

.snow-monkey-form[data-screen=confirm] .smf-action {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  margin-top: 6.4rem;
  max-width: 48rem;
}
.snow-monkey-form[data-screen=confirm] .smf-action .smf-button-control {
  margin-top: 0;
}
.snow-monkey-form[data-screen=confirm] .smf-button-control {
  display: block;
}
.snow-monkey-form[data-screen=confirm] .smf-button-control:has([data-action=back])::after {
  left: 15px;
  right: auto;
  transform: translateY(-50%) scale(-1, -1);
}
.snow-monkey-form[data-screen=confirm] .smf-button-control button[type=submit][data-action=back] {
  padding-inline: 91px 24px;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-archive__body {
  align-items: flex-start;
  display: flex;
  gap: 5.6rem;
}
.l-archive__main {
  flex: 1;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-cta {
  padding-bottom: 12rem;
  position: relative;
}
.l-cta::before {
  aspect-ratio: 229/76;
  background: url(../images/common/footer-treat.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  position: absolute;
  right: 11.6666666667%;
  top: 0.5rem;
  width: 15.9027777778%;
}
.l-cta .c-wave + * {
  padding-top: 8rem;
}
.l-cta .c-primary-title + * {
  margin-top: 6.4rem;
}
.l-cta__text {
  font-size: 1.8rem;
  line-height: 2.3333333333;
  text-align: center;
}
.l-cta__text + * {
  margin-top: 6.4rem;
}
.l-cta__buttons.l-grid {
  gap: 8rem;
}
.l-cta__buttons-link {
  align-items: center;
  background-color: #fff;
  border: 1px solid #58692D;
  border-radius: 0.4rem;
  display: flex;
  font-size: 2.4rem;
  gap: 1rem;
  justify-content: center;
  padding-block: 5.9rem;
  position: relative;
  z-index: 1;
}
.l-cta__buttons-link::after {
  aspect-ratio: 85/90;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 1.9rem;
  content: "";
  display: block;
  position: absolute;
  right: 1.5rem;
  width: 8.5rem;
  z-index: -1;
}
.l-cta__buttons-link.--mail::after {
  background-image: url(../images/common/cta-bg-mail.svg);
}
.l-cta__buttons-link.--line::after {
  background-image: url(../images/common/cta-bg-line.svg);
}
.l-cta__buttons-icon {
  display: block;
}
.l-cta__buttons-icon img {
  display: block;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-fixed {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.l-fixed__grant {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.l-fixed__grant::before {
  aspect-ratio: 36/16;
  background: url(../images/common/fixed-grant.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  width: 3.6rem;
}
.l-fixed__grant-text {
  background-color: #58692D;
  border-bottom-left-radius: 0.8rem;
  border-top-left-radius: 0.8rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1;
  padding: 1.6rem 1.5rem;
  white-space: nowrap;
  writing-mode: vertical-rl;
}
.l-fixed__grant-text .bold {
  font-size: 2rem;
  font-weight: 700;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-footer {
  padding-bottom: 6.2rem;
  padding-top: 5.9rem;
  position: relative;
}
.l-footer::before {
  background-color: #58692D;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  max-width: 136rem;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 95%;
}
.l-footer__body {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
.l-footer__body + * {
  margin-top: 3.5rem;
}
.l-footer__info {
  padding-top: 0.5rem;
}
.l-footer__logo {
  display: block;
  width: 28.8rem;
}
.l-footer__logo + * {
  margin-top: 4rem;
}
.l-footer__address-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.l-footer__address-title + * {
  margin-top: 0.8rem;
}
.l-footer__address-text {
  font-size: 1.8rem;
}
.l-footer__address-text span {
  display: inline-block;
}
.l-footer__nav {
  display: flex;
  gap: 6.4rem;
}
.l-footer__nav + * {
  margin-top: 1.4rem;
}
.l-footer__nav-item + .l-footer__nav-item {
  margin-top: 1.4rem;
}
.l-footer__nav-link {
  color: #58692D;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2222222222;
  padding-block: 0.5rem;
}
.l-footer__nav-child {
  margin-top: 0.7rem;
  padding-bottom: 0.1rem;
  padding-left: 1.6rem;
}
.l-footer__nav-child-item a {
  align-items: flex-start;
  color: #58692D;
  display: flex;
  font-size: 1.6rem;
  gap: 0.4rem;
  line-height: 1.5;
}
.l-footer__nav-child-item a::before {
  background-color: #58692D;
  content: "";
  height: 1px;
  margin-top: 1.2rem;
  width: 0.8rem;
}
.l-footer__nav-child-item a span {
  flex: 1;
}
.l-footer__nav-child-item + .l-footer__nav-child-item {
  margin-top: 0.8rem;
}
.l-footer__privacy {
  color: #888888;
  display: block;
  font-size: 1.4rem;
  line-height: 1.2142857143;
  margin-left: auto;
  padding-block: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.l-footer__copyright {
  font-size: 1.4rem;
  line-height: 1;
}

.l-footer--no-cta {
  padding-top: 0;
  position: relative;
}
.l-footer--no-cta::before {
  display: none;
}
.l-footer--no-cta::after {
  aspect-ratio: 229/76;
  background: url(../images/common/footer-treat.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  position: absolute;
  right: 11.6666666667%;
  top: 0.5rem;
  width: 15.9027777778%;
}
.l-footer--no-cta .c-wave + * {
  margin-top: 7.6rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-grid {
  display: grid;
  flex-wrap: wrap;
  gap: 4rem 6rem;
}

.l-grid--col2 {
  grid-template-columns: repeat(2, 1fr);
}

.l-grid--col3 {
  grid-template-columns: repeat(3, 1fr);
}

.l-grid--col4 {
  grid-template-columns: repeat(4, 1fr);
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-header {
  left: 0;
  padding-block: 3.2rem;
  padding-left: 4rem;
  position: absolute;
  top: 0;
  transition: all 0.5s;
  width: 100%;
}
.l-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.l-header__logo {
  position: relative;
  transition: all 0.5s;
  width: 33.5rem;
}
.l-header__logo a {
  display: block;
}
.l-header__logo-main.--white {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.l-header__right {
  align-items: center;
  background-color: #fff;
  border-bottom-left-radius: 10rem;
  border-top-left-radius: 10rem;
  box-shadow: 0px 0px 1.5rem 0px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 3rem;
  padding: 1.2rem 3.2rem;
  position: fixed;
  right: 0;
  top: 3.2rem;
  transition: all 0.5s;
  width: -moz-fit-content;
  width: fit-content;
}
.l-header__contact-link {
  align-items: center;
  background-color: #58692D;
  border: 1px solid #58692D;
  border-radius: 10rem;
  color: #fff;
  display: flex;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  gap: 0.5rem;
  line-height: 1.3333333333;
  padding: 1rem 3rem;
}
.l-header__contact-link::before {
  aspect-ratio: 18/14;
  background-color: #fff;
  content: "";
  display: block;
  -webkit-mask: url(../images/icon/icon_mail2.svg) 50%/contain no-repeat;
  margin-top: 0.2rem;
  mask: url(../images/icon/icon_mail2.svg) 50%/contain no-repeat;
  width: 1.8rem;
}
.l-header__trigger {
  align-items: center;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  height: 7rem;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: all 0.5s;
  width: 7rem;
}
.l-header__trigger-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  height: 100%;
  justify-content: center;
  padding-top: 0.6rem;
  position: relative;
  width: 100%;
}
.l-header__trigger-wrap {
  display: inline-block;
  height: 2.2rem;
  position: relative;
  transition: all 0.4s;
  width: 3.2rem;
}
.l-header__trigger-line {
  background-color: #58692D;
  display: inline-block;
  height: 0.2rem;
  left: 0;
  position: absolute;
  transition: all 0.5s;
  width: 100%;
}
.l-header__trigger-line:nth-of-type(1) {
  top: 0;
}
.l-header__trigger-line:nth-of-type(1).is-active {
  transform: translateY(1rem) rotate(-45deg);
}
.l-header__trigger-line:nth-of-type(2) {
  top: calc(50% - 1px);
}
.l-header__trigger-line:nth-of-type(2).is-active {
  opacity: 0;
}
.l-header__trigger-line:nth-of-type(3) {
  bottom: 0;
}
.l-header__trigger-line:nth-of-type(3).is-active {
  transform: translateY(-1rem) rotate(45deg);
}
.l-header__trigger-text {
  color: #58692D;
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
  text-align: center;
  width: 100%;
}
.l-header__trigger-text .open, .l-header__trigger-text .close {
  display: block;
  transform-origin: top;
  transition: all 0.5s;
  width: 100%;
}
.l-header__trigger-text .close {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(-45deg);
}

.l-header.is-top .l-header__logo-main.--white {
  opacity: 1;
}
.l-header.is-top .l-header__logo-main.--black {
  opacity: 0;
}

.l-header.active .l-header__logo {
  opacity: 0;
}
.l-header.active .l-header__trigger-text .open {
  opacity: 0;
  transform: rotate(45deg);
}
.l-header.active .l-header__trigger-text .close {
  opacity: 1;
  transform: rotate(0);
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-loading {
  align-items: center;
  background-color: #EFF0EA;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.8s ease;
  width: 100%;
  z-index: 100;
}
.l-loading.open {
  opacity: 1;
  pointer-events: auto;
}
.l-loading.none {
  display: none;
}
.l-loading.hide {
  opacity: 0;
  pointer-events: none;
}
.l-loading.none {
  display: none;
}

.l-loading__logo {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: fadeUpAnime;
  opacity: 0;
  width: 26rem;
}
.l-loading__logo img {
  height: auto;
  width: 100%;
}
.l-loading__logo.hide {
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-name: fadeOutAnime;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutAnime {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* -------------------------------------------*/
/* -------------------------------------------*/
.l-main {
  overflow-x: clip;
  position: relative;
  width: 100%;
}
.l-main__bg {
  background-color: #fff;
  width: 100%;
}
.l-main--404 {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding-block: 30vh 18rem;
}
.l-main--404 .error-h1 {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.l-main--404 .error-h1 .en {
  color: #58692D;
  font-family: "Tenor Sans", sans-serif;
  font-size: 8.6rem;
  font-weight: 900;
  line-height: 1.1981132075;
  text-transform: capitalize;
}
.l-main--404 .error-h1 .jp {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.5652173913;
  text-align: center;
}
.l-main--404 .error-h1 + * {
  margin-top: 2.4rem;
}
.l-main--404 .error-text {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  text-align: center;
}
.l-main--404 .error-text + * {
  margin-top: 4.5rem;
}
.l-main--404 .error-link .c-btn {
  margin-inline: auto;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
body.is-open .l-navi {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
body.is-open .l-navi__child-wrap.show {
  opacity: 1;
  visibility: visible;
}

.l-header.scrolled .l-navi__inner {
  gap: 0.8rem;
}
.l-navi__inner {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
  transition: all 0.5s;
}
.l-navi__logo {
  display: none;
}
.l-navi__menu {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 1.39vw, 2rem);
}
.l-navi__menu-item {
  position: relative;
}
.l-navi__menu-item.has-child .l-navi__menu-link {
  align-items: center;
  display: flex;
  gap: 0.4rem;
}
.l-navi__menu-item.has-child .l-navi__menu-link::after {
  aspect-ratio: 12/7;
  background: url(../images/icon/icon_arrow-nav.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  width: 1.2rem;
}
.l-navi__menu-link {
  display: block;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: 500;
  line-height: 1.2222222222;
  padding: 0.5rem 1rem;
}
.l-navi__child-wrap {
  background-color: #fff;
  border-radius: 1.6rem;
  bottom: -0.6rem;
  box-shadow: 0px 0.5rem 3rem rgba(0, 0, 0, 0.05);
  left: 50%;
  opacity: 0;
  padding: 2.4rem;
  position: absolute;
  transform: translate(-50%, 100%);
  transition: 0.3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  visibility: hidden;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
}
.l-navi__child-wrap.show {
  opacity: 1;
  visibility: visible;
}
.l-navi__child-wrap.hide {
  opacity: 0;
  transition: 0.3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  visibility: hidden;
}
.l-navi__child-item a {
  color: #58692D;
  display: block;
  padding-left: 1.2rem;
  position: relative;
}
.l-navi__child-item a::before {
  background-color: #58692D;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 0.7rem;
  width: 0.8rem;
}
.l-navi__child-item + .l-navi__child-item {
  margin-top: 1.8rem;
}
.l-navi__privacy-link {
  color: #888888;
  display: block;
  font-size: 1.4rem;
  line-height: 1.2142857143;
  padding-block: 0.5rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-service__h3 {
  align-items: center;
  color: #58692D;
  display: flex;
  font-size: 2.4rem;
  font-weight: 500;
  gap: 0.8rem;
  justify-content: center;
}
.l-service__h3::before, .l-service__h3::after {
  aspect-ratio: 1/1;
  background-color: #58692D;
  border-radius: 50%;
  content: "";
  display: block;
  width: 0.8rem;
}
.l-service__h3 + * {
  margin-top: 3.2rem;
}
.l-service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
}
.l-service__list.l-grid--col3 {
  position: relative;
}
.l-service__list.l-grid--col3::before {
  aspect-ratio: 240/236;
  background: url(../images/common/service-circle.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  position: absolute;
  right: 13.3rem;
  top: -15rem;
  width: 24rem;
}
.l-service__list.l-grid--col3 .l-service__item {
  width: calc(33.3333333333% - 2.6666666667rem);
}
.l-service__list.l-grid--col3 .l-service__item::before {
  display: none;
}
.l-service__list.l-grid--col2 {
  margin-inline: auto;
  max-width: 84rem;
}
.l-service__list.l-grid--col2 .l-service__item {
  width: calc(50% - 2rem);
}
.l-service__list.l-grid--col2 .l-service__item:nth-child(1)::before {
  aspect-ratio: 175/158;
  background: url(../images/common/service-triangle.svg) 50%/contain no-repeat;
  left: -16.5rem;
  top: 28.7rem;
  width: 17.5rem;
}
.l-service__list.l-grid--col2 .l-service__item:nth-child(2)::before {
  aspect-ratio: 161/162;
  background: url(../images/common/service-square.svg) 50%/contain no-repeat;
  right: -11.9rem;
  top: -1.4rem;
  width: 16.1rem;
}
.l-service__list + * {
  margin-top: 6rem;
}
.l-service__item {
  position: relative;
  z-index: 1;
}
.l-service__item::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.l-service__image {
  aspect-ratio: 400/283;
  border-radius: 1.6rem;
  overflow: hidden;
}
.l-service__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-service__image + * {
  margin-top: 2.4rem;
}
.l-service__h4 {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 0.6rem;
  line-height: 1;
}
.l-service__h4 .mn {
  font-size: 1.6rem;
}
.l-service__h4 .underline {
  background-color: #D2EEE8;
  font-size: 2.4rem;
  padding: 0.4rem 1rem;
}
.l-service__h4 + * {
  margin-top: 1.6rem;
}
.l-service__text {
  font-size: 1.6rem;
  line-height: 2;
}
.l-service__text + * {
  margin-top: 2.4rem;
}
.l-service__btn-link {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  gap: 0.8rem;
  justify-content: center;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-sidebar {
  width: 30rem;
}
.l-sidebar__title {
  border-bottom: 1px solid #58692D;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0.7rem;
  padding-inline: 0.4rem;
}
.l-sidebar__title + * {
  margin-top: 1.2rem;
}
.l-sidebar__nav {
  padding-inline: 0.8rem;
}
.l-sidebar__nav + *.l-sidebar__title {
  margin-top: 9rem;
}
.l-sidebar__nav--tag .l-sidebar__link::before {
  content: "#";
}
.l-sidebar__item + .l-sidebar__item {
  margin-top: 0.8rem;
}
.l-sidebar__link {
  display: block;
  font-size: 1.6rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-single__content h2 {
  border-bottom: 1px solid #58692D;
  font-size: 2.4rem;
  padding-bottom: 0.7rem;
}
.l-single__content h3 {
  font-size: 2rem;
}
.l-single__content h4,
.l-single__content h5,
.l-single__content h6 {
  font-size: 1.8rem;
}
.l-single__content h4 {
  padding-left: 2.8rem;
  position: relative;
}
.l-single__content h4 span {
  flex: 1;
}
.l-single__content h4::before {
  background-color: #58692D;
  content: "";
  display: inline-block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 1.4rem;
  width: 2.4rem;
}
.l-single__content h5 {
  background-color: #DBEFE7;
  padding: 1rem;
}
.l-single__content h2,
.l-single__content h3,
.l-single__content h4,
.l-single__content h5,
.l-single__content h6 {
  font-weight: 500;
}
.l-single__content h2 + *,
.l-single__content h3 + *,
.l-single__content h4 + *,
.l-single__content h5 + *,
.l-single__content h6 + * {
  margin-top: 0.8rem;
}
.l-single__content p,
.l-single__content li {
  color: #444444;
  font-size: 1.6rem;
  line-height: 2;
}
.l-single__content ul li + *,
.l-single__content ol li + * {
  margin-top: 0;
}
.l-single__content ol {
  list-style-position: inside;
  list-style-type: decimal !important;
}
.l-single__content ol li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.l-single__content ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.l-single__content ul li::before {
  background-color: #000;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 4px;
  margin-bottom: 3px;
  margin-left: 6px;
  margin-right: 10px;
  width: 4px;
}
.l-single__content figure {
  margin-bottom: 0;
}
.l-single__content figure.wp-block-table + * {
  margin-top: 5rem;
}
.l-single__content figure + * {
  margin-top: 3rem;
}
.l-single__content figure + h2, .l-single__content figure + h3, .l-single__content figure + h4, .l-single__content figure + h5, .l-single__content figure + h6 {
  margin-top: 5.6rem;
}
.l-single__content .wp-block-media-text__content {
  margin-top: 0;
}
.l-single__content p + h2, .l-single__content p + h3, .l-single__content p + h4, .l-single__content p + h5, .l-single__content p + h6, .l-single__content p + .wp-block-gallery,
.l-single__content ul + h2,
.l-single__content ul + h3,
.l-single__content ul + h4,
.l-single__content ul + h5,
.l-single__content ul + h6,
.l-single__content ul + .wp-block-gallery,
.l-single__content ol + h2,
.l-single__content ol + h3,
.l-single__content ol + h4,
.l-single__content ol + h5,
.l-single__content ol + h6,
.l-single__content ol + .wp-block-gallery,
.l-single__content details + h2,
.l-single__content details + h3,
.l-single__content details + h4,
.l-single__content details + h5,
.l-single__content details + h6,
.l-single__content details + .wp-block-gallery,
.l-single__content .wp-block-media-text + h2,
.l-single__content .wp-block-media-text + h3,
.l-single__content .wp-block-media-text + h4,
.l-single__content .wp-block-media-text + h5,
.l-single__content .wp-block-media-text + h6,
.l-single__content .wp-block-media-text + .wp-block-gallery,
.l-single__content .wp-block-group + h2,
.l-single__content .wp-block-group + h3,
.l-single__content .wp-block-group + h4,
.l-single__content .wp-block-group + h5,
.l-single__content .wp-block-group + h6,
.l-single__content .wp-block-group + .wp-block-gallery, .l-single__content wp-block-buttons + h2, .l-single__content wp-block-buttons + h3, .l-single__content wp-block-buttons + h4, .l-single__content wp-block-buttons + h5, .l-single__content wp-block-buttons + h6, .l-single__content wp-block-buttons + .wp-block-gallery,
.l-single__content .wp-block-table + h2,
.l-single__content .wp-block-table + h3,
.l-single__content .wp-block-table + h4,
.l-single__content .wp-block-table + h5,
.l-single__content .wp-block-table + h6,
.l-single__content .wp-block-table + .wp-block-gallery {
  margin-top: 5.6rem;
}
.l-single__content p + *,
.l-single__content ul + *,
.l-single__content ol + *,
.l-single__content details + *,
.l-single__content .wp-block-media-text + *,
.l-single__content .wp-block-group + *, .l-single__content wp-block-buttons + *,
.l-single__content .wp-block-table + * {
  margin-top: 1.6rem;
}
.l-single__content strong {
  font-weight: 700;
}
.l-single__content em {
  font-style: italic;
  font-weight: 500;
}
.l-single__content a {
  text-decoration: underline;
  transition: all 0.25s;
}
.l-single__content a:hover, .l-single__content a:focus {
  opacity: 0.7;
}
.l-single__content + * {
  margin-top: 7.2rem;
}
.l-single__related.l-grid {
  gap: 1.6rem 3.9rem;
}
.l-single__related-link {
  background-color: #fff;
  border-radius: 1.6rem;
  display: block;
  height: 100%;
  padding: 1.6rem;
}
.l-single__related-info {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}
.l-single__related-info + * {
  margin-top: 0.8rem;
}
.l-single__related-category {
  border: 1px solid #58692D;
  border-radius: 10rem;
  color: #58692D;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  padding: 0 0.7rem;
}
.l-single__related-time {
  color: #CCCCCC;
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}
.l-single__related-title {
  display: -webkit-box;
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.l-single__related-title + * {
  margin-top: 0.8rem;
}
.l-single__related + * {
  margin-top: 7rem;
}
.l-single__btn .c-btn {
  margin-inline: auto;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-undermv__block {
  overflow: hidden;
}

.l-undermv {
  padding-top: 13.4rem;
  position: relative;
  z-index: 1;
}
.l-undermv::after {
  aspect-ratio: 1327/625;
  background: url(../images/common/undermv-bg.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  position: absolute;
  right: -8.68vw;
  top: 8.4rem;
  width: 92.15vw;
  z-index: -1;
}
.l-undermv + .c-wave {
  margin-top: -1.2rem;
  position: relative;
  z-index: 1;
}
.l-undermv__body {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 41.6rem;
  position: relative;
}
.l-undermv__contents {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.l-undermv__contents + * {
  margin-bottom: 2rem;
}
.l-undermv__title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
.l-undermv__title-ja {
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 4rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.l-undermv__title-en {
  color: #fff;
  font-family: "Oooh Baby", cursive;
  font-size: 10.4rem;
  line-height: 1;
  position: absolute;
  right: 4rem;
  text-transform: capitalize;
  top: 50%;
  transform: translate(100%, -50%);
  white-space: nowrap;
  z-index: -1;
}
.l-undermv__description {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.l-undermv__description strong {
  background: linear-gradient(transparent 55%, #fff 55%, #fff 95%, transparent 95%, transparent 100%);
  font-weight: 500;
}
.l-undermv__thumbnail {
  width: 34.6666666667%;
}
.l-undermv__thumbnail-wrap {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}
.l-undermv__thumbnail-wrap.--noimage::after {
  aspect-ratio: 498/240;
  background: url(../images/common/udnermv-treat01.svg) 50%/contain no-repeat;
  left: auto;
  right: 0;
  top: 11rem;
  width: 49.8rem;
}
.l-undermv__thumbnail-wrap::after {
  aspect-ratio: 624/331;
  background: url(../images/common/udnermv-treat02.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  left: -7.9rem;
  position: absolute;
  top: 0;
  width: 62.4rem;
  z-index: -1;
}
.l-undermv__thumbnail-image {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.l-undermv__thumbnail-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-undermv__breadcrumbs {
  background-color: #fff;
  overflow: scroll;
  position: relative;
  z-index: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-undermv__breadcrumbs::-webkit-scrollbar {
  display: none;
}
.l-undermv__breadcrumbs ol {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
}
.l-undermv__breadcrumbs ol li {
  color: #888888;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}
.l-undermv__breadcrumbs ol li:first-child a {
  align-items: center;
  display: flex;
  gap: 0.3rem;
}
.l-undermv__breadcrumbs ol li:first-child a::before {
  aspect-ratio: 13/14;
  content: "";
  display: block;
  width: 1.3rem;
  -webkit-mask: url(../images/icon/icon_home.svg) 50%/contain no-repeat;
  background-color: #58692D;
  mask: url(../images/icon/icon_home.svg) 50%/contain no-repeat;
}
.l-undermv__breadcrumbs ol li + li {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}
.l-undermv__breadcrumbs ol li + li::before {
  aspect-ratio: 4/6;
  background: url(../images/icon/icon_breadcrumbs.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  width: 0.4rem;
}
.l-undermv__breadcrumbs ol li br {
  display: none;
}
.l-undermv__breadcrumbs ol li a {
  color: #58692D;
  padding-block: 0.2rem;
}
.l-undermv__breadcrumbs + * {
  padding-top: 12rem;
}
.l-undermv__breadcrumbs + *.p-service-top {
  padding-top: 6rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.c-accordion {
  background-color: #fff;
  border-radius: 1.6rem;
  position: relative;
}
.c-accordion[open] .c-accordion__btn-icon .plus {
  opacity: 0;
  visibility: hidden;
}
.c-accordion[open] .c-accordion__btn-icon .minus {
  opacity: 1;
  visibility: visible;
}
.c-accordion__btn {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 2.4rem;
  font-weight: 500;
  gap: 2rem;
  padding: 3.2rem;
}
.c-accordion__btn-title {
  flex: 1;
}
.c-accordion__btn-title .box {
  background-color: #CAE6F5;
  display: block;
  line-height: 1;
  padding: 0.4rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
.c-accordion__btn-icon {
  display: block;
  position: relative;
  width: 1.8rem;
}
.c-accordion__btn-icon img {
  transition: all 0.4s;
}
.c-accordion__btn-icon .minus {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
}
.c-accordion__btn-icon img {
  display: block;
}
.c-accordion__contents-body {
  padding-bottom: 6.4rem;
  padding-inline: 3.2rem;
}
.c-accordion + .c-accordion {
  margin-top: 2.4rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.c-btn {
  align-items: center;
  color: #58692D;
  display: flex;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 1.6rem;
  gap: 0.8rem;
  letter-spacing: 0.05em;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn__arrow {
  aspect-ratio: 40/32;
  background: url(../images/icon/icon_arrow-bg.svg) 50%/contain no-repeat;
  position: relative;
  width: 4rem;
  z-index: 1;
}
.c-btn__arrow::before, .c-btn__arrow::after {
  background-color: #58692D;
  content: "";
  display: block;
  position: absolute;
}
.c-btn__arrow::before {
  aspect-ratio: 12/9;
  left: 50%;
  -webkit-mask: url(../images/icon/icon_arrow.svg) 50%/contain no-repeat;
  mask: url(../images/icon/icon_arrow.svg) 50%/contain no-repeat;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
}
.c-btn__arrow::after {
  background: url(../images/icon/icon_arrow-bg2.svg) 50%/contain no-repeat;
  height: 100%;
  left: 0;
  opacity: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.c-btn--white {
  color: #fff;
}
.c-btn--white .c-btn__arrow {
  background-image: url(../images/icon/icon_arrow-bg3.svg);
}
.c-btn--back .c-btn__arrow::before {
  transform: translate(-50%, -50%) scale(-1, -1);
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.c-card-post__link {
  display: block;
}

.c-card-post__image {
  aspect-ratio: 450/278;
  border-radius: 0.4rem;
  overflow: hidden;
}
.c-card-post__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.c-card-post__image + * {
  margin-top: 2.4rem;
}

.c-card-post__meta {
  align-items: center;
  display: flex;
  gap: 1.6rem;
}
.c-card-post__meta + * {
  margin-top: 1.6rem;
}

.c-card-post__date {
  color: #58692D;
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 0.2rem;
}

.c-card-post__cat {
  background-color: #fff;
  border: 1px solid #58692D;
  color: #58692D;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625;
  padding-inline: 0.9rem;
  width: -moz-fit-content;
  width: fit-content;
}

.c-card-post__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}
.c-card-post__title + * {
  margin-top: 1.6rem;
}

.c-card-post__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.c-card-post__tag-item {
  color: #888888;
  display: flex;
  font-size: 1.4rem;
  line-height: 1;
}
.c-card-post__tag-item::before {
  content: "#";
}

/* カード大
-------------------------------------------*/
.c-card-post__item--large .c-card-post__meta {
  gap: 1rem;
}
.c-card-post__item--large .c-card-post__cat {
  padding-inline: 1.8rem;
}
.c-card-post__item--large .c-card-post__title {
  font-size: 2rem;
  line-height: 2;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* ページャー
-------------------------------------------*/
.c-pager {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}
.c-pager__button {
  align-items: center;
  background: #fff;
  border: 1px solid #58692D;
  border-radius: 50%;
  display: flex;
  height: 2.8rem;
  justify-content: center;
  position: relative;
  width: 2.8rem;
}

.c-pager__button::after {
  aspect-ratio: 6/10;
  background-color: #58692D;
  content: "";
  display: block;
  -webkit-mask: url(../images/icon/icon_arrow-pager.svg) 50%/contain no-repeat;
  mask: url(../images/icon/icon_arrow-pager.svg) 50%/contain no-repeat;
  width: 0.6rem;
}

.c-pager__button--prev::after {
  transform: none;
}

.c-pager__button--next::after {
  transform: scale(-1, -1);
}

.c-pager__button--none {
  opacity: 0.3;
  pointer-events: none;
}

.c-pager__list {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}

.c-pager__list-item {
  display: flex;
}

.c-pager__list-link {
  align-items: center;
  aspect-ratio: 1/1;
  border: 1px solid #58692D;
  border-radius: 50%;
  color: #58692D;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  justify-content: center;
  padding-top: 0.2rem;
  transition: color 0.2s;
  width: 3.6rem;
}

.c-pager__list-link--dots {
  font-size: 1.6rem;
  width: 1.3rem;
}
.c-pager__list-item.is-current .c-pager__list-link {
  background-color: #58692D;
  color: #fff;
  pointer-events: none;
}
/* -------------------------------------------*/
/* -------------------------------------------*/
.c-primary-title {
  align-items: flex-start;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.8rem;
}
.c-primary-title__jp {
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c-primary-title__en {
  color: #58692D;
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}
.c-primary-title__en .lowercase {
  text-transform: lowercase;
}
.c-primary-title--white .c-primary-title__jp,
.c-primary-title--white .c-primary-title__en {
  color: #fff;
}
.c-primary-title--center {
  align-items: center;
  text-align: center;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.c-wave {
  width: 100%;
}
.c-wave img {
  display: block;
  width: 100%;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-top-area {
  margin-inline: auto;
  max-width: 1680px;
}
.p-top-area + * {
  margin-top: 12rem;
}
.p-top-area__body {
  display: flex;
  gap: 2.2rem;
  position: relative;
  z-index: 1;
}
.p-top-area__body::after {
  background-color: #fff;
  border-radius: 0.4rem;
  bottom: 0;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  left: -12rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.p-top-area__map {
  margin-left: -12rem;
  position: relative;
  width: 58.1666666667%;
}
.p-top-area__map picture {
  height: 100%;
}
.p-top-area__map picture img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 90%;
  object-position: 90%;
}
.p-top-area__contents {
  padding: 7.2rem 6.4rem 9.7rem;
  position: relative;
  width: 50%;
}
.p-top-area__contents::after {
  aspect-ratio: 78/50;
  background: url(../images/top/area-treat.svg) 50%/contain no-repeat;
  bottom: 3rem;
  content: "";
  display: block;
  position: absolute;
  right: 4rem;
  width: 7.8rem;
}
.p-top-area .c-primary-title + * {
  margin-top: 4rem;
}
.p-top-area__text {
  font-size: 1.8rem;
  line-height: 2;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-top-message {
  background: url(../images/top/message-bg.webp) 50%/cover no-repeat;
  color: #fff;
  padding-block: max(8rem, 5.56vw) max(9.2rem, 6.39vw);
  position: relative;
}
.p-top-message::after {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.p-top-message .u-con--md {
  position: relative;
  z-index: 1;
}
.p-top-message .u-con--md::after {
  aspect-ratio: 155/54;
  background: url(../images/top/message-treat.svg) 50%/contain no-repeat;
  bottom: 0;
  content: "";
  display: block;
  left: 27.7rem;
  position: absolute;
  width: 15.5rem;
}
.p-top-message .c-primary-title + * {
  margin-top: 4.8rem;
}
.p-top-message__text {
  font-size: 1.8rem;
  line-height: 2;
}
.p-top-message__text + * {
  margin-top: 4.8rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-top-mv {
  height: 100vh;
  max-height: 108rem;
  min-height: 60rem;
  position: relative;
}
.p-top-mv__body {
  background: url(../images/top/mv-bg.svg) 50% 0%/cover no-repeat;
  bottom: -3.75vw;
  position: absolute;
  width: 100%;
}
.p-top-mv__body::before {
  content: "";
  display: block;
  position: absolute;
}
.p-top-mv__inner {
  margin-inline: auto;
  width: 83.3333333333%;
}
.p-top-mv__contents {
  margin-left: auto;
  padding-top: 10.49vw;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.p-top-mv__contents::after {
  aspect-ratio: 71/94;
  background: url(../images/top/mv-treat.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  left: -2.43vw;
  position: absolute;
  top: 14.58vw;
  transform: translateX(-100%);
  width: 4.93vw;
  z-index: 2;
}
.p-top-mv__lead {
  display: flex;
  flex-direction: column;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 2.78vw;
  gap: 1.94vw;
  line-height: 1;
}
.p-top-mv__lead-text01 {
  align-items: center;
  display: flex;
  gap: 0.56vw;
  white-space: nowrap;
}
.p-top-mv__lead-text01 .img {
  position: relative;
  width: 19.76vw;
  z-index: 1;
}
.p-top-mv__lead-text01 .img::before {
  aspect-ratio: 276/56;
  background-color: #fff;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 19.17vw;
  z-index: -1;
}
.p-top-mv__lead-text01 .img img {
  width: 100%;
}
.p-top-mv__lead + * {
  margin-top: 2.78vw;
}
.p-top-mv__text {
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: max(12px, 1.25vw);
  line-height: 2;
  position: relative;
  z-index: 2;
}
.p-top-mv__text .u-pt {
  display: none !important;
}
.p-top-mv__text span {
  display: inline-block;
}
.p-top-mv__bg {
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.p-top-mv__bg::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0) 100%);
  content: "";
  height: 25%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p-top-mv__bg picture {
  height: 100%;
}
.p-top-mv__bg picture img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.p-top-mv__treat {
  color: #fff;
  font-family: "Oooh Baby", cursive;
  font-size: 5.6rem;
  font-size: 3.89vw;
  line-height: 1.6071428571;
  margin-top: 7.8rem;
  text-align: center;
}

.p-top-mv__lead {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.p-top .l-fixed {
  opacity: 0;
}

.p-top.is-animated.first .p-top-mv__lead {
  animation-delay: 3s;
}
.p-top.is-animated.first .l-fixed {
  animation-delay: 3.8s;
}
.p-top.is-animated .l-fixed {
  animation: slideInRight 0.8s 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.p-top.is-animated .p-top-mv__lead {
  animation-name: fadeUpAnime;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-top-news {
  padding-block: 4rem 12rem;
}
.p-top-news__body {
  align-items: flex-start;
  display: flex;
  gap: 0 4rem;
  justify-content: space-between;
  padding-inline: 4rem;
}
.p-top-news__box {
  width: 13.5rem;
}
.p-top-news .c-primary-title + * {
  margin-top: 3.2rem;
}
.p-top-news__btn {
  order: 3;
}
.p-top-news__contents {
  flex: 1;
  max-width: 90.8rem;
}
.p-top-news__item {
  border-bottom: 1px solid #58692D;
}
.p-top-news__item + * {
  margin-top: 0.8rem;
}
.p-top-news__link {
  align-items: center;
  display: flex;
  gap: 2.4rem;
  padding-block: 1.6rem 2.4rem;
  padding-inline: 0.8rem 1.6rem;
}
.p-top-news__link::after {
  aspect-ratio: 12/9;
  background: url(../images/icon/icon_arrow.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  width: 1.2rem;
}
.p-top-news__date {
  color: #58692D;
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 2px;
}
.p-top-news__title {
  display: -webkit-box;
  flex: 1;
  font-size: 1.8rem;
  line-height: 1.8888888889;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-top-service {
  padding-block: 6.4rem 12rem;
}
.p-top-service .c-primary-title + * {
  margin-top: 8rem;
}
.p-top-service__section {
  align-items: flex-start;
  display: flex;
}
.p-top-service__section:nth-child(even) {
  flex-direction: row-reverse;
}
.p-top-service__section:nth-child(1) .p-top-service__section-treat {
  width: 12rem;
}
.p-top-service__section:nth-child(1) .p-top-service__section-treat + * {
  margin-top: 5rem;
}
.p-top-service__section:nth-child(2) .p-top-service__section-box {
  padding-top: 4rem;
  position: relative;
}
.p-top-service__section:nth-child(2) .p-top-service__section-treat {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  width: 7.1rem;
}
.p-top-service__section:nth-child(3) .p-top-service__section-contents {
  align-items: center;
}
.p-top-service__section:nth-child(3) .p-top-service__section-image {
  position: relative;
}
.p-top-service__section:nth-child(3) .p-top-service__section-treat {
  left: 1.8rem;
  position: absolute;
  top: -3rem;
  width: 4.7rem;
}
.p-top-service__section + * {
  margin-top: 8rem;
}
.p-top-service__section-contents {
  display: flex;
  flex: 1;
  gap: 4rem;
}
.p-top-service__section-box {
  flex: 1;
  z-index: 2;
}
.p-top-service__section-image {
  width: 50%;
}
.p-top-service__section-image figure {
  aspect-ratio: 1/1;
  border-radius: 0.4rem;
  margin-inline: auto;
  overflow: hidden;
  width: 71.6666666667%;
}
.p-top-service__section-image figure img {
  width: 100%;
}
.p-top-service__title {
  position: relative;
  writing-mode: vertical-lr;
}
.p-top-service__title--sp {
  display: none;
}
.p-top-service__title-jp {
  color: #58692D;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 3.2rem;
  left: 0;
  line-height: 1;
  position: absolute;
  text-orientation: upright;
  top: 0;
}
.p-top-service__title-en {
  color: #EFF0EA;
  font-family: "Oooh Baby", cursive;
  font-size: 10.4rem;
  line-height: 1;
  white-space: nowrap;
}
.p-top-service__title-en::first-letter {
  text-transform: capitalize;
}
.p-top-service__text {
  font-size: 1.8rem;
  line-height: 2;
}
.p-top-service__text .underline {
  background: linear-gradient(to bottom, transparent 60%, #fff 60%, #fff 95%, transparent 95%);
  font-weight: 500;
}
.p-top-service__text + * {
  margin-top: 4rem;
}
.p-top-service__balloon {
  background-color: #58692D;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  padding-block: 0.3rem 0.5rem;
  padding-inline: 1rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.p-top-service__balloon::after {
  aspect-ratio: 10/12;
  background-color: #58692D;
  bottom: 1px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 100%);
  width: 1.2rem;
}
.p-top-service__balloon + * {
  margin-top: 2rem;
}
.p-top-service__balloon-text {
  font-size: 1.8rem;
}
.p-top-service__balloon-text .underline {
  background: linear-gradient(to bottom, transparent 60%, #EFF0EA 60%, #EFF0EA 95%, transparent 95%);
  font-weight: 700;
}
.p-top-service__balloon-text + * {
  margin-top: 4rem;
}
.p-top-service__summary {
  margin-inline: auto;
  max-width: 80rem;
  padding-top: 15.6rem;
  position: relative;
}
.p-top-service__summary-title {
  aspect-ratio: 376/155;
  background: url(../images/top/service-balloon.svg) 50%/contain no-repeat;
  color: #58692D;
  font-size: 2rem;
  font-weight: 700;
  left: -15.1rem;
  line-height: 1.4;
  padding-top: 5.68rem;
  position: absolute;
  top: 0;
  width: 37.6rem;
}
.p-top-service__summary-title span {
  display: block;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.p-top-service__summary-title::after {
  aspect-ratio: 215/204;
  background: url(../images/top/service-summary-illust.svg) 50%/contain no-repeat;
  bottom: 3.4rem;
  content: "";
  display: block;
  left: -3.2rem;
  position: absolute;
  transform: translateY(100%);
  width: 21.5rem;
}
.p-top-service__summary-body {
  background-color: #EFF0EA;
  border-radius: 0.4rem;
  padding: 3.4rem 4rem 3.2rem;
}
.p-top-service__summary-list {
  align-items: center;
  background-color: #fff;
  border: 1px solid #58692D;
  border-radius: 0.4rem;
  display: flex;
  gap: 1.6rem 2.4rem;
  justify-content: center;
  padding-block: 0.9rem;
}
.p-top-service__summary-item {
  align-items: flex-start;
  color: #58692D;
  display: flex;
  font-size: 1.4rem;
  font-weight: 700;
  gap: 0.3rem;
  line-height: 1;
}
.p-top-service__summary-item::before {
  aspect-ratio: 18/14;
  background: url(../images/icon/icon_check.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  width: 1.8rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-top-sns {
  padding-block: 12rem;
}
.p-top-sns__body {
  align-items: center;
  display: flex;
  gap: 4rem 3.2rem;
  justify-content: space-between;
}
.p-top-sns .c-primary-title {
  position: relative;
}
.p-top-sns .c-primary-title::before {
  aspect-ratio: 1.5581395349;
  background: url(../images/top/sns-treat.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  left: -3.1rem;
  position: absolute;
  top: -0.3rem;
  transform: translateY(-100%);
  width: 6.7rem;
}
.p-top-sns__buttons.l-grid {
  flex: 1;
  gap: 4.3rem;
  max-width: 90.3rem;
}
.p-top-sns__buttons-link {
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  color: #58692D;
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  gap: 1rem;
  justify-content: center;
  padding-block: 4.65rem;
}
.p-top-sns__buttons-link::after {
  aspect-ratio: 1/1;
  background: url(../images/icon/icon_blank.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  width: 1.6rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-top-works {
  padding-bottom: 12rem;
}
.p-top-works .c-wave + * {
  margin-top: 12rem;
}
.p-top-works .u-con--md {
  position: relative;
}
.p-top-works .u-con--md::before {
  aspect-ratio: 106/112;
  background: url(../images/top/works-illust.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  position: absolute;
  right: -3rem;
  top: -5.6rem;
  width: 10.6rem;
}
.p-top-works__head {
  align-items: flex-end;
  display: flex;
  gap: 4rem;
}
.p-top-works__body {
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding-top: 6.4rem;
}
.p-top-works__body-inner.swiper {
  margin-inline: 0;
  max-width: 118rem;
  overflow: visible;
  padding-right: 4rem;
}
.p-top-works__body-inner.swiper .c-card-post__item {
  opacity: 0.1;
  transition: all 0.3s;
}
.p-top-works__body-inner.swiper .c-card-post__item.swiper-slide-active, .p-top-works__body-inner.swiper .c-card-post__item.swiper-slide-next {
  opacity: 1;
}
.p-top-works__next {
  align-items: center;
  aspect-ratio: 72/58;
  background: url(../images/icon/icon_nav-bg.svg) 50%/contain no-repeat;
  color: #58692D;
  display: flex;
  flex-direction: column-reverse;
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.6rem;
  gap: 0.5rem;
  height: auto;
  justify-content: center;
  line-height: 1;
  margin-top: 0;
  padding-top: 0.4rem;
  position: absolute;
  right: 0;
  text-transform: capitalize;
  top: -2.9rem;
  transform: none;
  width: 7.2rem;
  z-index: 1;
}
.p-top-works__next::before, .p-top-works__next::after {
  background-color: #58692D;
  content: "";
  display: block;
}
.p-top-works__next::before {
  aspect-ratio: 12/9;
  -webkit-mask: url(../images/icon/icon_arrow.svg) 50%/contain no-repeat;
  mask: url(../images/icon/icon_arrow.svg) 50%/contain no-repeat;
  width: 1.2rem;
}
.p-top-works__next::after {
  background: url(../images/icon/icon_arrow-bg2.svg) 50%/contain no-repeat;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-top-bg__white {
  padding-bottom: 20rem;
  position: relative;
  z-index: 1;
}
.p-top-bg__white::before {
  background-color: #fff;
  border-radius: 10rem;
  content: "";
  display: block;
  height: calc(100% - 20.2rem);
  position: absolute;
  top: 20.2rem;
  width: 100%;
  z-index: -1;
}
.p-top-bg__white + * {
  margin-top: -20rem;
}
.p-top-bg__white-image {
  margin-left: auto;
  position: relative;
  width: 94.4444444444%;
}
.p-top-bg__white-image::before, .p-top-bg__white-image::after {
  content: "";
  display: block;
  position: absolute;
}
.p-top-bg__white-image::before {
  aspect-ratio: 154/155;
  background: url(../images/top/bg_white-treat01.svg) 50%/contain no-repeat;
  right: 8rem;
  top: -8.3rem;
  width: 15.4rem;
}
.p-top-bg__white-image::after {
  aspect-ratio: 268/172;
  background: url(../images/top/bg_white-treat02.svg) 50%/contain no-repeat;
  bottom: -4.8rem;
  left: -3.9rem;
  width: 26.8rem;
}
.p-top-bg__white-image picture {
  border-radius: 3.2rem 0 0 3.2rem;
  display: block;
  overflow: hidden;
}
.p-top-bg__white-image picture img {
  max-height: 480px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-about-message {
  padding-block: 12rem;
}
.p-about-message .u-con--md {
  position: relative;
}
.p-about-message .c-primary-title {
  position: relative;
  z-index: 2;
}
.p-about-message__body {
  align-items: flex-start;
  display: flex;
  gap: 1.6rem 4rem;
  justify-content: space-between;
  margin-top: -1.3rem;
  padding-block: 8rem 8.3rem;
  position: relative;
  z-index: 1;
}
.p-about-message__body::after {
  background-color: #fff;
  border-bottom-right-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
  bottom: 0;
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
  content: "";
  position: absolute;
  right: 8rem;
  top: 0;
  width: 100vw;
  z-index: -1;
}
.p-about-message__body-inner {
  flex: 1;
  max-width: 79.6rem;
}
.p-about-message__lead {
  color: #58692D;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 2.4rem;
}
.p-about-message__lead .ls {
  display: inline-block;
  margin-left: -0.5em;
}
.p-about-message__lead + * {
  margin-top: 2.4rem;
}
.p-about-message__text {
  font-size: 1.8rem;
  line-height: 2;
}
.p-about-message__text + *.p-about-message__lead {
  margin-top: 6.4rem;
}
.p-about-message__profile {
  aspect-ratio: 1/1;
  position: relative;
  width: 32rem;
}
.p-about-message__image {
  border-radius: 0.4rem;
  overflow: hidden;
}
.p-about-message__name-wrap {
  bottom: 2rem;
  color: #fff;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  right: 2rem;
  text-align: right;
}
.p-about-message__position + * {
  margin-top: 1rem;
}
.p-about-message__name-ja {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
.p-about-message__name-ja + * {
  margin-top: 1.3rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-about-overview {
  padding-bottom: 12rem;
}
.p-about-overview .c-wave + * {
  margin-top: 12rem;
}
.p-about-overview .u-con--md {
  position: relative;
}
.p-about-overview .u-con--md::before {
  aspect-ratio: 61/147;
  background: url(../images/about/overview-treat.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  position: absolute;
  right: 10.8rem;
  top: -4.6rem;
  transform: translateY(-100%);
  width: 6.1rem;
}
.p-about-overview .c-primary-title + * {
  margin-top: 6.4rem;
}
.p-about-overview__body {
  align-items: flex-start;
  display: flex;
  gap: 3.9rem;
}
.p-about-overview__info {
  width: 50%;
}
.p-about-overview__dl-inner {
  align-items: flex-start;
  border-bottom: 1px solid #58692D;
  display: flex;
  gap: 1.6rem 0.8rem;
  padding-bottom: 2rem;
}
.p-about-overview__dl-inner + * {
  margin-top: 2rem;
}
.p-about-overview__dt, .p-about-overview__dd {
  font-size: 1.8rem;
}
.p-about-overview__dt {
  color: #58692D;
  font-weight: 700;
  padding-left: 0.8rem;
  width: 12rem;
}
.p-about-overview__dd {
  flex: 1;
}
.p-about-overview__dd a {
  color: #1473CC;
  text-decoration: underline;
}
.p-about-overview__dd-inner + * {
  margin-top: 1.7rem;
}
.p-about-overview__map {
  aspect-ratio: 560/346;
  flex: 1;
}
.p-about-overview__map iframe {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-about-policy {
  padding-top: 12rem;
}
.p-about-policy__body {
  margin-inline: auto;
  max-width: 64rem;
  position: relative;
}
.p-about-policy__body::before, .p-about-policy__body::after {
  content: "";
  display: block;
  position: absolute;
}
.p-about-policy__body::before {
  aspect-ratio: 60/91;
  background: url(../images/about/policy-treat1.svg) 50%/contain no-repeat;
  left: -8.7rem;
  top: 0;
  transform: translateX(-100%);
  width: 6rem;
}
.p-about-policy__body::after {
  aspect-ratio: 113/101;
  background: url(../images/about/policy-treat2.svg) 50%/contain no-repeat;
  bottom: 8rem;
  right: -11.1rem;
  transform: translateX(100%);
  width: 11.3rem;
}
.p-about-policy .c-primary-title {
  gap: 0.8rem;
}
.p-about-policy .c-primary-title__jp {
  color: #58692D;
  font-size: 2.8rem;
}
.p-about-policy .c-primary-title + * {
  margin-top: 6.4rem;
}
.p-about-policy__text {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}
.p-about-policy__text + * {
  margin-top: 3.6rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-about-privacy {
  padding-block: 12rem;
}
.p-about-privacy .c-primary-title + * {
  margin-top: 12rem;
}
.p-about-privacy__text, .p-about-privacy__list, .p-about-privacy__address {
  font-size: 1.6rem;
}
.p-about-privacy__text + .p-about-privacy__title, .p-about-privacy__list + .p-about-privacy__title, .p-about-privacy__address + .p-about-privacy__title {
  margin-top: 6.4rem;
}
.p-about-privacy__text + *, .p-about-privacy__list + *, .p-about-privacy__address + * {
  margin-top: 1.6rem;
}
.p-about-privacy__text-lead + .p-about-privacy__title {
  margin-top: 4rem;
}
.p-about-privacy__list li {
  padding-left: 1em;
  position: relative;
}
.p-about-privacy__list li::before {
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}
.p-about-privacy__title {
  align-items: center;
  color: #58692D;
  display: flex;
  font-size: 2.4rem;
  font-weight: 700;
  gap: 1rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.p-about-privacy__title::after {
  background-color: #58692D;
  content: "";
  display: block;
  flex: 1;
  height: 1px;
}
.p-about-privacy__title + * {
  margin-top: 2.4rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
.p-service-electric > *:last-child {
  padding-bottom: 12rem;
}
.p-service-electric .l-undermv__block + * {
  padding-top: 8rem;
}
.p-service-electric .l-undermv__title-en {
  right: -11.3rem;
  transform: translate(0%, -50%);
}
.p-service-electric .p-service__title {
  gap: 0.8rem;
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.p-service-electric .p-service__title::after {
  aspect-ratio: 56/66;
  background: url(../images/service/energy/feature-title.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  position: absolute;
  right: -0.9rem;
  top: -2.5rem;
  width: 5.6rem;
}
.p-service-electric .p-service__title + * {
  margin-top: 11.6rem;
}
.p-service-electric .p-service__feature-item:nth-child(2)::after {
  bottom: -3.7rem;
  left: 0;
  right: auto;
}
.p-service-electric__gas {
  margin-inline: auto;
  margin-top: 3.9rem;
  max-width: 80rem;
  padding-top: 8.1rem;
  position: relative;
}
.p-service-electric__gas-inner {
  background: url(../images/service/electric/gas-bg.webp) 50%/cover no-repeat;
  padding: 7.2rem 1.6rem;
  position: relative;
}
.p-service-electric__gas-inner::before {
  border: 2px solid #fff;
  bottom: 1.6rem;
  content: "";
  display: block;
  left: 1.6rem;
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
}
.p-service-electric__gas-title-wrap {
  aspect-ratio: 210/154;
  background: url(../images/service/electric/gas-balloon.svg) 50%/contain no-repeat;
  left: 0;
  padding-left: 5.9rem;
  padding-top: 3.8rem;
  position: absolute;
  top: 0;
  width: 21rem;
  z-index: 1;
}
.p-service-electric__gas-title {
  align-items: center;
  color: #58692D;
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
.p-service-electric__gas-title .mn {
  font-size: 1.6rem;
  margin-top: -0.2rem;
}
.p-service-electric__gas-text {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}
.p-service-electric__gas-text + * {
  margin-top: 3.6rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-service-energy > *:last-child {
  padding-bottom: 12rem;
}
.p-service-energy .l-undermv__block + * {
  padding-top: 8rem;
}
.p-service-energy .p-service__title {
  gap: 0.4rem;
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.p-service-energy .p-service__title::after {
  aspect-ratio: 56/66;
  background: url(../images/service/energy/feature-title.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  position: absolute;
  right: -1.9rem;
  top: 0;
  width: 5.6rem;
}
.p-service-energy .p-service__title + * {
  margin-top: 2.4rem;
}
.p-service-energy__feature-lead {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}
.p-service-energy__feature-lead em {
  background: linear-gradient(transparent 55%, #EFF0EA 55%, #EFF0EA 95%, transparent 95%, transparent 100%);
  font-weight: 500;
}
.p-service-energy__feature-lead + * {
  margin-top: 12rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-service-list__main {
  padding-block: 12rem 6.4rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-service-reform > *:last-child {
  padding-bottom: 12rem;
}
.p-service-reform .l-undermv__block + * {
  padding-top: 8rem;
}
.p-service-reform .p-service__feature-item:nth-child(1) .p-service__feature-box::after {
  top: 0.3rem;
}
.p-service-reform .p-service__feature-item:nth-child(1) .p-service__feature-image {
  border-radius: 0;
}
.p-service-reform .p-service__feature-item:nth-child(2)::after {
  aspect-ratio: 116/42;
  background: url(../images/service/reform/feature02-treat.svg) 50%/contain no-repeat;
  bottom: -2.2rem;
  content: "";
  position: absolute;
  right: 0;
  transform: translateY(100%);
  width: 11.6rem;
}
.p-service-reform .p-service__feature-item:nth-child(3) .p-service__feature-box {
  max-width: 58rem;
}
.p-service-reform .p-service__title {
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.p-service-reform .p-service__title::after {
  aspect-ratio: 100/110;
  background: url(../images/service/reform/feature-title.svg) 50%/contain no-repeat;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  right: -3rem;
  transform: translateX(100%);
  width: 10rem;
}
.p-service-reform .p-service__title + * {
  margin-top: 6.4rem;
}
.p-service-reform .p-service__flow .u-con--md::before {
  top: -3.8rem;
}
.p-service-reform .p-service__flow-item {
  background-color: #fff;
}
.p-service-reform .p-service__flow-list::after {
  aspect-ratio: 221/69;
  background: url(../images/service/reform/flow-treat.svg) 50%/contain no-repeat;
  bottom: 12.2rem;
  content: "";
  display: block;
  position: absolute;
  right: 14.8333333333%;
  width: 22.1rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-service__title {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
}
.p-service__title-jp {
  align-items: center;
  color: #58692D;
  display: flex;
  flex-direction: column;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1875;
}
.p-service__title-jp .sub {
  color: #252525;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 1.6rem;
}
.p-service__title-jp .sub + * {
  margin-top: 0.4rem;
}
.p-service__title-jp .dots {
  display: inline-block;
  padding-top: 2.1rem;
  position: relative;
}
.p-service__title-jp .dots::before {
  background-image: radial-gradient(circle, #58692D 14%, transparent 14%);
  background-repeat: repeat-x;
  background-size: 1em 1em;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-service__title-en {
  color: #58692D;
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}
.p-service__title-en .lowercase {
  text-transform: lowercase;
}
.p-service__scroll {
  background-color: #58692D;
  height: 10rem;
  margin-inline: auto;
  position: relative;
  width: 2px;
}
.p-service__scroll::after {
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  background: #58692D;
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 0.8rem;
  left: -0.3rem;
  position: absolute;
  width: 0.8rem;
}
.p-service__scroll + * {
  margin-top: 1.6rem;
}
.p-service-under .p-top-works {
  padding-bottom: 10.6rem;
}

/* -------------------------------------------
nav
-------------------------------------------*/
.p-service__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
  justify-content: center;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.p-service__nav-item {
  position: relative;
}
.p-service__nav-item:first-child::before {
  background-color: #CCCCCC;
  content: "";
  display: block;
  height: calc(100% - 1.2rem);
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}
.p-service__nav-item::after {
  background-color: #CCCCCC;
  content: "";
  display: block;
  height: calc(100% - 1.2rem);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}
.p-service__nav .c-btn {
  gap: 1.6rem;
  padding-inline: 4rem;
}
.p-service__nav .c-btn__arrow::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* -------------------------------------------
feature
-------------------------------------------*/
.p-service__feature {
  padding-block: 12rem;
}
.p-service__feature-lead {
  color: #58692D;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
.p-service__feature-lead::before, .p-service__feature-lead::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.p-service__feature-lead::before {
  aspect-ratio: 49/33;
  background: url(../images/service/reform/feature-lead-treat01.svg) 50%/contain no-repeat;
  left: -2.1rem;
  top: -2.4rem;
  width: 4.9rem;
}
.p-service__feature-lead::after {
  aspect-ratio: 560/45;
  background: url(../images/service/reform/feature-lead-treat02.svg) 50%/contain no-repeat;
  bottom: -2.8rem;
  left: -2.5rem;
  width: 56rem;
}
.p-service__feature-lead + * {
  margin-top: 12.8rem;
}
.p-service__feature-item {
  align-items: center;
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  position: relative;
}
.p-service__feature-item:nth-child(even) {
  flex-direction: row-reverse;
}
.p-service__feature-item:nth-child(1) .p-service__feature-box {
  max-width: 53.6rem;
}
.p-service__feature-item:nth-child(1) .p-service__feature-box::after {
  aspect-ratio: 73/74;
  background: url(../images/service/reform/feature01-treat.svg) 50%/contain no-repeat;
  content: "";
  position: absolute;
  right: 2.3rem;
  top: -6.3rem;
  width: 7.3rem;
}
.p-service__feature-item:nth-child(2)::after {
  aspect-ratio: 116/42;
  background: url(../images/service/reform/feature02-treat.svg) 50%/contain no-repeat;
  bottom: -2.2rem;
  content: "";
  position: absolute;
  right: 0;
  transform: translateY(100%);
  width: 11.6rem;
}
.p-service__feature-item + * {
  margin-top: 10.8rem;
}
.p-service__feature-box {
  flex: 1;
  max-width: 56rem;
  position: relative;
}
.p-service__feature-title {
  position: relative;
}
.p-service__feature-title + * {
  margin-top: 3.2rem;
}
.p-service__feature-title-en {
  color: #58692D;
  font-family: "Oooh Baby", cursive;
  font-size: 6.4rem;
  font-weight: 400;
  left: -1.36rem;
  line-height: 1;
  opacity: 0.2;
  position: absolute;
  top: -5.2rem;
  transform: rotate(-5deg);
}
.p-service__feature-title-sub {
  color: #58692D;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
.p-service__feature-title-sub + * {
  margin-top: 1rem;
}
.p-service__feature-title-ja {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.p-service__feature-title-ja .ls {
  letter-spacing: 0;
}
.p-service__feature-text {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.p-service__feature-image {
  border-radius: 0.4rem;
  overflow: hidden;
  width: 46.6666666667%;
}
.p-service__feature-image img {
  height: auto;
  width: 100%;
}

.p-service__problem-list.l-grid {
  gap: 5.5rem 4rem;
}
.p-service__problem-list.l-grid + * {
  margin-top: 4rem;
}
.p-service__problem-card {
  background-color: #EFF0EA;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 2.3rem 1.4rem;
  position: relative;
}
.p-service__problem-tag {
  background-color: #58692D;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  left: -0.4rem;
  line-height: 1;
  padding: 0.4rem 1rem;
  position: absolute;
  top: -1.3rem;
  transform: rotate(-4deg);
  width: -moz-fit-content;
  width: fit-content;
}
.p-service__problem-text {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}

/* -------------------------------------------
flow
-------------------------------------------*/
.p-service__flow {
  padding-bottom: 12rem;
}
.p-service__flow .c-wave + * {
  margin-top: 12rem;
}
.p-service__flow .u-con--md {
  position: relative;
}
.p-service__flow .u-con--md::before {
  aspect-ratio: 227/163;
  background: url(../images/service/flow-treat.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  left: 8.3333333333%;
  position: absolute;
  top: -4.3rem;
  transform: translateY(-100%);
  width: 22.7rem;
}
.p-service__flow .c-primary-title + * {
  margin-top: 10.3rem;
}
.p-service__flow-list.l-grid {
  gap: 7.9rem 4rem;
  position: relative;
}
.p-service__flow-item {
  background-color: #EFF0EA;
  padding: 4rem 2.4rem 3.5rem;
  position: relative;
}
.p-service__flow-item:last-child::after {
  display: none;
}
.p-service__flow-item::after {
  aspect-ratio: 12/17.5;
  background-color: #58692D;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  display: block;
  position: absolute;
  right: -1.6rem;
  top: 50%;
  transform: translate(100%, -50%);
  width: 1.2rem;
}
.p-service__flow-step {
  align-items: center;
  color: #58692D;
  display: flex;
  flex-direction: column;
  font-family: "Tenor Sans", sans-serif;
  justify-content: center;
  left: 1.2rem;
  position: absolute;
  text-align: center;
  top: -3.9rem;
  width: -moz-fit-content;
  width: fit-content;
}
.p-service__flow-step .text {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.p-service__flow-step .num {
  font-size: 4.8rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-service__flow-title {
  color: #58692D;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.p-service__flow-title .mn {
  font-size: 1.6rem;
}
.p-service__flow-title + * {
  margin-top: 1.6rem;
}
.p-service__flow-text {
  font-size: 1.8rem;
}

.c-wave + .p-service__flow {
  padding-top: 12rem;
}

/* -------------------------------------------
price
-------------------------------------------*/
.p-service__price {
  padding-top: 12rem;
}
.p-service__price .u-con--md {
  position: relative;
}
.p-service__price .u-con--md::before {
  aspect-ratio: 87/69;
  background: url(../images/service/price-treat.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  left: 16.9166666667%;
  position: absolute;
  top: -9.1rem;
  transform: translateY(-100%);
  width: 8.7rem;
}
.p-service__price .c-primary-title + * {
  margin-top: 4rem;
}
.p-service__price-lead {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}
.p-service__price-lead + * {
  margin-top: 12.7rem;
}
.p-service__price-item + .p-service__price-item {
  margin-top: 12.7rem;
}
.p-service__price-item + * {
  margin-top: 4rem;
}
.p-service__price-title {
  position: relative;
  text-align: center;
  z-index: 1;
}
.p-service__price-title + * {
  margin-top: 2.4rem;
}
.p-service__price-title-en {
  color: #EFF0EA;
  font-family: "Oooh Baby", cursive;
  font-size: 8rem;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: -4.7rem;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: -1;
}
.p-service__price-title-ja {
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-service__price-detail {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.p-service__price-detail + * {
  margin-top: 4rem;
}
.p-service__price-detail-num {
  border-bottom: 2px solid #58692D;
  color: #58692D;
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0.2rem;
  padding-top: 0.4rem;
}
.p-service__price-detail-unit {
  font-size: 2.4rem;
}
.p-service__price-detail-note {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.p-service__price-list-body {
  padding-block: 4.8rem;
  position: relative;
}
.p-service__price-list-body::before {
  background: url(../images/service/bg-tile.webp) left top/100% repeat;
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  min-width: 1440px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
}
.p-service__price-list {
  display: flex;
  gap: 8rem;
}
.p-service__price-list-item {
  position: relative;
  width: calc(50% - 4rem);
}
.p-service__price-list-item.--standard .p-service__price-grade {
  left: -5.2rem;
  transform: rotate(-7deg);
}
.p-service__price-list-item.--standard .p-service__price-grade::after {
  bottom: 0.4rem;
  right: 2.4rem;
  transform: translateY(100%) rotate(-19deg);
}
.p-service__price-list-item.--high .p-service__price-grade {
  right: -5.2rem;
  transform: rotate(7deg);
}
.p-service__price-list-item.--high .p-service__price-grade::after {
  bottom: 0.4rem;
  left: 3.4rem;
  transform: translateY(100%) scale(-1, 1) rotate(-19deg);
}
.p-service__price-grade {
  color: #58692D;
  font-family: "Oooh Baby", cursive;
  font-size: 3.2rem;
  line-height: 1;
  position: absolute;
  top: 0.64rem;
}
.p-service__price-grade::after {
  aspect-ratio: 16/28;
  background: url(../images/service/grade-arrow.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  position: absolute;
  width: 1.6rem;
}
.p-service__price-list-title {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.p-service__price-list-title + * {
  margin-top: 2.4rem;
}
.p-service__price-maker {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-service__price-name {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-service__price-image {
  aspect-ratio: 560/396;
  overflow: hidden;
}
.p-service__price-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-service__price-image + * {
  margin-top: 2.4rem;
}
.p-service__price-data {
  align-items: flex-end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.p-service__price-data .p-service__price-detail {
  gap: 0.8rem;
  padding-bottom: 0.6rem;
  padding-top: 0;
}
.p-service__price-data .p-service__price-detail-num {
  font-size: 4rem;
}
.p-service__price-data .p-service__price-detail-unit {
  font-size: 1.6rem;
}
.p-service__price-data-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 4rem;
  position: relative;
}
.p-service__price-data-list::before {
  background-color: #58692D;
  color: #fff;
  content: "DATA";
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.6rem;
  height: 7rem;
  left: 0;
  letter-spacing: 0.15em;
  position: absolute;
  text-align: center;
  top: 0;
  writing-mode: vertical-lr;
}
.p-service__price-data-item {
  color: #58692D;
  font-size: 1.8rem;
  padding-left: 1.3rem;
  position: relative;
}
.p-service__price-data-item::before {
  aspect-ratio: 1/1;
  border: 1px solid #58692D;
  border-radius: 50%;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 1rem;
  width: 0.8rem;
}
.p-service__price-data-item + * {
  margin-top: 0.8rem;
}
.p-service__price-list-next {
  display: none;
}
.p-service__price-list-next::before, .p-service__price-list-next::after {
  background-color: #58692D;
  content: "";
  display: block;
}
.p-service__price-list-next::before {
  aspect-ratio: 12/9;
  -webkit-mask: url(../images/icon/icon_arrow.svg) 50%/contain no-repeat;
  mask: url(../images/icon/icon_arrow.svg) 50%/contain no-repeat;
  width: 1.2rem;
}
.p-service__price-list-next::after {
  background: url(../images/icon/icon_arrow-bg2.svg) 50%/contain no-repeat;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-grant-eligible {
  padding-top: 12rem;
}
.p-grant-eligible .u-con--md {
  position: relative;
}
.p-grant-eligible .u-con--md::before {
  aspect-ratio: 92/107;
  background: url(../images/grant/eligible-treat-top.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  position: absolute;
  right: 7rem;
  top: -5.3rem;
  transform: translateY(-100%);
  width: 9.2rem;
}
.p-grant-eligible .c-primary-title + * {
  margin-top: 6.4rem;
}
.p-grant-eligible__text {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}
.p-grant-eligible__text + *.p-grant-eligible__body {
  margin-top: 6.4rem;
}
.p-grant-eligible__body.l-grid {
  gap: 8rem;
  padding-block: 8rem;
  position: relative;
}
.p-grant-eligible__body.l-grid::before {
  content: "";
  display: block;
}
.p-grant-eligible__body.l-grid::before {
  background: url(../images/grant/eligible-bg-tile.webp) left top/100% repeat;
  height: 100%;
  left: 50%;
  min-width: 1440px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
}
.p-grant-eligible__note-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
.p-grant-eligible__note-wrap::after {
  aspect-ratio: 247/177;
  background: url(../images/grant/eligible-treat.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  margin-inline: auto;
  position: absolute;
  right: 15.3rem;
  top: 40%;
  transform: translateY(-50%);
  width: 24.7rem;
}
.p-grant-eligible__note {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-top: auto;
}
.p-grant-eligible__block:nth-child(1) .p-grant-eligible__block-title + * {
  margin-top: 2.1rem;
}
.p-grant-eligible__block:nth-child(2) .p-grant-eligible__block-title + * {
  margin-top: 1.7rem;
}
.p-grant-eligible__block:nth-child(4) .p-grant-eligible__block-title + * {
  margin-top: 2.7rem;
}
.p-grant-eligible__block-title {
  color: #58692D;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.p-grant-eligible__block-title + * {
  margin-top: 3.9rem;
}
.p-grant-eligible__image img {
  width: 100%;
}
.p-grant-eligible__image + * {
  margin-top: 4.4rem;
}
.p-grant-eligible__list-wrap {
  counter-reset: list;
}
.p-grant-eligible__list-item + * {
  margin-top: 1.6rem;
}
.p-grant-eligible__list-name {
  align-items: flex-start;
  counter-increment: list;
  display: flex;
  font-size: 1.8rem;
  gap: 0.8rem;
  letter-spacing: 0.05em;
  line-height: 1.2222222222;
}
.p-grant-eligible__list-name .small {
  font-size: 1.7rem;
}
.p-grant-eligible__list-name::before {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: #202C02;
  border-radius: 50%;
  color: #fff;
  content: counter(list);
  display: flex;
  justify-content: center;
  line-height: 1;
  min-width: 2.2rem;
  padding-bottom: 0.2rem;
}
.p-grant-eligible__list-name + * {
  margin-top: 0.4rem;
}
.p-grant-eligible__list-price {
  align-items: center;
  display: flex;
  font-size: 1.8rem;
  gap: 0.4rem;
  justify-content: flex-end;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-grant-eligible__list-price::before {
  background-color: #333333;
  content: "";
  display: block;
  height: 1px;
  width: 4.8rem;
}
.p-grant-eligible__list-price--sub {
  justify-content: flex-start;
  padding-left: 3rem;
}
.p-grant-eligible__list-price--sub::before {
  display: none;
}
.p-grant-eligible__list-sub {
  width: 100%;
}
.p-grant-eligible__list-sub-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.p-grant-eligible__list-sub-name {
  font-size: 1.8rem;
  line-height: 1.5;
}
.p-grant-eligible__list-sub-price {
  align-items: center;
  display: flex;
  font-size: 1.8rem;
  gap: 0.4rem;
  justify-content: flex-end;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-grant-eligible__list-sub-price::before {
  background-color: #333333;
  content: "";
  display: block;
  height: 1px;
  width: 4.8rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-grant-message {
  padding-block: 9.6rem 12rem;
}
.p-grant-message__body {
  margin-inline: auto;
  max-width: 80rem;
  position: relative;
}
.p-grant-message__body::before, .p-grant-message__body::after {
  content: "";
  display: block;
  position: absolute;
}
.p-grant-message__body::before {
  aspect-ratio: 148/157;
  background: url(../images/grant/message-treat1.svg) 50%/contain no-repeat;
  left: -10rem;
  top: 2.4rem;
  width: 14.8rem;
}
.p-grant-message__body::after {
  aspect-ratio: 88/133;
  background: url(../images/grant/message-treat2.svg) 50%/contain no-repeat;
  bottom: 1.2rem;
  right: -7.2rem;
  width: 8.8rem;
}
.p-grant-message .c-primary-title {
  gap: 2.3rem;
}
.p-grant-message .c-primary-title__jp {
  color: #58692D;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
}
.p-grant-message .c-primary-title + * {
  margin-top: 4rem;
}
.p-grant-message__text {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-grant-summary {
  padding-block: 8rem 12rem;
}
.p-grant-summary__lead {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}
.p-grant-summary__lead .bold {
  color: #58692D;
  font-weight: 700;
}
.p-grant-summary__lead::after {
  aspect-ratio: 67/70;
  background: url(../images/grant/summary-arrow.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  margin-inline: auto;
  margin-top: 2.7rem;
  width: 6.7rem;
}
.p-grant-summary__text {
  font-size: 1.8rem;
  line-height: 2;
}
.p-grant-summary__text .underline {
  background: linear-gradient(to bottom, transparent 60%, #fff 60%, #fff 95%, transparent 95%);
  font-weight: 500;
}
.p-grant-summary__text + * {
  margin-top: 4rem;
}
.p-grant-summary__section {
  margin-inline: auto;
  margin-top: -5.7rem;
  max-width: 80rem;
  padding-top: 15.5rem;
  position: relative;
}
.p-grant-summary__title {
  aspect-ratio: 376/155;
  background: url(../images/top/service-balloon.svg) 50%/contain no-repeat;
  color: #58692D;
  font-size: 2rem;
  font-weight: 700;
  left: -15.1rem;
  line-height: 1.4;
  padding-top: 5.68rem;
  position: absolute;
  top: 0;
  width: 37.6rem;
}
.p-grant-summary__title span {
  display: block;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.p-grant-summary__title::after {
  aspect-ratio: 215/204;
  background: url(../images/top/service-summary-illust.svg) 50%/contain no-repeat;
  bottom: 3.4rem;
  content: "";
  display: block;
  left: -3.2rem;
  position: absolute;
  transform: translateY(100%);
  width: 21.5rem;
}
.p-grant-summary__section-body {
  background-color: #EFF0EA;
  border-radius: 0.4rem;
  padding: 3.4rem 4rem 3.2rem;
}
.p-grant-summary__list {
  align-items: center;
  background-color: #fff;
  border: 1px solid #58692D;
  border-radius: 0.4rem;
  display: flex;
  gap: 1.6rem 2.4rem;
  justify-content: center;
  padding-block: 0.9rem;
}
.p-grant-summary__item {
  align-items: flex-start;
  color: #58692D;
  display: flex;
  font-size: 1.4rem;
  font-weight: 700;
  gap: 0.3rem;
  line-height: 1;
}
.p-grant-summary__item::before {
  aspect-ratio: 18/14;
  background: url(../images/icon/icon_check.svg) 50%/contain no-repeat;
  content: "";
  display: block;
  width: 1.8rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
.p-post-list__body {
  padding-block: 12rem;
}
.p-post-list__lists {
  gap: 6.4rem 4rem;
}
.p-post-list__lists + * {
  margin-top: 8rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-post-single {
  background-color: #fff;
  padding-top: 16.6rem;
}
.p-post-single__wrap {
  padding-block: 8rem 12rem;
}
.p-post-single__article + * {
  margin-top: 12rem;
}
.p-post-single__head + * {
  margin-top: 4rem;
}
.p-post-single__meta {
  display: flex;
  gap: 0.8rem;
}
.p-post-single__meta + * {
  margin-top: 1.6rem;
}
.p-post-single__cat {
  background-color: #fff;
  border: 1px solid #58692D;
  border-radius: 0.2rem;
  color: #58692D;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2857142857;
  padding-inline: 0.9rem;
  width: -moz-fit-content;
  width: fit-content;
}
.p-post-single__date {
  color: #58692D;
  font-family: "Tenor Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 0.2rem;
}
.p-post-single__title {
  font-size: 4rem;
}
.p-post-single__title + * {
  margin-top: 1.6rem;
}
.p-post-single__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-post-single__tag-item {
  color: #888888;
  display: flex;
  font-size: 1.4rem;
  line-height: 1;
}
.p-post-single__tag-item::before {
  content: "#";
}
.p-post-single__related-title {
  color: #58692D;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
.p-post-single__related-title + * {
  margin-top: 3.2rem;
}
.p-post-single__related-list {
  border-bottom: 1px solid #58692D;
  border-top: 1px solid #58692D;
  display: grid;
  gap: 0 4rem;
  grid-template-columns: repeat(2, 1fr);
}
.p-post-single__related-item:first-child .p-post-single__related-link {
  flex-direction: row-reverse;
}
.p-post-single__related-link {
  align-items: center;
  display: flex;
  gap: 1.6rem;
  height: 100%;
  padding-block: 2.4rem;
}
.p-post-single__related-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
}
.p-post-single__related-arrow {
  aspect-ratio: 40/32;
  background: url(../images/icon/icon_arrow-bg.svg) 50%/contain no-repeat;
  position: relative;
  width: 4rem;
  z-index: 1;
}
.p-post-single__related-arrow::before, .p-post-single__related-arrow::after {
  background-color: #58692D;
  content: "";
  display: block;
  position: absolute;
}
.p-post-single__related-arrow::before {
  aspect-ratio: 12/9;
  left: 50%;
  -webkit-mask: url(../images/icon/icon_arrow.svg) 50%/contain no-repeat;
  mask: url(../images/icon/icon_arrow.svg) 50%/contain no-repeat;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
}
.p-post-single__related-arrow::after {
  background: url(../images/icon/icon_arrow-bg2.svg) 50%/contain no-repeat;
  height: 100%;
  left: 0;
  opacity: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.p-post-single__related-arrow--prev::before {
  transform: translate(-50%, -50%) scale(-1, -1);
}
.p-post-single__related .c-card-post__meta {
  justify-content: space-between;
}
.p-post-single__related .c-card-post__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 1.6rem;
  overflow: hidden;
}
.p-post-single__related .c-card-post__tag {
  margin-top: auto;
}
.p-post-single__related + * {
  margin-top: 8rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
.p-contact__text {
  font-size: 1.8rem;
  line-height: 2;
}
.p-contact__text a {
  color: #1473CC;
  text-decoration: underline;
}
.p-contact__text + * {
  margin-top: 4rem;
}
.p-contact__text + *.p-contact__text {
  margin-top: 2.4rem;
}

.p-contact__head {
  padding-top: 12rem;
}

.p-contact__form {
  padding-block: 12rem;
}
.p-contact__form .c-primary-title + * {
  margin-top: 6.4rem;
}
.p-contact__form-inner {
  margin-inline: auto;
  max-width: 80rem;
}
.p-contact__form-inner .p-contact__text + * {
  margin-top: 6.4rem;
}

.p-contact-thanks__body {
  padding-block: 8rem 12rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.u-db {
  display: block;
}

.u-dn {
  display: none;
}

.u-mask--c-black {
  filter: brightness(0);
}

.u-mask--c-white {
  filter: brightness(0) invert(1);
}

.u-con--sm {
  margin-inline: auto;
  max-width: 96rem;
  width: 90%;
}

.u-con--md {
  margin-inline: auto;
  max-width: 120rem;
  width: 90%;
}

.u-c-white {
  color: #fff;
}

.u-c--b-white {
  color: #fff;
}

.u-z-1 {
  z-index: -1;
}

.u-z1 {
  z-index: 1;
}

.u-z2 {
  z-index: 2;
}

.u-z3 {
  z-index: 3;
}

.u-z10 {
  z-index: 10;
}

.u-z50 {
  z-index: 50;
}

.u-z100 {
  z-index: 100;
}

.u-z999 {
  z-index: 999;
}

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

.u-coming-soon {
  display: none !important;
}

@media screen and (max-width: 1680px){
  .p-top-area__body::after {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    left: calc(50% - 50vw);
  }
  .p-top-area__map {
    margin-left: calc(50% - 50vw);
  }
}

@media screen and (max-width: 1440px){
  .p-top-mv__inner {
    max-width: 120rem;
    width: 90%;
  }
}

@media screen and (max-width: 1280px){
  html {
    font-size: 56.6%;
  }
  .l-footer__nav-link {
    padding-inline: 0;
  }
  .l-header {
    padding-left: 2.4rem;
  }
  .l-header__logo {
    width: 25rem;
  }
  .l-header__right {
    padding: 1rem 2.4rem;
  }
  .p-top-area__contents {
    padding: 5vw 4.44vw 6.74vw;
  }
  .p-service__problem-list.l-grid {
    gap: 4rem 2.4rem;
  }
  .p-service__problem-text {
    font-size: 1.6rem;
  }
}

@media not all and (max-width: 1023px){
  .u-st {
    display: none !important;
  }
}

@media screen and (max-width: 1023px){
  :root {
    --content_width: 680px;
    --content-both_space: 15px;
    --header_height:65px;
    --waves_height: 20px;
  }
  html {
    font-size: 62.5%;
  }
  body {
    min-width: 100%;
    overflow-x: hidden;
    width: 100%;
  }
  body.is-open::before {
    opacity: 1;
    visibility: visible;
  }
  body::before {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.75);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    margin: 0 calc(50% - 50vw);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: 0.4s;
    transition-property: "opacity visibility";
    visibility: hidden;
    width: 100vw;
    z-index: -1;
    z-index: 50;
  }
  input[type=radio] + .mwform-radio-field-text {
    margin: 0;
    padding: 10px 5px 12px 23px;
  }
  input[type=radio] + .mwform-radio-field-text::before {
    height: 15px;
    width: 15px;
  }
  input[type=radio] + .mwform-radio-field-text::after {
    content: "";
    height: 9px;
    left: 3px;
    width: 9px;
  }
  .smf-item.--checkboxes {
    align-items: flex-start;
  }
  .smf-item.--content .smf-item__label {
    padding-top: 0;
  }
  .l-archive__body {
    flex-direction: column;
    gap: 10rem;
  }
  .l-archive__main {
    width: 100%;
  }
  .l-cta__buttons.l-grid {
    gap: 1.6rem 2.4rem;
  }
  .l-cta__buttons-link {
    font-size: 2rem;
  }
  .l-cta__buttons-link::after {
    width: 6.4rem;
  }
  .l-fixed {
    top: 40%;
  }
  .l-footer__body + * {
    margin-top: 6.4rem;
  }
  .l-footer__info {
    padding-top: 0;
  }
  .l-footer__nav {
    flex-direction: column;
    gap: 1.2rem;
  }
  .l-footer__nav-child-item a {
    padding-inline: 0;
  }
  .l-header {
    padding-block: 2rem;
    padding-left: 2rem;
    top: 0;
  }
  .l-header__inner {
    align-items: flex-end;
  }
  .l-header__right {
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    top: 0;
  }
  .l-loading__logo {
    width: 20rem;
  }
  .l-header.scrolled .l-navi__inner {
    gap: 4rem;
  }
  .l-navi {
    height: 100vh;
    left: 0;
    opacity: 0;
    overflow: scroll;
    padding-top: 2rem;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: 0.3s;
    visibility: hidden;
    width: 100%;
    z-index: 50;
  }
  .l-navi__wrap {
    height: 100%;
    overflow-x: hidden;
    position: relative;
  }
  .l-navi__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  .l-navi__logo {
    display: block;
    margin-left: -2rem;
    width: 25rem;
  }
  .l-navi__menu {
    align-items: flex-start;
    border-bottom: 1px solid #fff;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .l-navi__menu-item {
    border-top: 1px solid #fff;
    width: 100%;
  }
  .l-navi__menu-item.has-child {
    align-items: flex-start;
    display: flex;
    gap: 1.6rem;
  }
  .l-navi__menu-item.has-child .l-navi__menu-link::after {
    display: none;
  }
  .l-navi__menu-link {
    color: #58692D;
    font-size: 1.6rem;
    line-height: 1.4375;
    padding: 2rem 0;
  }
  .l-navi__child-wrap {
    background-color: transparent;
    box-shadow: none;
    opacity: 1;
    padding: 0 2rem 1.6rem;
    position: static;
    transform: none;
    visibility: visible;
  }
  .l-navi__child-wrap.show {
    opacity: 0;
    visibility: hidden;
  }
  .l-navi__child-wrap.hide {
    opacity: 1;
    visibility: visible;
  }
  .l-navi__child-item a {
    font-size: 1.6rem;
    line-height: 1;
  }
  .l-navi__child-item + .l-navi__child-item {
    margin-top: 1.6rem;
  }
  .l-service__list.l-grid--col3::before {
    right: -2rem;
    width: 18rem;
  }
  .l-service__list.l-grid--col3 .l-service__item {
    width: calc(50% - 2rem);
  }
  .l-undermv::after {
    right: -8rem;
    top: 2.4rem;
    width: 128%;
  }
  .l-undermv + .c-wave {
    margin-top: 1.6rem;
  }
  .l-undermv__body {
    flex-wrap: wrap;
  }
  .l-undermv__contents {
    display: contents;
  }
  .l-undermv__contents .l-undermv__title {
    top: 10rem;
    transform: none;
  }
  .l-undermv__contents + * {
    margin-bottom: 0;
  }
  .l-undermv__title {
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .l-undermv__title-ja {
    font-size: 3.2rem;
  }
  .l-undermv__title-en {
    bottom: 2.4rem;
    font-size: 8rem;
    left: -2rem;
    right: auto;
    transform: translateY(100%);
  }
  .l-undermv__description {
    margin-bottom: 4rem;
    order: 3;
    width: 100%;
  }
  .l-undermv__thumbnail {
    margin-left: auto;
    margin-right: -1rem;
    width: 53.7313432836%;
  }
  .l-undermv__thumbnail-wrap.--noimage::after {
    right: -1rem;
    top: 11rem;
    width: 36rem;
  }
  .l-undermv__thumbnail-wrap::after {
    left: -12rem;
  }
  .l-undermv__thumbnail--small {
    width: 40.5970149254%;
  }
  .p-top-area__body {
    flex-direction: column-reverse;
    padding-top: 6.4rem;
  }
  .p-top-area__map {
    height: 44.4rem;
    width: calc(100vw - 5%);
  }
  .p-top-area__contents {
    padding-block: 0;
    padding-inline: 0 1.6rem;
    width: 100%;
  }
  .p-top-area__contents::after {
    display: none;
  }
  .p-top-message::after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
  }
  .p-top-mv__inner {
    width: 95%;
  }
  .p-top-mv__bg picture img {
    -o-object-position: 40%;
    object-position: 40%;
  }
  .p-top-news__body {
    flex-direction: column;
    padding-inline: 0;
  }
  .p-top-news__box {
    display: contents;
  }
  .p-top-news .c-primary-title {
    order: 1;
  }
  .p-top-news__contents {
    margin-top: 3.2rem;
    order: 2;
    width: 100%;
  }
  .p-top-service__body + * {
    margin-top: 8rem;
  }
  .p-top-service__section {
    flex-direction: column-reverse;
    gap: 4rem;
    position: relative;
  }
  .p-top-service__section:nth-child(even) {
    flex-direction: column-reverse;
  }
  .p-top-service__section:nth-child(even) .p-top-service__title {
    right: -13.6rem;
  }
  .p-top-service__section:nth-child(even) .p-top-service__section-image {
    margin-left: 0;
    margin-right: auto;
  }
  .p-top-service__section:nth-child(odd) .p-top-service__title {
    left: -6.4rem;
  }
  .p-top-service__section:nth-child(1) .p-top-service__section-treat {
    bottom: 0;
    position: absolute;
    right: 0;
    transform: translateY(100%);
  }
  .p-top-service__section:nth-child(1) .p-top-service__section-treat + * {
    margin-top: 0;
  }
  .p-top-service__section:nth-child(2) .p-top-service__section-box {
    padding-top: 0;
  }
  .p-top-service__section:nth-child(2) .p-top-service__section-treat {
    display: none;
  }
  .p-top-service__section:nth-child(3) .p-top-service__section-treat {
    display: none;
  }
  .p-top-service__section-contents {
    display: block;
  }
  .p-top-service__section-image {
    margin-left: auto;
    position: relative;
    width: 40rem;
  }
  .p-top-service__section-image figure {
    width: 100%;
  }
  .p-top-service__title {
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .p-top-service__title--pc {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    width: 1px;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
  }
  .p-top-service__title--sp {
    display: block;
  }
  .p-top-service__summary {
    padding-top: 0;
  }
  .p-top-service__summary-title {
    left: auto;
    margin-inline: auto;
    position: relative;
    top: auto;
  }
  .p-top-service__summary-title::after {
    aspect-ratio: 304/151;
    background-image: url(../images/top/service-summary-illust_sp.svg);
    bottom: 3.7rem;
    left: auto;
    right: 0;
    width: 33rem;
  }
  .p-top-service__summary-title + * {
    margin-top: 6rem;
  }
  .p-top-service__summary-body {
    padding-top: 9rem;
  }
  .p-top-sns__body {
    align-items: flex-start;
    flex-direction: column;
  }
  .p-top-sns__buttons.l-grid {
    gap: 2.4rem 3.2rem;
    max-width: 100%;
    width: 100%;
  }
  .p-top-sns__buttons-link {
    font-size: 1.6rem;
    gap: 0.8rem;
    padding-block: 2.8rem;
  }
  .p-about-message__body {
    align-items: flex-end;
    flex-direction: column;
    padding-bottom: 0;
  }
  .p-about-message__body::after {
    right: 0;
  }
  .p-about-message__body::after {
    bottom: auto;
    height: calc(100% - 15.6rem);
  }
  .p-about-message__body-inner {
    padding-right: 5%;
  }
  .p-about-message__profile {
    margin-right: calc(50% - 50vw);
  }
  .p-about-overview .u-con--md::before {
    right: 2rem;
  }
  .p-about-overview__body {
    flex-direction: column;
  }
  .p-about-overview__info {
    width: 100%;
  }
  .p-about-overview__map {
    width: 100%;
  }
  .p-about-policy__body::before {
    left: 2rem;
  }
  .p-about-policy__body::after {
    bottom: -3rem;
    right: 0;
    transform: none;
  }
  .p-service-reform .p-service__feature-item:nth-child(2)::after {
    bottom: 0;
    left: 0;
    right: auto;
    transform: none;
  }
  .p-service-reform .p-service__feature-item:nth-child(3) .p-service__feature-box {
    max-width: 100%;
  }
  .p-service-reform .p-service__flow-list::after {
    bottom: -2.2rem;
    right: 0;
    transform: translateY(100%);
  }
  .p-service__nav-list {
    justify-content: flex-start;
    margin-left: 0;
    max-width: 50rem;
  }
  .p-service__nav-item:nth-child(3)::before {
    background-color: #CCCCCC;
    content: "";
    display: block;
    height: calc(100% - 1.2rem);
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
  }
  .p-service__feature-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 2.4rem;
  }
  .p-service__feature-item:nth-child(even) {
    flex-direction: column;
  }
  .p-service__feature-item:nth-child(even) .p-service__feature-image {
    margin-left: auto;
    margin-right: calc(50% - 50vw);
  }
  .p-service__feature-item:nth-child(1) .p-service__feature-box {
    max-width: 100%;
  }
  .p-service__feature-item:nth-child(2)::after {
    bottom: 0;
    left: 0;
    right: auto;
    transform: none;
  }
  .p-service__feature-box {
    max-width: 100%;
    width: 100%;
  }
  .p-service__feature-image {
    margin-left: calc(50% - 50vw);
    width: 70%;
  }
  .p-service__feature-image.w-100 {
    margin-left: 0;
    width: 100%;
  }
  .p-service__problem-list.l-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-service__flow-list.l-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-service__price-list-body {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-inline: 4rem;
    width: 100vw;
  }
  .p-service__price-list-body {
    padding-inline: 2rem;
  }
  .p-service__price-list-wrap {
    margin: 0;
    overflow: visible;
    width: 80%;
  }
  .p-service__price-list {
    gap: 0;
    width: 152%;
  }
  .p-service__price-list-item {
    opacity: 0.7;
    width: 100%;
  }
  .p-service__price-list-item.swiper-slide-active {
    opacity: 1;
  }
  .p-service__price-list-item.--standard .p-service__price-grade {
    left: -1.4rem;
    transform: translateY(-100%) rotate(-7deg);
  }
  .p-service__price-list-item.--standard .p-service__price-grade::after {
    bottom: 0.5rem;
    left: 5.2rem;
    right: auto;
  }
  .p-service__price-list-item.--high .p-service__price-grade {
    left: -1.4rem;
    right: auto;
    transform: translateY(-100%) rotate(-7deg);
  }
  .p-service__price-list-item.--high .p-service__price-grade::after {
    bottom: 0.5rem;
    left: 5.2rem;
    right: auto;
    transform: translateY(100%) rotate(-19deg);
  }
  .p-service__price-list-next {
    align-items: center;
    aspect-ratio: 72/58;
    background: url(../images/icon/icon_nav-bg.svg) 50%/contain no-repeat;
    color: #58692D;
    display: block;
    display: flex;
    flex-direction: column-reverse;
    font-family: "Tenor Sans", sans-serif;
    font-size: 1.6rem;
    gap: 0.5rem;
    height: auto;
    justify-content: center;
    line-height: 1;
    margin-top: 0;
    padding-top: 0.4rem;
    right: -1.8rem;
    text-transform: capitalize;
    top: 45%;
    transform: translate(100%, -45%);
    width: 7.2rem;
    z-index: 1;
  }
  .p-grant-eligible__body.l-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-inline: auto;
    width: 90%;
  }
  .p-grant-eligible__note-wrap::after {
    display: none;
  }
  .p-grant-eligible__image {
    margin-inline: auto;
    width: 80%;
  }
  .p-grant-message__body::before {
    aspect-ratio: 50/39;
    background-image: url(../images/grant/message-treat1_sp.svg);
    left: auto;
    right: 0;
    top: -2.4rem;
    width: 7rem;
  }
  .p-grant-message__body::after {
    aspect-ratio: 61/40;
    background-image: url(../images/grant/message-treat2_sp.svg);
    bottom: -1.6rem;
    left: 4.9rem;
    right: auto;
    transform: translateY(100%);
    width: 9rem;
  }
  .p-grant-summary__section {
    margin-top: 1.6rem;
    padding-top: 0;
  }
  .p-grant-summary__title {
    left: auto;
    margin-inline: auto;
    position: relative;
    top: auto;
  }
  .p-grant-summary__title::after {
    aspect-ratio: 304/151;
    background-image: url(../images/top/service-summary-illust_sp.svg);
    bottom: 3.7rem;
    left: auto;
    right: 0;
    width: 33rem;
  }
  .p-grant-summary__title + * {
    margin-top: 6rem;
  }
  .p-grant-summary__section-body {
    padding-top: 9rem;
  }
  .u-pc {
    display: none;
  }
}

@media screen and (max-width: 992px){
  .p-top-mv__treat {
    margin-top: 4rem;
  }
}

@media not all and (max-width: 767px){
  a[href^="tel:"] {
    pointer-events: none;
  }
  .l-single__content ul li {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .l-single__content .wp-block-media-text__content {
    margin-top: 16px;
    padding-inline: 4%;
  }
  .u-pt {
    display: none !important;
  }
}

@media screen and (hover: hover) and (pointer: fine) and (max-width: 767px){
  .p-post-single__related-link:hover .p-post-single__related-arrow--prev::before {
    transform: translate(-50%, -50%) scale(0.869);
  }
}

@media screen and (max-width: 767px){
  :root {
    --content_width: 420px;
  }
  .js-fade-sp {
    opacity: 0;
  }
  input[type=checkbox] + .smf-checkbox-control__label::before,
  input[type=checkbox] + .checkbox-inner::before {
    top: 1px;
  }
  input[type=checkbox] + .smf-checkbox-control__label::after,
  input[type=checkbox] + .checkbox-inner::after {
    top: 6px;
  }
  .snow-monkey-form p {
    font-size: 1.4rem;
  }
  .snow-monkey-form p.l-form__text + .wp-block-snow-monkey-forms-item {
    margin-top: 40px;
  }
  .snow-monkey-form .privacy-text {
    margin-inline: auto;
    max-width: -moz-fit-content;
    max-width: fit-content;
    text-align: left;
  }
  .wp-block-snow-monkey-forms-item.smf-item + * {
    margin-top: 3.2rem;
  }
  .smf-item__label__text {
    font-size: 1.6rem;
  }
  .smf-item__controls .smf-select-control {
    max-width: 36rem;
  }
  .smf-item__controls .smf-select-control__control {
    padding-inline: 1.6rem;
  }
  .smf-item__controls .smf-checkboxes-control__control {
    font-size: 1.4rem;
  }
  .smf-item .smf-error-messages {
    font-size: 1.4rem;
  }
  .smf-action {
    margin-top: 3.2rem;
  }
  .snow-monkey-form[data-screen=confirm] .smf-action {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }
  .snow-monkey-form[data-screen=confirm] .smf-button-control {
    margin-inline: 0;
  }
  .l-cta {
    padding-bottom: 6.4rem;
  }
  .l-cta::before {
    aspect-ratio: 131/45;
    right: 2rem;
    top: -4.27vw;
    width: 34.9333333333%;
  }
  .l-cta .c-wave + * {
    padding-top: 6.4rem;
  }
  .l-cta .c-primary-title + * {
    margin-top: 4rem;
  }
  .l-cta__text {
    font-size: 1.6rem;
    line-height: 2.625;
    text-align: left;
  }
  .l-cta__text + * {
    margin-top: 4rem;
  }
  .l-cta__buttons-link {
    padding-block: 2rem;
  }
  .l-cta__buttons-link::after {
    bottom: 0.5rem;
    right: 0.5rem;
    width: 5.4rem;
  }
  .l-fixed__grant {
    gap: 0.4rem;
  }
  .l-fixed__grant::before {
    width: 2.8rem;
  }
  .l-fixed__grant-text {
    font-size: 1.2rem;
    padding: 1rem 1.1rem;
  }
  .l-fixed__grant-text .bold {
    font-size: 1.6rem;
  }
  .l-footer {
    padding-bottom: 4rem;
    padding-top: 6.4rem;
  }
  .l-footer::before {
    width: 90%;
  }
  .l-footer__logo {
    width: 19.2rem;
  }
  .l-footer__address-title {
    font-size: 1.8rem;
  }
  .l-footer__address-title + * {
    margin-top: 1.6rem;
  }
  .l-footer__address-text {
    font-size: 1.6rem;
  }
  .l-footer--no-cta {
    padding-top: 0;
  }
  .l-footer--no-cta::after {
    aspect-ratio: 131/45;
    right: 2rem;
    top: -4.27vw;
    width: 34.9333333333%;
  }
  .l-footer--no-cta .c-wave + * {
    margin-top: 6.4rem;
  }
  .l-grid--col2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .l-grid--col3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .l-grid--col4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .l-header {
    padding-left: 1rem;
    padding-top: 1rem;
  }
  .l-header__logo {
    width: 18.3rem;
  }
  .l-header__trigger {
    height: 4.8rem;
    width: 4.8rem;
  }
  .l-header__trigger-inner {
    gap: 0.22rem;
    padding-top: 0.4rem;
  }
  .l-header__trigger-wrap {
    height: 1.55rem;
    width: 2.2rem;
  }
  .l-header__trigger-line {
    height: 0.2rem;
  }
  .l-header__trigger-line:nth-of-type(1).is-active {
    transform: translateY(0.7rem) rotate(-45deg);
  }
  .l-header__trigger-line:nth-of-type(3).is-active {
    transform: translateY(-0.7rem) rotate(45deg);
  }
  .l-header__trigger-text {
    font-size: 1rem;
  }
  .l-main--404 {
    padding-block: 18rem 16rem;
  }
  .l-main--404 .error-h1 .en {
    font-size: 4.5rem;
    line-height: 1.4;
  }
  .l-main--404 .error-h1 .jp {
    font-size: 1.6rem;
    line-height: 1.3793103448;
  }
  .l-main--404 .error-h1 + * {
    margin-top: 2.1rem;
  }
  .l-main--404 .error-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .l-header.scrolled .l-navi__inner {
    gap: 2.7rem;
  }
  .l-navi {
    padding-top: 1rem;
  }
  .l-navi__inner {
    gap: 2.7rem;
  }
  .l-navi__logo {
    margin-left: -0.9rem;
    width: 18.3rem;
  }
  .l-navi__logo + * {
    margin-top: 1.3rem;
  }
  .l-navi__menu-link {
    padding-block: 1.4rem;
  }
  .l-service__h3 {
    font-size: 2rem;
  }
  .l-service__h3 + * {
    margin-top: 1.6rem;
  }
  .l-service__list.l-grid--col3::before {
    right: 0;
    top: -15.8rem;
    width: 7rem;
  }
  .l-service__list.l-grid--col3 .l-service__item {
    width: 100%;
  }
  .l-service__list.l-grid--col3 .l-service__item:nth-child(1)::before {
    aspect-ratio: 161/162;
    background: url(../images/common/service-square.svg) 50%/contain no-repeat;
    bottom: 16.2rem;
    display: block;
    left: -3rem;
    width: 10.3rem;
  }
  .l-service__list.l-grid--col3 .l-service__item:nth-child(2)::before {
    aspect-ratio: 175/158;
    background: url(../images/common/service-triangle.svg) 50%/contain no-repeat;
    bottom: 5rem;
    display: block;
    right: -1.8rem;
    transform: rotate(2deg);
    width: 8.9rem;
  }
  .l-service__list.l-grid--col2 {
    gap: 4.8rem;
  }
  .l-service__list.l-grid--col2 .l-service__item {
    width: 100%;
  }
  .l-service__list.l-grid--col2 .l-service__item:nth-child(1)::before {
    aspect-ratio: 240/236;
    background-image: url(../images/common/service-circle.svg);
    left: 0;
    top: -5.4rem;
    width: 7rem;
  }
  .l-service__list.l-grid--col2 .l-service__item:nth-child(2)::before {
    bottom: 3.6rem;
    right: 0;
    top: auto;
    transform: rotate(7deg);
    width: 10.3rem;
  }
  .l-service__list + * {
    margin-top: 4.8rem;
  }
  .l-service__image + * {
    margin-top: 1.6rem;
  }
  .l-service__h4 .underline {
    font-size: 2rem;
  }
  .l-service__text + * {
    margin-top: 2rem;
  }
  .l-sidebar {
    max-width: 360px;
    width: 100%;
  }
  .l-single__content h2 {
    font-size: 2rem;
    padding-bottom: 0.4rem;
  }
  .l-single__content h3 {
    font-size: 1.8rem;
  }
  .l-single__content h4,
  .l-single__content h5,
  .l-single__content h6 {
    font-size: 1.6rem;
  }
  .l-single__content h4::before {
    width: 1.2rem;
  }
  .l-single__content figure + h2, .l-single__content figure + h3, .l-single__content figure + h4, .l-single__content figure + h5, .l-single__content figure + h6 {
    margin-top: 3.2rem;
  }
  .l-single__content p + h2, .l-single__content p + h3, .l-single__content p + h4, .l-single__content p + h5, .l-single__content p + h6, .l-single__content p + .wp-block-gallery,
  .l-single__content ul + h2,
  .l-single__content ul + h3,
  .l-single__content ul + h4,
  .l-single__content ul + h5,
  .l-single__content ul + h6,
  .l-single__content ul + .wp-block-gallery,
  .l-single__content ol + h2,
  .l-single__content ol + h3,
  .l-single__content ol + h4,
  .l-single__content ol + h5,
  .l-single__content ol + h6,
  .l-single__content ol + .wp-block-gallery,
  .l-single__content details + h2,
  .l-single__content details + h3,
  .l-single__content details + h4,
  .l-single__content details + h5,
  .l-single__content details + h6,
  .l-single__content details + .wp-block-gallery,
  .l-single__content .wp-block-media-text + h2,
  .l-single__content .wp-block-media-text + h3,
  .l-single__content .wp-block-media-text + h4,
  .l-single__content .wp-block-media-text + h5,
  .l-single__content .wp-block-media-text + h6,
  .l-single__content .wp-block-media-text + .wp-block-gallery,
  .l-single__content .wp-block-group + h2,
  .l-single__content .wp-block-group + h3,
  .l-single__content .wp-block-group + h4,
  .l-single__content .wp-block-group + h5,
  .l-single__content .wp-block-group + h6,
  .l-single__content .wp-block-group + .wp-block-gallery, .l-single__content wp-block-buttons + h2, .l-single__content wp-block-buttons + h3, .l-single__content wp-block-buttons + h4, .l-single__content wp-block-buttons + h5, .l-single__content wp-block-buttons + h6, .l-single__content wp-block-buttons + .wp-block-gallery,
  .l-single__content .wp-block-table + h2,
  .l-single__content .wp-block-table + h3,
  .l-single__content .wp-block-table + h4,
  .l-single__content .wp-block-table + h5,
  .l-single__content .wp-block-table + h6,
  .l-single__content .wp-block-table + .wp-block-gallery {
    margin-top: 3.2rem;
  }
  .l-single__content + * {
    margin-top: 8rem;
  }
  .l-single__related-link {
    border-radius: 0.8rem;
    padding-inline: 1rem;
  }
  .l-single__related-info + * {
    margin-top: 1rem;
  }
  .l-single__related-title {
    -webkit-line-clamp: 2;
    line-height: 1.2;
  }
  .l-single__related-title + * {
    margin-top: 1rem;
  }
  .l-single__related + * {
    margin-top: 4rem;
  }
  .l-undermv {
    padding-top: 3.2rem;
  }
  .l-undermv + .c-wave {
    margin-top: 0.8rem;
  }
  .l-undermv__body {
    min-height: 48vw;
  }
  .l-undermv__contents .l-undermv__title {
    top: 8rem;
  }
  .l-undermv__title-ja {
    font-size: 2.4rem;
  }
  .l-undermv__title-en {
    bottom: 1.2rem;
    font-size: 4.8rem;
    left: -1rem;
  }
  .l-undermv__description {
    font-size: 1.6rem;
    margin-bottom: 3.1rem;
  }
  .l-undermv__thumbnail-wrap {
    margin-top: 1.6rem;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }
  .l-undermv__thumbnail-wrap.--noimage {
    margin-top: -4.5rem;
    padding-bottom: 1rem;
  }
  .l-undermv__thumbnail-wrap.--noimage::after {
    aspect-ratio: 285/179;
    background-image: url(../images/common/udnermv-treat01_sp.svg);
    margin-left: auto;
    position: static;
    transform: translateX(0.4rem);
    width: 28.5rem;
  }
  .l-undermv__thumbnail-wrap::after {
    aspect-ratio: 364/282;
    background-image: url(../images/common/udnermv-treat02_sp.svg);
    left: auto;
    position: absolute;
    right: -2rem;
    top: -7.8rem;
    width: 36.4rem;
  }
  .l-undermv__breadcrumbs ol li {
    font-size: 1.2rem;
  }
  .l-undermv__breadcrumbs ol li:first-child a {
    gap: 0.4rem;
  }
  .l-undermv__breadcrumbs ol li:first-child a::before {
    width: 1.1rem;
  }
  .l-undermv__breadcrumbs + * {
    padding-top: 6.4rem;
  }
  .l-undermv__breadcrumbs + *.p-service-top {
    padding-top: 5.6rem;
  }
  .c-accordion__btn {
    font-size: 2rem;
    padding: 1.6rem;
  }
  .c-accordion__contents-body {
    padding-bottom: 4.7rem;
    padding-inline: 1.6rem;
  }
  .c-accordion + .c-accordion {
    margin-top: 1.6rem;
  }
  .c-card-post__image + * {
    margin-top: 1.6rem;
  }
  .c-card-post__meta {
    gap: 1rem;
  }
  .c-card-post__date {
    font-size: 1.4rem;
  }
  .c-card-post__cat {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    padding-inline: 1.4rem;
  }
  .c-card-post__item--large .c-card-post__cat {
    padding-inline: 1.4rem;
  }
  .c-card-post__item--large .c-card-post__title {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .c-primary-title {
    gap: 0.4rem;
  }
  .c-primary-title__jp {
    font-size: 2.8rem;
  }
  .c-primary-title__en {
    font-size: 1.4rem;
  }
  .p-top-area + * {
    margin-top: 6.4rem;
  }
  .p-top-area__map {
    max-width: 68.4rem;
  }
  .p-top-area__map picture img {
    -o-object-position: 66%;
    object-position: 66%;
  }
  .p-top-area .c-primary-title + * {
    margin-top: 4.8rem;
  }
  .p-top-area__text {
    font-size: 1.6rem;
    line-height: 2.25;
  }
  .p-top-message {
    background-image: url(../images/top/message-bg_sp.webp);
    padding-block: 6.4rem;
  }
  .p-top-message::after {
    background: rgba(0, 0, 0, 0.2);
  }
  .p-top-message .u-con--md::after {
    left: 17.2rem;
    width: 11.4rem;
  }
  .p-top-message .c-primary-title {
    gap: 0.8rem;
  }
  .p-top-message .c-primary-title__jp {
    font-size: 2.2rem;
  }
  .p-top-message__text {
    font-size: 1.6rem;
    line-height: 2.25;
  }
  .p-top-message__text + * {
    margin-top: 4rem;
  }
  .p-top-mv__text .u-pt.mv-br {
    display: block !important;
  }
  .p-top-news {
    padding-block: 6.4rem;
  }
  .p-top-news__link {
    gap: 1.6rem;
    padding-inline: 0.4rem;
  }
  .p-top-news__title {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-left: 0.8rem;
    -webkit-line-clamp: 2;
  }
  .p-top-service {
    padding-bottom: 6.4rem;
  }
  .p-top-service .c-primary-title + * {
    margin-top: 4.8rem;
  }
  .p-top-service__body + * {
    margin-top: 6.4rem;
  }
  .p-top-service__section:nth-child(even) .p-top-service__title {
    right: -10.4rem;
  }
  .p-top-service__section:nth-child(odd) .p-top-service__title {
    left: -4.8rem;
  }
  .p-top-service__section + * {
    margin-top: 10rem;
  }
  .p-top-service__title-jp {
    font-size: 2.4rem;
  }
  .p-top-service__title-en {
    font-size: 8rem;
  }
  .p-top-service__text {
    font-size: 1.6rem;
  }
  .p-top-service__text + * {
    margin-top: 2.4rem;
  }
  .p-top-service__balloon + * {
    margin-top: 1.6rem;
  }
  .p-top-service__balloon-text {
    font-size: 1.6rem;
  }
  .p-top-service__balloon-text + * {
    margin-top: 3rem;
  }
  .p-top-service__summary-title {
    font-size: 1.8rem;
    padding-top: 5rem;
    width: 33.6rem;
  }
  .p-top-service__summary-title::after {
    width: 30.2rem;
  }
  .p-top-service__summary-title + * {
    margin-top: 5.1rem;
  }
  .p-top-service__summary-body {
    padding-inline: 1.6rem;
    padding-top: 8.4rem;
  }
  .p-top-service__summary-list {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.5rem;
  }
  .p-top-sns {
    padding-block: 6.4rem;
  }
  .p-top-sns .c-primary-title::before {
    left: -1.1rem;
    top: 0.2rem;
  }
  .p-top-sns__buttons-link::after {
    width: 1.3rem;
  }
  .p-top-works {
    padding-bottom: 6.4rem;
  }
  .p-top-works .c-wave + * {
    margin-top: 6.4rem;
  }
  .p-top-works .u-con--md {
    display: flex;
    flex-direction: column;
  }
  .p-top-works .u-con--md::before {
    right: 0;
    top: -8.9rem;
    width: 9rem;
  }
  .p-top-works__head {
    display: contents;
  }
  .p-top-works .c-primary-title {
    order: 1;
  }
  .p-top-works__btn {
    margin-top: 4rem;
    order: 3;
  }
  .p-top-works__body {
    order: 2;
    padding-top: 4.8rem;
  }
  .p-top-works__body-inner.swiper {
    padding-right: 5.6rem;
  }
  .p-top-works__body-inner.swiper .c-card-post__item.swiper-slide-next {
    opacity: 0.1;
  }
  .p-top-works__next {
    font-size: 1.4rem;
    gap: 0.4rem;
    right: 2.4rem;
    width: 6.4rem;
  }
  .p-top-bg__white::before {
    border-radius: 5rem;
    height: calc(100% - 8.8rem);
    top: 8.8rem;
  }
  .p-top-bg__white-image {
    width: 94.6666666667%;
  }
  .p-top-bg__white-image::before {
    right: 0.4rem;
    top: -4rem;
    transform: rotate(-22deg);
    width: 5.4rem;
  }
  .p-top-bg__white-image::after {
    aspect-ratio: 65/59;
    background-image: url(../images/top/bg_white-treat02_sp.svg);
    bottom: -1.9rem;
    left: -1.9rem;
    width: 6.5rem;
  }
  .p-top-bg__white-image picture {
    border-radius: 1.6rem 0 0 1.6rem;
  }
  .p-about-message {
    padding-block: 2.7rem 6.4rem;
  }
  .p-about-message__body {
    padding-top: 4.8rem;
  }
  .p-about-message__body-inner {
    padding-right: 2rem;
  }
  .p-about-message__lead {
    font-size: 2rem;
  }
  .p-about-message__text {
    font-size: 1.6rem;
  }
  .p-about-message__text + *.p-about-message__lead {
    margin-top: 4rem;
  }
  .p-about-message__profile {
    width: 24rem;
  }
  .p-about-overview {
    padding-bottom: 3.6rem;
  }
  .p-about-overview .c-wave + * {
    margin-top: 6.4rem;
  }
  .p-about-overview .u-con--md::before {
    right: 0;
    top: -3.9rem;
    width: 3.2rem;
  }
  .p-about-overview .c-primary-title + * {
    margin-top: 4rem;
  }
  .p-about-overview__dl-inner {
    flex-direction: column;
    padding-bottom: 2.4rem;
  }
  .p-about-overview__dl-inner + * {
    margin-top: 2.4rem;
  }
  .p-about-overview__dt, .p-about-overview__dd {
    font-size: 1.6rem;
  }
  .p-about-overview__dt {
    line-height: 1;
    padding-inline: 0.4rem;
    width: 100%;
  }
  .p-about-overview__dd {
    padding-inline: 0.6rem;
  }
  .p-about-overview__dd-inner + * {
    margin-top: 0.8rem;
  }
  .p-about-policy {
    padding-block: 6.4rem 7.3rem;
  }
  .p-about-policy__body::before {
    left: auto;
    right: 1.7rem;
    top: -3.6rem;
    transform: scale(-1, 1);
    width: 3.2rem;
  }
  .p-about-policy__body::after {
    bottom: -0.7rem;
    transform: translateY(100%);
    width: 7.3rem;
  }
  .p-about-policy .c-primary-title__jp {
    font-size: 2.4rem;
  }
  .p-about-policy .c-primary-title + * {
    margin-top: 4rem;
  }
  .p-about-policy__text {
    font-size: 1.6rem;
    line-height: 2.4;
    text-align: left;
  }
  .p-about-privacy {
    padding-block: 6.4rem;
  }
  .p-about-privacy .c-primary-title + * {
    margin-top: 4rem;
  }
  .p-about-privacy__text + .p-about-privacy__title, .p-about-privacy__list + .p-about-privacy__title, .p-about-privacy__address + .p-about-privacy__title {
    margin-top: 4rem;
  }
  .p-about-privacy__text + *, .p-about-privacy__list + *, .p-about-privacy__address + * {
    margin-top: 0.8rem;
  }
  .p-about-privacy__text-lead + .p-about-privacy__title {
    margin-top: 4.4rem;
  }
  .p-about-privacy__title {
    font-size: 1.8rem;
  }
  .p-service-electric > *:last-child {
    padding-bottom: 8rem;
  }
  .p-service-electric .l-undermv__block + * {
    padding-top: 6.4rem;
  }
  .p-service-electric .p-service__title {
    gap: 1rem;
  }
  .p-service-electric .p-service__title::after {
    right: 5.4rem;
    top: -1.4rem;
    width: 3.6rem;
  }
  .p-service-electric .p-service__title-jp {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    width: -moz-max-content;
    width: max-content;
  }
  .p-service-electric .p-service__title + * {
    margin-top: 8.5rem;
  }
  .p-service-electric .p-service__feature-item:nth-child(2)::after {
    bottom: 0;
  }
  .p-service-electric__gas {
    margin-top: 4rem;
    padding-top: 6.9rem;
  }
  .p-service-electric__gas-inner {
    background-position: 85%;
    left: 50%;
    padding: 7.3rem 2.9rem 3.2rem;
    transform: translateX(-50%);
    width: 100vw;
  }
  .p-service-electric__gas-inner::before {
    left: 1.9rem;
    right: 1.9rem;
  }
  .p-service-electric__gas-title-wrap {
    left: -1rem;
    padding-left: 4.8rem;
    padding-top: 3.2rem;
    width: 18.3rem;
  }
  .p-service-electric__gas-title {
    font-size: 1.8rem;
  }
  .p-service-electric__gas-title .mn {
    font-size: 1.4rem;
    margin-top: -0.1rem;
  }
  .p-service-electric__gas-text {
    font-size: 1.6rem;
    text-align: left;
  }
  .p-service-electric__gas-text + * {
    margin-top: 3.2rem;
  }
  .p-service-energy > *:last-child {
    padding-bottom: 8rem;
  }
  .p-service-energy .l-undermv__block + * {
    padding-top: 6.4rem;
  }
  .p-service-energy .p-service__title {
    gap: 1rem;
  }
  .p-service-energy .p-service__title::after {
    right: 3.9rem;
    top: -1.4rem;
    width: 3.6rem;
  }
  .p-service-energy .p-service__title-jp {
    font-size: 2rem;
  }
  .p-service-energy .p-service__feature-item:nth-child(1) .p-service__feature-title {
    width: -moz-max-content;
    width: max-content;
  }
  .p-service-energy__feature-lead {
    font-size: 1.6rem;
    text-align: left;
  }
  .p-service-energy__feature-lead + * {
    margin-top: 9.7rem;
  }
  .p-service-list__main {
    padding-top: 8rem;
  }
  .p-service-reform > *:last-child {
    padding-bottom: 8rem;
  }
  .p-service-reform .l-undermv__block + * {
    padding-top: 6.4rem;
  }
  .p-service-reform .p-service__feature-item:nth-child(1) .p-service__feature-box::after {
    bottom: auto;
    right: 0.7rem;
    top: -4.4rem;
    transform: none;
  }
  .p-service-reform .p-service__feature-item:nth-child(2)::after {
    width: 7.9rem;
  }
  .p-service-reform .p-service__feature-item:nth-child(3) .p-service__feature-title {
    width: -moz-max-content;
    width: max-content;
  }
  .p-service-reform .p-service__title::after {
    bottom: auto;
    right: 0;
    top: -6.3rem;
    transform: none;
    width: 7rem;
  }
  .p-service-reform .p-service__title + * {
    margin-top: 4.8rem;
  }
  .p-service-reform .p-service__flow-list::after {
    width: 12.8rem;
  }
  .p-service__title-jp {
    font-size: 2.3rem;
    line-height: 1.5;
  }
  .p-service__title-jp .sub {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
  .p-service__title-jp .sub + * {
    margin-top: 0.8rem;
  }
  .p-service__title-jp .dots {
    padding-top: 1.7rem;
  }
  .p-service__title-jp .dots::before {
    top: 0.2rem;
  }
  .p-service__title-en {
    font-size: 1.4rem;
  }
  .p-service__scroll {
    height: 8rem;
    width: 1px;
  }
  .p-service__scroll::after {
    animation: circlemoveSp 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
    height: 0.6rem;
    left: -0.28rem;
    width: 0.6rem;
  }
  .p-service-under .p-top-works {
    padding-bottom: 6.4rem;
  }
  .p-service__nav-list {
    max-width: 40rem;
  }
  .p-service__nav .c-btn {
    gap: 1rem;
    padding-inline: 2rem;
  }
  .p-service__nav .c-btn__arrow {
    width: 3rem;
  }
  .p-service__nav .c-btn__arrow::before {
    width: 1rem;
  }
  .p-service__feature {
    padding-block: 8rem;
  }
  .p-service__feature-lead {
    font-size: 2rem;
  }
  .p-service__feature-lead::before {
    left: -1.3rem;
    top: -1.5rem;
    width: 2.9rem;
  }
  .p-service__feature-lead::after {
    bottom: -1.4rem;
    left: -1.3rem;
    width: 33.6rem;
  }
  .p-service__feature-lead + * {
    margin-top: 13.2rem;
  }
  .p-service__feature-item {
    gap: 1.6rem;
  }
  .p-service__feature-item:nth-child(1) .p-service__feature-box::after {
    bottom: -1.6rem;
    right: 0.8rem;
    top: auto;
    transform: translateY(100%);
    width: 5.6rem;
  }
  .p-service__feature-item:nth-child(2)::after {
    width: 7.9rem;
  }
  .p-service__feature-item + * {
    margin-top: 9.7rem;
  }
  .p-service__feature-title + * {
    margin-top: 1.6rem;
  }
  .p-service__feature-title-sub {
    font-size: 1.6rem;
  }
  .p-service__feature-title-ja {
    font-size: 2.4rem;
  }
  .p-service__feature-text {
    font-size: 1.6rem;
  }
  .p-service__problem-list.l-grid {
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
  }
  .p-service__problem-list.l-grid + * {
    margin-top: 1.6rem;
  }
  .p-service__problem-card {
    padding: 1.9rem 1rem;
  }
  .p-service__problem-tag {
    font-size: 1.5rem;
  }
  .p-service__problem-text {
    font-size: 1.4rem;
  }
  .p-service__flow {
    padding-bottom: 10rem;
  }
  .p-service__flow .c-wave + * {
    margin-top: 6.4rem;
  }
  .p-service__flow .u-con--md::before {
    display: none;
  }
  .p-service__flow .c-primary-title + * {
    margin-top: 5.8rem;
  }
  .p-service__flow-list.l-grid {
    gap: 3.2rem;
    grid-template-columns: repeat(1, 1fr);
  }
  .p-service__flow-item {
    padding: 2.4rem 2rem;
  }
  .p-service__flow-item::after {
    aspect-ratio: 17.5/12;
    bottom: -1.2rem;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    left: 50%;
    right: auto;
    top: auto;
    transform: translate(-50%, 100%);
    width: 1.75rem;
  }
  .p-service__flow-step {
    flex-direction: row;
    gap: 0.2rem;
    left: 0.8rem;
    top: -1.8rem;
  }
  .p-service__flow-step .text {
    font-size: 1.4rem;
  }
  .p-service__flow-step .num {
    font-size: 3.2rem;
  }
  .p-service__flow-title {
    font-size: 1.8rem;
  }
  .p-service__flow-title .mn {
    font-size: 1.4rem;
  }
  .p-service__flow-text {
    font-size: 1.6rem;
  }
  .c-wave + .p-service__flow {
    padding-top: 6.4rem;
  }
  .p-service__price {
    padding-top: 6.4rem;
  }
  .p-service__price .u-con--md::before {
    left: 8%;
    top: -3.3rem;
    width: 5rem;
  }
  .p-service__price .c-primary-title + * {
    margin-top: 3.2rem;
  }
  .p-service__price-lead {
    font-size: 1.6rem;
  }
  .p-service__price-lead + * {
    margin-top: 7.2rem;
  }
  .p-service__price-item {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
    justify-content: space-between;
  }
  .p-service__price-item + .p-service__price-item {
    margin-top: 8rem;
  }
  .p-service__price-title {
    text-align: left;
  }
  .p-service__price-title + * {
    margin-top: 0;
  }
  .p-service__price-title-en {
    font-size: 6.4rem;
    left: 0;
    top: -3.6rem;
    transform: none;
  }
  .p-service__price-title-ja {
    font-size: 2.8rem;
  }
  .p-service__price-detail {
    gap: 0.8rem;
  }
  .p-service__price-detail + * {
    margin-top: 0;
  }
  .p-service__price-detail-num {
    font-size: 4rem;
  }
  .p-service__price-detail-unit {
    font-size: 1.8rem;
  }
  .p-service__price-detail-note {
    font-size: 1.2rem;
  }
  .p-service__price-grade {
    font-size: 2.8rem;
    top: -0.78rem;
  }
  .p-service__price-list-title {
    gap: 0.4rem;
  }
  .p-service__price-list-title + * {
    margin-top: 1.6rem;
  }
  .p-service__price-maker {
    font-size: 1.4rem;
  }
  .p-service__price-name {
    font-size: 2rem;
  }
  .p-service__price-data {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 2.4rem;
  }
  .p-service__price-data .p-service__price-detail {
    align-items: flex-end;
    border-bottom: 2px solid #58692D;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .p-service__price-data .p-service__price-detail-num {
    border: none;
    font-size: 2.8rem;
  }
  .p-service__price-data .p-service__price-detail-unit {
    font-size: 1.4rem;
  }
  .p-service__price-data-list {
    padding-left: 3.4rem;
  }
  .p-service__price-data-list::before {
    font-size: 1.4rem;
    height: 6rem;
    line-height: 1.2857142857;
  }
  .p-service__price-data-item {
    font-size: 1.6rem;
  }
  .p-service__price-data-item + * {
    margin-top: 0.4rem;
  }
  .p-service__price-list-next {
    gap: 0.4rem;
    top: 34%;
    transform: translate(100%, -34%);
    width: 4rem;
  }
  .p-grant-eligible {
    padding-top: 6.4rem;
  }
  .p-grant-eligible .u-con--md::before {
    display: none;
  }
  .p-grant-eligible__text {
    font-size: 1.6rem;
    line-height: 2.25;
    text-align: left;
  }
  .p-grant-eligible__body.l-grid {
    padding-block: 6.4rem;
    width: 100%;
  }
  .p-grant-eligible__note {
    font-size: 1.4rem;
  }
  .p-grant-eligible__block:nth-child(1) .p-grant-eligible__block-title + * {
    margin-top: 2rem;
  }
  .p-grant-eligible__block:nth-child(2) .p-grant-eligible__block-title + * {
    margin-top: 2rem;
  }
  .p-grant-eligible__block:nth-child(4) .p-grant-eligible__block-title + * {
    margin-top: 2rem;
  }
  .p-grant-eligible__block-title {
    font-size: 2rem;
  }
  .p-grant-eligible__block-title + * {
    margin-top: 2rem;
  }
  .p-grant-eligible__image {
    max-width: 46rem;
    width: 100%;
  }
  .p-grant-eligible__image + * {
    margin-top: 2.4rem;
  }
  .p-grant-eligible__list-item + * {
    margin-top: 2rem;
  }
  .p-grant-eligible__list-name {
    font-size: 1.6rem;
    line-height: 1.25;
    order: unset;
    width: 100%;
  }
  .p-grant-eligible__list-name .small {
    font-size: 1.6rem;
  }
  .p-grant-eligible__list-name::before {
    min-width: 2rem;
    padding-left: 0.1rem;
  }
  .p-grant-eligible__list-name + * {
    margin-top: 0.8rem;
  }
  .p-grant-eligible__list-price {
    font-size: 1.6rem;
  }
  .p-grant-eligible__list-price::before {
    width: 4rem;
  }
  .p-grant-eligible__list-sub-item + * {
    margin-top: 0.4rem;
  }
  .p-grant-eligible__list-sub-name {
    font-size: 1.6rem;
  }
  .p-grant-eligible__list-sub-price {
    font-size: 1.6rem;
  }
  .p-grant-eligible__list-sub-price::before {
    width: 4rem;
  }
  .p-grant-message {
    padding-block: 6.4rem 8.8rem;
  }
  .p-grant-message__body::before {
    width: 5rem;
  }
  .p-grant-message__body::after {
    width: 6.1rem;
  }
  .p-grant-message .c-primary-title__jp {
    font-size: 2rem;
  }
  .p-grant-message .c-primary-title + * {
    margin-top: 2.4rem;
  }
  .p-grant-message__text {
    font-size: 1.6rem;
    text-align: left;
  }
  .p-grant-message__text + * {
    margin-top: 3.2rem;
  }
  .p-grant-summary {
    padding-block: 6.4rem;
  }
  .p-grant-summary__lead {
    font-size: 1.6rem;
  }
  .p-grant-summary__text {
    font-size: 1.6rem;
  }
  .p-grant-summary__text + * {
    margin-top: 2.4rem;
  }
  .p-grant-summary__title {
    font-size: 1.8rem;
    padding-top: 5rem;
    width: 33.6rem;
  }
  .p-grant-summary__title::after {
    width: 30.2rem;
  }
  .p-grant-summary__title + * {
    margin-top: 5.1rem;
  }
  .p-grant-summary__section-body {
    padding-inline: 1.6rem;
    padding-top: 8.4rem;
  }
  .p-grant-summary__list {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.5rem;
  }
  .p-post-list__body {
    padding-block: 6.4rem;
  }
  .p-post-list__lists + * {
    margin-top: 6.4rem;
  }
  .p-post-single {
    padding-top: 8.8rem;
  }
  .p-post-single__wrap {
    padding-block: 6.4rem;
  }
  .p-post-single__article + * {
    margin-top: 8rem;
  }
  .p-post-single__head + * {
    margin-top: 3.2rem;
  }
  .p-post-single__meta {
    gap: 1rem;
  }
  .p-post-single__meta + * {
    margin-top: 2rem;
  }
  .p-post-single__cat {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    padding-inline: 1.4rem;
  }
  .p-post-single__date {
    font-size: 1.4rem;
    margin-top: 0.4rem;
  }
  .p-post-single__title {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.6;
  }
  .p-post-single__related-title {
    font-size: 2rem;
  }
  .p-post-single__related-title + * {
    margin-top: 1.6rem;
  }
  .p-post-single__related-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-post-single__related-item + .p-post-single__related-item {
    border-top: 1px solid #58692D;
  }
  .p-post-single__related-link {
    padding-block: 1.6rem;
    padding-inline: 0.4rem;
    position: relative;
  }
  .p-post-single__related-arrow {
    position: absolute;
    right: 0.4rem;
    top: 1.2rem;
  }
  .p-post-single__related-arrow--prev::before {
    transform: translate(-50%, -50%);
  }
  .p-post-single__related .c-card-post__meta {
    gap: 1.6rem;
    justify-content: flex-start;
  }
  .p-post-single__related .c-card-post__meta + * {
    margin-top: 0.8rem;
  }
  .p-post-single__related .c-card-post__title {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
  .p-post-single__related + * {
    margin-top: 6.4rem;
  }
  .p-contact__text {
    font-size: 1.6rem;
    line-height: 2.25;
  }
  .p-contact__head {
    padding-top: 6.4rem;
  }
  .p-contact__head .l-cta__text {
    line-height: 2.25;
  }
  .p-contact__head .l-cta__text + * {
    margin-top: 2.9rem;
  }
  .p-contact__form {
    padding-block: 10rem 4.8rem;
  }
  .p-contact__form .c-primary-title + * {
    margin-top: 4rem;
  }
  .p-contact-thanks__body {
    padding-block: 4.8rem 6.4rem;
  }
  .u-sp {
    display: none !important;
  }
  .u-con--sm {
    max-width: 60rem;
  }
  .u-con--md {
    max-width: 60rem;
  }
}

@media screen and (max-width: 680px){
  .p-top-mv {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    max-height: none;
    min-height: auto;
  }
  .p-top-mv__body {
    bottom: auto;
    position: relative;
  }
  .p-top-mv__body::before {
    aspect-ratio: 375/106;
    background: url(../images/top/mv-bg_sp.svg) 50% 0%/cover no-repeat;
    left: 0;
    top: 1px;
    transform: translateY(-100%);
    width: 100%;
  }
  .p-top-mv__inner {
    width: 89.6%;
  }
  .p-top-mv__contents {
    margin-left: 0;
    padding-top: 0;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-top-mv__contents::after {
    aspect-ratio: 66/62;
    background-image: url(../images/top/mv-treat_sp.svg);
    left: auto;
    right: 2.3rem;
    top: -0.2rem;
    transform: translateY(-100%);
    width: 6.6rem;
  }
  .p-top-mv__lead {
    font-size: 2.8rem;
    gap: 2.4rem;
    letter-spacing: 0.05em;
  }
  .p-top-mv__lead-text01 {
    gap: 0.2rem;
  }
  .p-top-mv__lead-text01 .img {
    margin-right: 0.6rem;
    width: 17.8rem;
  }
  .p-top-mv__lead-text01 .img::before {
    aspect-ratio: 181/44;
    width: 18.1rem;
  }
  .p-top-mv__lead + * {
    margin-top: 4rem;
  }
  .p-top-mv__text {
    font-size: 1.6rem;
  }
  .p-top-mv__text .u-pt.mv-br {
    display: none !important;
  }
  .p-top-mv__bg {
    height: 106.67vw;
  }
  .p-top-mv__bg picture img {
    -o-object-position: 50%;
    object-position: 50%;
  }
  .p-top-mv__treat {
    font-size: 3.6rem;
    line-height: 1.2;
    margin-inline: auto;
    margin-top: -1.9rem;
    position: relative;
    text-align: left;
    width: 94.6666666667%;
    z-index: 1;
  }
}

@media screen and (max-width: 560px){
  .p-top-service__section:nth-child(even) .p-top-service__section-image {
    margin-left: calc(50% - 50vw);
  }
  .p-top-service__section:nth-child(even) .p-top-service__section-image figure {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  .p-top-service__section:nth-child(odd) .p-top-service__section-image figure {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
  .p-top-service__section-image {
    margin-right: calc(50% - 50vw);
    width: 82.962962963%;
  }
  .p-service__feature-image {
    width: 77.6296296296%;
  }
}

@media screen and (max-width: 520px){
  .p-top-mv__text .u-pt {
    display: block !important;
  }
  .p-top-mv__text .u-pt.mv-br {
    display: block !important;
  }
  .p-top-mv__text + * {
    margin-top: 3.2rem;
  }
}

@media (hover: hover) and (pointer: fine){
  .snow-monkey-form .privacy-text a {
    transition: 0.4s;
    transition-property: color;
  }
  .snow-monkey-form .privacy-text a:hover {
    color: #58692D;
  }
  .smf-button-control::after {
    transition: 0.4s;
    transition-property: background-color, color;
  }
  .smf-button-control:hover::after {
    background-color: #fff;
  }
  .smf-button-control button[type=submit] {
    transition: 0.4s;
    transition-property: background-color, color;
  }
  .smf-button-control button[type=submit]:hover {
    background-color: #58692D;
    color: #fff;
  }
  .l-cta__buttons-link {
    transition: 0.4s;
    transition-property: background-color;
  }
  .l-cta__buttons-link:hover {
    background-color: #F6F6F2;
  }
  .l-fixed__grant::before {
    transition: 0.4s;
    transition-property: transform;
  }
  .l-fixed__grant:hover::before, .l-fixed__grant:focus-visible::before {
    transform: translateY(-0.6rem);
  }
  .l-footer__logo {
    transition: 0.4s;
    transition-property: opacity;
  }
  .l-footer__logo:hover {
    opacity: 0.6;
  }
  .l-footer__nav-link {
    transition: 0.4s;
    transition-property: opacity;
  }
  .l-footer__nav-link:hover {
    opacity: 0.6;
  }
  .l-footer__nav-child-item a {
    transition: 0.4s;
    transition-property: opacity;
  }
  .l-footer__nav-child-item a:hover {
    opacity: 0.6;
  }
  .l-footer__privacy {
    transition: 0.4s;
    transition-property: opacity;
  }
  .l-footer__privacy:hover {
    opacity: 0.6;
  }
  .l-header__logo a {
    transition: 0.4s;
    transition-property: opacity;
  }
  .l-header__logo a:hover {
    opacity: 0.6;
  }
  .l-header__contact-link {
    transition: 0.4s;
    transition-property: background-color, color;
  }
  .l-header__contact-link::before {
    transition: 0.4s;
    transition-property: background-color;
  }
  .l-header__contact-link:hover {
    background-color: #fff;
    color: #58692D;
  }
  .l-header__contact-link:hover::before {
    background-color: #58692D;
  }
  .l-navi__menu-link {
    transition: 0.4s;
    transition-property: color;
  }
  .l-navi__menu-link:hover {
    color: #58692D;
  }
  .l-navi__child-item a {
    transition: 0.4s;
    transition-property: opacity;
  }
  .l-navi__child-item a:hover {
    opacity: 0.6;
  }
  .l-service__btn-link {
    transition: 0.4s;
    transition-property: opacity;
  }
  .l-service__btn-link:hover {
    opacity: 0.7;
  }
  .l-sidebar__link {
    transition: 0.4s;
    transition-property: opacity;
  }
  .l-sidebar__link:hover {
    opacity: 0.6;
  }
  .l-undermv__breadcrumbs ol li a {
    transition: 0.4s;
    transition-property: opacity;
  }
  .l-undermv__breadcrumbs ol li a:hover {
    opacity: 0.7;
  }
  .c-btn .c-btn__arrow,
  .c-btn .c-btn__arrow::before {
    transition: 0.4s;
    transition-property: transform, background-color;
  }
  .c-btn .c-btn__arrow::after {
    transition: 0.4s;
    transition-property: opacity;
  }
  .c-btn:hover .c-btn__arrow {
    transform: scale(1.15);
  }
  .c-btn:hover .c-btn__arrow::before {
    background-color: #fff;
    transform: translate(-50%, -50%) scale(0.869);
  }
  .c-btn:hover .c-btn__arrow::after {
    opacity: 1;
  }
  .c-btn--white:hover .c-arrow::before {
    background-color: #58692D;
  }
  .c-btn--back:hover .c-btn__arrow::before {
    transform: translate(-50%, -50%) scale(-0.869, -0.869);
  }
  .c-card-post__link {
    transition: 0.4s;
    transition-property: opacity;
  }
  .c-card-post__link .c-card-post__image img {
    transition: 0.4s;
    transition-property: transform;
  }
  .c-card-post__link:hover {
    opacity: 0.6;
  }
  .c-card-post__link:hover .c-card-post__image img {
    transform: scale(1.1);
  }
  .c-pager__button {
    transition: 0.4s;
    transition-property: background-color;
  }
  .c-pager__button::after {
    transition: 0.4s;
    transition-property: background-color;
  }
  .c-pager__button:hover, .c-pager__button:focus-visible {
    background-color: #58692D;
  }
  .c-pager__button:hover::after, .c-pager__button:focus-visible::after {
    background-color: #fff;
  }
  .c-pager__list-link {
    transition: 0.4s;
    transition-property: background-color, color;
  }
  .c-pager__list-link:hover, .c-pager__list-link:focus-visible {
    background-color: #58692D;
    color: #fff;
  }
  .p-top-news__link {
    transition: 0.4s;
    transition-property: opacity;
  }
  .p-top-news__link:hover {
    opacity: 0.6;
  }
  .p-top-sns__buttons-link {
    transition: 0.4s;
    transition-property: box-shadow;
  }
  .p-top-sns__buttons-link:hover {
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  }
  .p-top-works__next {
    transition: 0.4s;
    transition-property: color, transform;
  }
  .p-top-works__next span, .p-top-works__next::before {
    transition: 0.4s;
    transition-property: transform, background-color;
  }
  .p-top-works__next::after {
    transition: 0.4s;
    transition-property: opacity;
  }
  .p-top-works__next:hover {
    color: #fff;
    transform: scale(1.15);
  }
  .p-top-works__next:hover::before {
    background-color: #fff;
    transform: scale(0.869);
  }
  .p-top-works__next:hover span {
    transform: scale(0.869);
  }
  .p-top-works__next:hover::after {
    opacity: 1;
  }
  .p-about-overview__dd a {
    transition: 0.4s;
    transition-property: opacity;
  }
  .p-about-overview__dd a:hover {
    opacity: 0.6;
  }
  .p-service__nav .c-btn:hover .c-btn__arrow::before {
    transform: translate(-50%, -50%) rotate(90deg) scale(0.869);
  }
  .p-service__price-list-next {
    transition: 0.4s;
    transition-property: color, transform;
  }
  .p-service__price-list-next span, .p-service__price-list-next::before {
    transition: 0.4s;
    transition-property: transform, background-color;
  }
  .p-service__price-list-next::after {
    transition: 0.4s;
    transition-property: opacity;
  }
  .p-service__price-list-next:hover {
    color: #fff;
    transform: scale(1.15);
  }
  .p-service__price-list-next:hover::before {
    background-color: #fff;
    transform: scale(0.869);
  }
  .p-service__price-list-next:hover span {
    transform: scale(0.869);
  }
  .p-service__price-list-next:hover::after {
    opacity: 1;
  }
  .p-post-single__related-link .p-post-single__related-arrow,
  .p-post-single__related-link .p-post-single__related-arrow::before {
    transition: 0.4s;
    transition-property: transform, background-color;
  }
  .p-post-single__related-link .p-post-single__related-arrow::after {
    transition: 0.4s;
    transition-property: opacity;
  }
  .p-post-single__related-link:hover .p-post-single__related-arrow {
    transform: scale(1.15);
  }
  .p-post-single__related-link:hover .p-post-single__related-arrow::before {
    background-color: #fff;
    transform: translate(-50%, -50%) scale(0.869);
  }
  .p-post-single__related-link:hover .p-post-single__related-arrow::after {
    opacity: 1;
  }
  .p-post-single__related-link:hover .p-post-single__related-arrow--prev::before {
    transform: translate(-50%, -50%) scale(-0.869, -0.869);
  }
  .p-contact__text a {
    transition: 0.4s;
    transition-property: opacity;
  }
  .p-contact__text a:hover {
    opacity: 0.6;
  }
}

@media all and (-ms-high-contrast: none){
  html,
  body {
    display: none;
  }
}
/*# sourceMappingURL=maps/style.css.map */
