﻿/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

[type=search] {
  outline-offset: -2px;
}

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

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

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/* ----------------------------------------------
 * settings
---------------------------------------------- */
:root {
  --header-height: auto;
  --base-size: 16;
  --font-size: 16;
  --leading-trim: calc((1em - 1lh) / 2);
  --easing: cubic-bezier(.4, .4, 0, 1);
  --w: 390px;
}

/* ----------------------------------------------
 * fonts
---------------------------------------------- */
@font-face {
  font-family: "DIN";
  font-weight: normal;
  src: url("../font/din-medium.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "DIN";
  font-weight: bold;
  src: url("../font/din-bold.otf") format("opentype");
  font-display: swap;
}
/* ----------------------------------------------
 * colors
---------------------------------------------- */
/* ----------------------------------------------
 * media query
---------------------------------------------- */
/* ----------------------------------------------
 * responsive size calculation
---------------------------------------------- */
/* ----------------------------------------------
 * Functions
---------------------------------------------- */
/**
 * hover
 *
 */
/**
 * inline-size
 *
 */
/**
 * object-fit
 *
 */
/**
 * triangle
 *
 */
/**
 * view-wide
 *
 */
/**
 * drop-shadow
 *
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: middle;
}

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

html {
  font-size: min(var(--vw) / 1600 * 100%, 100%);
}
@media (max-width: 1280px) and (min-width: 980px) {
  html {
    font-size: min(var(--vw) / 1280 * 100%, 100%);
  }
}
@media (max-width: 979.9px) {
  html {
    font-size: min(var(--vw) / 390 * 100%, 100%);
  }
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

main {
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
@media (max-width: 979.9px) {
  main {
    -webkit-margin-before: var(--header-height);
            margin-block-start: var(--header-height);
  }
}
main.is-loaded {
  opacity: 1;
}

.b {
  margin-inline: auto;
  inline-size: min(100%, var(--w));
}
@media (max-width: 1280px) and (min-width: 980px) {
  .b {
    -webkit-margin-start: max(max(11.5px, 483px), 690/var(--font-size) * 1rem);
            margin-inline-start: max(max(11.5px, 483px), 690/var(--font-size) * 1rem);
  }
}

section {
  overflow: clip;
}

a[tabindex="-1"] {
  pointer-events: none;
}

strong {
  font-weight: inherit;
}

[data-anime=fadeUp] {
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0;
  translate: 0 30px;
  -webkit-transition: 1.25s ease filter, 1.25s ease opacity, 1.25s ease translate;
  transition: 1.25s ease filter, 1.25s ease opacity, 1.25s ease translate;
  will-change: filter, translate, opacity;
}
[data-anime=fadeUp].is-active {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  translate: 0 0;
}

/* ----------------------------------------------
 * details
---------------------------------------------- */
[data-accordion=summary] {
  cursor: pointer;
}

[data-accordion=detail] {
  overflow: hidden;
  max-block-size: none;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* ----------------------------------------------
 * keyframes
---------------------------------------------- */
@-webkit-keyframes rotate_infinity_360 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate_infinity_360 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loop_infinity_horizontal {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes loop_infinity_horizontal {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes purupuru {
  0% {
    -webkit-transform: translate(3px, 0px);
            transform: translate(3px, 0px);
  }
  5% {
    -webkit-transform: translate(-3px, 0px);
            transform: translate(-3px, 0px);
  }
  10% {
    -webkit-transform: translate(3px, 0px);
            transform: translate(3px, 0px);
  }
  15% {
    -webkit-transform: translate(-3px, 0px);
            transform: translate(-3px, 0px);
  }
  20% {
    -webkit-transform: translate(3px, 0px);
            transform: translate(3px, 0px);
  }
  25% {
    -webkit-transform: translate(-3px, 0px);
            transform: translate(-3px, 0px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes purupuru {
  0% {
    -webkit-transform: translate(3px, 0px);
            transform: translate(3px, 0px);
  }
  5% {
    -webkit-transform: translate(-3px, 0px);
            transform: translate(-3px, 0px);
  }
  10% {
    -webkit-transform: translate(3px, 0px);
            transform: translate(3px, 0px);
  }
  15% {
    -webkit-transform: translate(-3px, 0px);
            transform: translate(-3px, 0px);
  }
  20% {
    -webkit-transform: translate(3px, 0px);
            transform: translate(3px, 0px);
  }
  25% {
    -webkit-transform: translate(-3px, 0px);
            transform: translate(-3px, 0px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
/* ----------------------------------------------
 * c-purupuru
---------------------------------------------- */
.c-purupuru {
  -webkit-animation: purupuru 2.5s ease-in-out infinite;
          animation: purupuru 2.5s ease-in-out infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

/* ----------------------------------------------
 * c-bg
---------------------------------------------- */
.c-bg_01 {
  position: fixed;
  inline-size: min(100%, var(--w));
  block-size: 100%;
  z-index: -3;
}
@media (min-width: 980px) {
  .c-bg_01 {
    inset-inline-start: 50%;
    inset-block-start: 0;
    translate: -50% 0;
  }
}
@media (max-width: 1280px) and (min-width: 980px) {
  .c-bg_01 {
    inset-inline-start: max(max(11.5px, 483px), 690/var(--font-size) * 1rem);
    translate: none;
  }
}
.c-bg_01 img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.6s;
  transition: scale 0.6s;
  will-change: scale;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}

.c-bg_02 {
  position: fixed;
  inset: 0;
  z-index: -6;
}
.c-bg_02 img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.6s;
  transition: scale 0.6s;
  will-change: scale;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}

/* ----------------------------------------------
 * c-fixed
---------------------------------------------- */
.c-fixed {
  display: grid;
  padding: 0 calc(10/var(--base-size) * 1rem) calc(8/var(--base-size) * 1rem);
  position: fixed;
  inset-inline-start: 50%;
  inset-block-end: 0;
  translate: -50% 0;
  -webkit-transition: opacity 0.5s var(--easing), translate 0.5s var(--easing);
  transition: opacity 0.5s var(--easing), translate 0.5s var(--easing);
  inline-size: min(100%, var(--w));
  z-index: 999;
}
.c-fixed.is-hidden {
  opacity: 0;
  pointer-events: none;
  translate: -50% calc(40/var(--base-size) * 1rem);
}
.c-fixed.is-change a:nth-child(1) {
  opacity: 0;
  translate: 0 -100%;
}
.c-fixed.is-change a:nth-child(2) {
  opacity: 1;
  translate: 0 0;
}
.c-fixed.is-over {
  opacity: 0;
  pointer-events: none;
  translate: -50% calc(40/var(--base-size) * 1rem);
}
.c-fixed.is-over .ico {
  scale: 1 -1;
}
.c-fixed a {
  grid-column: 1/2;
  grid-row: 1/2;
  -webkit-transition: opacity 0.3s var(--easing), translate 0.3s var(--easing);
  transition: opacity 0.3s var(--easing), translate 0.3s var(--easing);
}
.c-fixed a:nth-child(2) {
  opacity: 0;
  translate: 0 100%;
}

/* ----------------------------------------------
 * c-btn
---------------------------------------------- */
.c-btn_01 {
  background-color: #0b6235;
  border: 1px solid #0b6235;
  border-radius: 100vmax;
  -webkit-filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.26));
          filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.26));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: calc(2/var(--base-size) * 1rem);
  position: relative;
  text-align: center;
  -webkit-transition: background-color 0.5s var(--easing);
  transition: background-color 0.5s var(--easing);
  block-size: max(max(11.5px, 54.6px), 78/var(--font-size) * 1rem);
  z-index: 0;
}
@media (min-width: 980px) {
  .c-btn_01 {
    margin-inline: auto;
    inline-size: min(100%, max(max(11.5px, 308px), 440/var(--font-size) * 1rem));
    block-size: max(max(11.5px, 59.5px), 85/var(--font-size) * 1rem);
  }
}
@media (any-hover: hover) {
  .c-btn_01:hover {
    background-color: #fff000;
  }
  .c-btn_01:hover::before {
    background-color: rgba(255, 255, 255, 0.7);
  }
  .c-btn_01:hover .en,
  .c-btn_01:hover .ja {
    color: #0b6235;
  }
  .c-btn_01:hover .ico {
    background-color: #0b6235;
  }
  .c-btn_01:hover .ico::before {
    background-color: #fff;
  }
}
.c-btn_01.--entry {
  background-color: #dd4c03;
  border: 1px solid #dd4c03;
}
@media (any-hover: hover) {
  .c-btn_01.--entry:hover {
    background-color: #fff000;
  }
  .c-btn_01.--entry:hover::before {
    background-color: rgba(255, 255, 255, 0.7);
  }
  .c-btn_01.--entry:hover::after {
    background-color: #dd4c03;
  }
  .c-btn_01.--entry:hover .en,
  .c-btn_01.--entry:hover .ja {
    color: #dd4c03;
  }
  .c-btn_01.--entry:hover .ico {
    background-color: #dd4c03;
  }
  .c-btn_01.--entry:hover .ico::before {
    background-color: #fff;
  }
}
.c-btn_01.--entry .ico::before {
  background-color: #dd4c03;
}
.c-btn_01.--p {
  -webkit-padding-start: calc(40/var(--base-size) * 1rem);
          padding-inline-start: calc(40/var(--base-size) * 1rem);
}
.c-btn_01.--p::after {
  content: "";
  aspect-ratio: 90/25;
  background-color: #fff000;
  -webkit-mask: url(../img/btn_now.svg) no-repeat center/contain;
          mask: url(../img/btn_now.svg) no-repeat center/contain;
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  position: absolute;
  inset-inline-start: calc(32/var(--base-size) * 1rem);
  inset-block-start: 50%;
  translate: 0 -50%;
  -webkit-transition: background-color 0.5s var(--easing);
  transition: background-color 0.5s var(--easing);
  inline-size: max(max(11.5px, 63px), 90/var(--font-size) * 1rem);
}

.c-btn_01 .en {
  font-family: "baskerville-urw", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-style: italic;
  font-size: max(max(11.5px, 25.9px), 37/var(--font-size) * 1rem);
  line-height: 1;
  color: #fff000;
  -webkit-transition: color 0.5s var(--easing);
  transition: color 0.5s var(--easing);
}
@media (min-width: 980px) {
  .c-btn_01 .en {
    font-size: max(max(11.5px, 22.4px), 32/var(--font-size) * 1rem);
  }
}
.c-btn_01 .ja {
  font-weight: 900;
  font-size: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: #fff;
  -webkit-transition: color 0.5s var(--easing);
  transition: color 0.5s var(--easing);
}
@media (min-width: 980px) {
  .c-btn_01 .ja {
    font-size: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  }
}
.c-btn_01 .ico {
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  inset-inline-end: calc(15/var(--base-size) * 1rem);
  inset-block-start: 50%;
  translate: 0 -50%;
  -webkit-transition: background-color 0.5s var(--easing);
  transition: background-color 0.5s var(--easing);
  inline-size: max(max(11.5px, 22.4px), 32/var(--font-size) * 1rem);
}
@media (min-width: 980px) {
  .c-btn_01 .ico {
    rotate: -90deg;
  }
}
.c-btn_01 .ico::before {
  content: "";
  aspect-ratio: 7/12;
  background-color: #0b6235;
  -webkit-mask: url(../img/arrow_next.svg) no-repeat center/contain;
          mask: url(../img/arrow_next.svg) no-repeat center/contain;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -42.5%;
  rotate: 90deg;
  -webkit-transition: background-color 0.5s var(--easing);
  transition: background-color 0.5s var(--easing);
  inline-size: 21.875%;
}

.c-btn_02 {
  font-family: "baskerville-urw", sans-serif;
  font-style: normal;
  background: -webkit-linear-gradient(325deg, #009527 0%, #00721f 100%);
  background: linear-gradient(125deg, #009527 0%, #00721f 100%);
  border: 1px solid #009527;
  border-radius: 100vmax;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.26));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.26));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-padding-after: calc(5/var(--base-size) * 1rem);
          padding-block-end: calc(5/var(--base-size) * 1rem);
  position: relative;
  -webkit-transition: -webkit-filter 0.5s var(--easing);
  transition: -webkit-filter 0.5s var(--easing);
  transition: filter 0.5s var(--easing);
  transition: filter 0.5s var(--easing), -webkit-filter 0.5s var(--easing);
  inline-size: max(max(11.5px, 231px), 330/var(--font-size) * 1rem);
  block-size: max(max(11.5px, 74.9px), 107/var(--font-size) * 1rem);
  z-index: 0;
}
@media (any-hover: hover) {
  .c-btn_02:hover {
    -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  }
  .c-btn_02:hover .p {
    color: #009527;
  }
  .c-btn_02:hover::before {
    background-color: rgba(255, 255, 255, 0.7);
  }
  .c-btn_02:hover::after {
    opacity: 1;
  }
}
.c-btn_02.--pink {
  background: -webkit-linear-gradient(325deg, #f8c259 0%, #f28a50 53.2%, #fc84a0 100%);
  background: linear-gradient(125deg, #f8c259 0%, #f28a50 53.2%, #fc84a0 100%);
  border: 1px solid #f8c259;
}
@media (any-hover: hover) {
  .c-btn_02.--pink:hover .p {
    color: #ff7933;
  }
  .c-btn_02.--pink:hover::after {
    opacity: 1;
  }
}


.c-btn_02::after {
  content: "";
  background-color: #fff000;
  opacity: 0;
  position: absolute;
  inset: 0;
  -webkit-transition: opacity 0.5s var(--easing);
  transition: opacity 0.5s var(--easing);
  z-index: -6;
}
.c-btn_02 .p {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  -webkit-transition: color 0.5s var(--easing);
  transition: color 0.5s var(--easing);
}
.c-btn_02 .p span {
  font-weight: 500;
  font-style: italic;
  font-size: 1.4em;
}
.c-btn_02 .p::after {
  content: "";
  aspect-ratio: 7/12;
  background-color: currentColor;
  -webkit-mask: url(../img/arrow_next.svg) no-repeat center/contain;
          mask: url(../img/arrow_next.svg) no-repeat center/contain;
  position: absolute;
  inset-inline-end: calc(28/var(--base-size) * 1rem);
  inset-block-start: 50%;
  translate: 0 -50%;
  inline-size: max(8px, 10/var(--base-size) * 1rem);
}

/* ----------------------------------------------
 * c-ttl
---------------------------------------------- */
.c-ttl {
  -webkit-margin-after: calc(20/var(--base-size) * 1rem);
          margin-block-end: calc(20/var(--base-size) * 1rem);
  text-align: center;
}
.c-ttl .en {
  font-family: "baskerville-urw", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: max(max(11.5px, 26.6px), 38/var(--font-size) * 1rem);
  letter-spacing: 0.05em;
  line-height: 1;
}
.c-ttl .ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
  letter-spacing: 0.05em;
  line-height: 1.5;
  -webkit-margin-before: 0.1em;
          margin-block-start: 0.1em;
}

/**
 * @unity
 *
 */
@media (max-width: 979.9px) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 980px) {
  .u-sp-only {
    display: none !important;
  }
}

/**
 * @header
 *
 */
.header {
  position: fixed;
  -webkit-transition: background-color 0.3s, -webkit-backdrop-filter 0.3s;
  transition: background-color 0.3s, -webkit-backdrop-filter 0.3s;
  transition: backdrop-filter 0.3s, background-color 0.3s;
  transition: backdrop-filter 0.3s, background-color 0.3s, -webkit-backdrop-filter 0.3s;
  z-index: calc(infinity);
}
@media (min-width: 980px) {
  .header {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
    overflow-y: scroll;
    padding: calc(30/var(--base-size) * 1rem) calc(50/var(--base-size) * 1rem);
    inset-inline-start: 0;
    inset-block-start: 0;
    inline-size: calc((100% - var(--w)) / 2);
    block-size: 100vh;
    scrollbar-width: none;
  }
  .header::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 1280px) and (min-width: 980px) {
  .header {
    inline-size: max(max(11.5px, 483px), 690/var(--font-size) * 1rem);
  }
}
@media (max-width: 979.9px) {
  .header {
    -webkit-backdrop-filter: blur(calc(40/var(--base-size) * 1rem));
            backdrop-filter: blur(calc(40/var(--base-size) * 1rem));
    background-color: rgba(255, 255, 255, 0.3);
    inset-inline-start: 50%;
    inset-block-start: 0;
    translate: -50% 0;
    inline-size: min(100%, var(--w));
  }
}
@media (min-width: 980px) {
  .header__wrapper {
    inline-size: min(100%, max(max(11.5px, 336px), 480/var(--font-size) * 1rem));
  }
}

.header__inner {
  display: grid;
  position: relative;
  z-index: calc(infinity);
}
@media (max-width: 979.9px) {
  .header__inner {
    grid-template-columns: repeat(2, auto);
  }
}

.header__logo {
  display: grid;
  -webkit-column-gap: calc(3/var(--base-size) * 1rem);
     -moz-column-gap: calc(3/var(--base-size) * 1rem);
          column-gap: calc(3/var(--base-size) * 1rem);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: calc(15/var(--base-size) * 1rem) calc(10/var(--base-size) * 1rem);
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}
@media (max-width: 979.9px) {
  .header__logo {
    grid-template-columns: repeat(2, auto);
  }
}
@media (min-width: 980px) {
  .header__logo {
    inline-size: 100%;
  }
}
.header__logo .p_01 {
  margin-inline: auto;
  inline-size: max(max(11.5px, 95.2px), 136/var(--font-size) * 1rem);
}
@media (min-width: 980px) {
  .header__logo .p_01 {
    inline-size: max(max(11.5px, 164.5px), 235/var(--font-size) * 1rem);
  }
}
@media (max-width: 979.9px) {
  .header__logo .p_01 {
    grid-row: span 2;
  }
}
.header__logo .p_01 img {
  inline-size: 100%;
}
.header__logo .p_02 {
  font-family: "baskerville-urw", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: max(max(11.5px, 11.9px), 17/var(--font-size) * 1rem);
  letter-spacing: -0.01em;
  color: rgba(0, 149, 39, 0.73);
}
@media (min-width: 980px) {
  .header__logo .p_02 {
    display: none;
  }
}
.header__logo .p_03 {
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  font-size: max(max(11.5px, 7.7px), 11/var(--font-size) * 1rem);
  color: #009527;
}
@media (min-width: 980px) {
  .header__logo .p_03 {
    display: none;
  }
}

.header__ham {
  aspect-ratio: 1;
  cursor: pointer;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  position: relative;
  block-size: 100%;
}
@media (min-width: 980px) {
  .header__ham {
    display: none;
  }
}
@media (any-hover: hover) {
  .header__ham:hover .ico {
    background-color: #0a496a;
    scale: 0.9 0.9;
  }
  .header__ham:hover .ico span {
    background-color: #fff;
  }
}
.header__ham.is-active span:nth-child(1) {
  translate: -50% -50%;
  rotate: 225deg;
}
.header__ham.is-active span:nth-child(2) {
  display: none;
}
.header__ham.is-active span:nth-child(3) {
  translate: -50% -50%;
  rotate: -225deg;
}
.header__ham span {
  background-color: #009527;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  -webkit-transition: 0.3s var(--easing);
  transition: 0.3s var(--easing);
  -webkit-transition-property: translate, rotate;
  transition-property: translate, rotate;
  inline-size: 48.3870967742%;
  block-size: 1px;
}
.header__ham span:nth-child(1) {
  translate: -50% calc(-50% - max(6px, 7/var(--base-size) * 1rem));
}
.header__ham span:nth-child(2) {
  translate: -50% calc(-50% + max(6px, 7/var(--base-size) * 1rem));
}

.header__green {
  grid-column: span 2;
  background: -webkit-gradient(linear, left top, right top, from(#1a746c), to(#0d3a36));
  background: -webkit-linear-gradient(left, #1a746c 0%, #0d3a36 100%);
  background: linear-gradient(90deg, #1a746c 0%, #0d3a36 100%);
  font-weight: bold;
  font-size: max(max(11.5px, 12.6px), 18/var(--font-size) * 1rem);
  line-height: 1.15;
  color: #fff;
  padding: calc(5/var(--base-size) * 1rem) calc(15/var(--base-size) * 1rem) calc(6/var(--base-size) * 1rem);
  text-align: center;
}
@media (min-width: 980px) {
  .header__green {
    font-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
    margin-inline: auto;
    -webkit-margin-after: calc(30/var(--base-size) * 1rem);
            margin-block-end: calc(30/var(--base-size) * 1rem);
    padding: calc(4/var(--base-size) * 1rem) calc(32/var(--base-size) * 1rem) calc(5/var(--base-size) * 1rem);
    inline-size: -webkit-fit-content;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
  }
}

.header__menu {
  scrollbar-width: none;
}
@media (max-width: 979.9px) {
  .header__menu {
    background-color: #fff;
    opacity: 0;
    overflow-y: scroll;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
    padding: calc(var(--header-height) + 30/var(--base-size) * 1rem) calc(30/var(--base-size) * 1rem) calc(80/var(--base-size) * 1rem);
    pointer-events: none;
    position: fixed;
    inset-inline-start: 50%;
    inset-block-start: 0;
    translate: -50% calc(40/var(--base-size) * 1rem);
    -webkit-transition: opacity 0.4s var(--easing), translate 0.4s var(--easing), visibility 0.4s var(--easing);
    transition: opacity 0.4s var(--easing), translate 0.4s var(--easing), visibility 0.4s var(--easing);
    inline-size: min(100%, var(--w));
    block-size: 100vh;
    z-index: 9999;
  }
}
@media (min-width: 980px) {
  .header__menu {
    display: grid;
    justify-items: center;
  }
}
.header__menu::-webkit-scrollbar {
  display: none;
}
.header__menu.is-open {
  opacity: 1;
  pointer-events: all;
  translate: -50% 0;
}

.header__menu__list {
  display: grid;
  gap: calc(18/var(--base-size) * 1rem);
  margin-inline: auto;
}
@media (min-width: 980px) {
  .header__menu__list {
    border-block: 1px solid #000;
    gap: calc(10/var(--base-size) * 1rem);
    -webkit-margin-before: calc(40/var(--base-size) * 1rem);
            margin-block-start: calc(40/var(--base-size) * 1rem);
    padding: calc(16/var(--base-size) * 1rem) calc(30/var(--base-size) * 1rem);
    inline-size: min(100%, max(max(11.5px, 294px), 420/var(--font-size) * 1rem));
  }
}
@media (max-width: 979.9px) {
  .header__menu__list {
    max-inline-size: max(max(11.5px, 178.5px), 255/var(--font-size) * 1rem);
  }
}

.header__menu__item {
  font-weight: 500;
  font-size: max(max(11.5px, 11.9px), 17/var(--font-size) * 1rem);
  letter-spacing: 0.05em;
  line-height: 1.7;
  -webkit-transition: color 0.5s var(--easing);
  transition: color 0.5s var(--easing);
}
@media (min-width: 980px) {
  .header__menu__item {
    font-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: calc(15/var(--base-size) * 1rem);
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (any-hover: hover) {
  .header__menu__item:hover {
    color: #009527;
  }
  .header__menu__item:hover::after {
    translate: calc(5/var(--base-size) * 1rem) 0;
  }
}
@media (max-width: 979.9px) {
  .header__menu__item {
    font-family: "Shippori Mincho", serif;
  }
}
.header__menu__item:has(a.is-current) {
  color: #009527;
}
@media (min-width: 980px) {
  .header__menu__item::after {
    content: "";
    aspect-ratio: 1;
    background-color: currentColor;
    -webkit-mask: url(../img/arrow_round.svg) no-repeat center center/contain;
            mask: url(../img/arrow_round.svg) no-repeat center center/contain;
    -webkit-transition: background-color 0.5s var(--easing), translate 0.5s var(--easing);
    transition: background-color 0.5s var(--easing), translate 0.5s var(--easing);
    inline-size: max(max(11.5px, 18.2px), 26/var(--font-size) * 1rem);
  }
}
.header__menu__item a {
  padding-block: calc(6/var(--base-size) * 1rem);
}

.header__menu__btn {
  display: grid;
  gap: calc(20/var(--base-size) * 1rem);
}
@media (min-width: 980px) {
  .header__menu__btn {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    gap: calc(15/var(--base-size) * 1rem);
    inline-size: 100%;
  }
}
@media (max-width: 979.9px) {
  .header__menu__btn {
    -webkit-margin-before: calc(25/var(--base-size) * 1rem);
            margin-block-start: calc(25/var(--base-size) * 1rem);
  }
}

.header__menu__sns {
  display: grid;
  grid-template-columns: repeat(2, max(max(11.5px, 43.4px), 62/var(--font-size) * 1rem));
  gap: calc(20/var(--base-size) * 1rem);
  margin-inline: auto;
  -webkit-margin-before: calc(20/var(--base-size) * 1rem);
          margin-block-start: calc(20/var(--base-size) * 1rem);
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}
.header__menu__sns a {
  display: block;
}
@media (any-hover: hover) {
  .header__menu__sns a:hover img {
    opacity: 0.8;
    scale: 0.9 0.9;
  }
}
.header__menu__sns a img {
  -webkit-transition: opacity 0.4s var(--easing), scale 0.4s var(--easing);
  transition: opacity 0.4s var(--easing), scale 0.4s var(--easing);
}

.header__menu__logo {
  margin-inline: auto;
  -webkit-margin-before: calc(30/var(--base-size) * 1rem);
          margin-block-start: calc(30/var(--base-size) * 1rem);
  inline-size: max(max(11.5px, 106.4px), 152/var(--font-size) * 1rem);
}
.header__menu__logo img {
  inline-size: 100%;
}

.header__menu__copy {
  font-family: "baskerville-urw", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: max(max(11.5px, 11.2px), 16/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.68;
  color: #018842;
  -webkit-margin-before: calc(15/var(--base-size) * 1rem);
          margin-block-start: calc(15/var(--base-size) * 1rem);
  text-align: center;
}

/**
 * @footer
 *
 */
.footer {
  background-color: #fff;
  display: grid;
  justify-items: center;
  padding: calc(30/var(--base-size) * 1rem) calc(15/var(--base-size) * 1rem) calc(100/var(--base-size) * 1rem);
  position: relative;
  z-index: 99;
}

.footer__btn {
  display: grid;
  justify-items: center;
  gap: calc(20/var(--base-size) * 1rem);
}

.footer__logo {
  -webkit-margin-before: calc(60/var(--base-size) * 1rem);
          margin-block-start: calc(60/var(--base-size) * 1rem);
  inline-size: max(max(11.5px, 106.4px), 152/var(--font-size) * 1rem);
}
.footer__logo img {
  inline-size: 100%;
}

.footer__copy {
  font-family: "baskerville-urw", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: max(max(11.5px, 11.2px), 16/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.68;
  color: #018842;
  -webkit-margin-before: calc(15/var(--base-size) * 1rem);
          margin-block-start: calc(15/var(--base-size) * 1rem);
}

.footer__pagetop {
  position: absolute;
  inset-inline-end: calc(15/var(--base-size) * 1rem);
  inset-block-end: calc(15/var(--base-size) * 1rem);
}
.footer__pagetop a {
  aspect-ratio: 1;
  background-color: #5e5e5e;
  border: 1px solid #5e5e5e;
  border-radius: 50%;
  display: block;
  -webkit-transition: background-color 0.4s var(--easing);
  transition: background-color 0.4s var(--easing);
  inline-size: max(max(11.5px, 30.8px), 44/var(--font-size) * 1rem);
}
@media (any-hover: hover) {
  .footer__pagetop a:hover {
    background-color: #fff;
  }
  .footer__pagetop a:hover::before {
    background-color: #5e5e5e;
  }
}
.footer__pagetop a::before {
  content: "";
  aspect-ratio: 7/12;
  background-color: #fff;
  -webkit-mask: url(../img/arrow_next.svg) no-repeat center/contain;
          mask: url(../img/arrow_next.svg) no-repeat center/contain;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  rotate: -90deg;
  -webkit-transition: background-color 0.4s var(--easing);
  transition: background-color 0.4s var(--easing);
  inline-size: 21.875%;
}

/**
 * @aside
 *
 */
.aside {
  padding: calc(80/var(--base-size) * 1rem) calc(50/var(--base-size) * 1rem);
  position: fixed;
  inset-inline-end: 0;
  inset-block-start: 0;
  inline-size: calc((100% - var(--w)) / 2);
  block-size: 100vh;
}
@media (max-width: 1280px) and (min-width: 980px) {
  .aside {
    display: none;
  }
}

.aside__wrapper {
  display: grid;
  place-items: center;
  block-size: 100%;
}

.aside__content {
  background-color: #fff;
  border-radius: 10px;
  -webkit-filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
  padding: calc(55/var(--base-size) * 1rem) calc(40/var(--base-size) * 1rem) calc(35/var(--base-size) * 1rem);
  position: relative;
  inline-size: min(100%, max(max(11.5px, 329px), 470/var(--font-size) * 1rem));
}

.aside__h {
  background: url(../img/blur_bg.jpg) no-repeat center center/cover;
  border-radius: 100vmax;
  font-weight: 600;
  font-size: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  line-height: 1.5;
  color: #2e2e2e;
  padding: calc(3/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem) calc(4/var(--base-size) * 1rem);
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 0;
  white-space: nowrap;
  translate: -50% -50%;
}

.aside__btn {
  display: grid;
  gap: calc(15/var(--base-size) * 1rem);
}
.aside__btn a {
  border: 1px solid #0f6855;
  border-radius: 10px;
  font-weight: 900;
  font-size: max(max(11.5px, 12.6px), 18/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.88;
  color: #0f6855;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: calc(15/var(--base-size) * 1rem);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: calc(10/var(--base-size) * 1rem) calc(30/var(--base-size) * 1rem);
  -webkit-transition: background-color 0.4s var(--easing), color 0.4s var(--easing);
  transition: background-color 0.4s var(--easing), color 0.4s var(--easing);
  block-size: max(max(11.5px, 43.4px), 62/var(--font-size) * 1rem);
}
@media (any-hover: hover) {
  .aside__btn a:hover {
    background-color: #0f6855;
    color: #fff;
  }
  .aside__btn a:hover::after {
    translate: calc(5/var(--base-size) * 1rem) 0;
  }
}
.aside__btn a:is(li:nth-child(2) a) {
  border-color: #e3530a;
  color: #e3530a;
}
@media (any-hover: hover) {
  .aside__btn a:is(li:nth-child(2) a):hover {
    background-color: #e3530a;
    color: #fff;
  }
}
.aside__btn a::after {
  content: "";
  aspect-ratio: 1;
  background-color: currentColor;
  -webkit-mask: url(../img/arrow_round.svg) no-repeat center center/contain;
          mask: url(../img/arrow_round.svg) no-repeat center center/contain;
  -webkit-transition: background-color 0.5s var(--easing), translate 0.5s var(--easing);
  transition: background-color 0.5s var(--easing), translate 0.5s var(--easing);
  inline-size: max(max(11.5px, 22.4px), 32/var(--font-size) * 1rem);
}

.aside__sns {
  -webkit-margin-before: calc(30/var(--base-size) * 1rem);
          margin-block-start: calc(30/var(--base-size) * 1rem);
}

.aside__sns__ttl {
  font-weight: 600;
  font-size: max(max(11.5px, 8.4px), 12/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.33;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: calc(8/var(--base-size) * 1rem);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  -webkit-margin-after: calc(12/var(--base-size) * 1rem);
          margin-block-end: calc(12/var(--base-size) * 1rem);
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}
.aside__sns__ttl::before, .aside__sns__ttl::after {
  content: "";
  background-color: currentColor;
  inline-size: 1px;
  block-size: 1em;
}
.aside__sns__ttl::before {
  rotate: -35deg;
}
.aside__sns__ttl::after {
  rotate: 35deg;
}

.aside__sns__list {
  display: grid;
  grid-template-columns: repeat(2, max(max(11.5px, 43.4px), 62/var(--font-size) * 1rem));
  gap: calc(12/var(--base-size) * 1rem);
  margin-inline: auto;
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}
.aside__sns__list a {
  display: block;
  -webkit-transition: scale 0.4s var(--easing);
  transition: scale 0.4s var(--easing);
}
@media (any-hover: hover) {
  .aside__sns__list a:hover {
    scale: 0.96 0.96;
  }
}

/* ----------------------------------------------
 * mv
---------------------------------------------- */
.mv {
  display: grid;
  grid-template-columns: 1fr 50%;
  grid-template-rows: auto 1fr;
  gap: calc(20/var(--base-size) * 1rem) calc(25/var(--base-size) * 1rem);
  position: relative;
  z-index: 0;
}
.mv > img:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/2;
  -webkit-margin-before: calc(-24/var(--base-size) * 1rem);
          margin-block-start: calc(-24/var(--base-size) * 1rem);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  inline-size: 67.1794871795%;
}
.mv > img:nth-child(2) {
  grid-column: 1/2;
  grid-row: 2/3;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.mv > img:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
  -webkit-margin-before: calc(40/var(--base-size) * 1rem);
          margin-block-start: calc(40/var(--base-size) * 1rem);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.mv > img:nth-child(4) {
  grid-column: 1/3;
  grid-row: 2/3;
  opacity: 0.3;
  margin-block: calc(15/var(--base-size) * 1rem) calc(-10/var(--base-size) * 1rem);
  z-index: -3;
}

.mv__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(6/var(--base-size) * 1rem);
  position: absolute;
  inset-inline-end: calc(30/var(--base-size) * 1rem);
  inset-block-start: calc(33/var(--base-size) * 1rem);
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}
.mv__ttl span {
  background: -webkit-gradient(linear, left top, left bottom, from(#009527), to(rgba(0, 114, 55, 0.7)));
  background: -webkit-linear-gradient(#009527 0%, rgba(0, 114, 55, 0.7) 100%);
  background: linear-gradient(#009527 0%, rgba(0, 114, 55, 0.7) 100%);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  padding: calc(8/var(--base-size) * 1rem) calc(6/var(--base-size) * 1rem);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.mv__ttl .p_01 {
  font-size: max(max(11.5px, 12.6px), 24/var(--font-size) * 1rem);
}
.mv__ttl .p_02 {
  font-size: max(max(11.5px, 23.1px), 24/var(--font-size) * 1rem);
}
.mv__ttl .p_03 {
  font-size: max(max(11.5px, 19.6px), 24/var(--font-size) * 1rem);
}

.mv__ttl .p_01_0 {
  font-size: max(max(11.5px, 12.6px), 18/var(--font-size) * 1rem);
}
.mv__ttl .p_02_0 {
  font-size: max(max(11.5px, 23.1px), 33/var(--font-size) * 1rem);
}
.mv__ttl .p_03_0 {
  font-size: max(max(11.5px, 19.6px), 28/var(--font-size) * 1rem);
}

.fv__txt{
  position: absolute;
  left: 0px;
  top:270px;
  width: 200px;
}

.mv__txt {
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: calc(8/var(--base-size) * 1rem);
}
.mv__txt .p_01 {
  position: absolute;
  inset-inline-start: calc(-72/var(--base-size) * 1rem);
  inset-block-start: calc(-20/var(--base-size) * 1rem);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  inline-size: max(max(11.5px, 83.3px), 119/var(--font-size) * 1rem);
}
.mv__txt .p_02 {
  inline-size: max(max(11.5px, 200.9px), 287/var(--font-size) * 1rem);
}

.mv__scroll {
  font-family: "baskerville-urw", sans-serif;
  font-style: normal;
  font-size: max(max(11.5px, 9.8px), 14/var(--font-size) * 1rem);
  letter-spacing: 0.05em;
  color: #68b98f;
  display: grid;
  justify-items: center;
  gap: calc(8/var(--base-size) * 1rem);
  position: absolute;
  inset-inline-end: calc(5/var(--base-size) * 1rem);
  inset-block-end: 0;
}
.mv__scroll span {
  -webkit-margin-after: -0.2em;
          margin-block-end: -0.2em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  scale: -1 -1;
}
.mv__scroll::after {
  content: "";
  -webkit-animation: scroll_down 2s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scroll_down 2s cubic-bezier(1, 0, 0, 1) infinite;
  background-color: currentColor;
  inline-size: 1px;
  block-size: max(max(11.5px, 56px), 80/var(--font-size) * 1rem);
}
@-webkit-keyframes scroll_down {
  0% {
    scale: 1 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    scale: 1 1;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    scale: 1 1;
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    scale: 1 0;
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scroll_down {
  0% {
    scale: 1 0;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    scale: 1 1;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    scale: 1 1;
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    scale: 1 0;
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

/* ----------------------------------------------
 * pont
---------------------------------------------- */
.point {
  background-color: #f3981b;
  padding: calc(20/var(--base-size) * 1rem) calc(10/var(--base-size) * 1rem) calc(10/var(--base-size) * 1rem);
}

.point__list {
  gap: calc(10/var(--base-size) * 1rem);
}

.point__item {
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  margin-top: 16px;
}
.point__item:first-child {
  margin-top: 0px;
}

/* ----------------------------------------------
 * voice
---------------------------------------------- */
.voice {
  background: -webkit-linear-gradient(340deg, #fdf1df 0%, #fffffd 64.5%, transparent 86.5%);
  background: linear-gradient(110deg, #fdf1df 0%, #fffffd 64.5%, transparent 86.5%);
  -webkit-padding-before: calc(100/var(--base-size) * 1rem);
          padding-block-start: calc(100/var(--base-size) * 1rem);
  position: relative;
  z-index: 0;
}
.voice::before {
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  content: "";
  background-color: #f3981b;
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: -1px;
  inline-size: 100%;
  block-size: calc(66.5/var(--base-size) * 1rem);
}

.voice__en {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: calc(200/var(--base-size) * 1rem);
  inline-size: max(max(11.5px, 50.4px), 72/var(--font-size) * 1rem);
  z-index: -3;
}

.voice__h {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: max(max(11.5px, 17.5px), 25/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: #5f5f5f;
  -webkit-margin-after: calc(20/var(--base-size) * 1rem);
          margin-block-end: calc(20/var(--base-size) * 1rem);
  text-align: center;
}
.voice__h span {
  background: -webkit-linear-gradient(340deg, #139d57 0%, #ff9d39 62.5%);
  background: linear-gradient(110deg, #139d57 0%, #ff9d39 62.5%);
  font-size: max(max(11.5px, 31.5px), 45/var(--font-size) * 1rem);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.voice__img {
  -webkit-margin-start: calc(-24/var(--base-size) * 1rem);
          margin-inline-start: calc(-24/var(--base-size) * 1rem);
  -webkit-margin-after: calc(25/var(--base-size) * 1rem);
          margin-block-end: calc(25/var(--base-size) * 1rem);
  inline-size: 90.7692307692%;
}

.voice__member__btn {
  -webkit-margin-after: calc(35/var(--base-size) * 1rem);
          margin-block-end: calc(35/var(--base-size) * 1rem);
}

.voice__member {
  -webkit-margin-before: calc(-15/var(--base-size) * 1rem);
          margin-block-start: calc(-15/var(--base-size) * 1rem);
  padding: calc(15/var(--base-size) * 1rem) calc(10/var(--base-size) * 1rem) calc(30/var(--base-size) * 1rem);
}

.voice__member__h {
  line-height: 1.2;
  color: #2e2e2e;
  -webkit-margin-after: calc(30/var(--base-size) * 1rem);
          margin-block-end: calc(30/var(--base-size) * 1rem);
  text-align: center;
}
.voice__member__h .en {
  font-family: "baskerville-urw", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: max(max(11.5px, 18.2px), 26/var(--font-size) * 1rem);
  letter-spacing: 0.05em;
}
.voice__member__h .ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
  letter-spacing: 0.05em;
}

.voice__member__list {
  display: grid;
  gap: calc(10/var(--base-size) * 1rem);
}

.voice__member__item {
  background-color: #fff;
  border: 1px solid #c3c3c3;
  border-radius: 10px;
  display: grid;
  grid-template-columns: max(max(11.5px, 57.4px), 82/var(--font-size) * 1rem) 1fr;
  -webkit-column-gap: calc(15/var(--base-size) * 1rem);
     -moz-column-gap: calc(15/var(--base-size) * 1rem);
          column-gap: calc(15/var(--base-size) * 1rem);
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  padding: calc(20/var(--base-size) * 1rem);
}

.voice__member__ttl {
  grid-column: span 2;
  -webkit-border-after: 1px solid #e0e0e0;
          border-block-end: 1px solid #e0e0e0;
  font-weight: bold;
  font-size: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  line-height: 1.55;
  text-align: center;
  color: #009527;
  -webkit-margin-after: calc(12/var(--base-size) * 1rem);
          margin-block-end: calc(12/var(--base-size) * 1rem);
  -webkit-padding-after: calc(12/var(--base-size) * 1rem);
          padding-block-end: calc(12/var(--base-size) * 1rem);
}

.voice__member__img {
  grid-row: span 3;
  border-start-end-radius: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  overflow: hidden;
}

.voice__member__txt {
  font-weight: normal;
  font-size: max(max(11.5px, 9.8px), 14/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.72;
  color: rgba(0, 0, 0, 0.7);
  margin-block: var(--leading-trim);
  text-align: justify;
  max-inline-size: none;
  inline-size: calc(100% + 0.5em);
}

.voice__member__s {
  font-weight: 500;
  font-size: max(max(11.5px, 8.4px), 12/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  color: #009527;
  -webkit-margin-before: calc(12/var(--base-size) * 1rem);
          margin-block-start: calc(12/var(--base-size) * 1rem);
}

.voice__manager {
  color: #fff;
}

.voice__manager__h {
  font-family: "Shippori Mincho", serif;
  background-color: #009527;
  font-weight: 600;
  font-size: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  line-height: 1.6;
  padding: calc(10/var(--base-size) * 1rem) calc(15/var(--base-size) * 1rem);
  text-align: center;
}

.voice__manager__b {
  background: -webkit-linear-gradient(75deg, #1e8450 0%, #e69745 100%);
  background: linear-gradient(15deg, #1e8450 0%, #e69745 100%);
  padding: calc(20/var(--base-size) * 1rem) calc(30/var(--base-size) * 1rem) calc(30/var(--base-size) * 1rem);
}

.voice__manager__ttl {
  font-family: "Shippori Mincho", serif;
  -webkit-border-after: 1px solid;
          border-block-end: 1px solid;
  font-weight: bold;
  font-size: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  line-height: 1.6;
  margin-block: var(--leading-trim) calc(15/var(--base-size) * 1rem);
  -webkit-padding-after: calc(20/var(--base-size) * 1rem);
          padding-block-end: calc(20/var(--base-size) * 1rem);
}

.voice__manager__img {
  border-start-end-radius: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  -webkit-margin-after: calc(15/var(--base-size) * 1rem);
          margin-block-end: calc(15/var(--base-size) * 1rem);
  overflow: hidden;
}

.voice__manager__txt {
  font-weight: 600;
  font-size: max(max(11.5px, 9.8px), 14/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.72;
  margin-block: var(--leading-trim);
}
.voice__manager__txt span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.125em, transparent), color-stop(0.125em, #003b20), to(#003b20));
  background: -webkit-linear-gradient(transparent 0.125em, #003b20 0.125em, #003b20 100%);
  background: linear-gradient(transparent 0.125em, #003b20 0.125em, #003b20 100%);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding-inline: 1px;
  -webkit-padding-after: 0.07em;
          padding-block-end: 0.07em;
}

.voice__manager__n {
  font-weight: bold;
  font-size: max(max(11.5px, 9.8px), 14/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  -webkit-margin-before: calc(20/var(--base-size) * 1rem);
          margin-block-start: calc(20/var(--base-size) * 1rem);
}

.voice__manager__s {
  font-weight: 500;
  font-size: max(max(11.5px, 8.4px), 12/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  -webkit-margin-before: 0.6em;
          margin-block-start: 0.6em;
}

/* ----------------------------------------------
 * movie
---------------------------------------------- */
.movie {
  background: -webkit-linear-gradient(355deg, #f8c259 0%, #f28a50 53.2%, #fc84a0 100%);
  background: linear-gradient(95deg, #f8c259 0%, #f28a50 53.2%, #fc84a0 100%);
  padding: calc(74/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem);
}

.movie__h {
  color: #fff;
  -webkit-margin-after: calc(30/var(--base-size) * 1rem);
          margin-block-end: calc(30/var(--base-size) * 1rem);
  text-align: center;
}
.movie__h .en {
  font-family: "baskerville-urw", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: max(max(11.5px, 26.6px), 38/var(--font-size) * 1rem);
  letter-spacing: 0.05em;
}
.movie__h .ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
  letter-spacing: 0.05em;
}

.movie__l {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: max(max(11.5px, 11.9px), 17/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 2;
  color: #fff;
  margin-block: var(--leading-trim);
  text-align: center;
}

.movie__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(20/var(--base-size) * 1rem);
  -webkit-margin-before: calc(30/var(--base-size) * 1rem);
          margin-block-start: calc(30/var(--base-size) * 1rem);
}

@media (any-hover: hover) {
  .movie__item:hover .ico::before {
    scale: 1.2 1.2;
  }
}
.movie__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.movie_figure {
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.movie_figure.is-play .ico {
  opacity: 0;
}
.movie_figure .ico {
  aspect-ratio: 1;
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  -webkit-transition: opacity 0.4s var(--easing);
  transition: opacity 0.4s var(--easing);
  inline-size: max(max(11.5px, 34.3px), 49/var(--font-size) * 1rem);
  z-index: 9;
}
.movie_figure .ico::before {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  display: block;
  -webkit-transition: scale 0.4s var(--easing);
  transition: scale 0.4s var(--easing);
  inline-size: 100%;
  block-size: 100%;
}
.movie_figure .ico::after {
  content: "";
  aspect-ratio: 17/15;
  background-color: #000;
  -webkit-mask: url(../img/arrow_play.svg) no-repeat center/contain;
          mask: url(../img/arrow_play.svg) no-repeat center/contain;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -40% -50%;
  inline-size: 34.693877551%;
}
.movie_figure video {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.6s;
  transition: scale 0.6s;
  will-change: scale;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}

.movie__txt {
  font-weight: 600;
  font-size: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  color: #fff;
  -webkit-margin-before: calc(10/var(--base-size) * 1rem);
          margin-block-start: calc(10/var(--base-size) * 1rem);
  text-align: center;
}

.movie__check {
  background-color: #fff;
  border-radius: 10px;
  -webkit-margin-before: calc(50/var(--base-size) * 1rem);
          margin-block-start: calc(50/var(--base-size) * 1rem);
  padding: calc(30/var(--base-size) * 1rem) calc(30/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem);
  position: relative;
}
.movie__check .p_01 {
  font-family: "baskerville-urw", sans-serif;
  font-style: normal;
  background: url(../img/blur_bg.jpg) no-repeat center/cover;
  border-radius: 100vmax;
  font-weight: normal;
  font-style: italic;
  font-size: max(max(11.5px, 15.4px), 22/var(--font-size) * 1rem);
  color: #2e2e2e;
  padding: calc(5/var(--base-size) * 1rem) calc(26/var(--base-size) * 1rem);
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 0;
  translate: -50% -50%;
}
.movie__check .p_02 {
  font-weight: 600;
  font-size: max(max(11.5px, 11.9px), 17/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.64;
  text-align: center;
}
.movie__check .p_02 span {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(#fff000), to(#fff000));
  background: -webkit-linear-gradient(transparent calc(100% - 10/var(--base-size) * 1rem), #fff000 calc(100% - 10/var(--base-size) * 1rem), #fff000 100%);
  background: linear-gradient(transparent calc(100% - 10/var(--base-size) * 1rem), #fff000 calc(100% - 10/var(--base-size) * 1rem), #fff000 100%);
}
.movie__check .p_03 {
  display: grid;
  grid-template-columns: repeat(2, max(max(11.5px, 43.4px), 62/var(--font-size) * 1rem));
  gap: calc(20/var(--base-size) * 1rem);
  margin-inline: auto;
  -webkit-margin-before: calc(20/var(--base-size) * 1rem);
          margin-block-start: calc(20/var(--base-size) * 1rem);
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}
.movie__check .p_03 a {
  display: block;
}
@media (any-hover: hover) {
  .movie__check .p_03 a:hover img {
    scale: 0.96 0.96;
  }
}
.movie__check .p_03 a img {
  -webkit-transition: opacity 0.4s var(--easing), scale 0.4s var(--easing);
  transition: opacity 0.4s var(--easing), scale 0.4s var(--easing);
}

/* ----------------------------------------------
 * thanks
---------------------------------------------- */
.thanks {
  background-color: #fff;
  padding: calc(30/var(--base-size) * 1rem) calc(30/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem);
  position: relative;
}

.thanks__ttl {
  background: -webkit-gradient(linear, left top, left bottom, from(#f8c259), color-stop(53.2%, #f28a50), to(#fc84a0));
  background: -webkit-linear-gradient(#f8c259 0%, #f28a50 53.2%, #fc84a0 100%);
  background: linear-gradient(#f8c259 0%, #f28a50 53.2%, #fc84a0 100%);
  border-radius: 100vmax;
  font-weight: 900;
  font-size: max(max(11.5px, 12.6px), 18/var(--font-size) * 1rem);
  line-height: 1.55;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  -webkit-margin-after: -1.1em;
          margin-block-end: -1.1em;
  position: relative;
  padding: calc(1/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem);
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  z-index: 3;
}
.thanks__ttl span {
  font-family: "DIN", sans-serif;
  font-weight: bold;
  font-size: 1.55em;
  margin-inline: 0.22em;
  -webkit-margin-before: -0.15em;
          margin-block-start: -0.15em;
}

.thanks__img {
  -webkit-margin-start: calc(-30/var(--base-size) * 1rem);
          margin-inline-start: calc(-30/var(--base-size) * 1rem);
  -webkit-margin-after: calc(20/var(--base-size) * 1rem);
          margin-block-end: calc(20/var(--base-size) * 1rem);
  inline-size: calc(100% + 60/var(--base-size) * 1rem);
  max-inline-size: none;
}
.thanks__img img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.6s;
  transition: scale 0.6s;
  will-change: scale;
  width: 100%;
  -o-object-position: center;
     object-position: center;
}

.thanks__txt {
  font-family: "Shippori Mincho", serif;
  display: grid;
  justify-items: center;
  text-align: center;
}
.thanks__txt .p_01 {
  font-weight: 600;
  font-size: max(max(11.5px, 17.5px), 25/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: #5f5f5f;
}
.thanks__txt .p_01 strong {
  background: -webkit-linear-gradient(340deg, #139d57 0%, #ff9d39 62.5%);
  background: linear-gradient(110deg, #139d57 0%, #ff9d39 62.5%);
  display: inline-block;
  margin-block: -0.5em -0.3em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.thanks__txt .p_01 span {
  font-size: 1.8em;
}
.thanks__txt .p_02 {
  font-weight: 600;
  font-size: max(max(11.5px, 17.5px), 25/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.6;
  padding-inline: 0.6em;
  position: relative;
}
.thanks__txt .p_02::before, .thanks__txt .p_02::after {
  content: "";
  background-color: #000;
  position: absolute;
  inset-block-start: 0.3em;
  inline-size: 1px;
  block-size: 1.2em;
}
.thanks__txt .p_02::before {
  inset-inline-start: 0;
  rotate: -35deg;
}
.thanks__txt .p_02::after {
  inset-inline-end: 0;
  rotate: 35deg;
}
.thanks__txt .p_02 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff000), to(#fff000)) left bottom 0.1em/100% calc(14/var(--base-size) * 1rem) no-repeat;
  background: -webkit-linear-gradient(#fff000, #fff000) left bottom 0.1em/100% calc(14/var(--base-size) * 1rem) no-repeat;
  background: linear-gradient(#fff000, #fff000) left bottom 0.1em/100% calc(14/var(--base-size) * 1rem) no-repeat;
}

/* ----------------------------------------------
 * welfare
---------------------------------------------- */
.welfare {
  background-color: #ff7933;
}

.welfare__h {
  font-family: "Shippori Mincho", serif;
  background: url("../img/welfare_h.png") no-repeat center bottom/cover;
  display: grid;
  justify-items: center;
  gap: calc(10/var(--base-size) * 1rem);
  -webkit-margin-after: calc(-70/var(--base-size) * 1rem);
          margin-block-end: calc(-70/var(--base-size) * 1rem);
  padding: calc(50/var(--base-size) * 1rem) calc(30/var(--base-size) * 1rem) calc(70/var(--base-size) * 1rem);
  text-align: center;
}
.welfare__h .p_01 {
  -webkit-filter: drop-shadow(0 0 5px rgba(173, 132, 83, 0.5));
          filter: drop-shadow(0 0 5px rgba(173, 132, 83, 0.5));
  font-weight: bold;
  font-size: max(max(11.5px, 13.3px), 19/var(--font-size) * 1rem);
  line-height: 1.57;
  color: #fff;
}
.welfare__h .p_02 {
  background-color: #fff;
  font-weight: 600;
  font-size: max(max(11.5px, 28px), 40/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1;
  padding: calc(8/var(--base-size) * 1rem) calc(10/var(--base-size) * 1rem) calc(10/var(--base-size) * 1rem);
  inline-size: 100%;
}
.welfare__h .p_02 span {
  background: -webkit-linear-gradient(325deg, #fdd588 0%, #f2874e 100%);
  background: linear-gradient(125deg, #fdd588 0%, #f2874e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.welfare__h .p_03 {
  -webkit-filter: drop-shadow(0 0 5px rgba(173, 132, 83, 0.5));
          filter: drop-shadow(0 0 5px rgba(173, 132, 83, 0.5));
  font-weight: bold;
  font-size: max(max(11.5px, 18.2px), 26/var(--font-size) * 1rem);
  line-height: 1.26;
  color: #fff;
}

.welfare__list {
  display: grid;
  gap: calc(15/var(--base-size) * 1rem);
  padding: calc(90/var(--base-size) * 1rem) calc(10/var(--base-size) * 1rem) calc(40/var(--base-size) * 1rem);
}

.welfare__item {
  border-radius: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  overflow: hidden;
}

.welfare__benefit {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff7933), to(#2cac69));
  background: -webkit-linear-gradient(#ff7933 0%, #2cac69 100%);
  background: linear-gradient(#ff7933 0%, #2cac69 100%);
  padding: calc(10/var(--base-size) * 1rem) calc(10/var(--base-size) * 1rem) calc(28/var(--base-size) * 1rem);
}

.welfare__benefit__h {
  color: #fff;
  color: #fff;
  -webkit-filter: drop-shadow(0 0 7px rgba(157, 104, 40, 0.5));
          filter: drop-shadow(0 0 7px rgba(157, 104, 40, 0.5));
  -webkit-margin-after: calc(20/var(--base-size) * 1rem);
          margin-block-end: calc(20/var(--base-size) * 1rem);
  text-align: center;
}
.welfare__benefit__h .p_01 {
  font-weight: bold;
  font-size: max(max(11.5px, 14.7px), 21/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.428;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: calc(20/var(--base-size) * 1rem);
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  margin-inline: auto;
  -webkit-margin-after: calc(15/var(--base-size) * 1rem);
          margin-block-end: calc(15/var(--base-size) * 1rem);
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}
.welfare__benefit__h .p_01::before, .welfare__benefit__h .p_01::after {
  content: "";
  background-color: #fff;
  inline-size: 1px;
  block-size: calc(100% - 0.3em);
}
.welfare__benefit__h .p_01::before {
  rotate: -25deg;
}
.welfare__benefit__h .p_01::after {
  rotate: 25deg;
}
.welfare__benefit__h .p_02 {
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  font-size: max(max(11.5px, 23.8px), 34/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.41;
}

.welfare__benefit__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(5/var(--base-size) * 1rem);
}

.welfare__benefit__item {
  background-color: #fff;
  border-radius: 6px;
  font-weight: 500;
  font-size: max(max(11.5px, 12.6px), 18/var(--font-size) * 1rem);
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: calc(6/var(--base-size) * 1rem) calc(13/var(--base-size) * 1rem) calc(7/var(--base-size) * 1rem);
  text-align: center;
}
.welfare__benefit__item:last-child {
  font-size: max(max(11.5px, 14px), 20/var(--font-size) * 1rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(15/var(--base-size) * 1rem);
  inline-size: 100%;
}
.welfare__benefit__item:last-child span {
  font-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
}
.welfare__benefit__item span {
  font-size: max(max(11.5px, 11.2px), 16/var(--font-size) * 1rem);
  color: #009527;
  text-align: left;
}

/* ----------------------------------------------
 * welcome
---------------------------------------------- */
.welcome {
  position: relative;
  z-index: 0;
}
.welcome::before {
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  content: "";
  background-color: #2cac69;
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: -1px;
  inline-size: 100%;
  block-size: calc(55/var(--base-size) * 1rem);
}

.welcome_bg {
  display: grid;
  grid-template-columns: 1fr 50%;
  grid-template-rows: auto 1fr;
  gap: calc(20/var(--base-size) * 1rem) calc(25/var(--base-size) * 1rem);
  position: relative;
  z-index: -3;
}
.welcome_bg img:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3;
}
.welcome_bg img:nth-child(2) {
  grid-column: 1/3;
  grid-row: 1/2;
  border-start-start-radius: max(max(11.5px, 42px), 60/var(--font-size) * 1rem);
  -webkit-filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.16));
  -webkit-margin-start: calc(15/var(--base-size) * 1rem);
          margin-inline-start: calc(15/var(--base-size) * 1rem);
  -webkit-margin-before: calc(185/var(--base-size) * 1rem);
          margin-block-start: calc(185/var(--base-size) * 1rem);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  inline-size: calc(262/var(--base-size) * 1rem);
}
.welcome_bg img:nth-child(3) {
  grid-column: 1/2;
  grid-row: 2/3;
  -webkit-filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.16));
  -webkit-margin-start: calc(15/var(--base-size) * 1rem);
          margin-inline-start: calc(15/var(--base-size) * 1rem);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  inline-size: calc(170/var(--base-size) * 1rem);
}
.welcome_bg img:nth-child(4) {
  grid-column: 2/3;
  grid-row: 2/3;
  -webkit-filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.16));
  -webkit-margin-before: calc(80/var(--base-size) * 1rem);
          margin-block-start: calc(80/var(--base-size) * 1rem);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  inline-size: calc(162/var(--base-size) * 1rem);
}

.welcome__h {
  background: -webkit-linear-gradient(5deg, #139d57 7%, #ff9d39 100%);
  background: linear-gradient(85deg, #139d57 7%, #ff9d39 100%);
  font-weight: 600;
  font-size: max(max(11.5px, 29.4px), 42/var(--font-size) * 1rem);
  line-height: 1;
  color: #fff;
  padding: calc(7/var(--base-size) * 1rem) calc(15/var(--base-size) * 1rem) calc(9/var(--base-size) * 1rem);
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: calc(85/var(--base-size) * 1rem);
  translate: -50% 0;
  text-align: center;
  text-shadow: 0 0 6px #fff;
  inline-size: calc(100% - 30/var(--base-size) * 1rem);
}

.welcome__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(6/var(--base-size) * 1rem);
  position: absolute;
  inset-inline-end: calc(20/var(--base-size) * 1rem);
  inset-block-start: calc(305/var(--base-size) * 1rem);
}
.welcome__ttl span {
  background: -webkit-gradient(linear, left top, left bottom, from(#009527), to(rgba(0, 114, 55, 0.7)));
  background: -webkit-linear-gradient(#009527 0%, rgba(0, 114, 55, 0.7) 100%);
  background: linear-gradient(#009527 0%, rgba(0, 114, 55, 0.7) 100%);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  padding: calc(8/var(--base-size) * 1rem) calc(6/var(--base-size) * 1rem);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.welcome__ttl .p_01 {
  font-size: max(max(11.5px, 12.6px), 18/var(--font-size) * 1rem);
}
.welcome__ttl .p_02 {
  font-size: max(max(11.5px, 23.1px), 33/var(--font-size) * 1rem);
}
.welcome__ttl .p_03 {
  font-size: max(max(11.5px, 19.6px), 28/var(--font-size) * 1rem);
}

.welcome_lbl {
  position: absolute;
  inset-inline-end: calc(20/var(--base-size) * 1rem);
  inset-block-start: calc(159/var(--base-size) * 1rem);
  inline-size: max(max(11.5px, 83.3px), 119/var(--font-size) * 1rem);
}

.welcome__txt {
  position: absolute;
  inset-inline-start: calc(-38/var(--base-size) * 1rem);
  inset-block-end: calc(26/var(--base-size) * 1rem);
  inline-size: max(max(11.5px, 200.9px), 287/var(--font-size) * 1rem);
}

/* ----------------------------------------------
 * recruit
---------------------------------------------- */
.recruit__h {
  background: -webkit-linear-gradient(325deg, #1a746c 0%, #0d3a36 100%);
  background: linear-gradient(125deg, #1a746c 0%, #0d3a36 100%);
  -webkit-clip-path: polygon(100% 0, 100% calc(100% - 55/var(--base-size) * 1rem), 50% 100%, 0 calc(100% - 55/var(--base-size) * 1rem), 0 0);
          clip-path: polygon(100% 0, 100% calc(100% - 55/var(--base-size) * 1rem), 50% 100%, 0 calc(100% - 55/var(--base-size) * 1rem), 0 0);
  color: #fff;
  padding: calc(25/var(--base-size) * 1rem) calc(15/var(--base-size) * 1rem) calc(68/var(--base-size) * 1rem);
  text-align: center;
}
.recruit__h .p_01 {
  font-weight: 900;
  font-size: max(max(11.5px, 14.7px), 21/var(--font-size) * 1rem);
  line-height: 1.6;
  -webkit-margin-after: calc(28/var(--base-size) * 1rem);
          margin-block-end: calc(28/var(--base-size) * 1rem);
}
.recruit__h .p_01 img {
  display: inline-block;
  margin-inline: auto;
  -webkit-margin-before: calc(8/var(--base-size) * 1rem);
          margin-block-start: calc(8/var(--base-size) * 1rem);
  inline-size: max(max(11.5px, 127.4px), 182/var(--font-size) * 1rem);
}
.recruit__h .p_02 {
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  font-size: max(max(11.5px, 15.4px), 22/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.545;
  -webkit-margin-after: calc(20/var(--base-size) * 1rem);
          margin-block-end: calc(20/var(--base-size) * 1rem);
}
.recruit__h .p_02 span:not(.s) {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(#017168), to(#017168));
  background: -webkit-linear-gradient(transparent calc(100% - 12/var(--base-size) * 1rem), #017168 calc(100% - 12/var(--base-size) * 1rem), #017168 calc(100% + 2/var(--base-size) * 1rem));
  background: linear-gradient(transparent calc(100% - 12/var(--base-size) * 1rem), #017168 calc(100% - 12/var(--base-size) * 1rem), #017168 calc(100% + 2/var(--base-size) * 1rem));
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding-inline: 0.4em 0.2em;
  text-shadow: 0px 0px 7px rgba(157, 104, 40, 0.5);
}
.recruit__h .p_02 .s {
  -webkit-margin-end: -0.4em;
          margin-inline-end: -0.4em;
}
.recruit__h .p_03 {
  font-weight: bold;
  font-size: max(max(11.5px, 13.3px), 19/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.47;
  color: rgba(255, 240, 0, 0.9);
}
.recruit__h .p_03 span {
  font-size: 0.842em;
}

.recruit__b {
  padding: calc(35/var(--base-size) * 1rem) calc(10/var(--base-size) * 1rem) calc(50/var(--base-size) * 1rem);
  position: relative;
}

.recruit__b__content {
  position: relative;
}
.recruit__b__content::after {
  content: "";
  aspect-ratio: 370/40;
  background: url(../img/recruit_arrow.svg) no-repeat bottom center/100%;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: 0;
  translate: -50% 75%;
  inline-size: calc(100% + 1px);
}
.recruit__b__content dl {
  background-color: #fff;
  border: 1px solid #c3c3c3;
  border-radius: 10px;
  overflow: hidden;
  padding: calc(28/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem) calc(15/var(--base-size) * 1rem);
}
.recruit__b__content dt {
  font-weight: 600;
  font-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: #343434;
  -webkit-margin-after: calc(10/var(--base-size) * 1rem);
          margin-block-end: calc(10/var(--base-size) * 1rem);
}
.recruit__b__content dt:not(:first-of-type) {
  -webkit-border-before: 1px solid #e5e5e5;
          border-block-start: 1px solid #e5e5e5;
  -webkit-margin-before: calc(20/var(--base-size) * 1rem);
          margin-block-start: calc(20/var(--base-size) * 1rem);
  -webkit-padding-before: calc(20/var(--base-size) * 1rem);
          padding-block-start: calc(20/var(--base-size) * 1rem);
}
.recruit__b__content dd {
  font-weight: normal;
  font-size: max(max(11.5px, 9.1px), 13/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.69;
  color: #343434;
  text-align: justify;
}
.recruit__b__content dd strong {
  font-weight: bold;
}

.recruit__b__more > p {
  overflow: hidden;
  -webkit-padding-after: calc(8/var(--base-size) * 1rem);
          padding-block-end: calc(8/var(--base-size) * 1rem);
  -webkit-transition: max-height 0.6s var(--easing);
  transition: max-height 0.6s var(--easing);
}
.recruit__b__more button {
  font-weight: 600;
  font-size: max(max(11.5px, 9.1px), 13/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: #343434;
  display: grid;
  gap: 0.1em;
  justify-items: center;
  position: relative;
  text-align: center;
  inline-size: 100%;
  z-index: 0;
}
.recruit__b__more button.is-open::before {
  opacity: 0;
}
.recruit__b__more button.is-open::after {
  scale: 1 -1;
}
.recruit__b__more button::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(80.3%, #fff), to(#fff));
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 80.3%, #fff 100%);
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 80.3%, #fff 100%);
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0.5em;
  -webkit-transition: opacity 0.4s var(--easing);
  transition: opacity 0.4s var(--easing);
  inline-size: 100%;
  block-size: max(max(11.5px, 70px), 100/var(--font-size) * 1rem);
  max-block-size: none;
  z-index: -3;
}
.recruit__b__more button::after {
  content: "";
  aspect-ratio: 1;
  background: url(../img/arrow_more.svg) no-repeat center/contain;
  inline-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
}

.recruit__b__btn {
  -webkit-margin-before: calc(60/var(--base-size) * 1rem);
          margin-block-start: calc(60/var(--base-size) * 1rem);
}

/* ----------------------------------------------
 * shop
---------------------------------------------- */
.shop {
  padding: 0 calc(10/var(--base-size) * 1rem) calc(50/var(--base-size) * 1rem);
}

.shop__img {
  -webkit-margin-start: calc(-10/var(--base-size) * 1rem);
          margin-inline-start: calc(-10/var(--base-size) * 1rem);
  -webkit-margin-after: calc(40/var(--base-size) * 1rem);
          margin-block-end: calc(40/var(--base-size) * 1rem);
  inline-size: calc(100% + 20/var(--base-size) * 1rem);
  max-inline-size: none;
}

.shop__list {
  display: grid;
  gap: calc(10/var(--base-size) * 1rem);
  margin-inline: auto;
  max-inline-size: 330px;
}

.shop__item {
  background-color: #fff;
  border: 1px solid #249d5e;
  border-radius: 10px;
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  overflow: hidden;
}

.shop__ttl {
  font-family: "Shippori Mincho", serif;
  background-color: #249d5e;
  font-weight: 600;
  font-size: max(max(11.5px, 12.6px), 18/var(--font-size) * 1rem);
  color: #fff;
  padding: calc(10/var(--base-size) * 1rem);
  text-align: center;
}

.shop__txt {
  font-size: max(max(11.5px, 9.8px), 14/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.785;
  color: #343434;
  display: grid;
  grid-template-columns: max(max(11.5px, 52.5px), 75/var(--font-size) * 1rem) 1fr;
  row-gap: calc(10/var(--base-size) * 1rem);
  padding: calc(16/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem);
}
.shop__txt dt {
  font-weight: 600;
}
.shop__txt dd {
  font-weight: normal;
}

.shop__google {
  font-family: "Shippori Mincho", serif;
  background-color: #f5f5f5;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  -webkit-filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.16));
  font-weight: 600;
  font-size: max(max(11.5px, 9.8px), 14/var(--font-size) * 1rem);
  line-height: 1.5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(10/var(--base-size) * 1rem);
  overflow: hidden;
  -webkit-margin-before: calc(5/var(--base-size) * 1rem);
          margin-block-start: calc(5/var(--base-size) * 1rem);
  -webkit-transition: background-color 0.4s var(--easing), color 0.4s var(--easing);
  transition: background-color 0.4s var(--easing), color 0.4s var(--easing);
  inline-size: max(max(11.5px, 94.5px), 135/var(--font-size) * 1rem);
  block-size: max(max(11.5px, 23.1px), 33/var(--font-size) * 1rem);
}
@media (any-hover: hover) {
  .shop__google:hover {
    background-color: #000;
    color: #fff;
  }
  .shop__google:hover::before {
    background-color: #fff;
  }
}
.shop__google::before {
  content: "";
  aspect-ratio: 13/18;
  background-color: #239d5e;
  -webkit-mask: url(../img/ico_location.svg) no-repeat center/contain;
          mask: url(../img/ico_location.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.4s var(--easing);
  transition: background-color 0.4s var(--easing);
  inline-size: 0.928em;
}

/* ----------------------------------------------
 * entry
---------------------------------------------- */
form label {
  cursor: pointer;
}
form label:has(input[type=radio]) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(15/var(--base-size) * 1rem);
}
form input:focus,
form select:focus {
  border: 2px solid #009527;
  outline: none;
}
form input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]),
form textarea,
form select {
  background-color: #efefef;
  border-radius: 5px;
  padding: calc(10/var(--base-size) * 1rem) calc(22/var(--base-size) * 1rem);
  inline-size: 100%;
  min-block-size: max(max(11.5px, 34.3px), 49/var(--font-size) * 1rem);
}
form input:not([type=radio]):not([type=checkbox]):not([type=submit])::-webkit-input-placeholder, form textarea::-webkit-input-placeholder, form select::-webkit-input-placeholder {
  color: #9b9b9b;
}
form input:not([type=radio]):not([type=checkbox]):not([type=submit])::-moz-placeholder, form textarea::-moz-placeholder, form select::-moz-placeholder {
  color: #9b9b9b;
}
form input:not([type=radio]):not([type=checkbox]):not([type=submit]):-ms-input-placeholder, form textarea:-ms-input-placeholder, form select:-ms-input-placeholder {
  color: #9b9b9b;
}
form input:not([type=radio]):not([type=checkbox]):not([type=submit])::-ms-input-placeholder, form textarea::-ms-input-placeholder, form select::-ms-input-placeholder {
  color: #9b9b9b;
}
form input:not([type=radio]):not([type=checkbox]):not([type=submit])::placeholder,
form textarea::placeholder,
form select::placeholder {
  color: #9b9b9b;
}
form select {
  border-color: #000;
  cursor: pointer;
}
form input[type=checkbox],
form input[type=radio] {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  aspect-ratio: 1;
  accent-color: #000;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  cursor: pointer;
  inline-size: max(max(11.5px, 13.3px), 19/var(--font-size) * 1rem);
}

.entry {
  padding: 0 calc(10/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem);
}
.entry.is-confirm[class] .entry__input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.entry.is-confirm[class] .entry__input::before, .entry.is-confirm[class] .entry__input::after {
  content: none;
}

.entry__img {
  -webkit-margin-start: calc(-10/var(--base-size) * 1rem);
          margin-inline-start: calc(-10/var(--base-size) * 1rem);
  -webkit-margin-after: calc(50/var(--base-size) * 1rem);
          margin-block-end: calc(50/var(--base-size) * 1rem);
  inline-size: calc(100% + 20/var(--base-size) * 1rem);
  max-inline-size: none;
}

.entry__l {
  font-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
  -webkit-margin-after: calc(30/var(--base-size) * 1rem);
          margin-block-end: calc(30/var(--base-size) * 1rem);
  text-align: center;
}

.entry__list {
  grid-column: 1/2;
  grid-row: 1/2;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #c3c3c3;
  display: grid;
  padding: calc(30/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem) calc(40/var(--base-size) * 1rem);
}

.entry__item + .entry__item {
  -webkit-margin-before: calc(30/var(--base-size) * 1rem);
          margin-block-start: calc(30/var(--base-size) * 1rem);
}
.entry__item.--area .entry__input {
  position: relative;
}
.entry__item.--area .entry__input::before {
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  content: "";
  aspect-ratio: 15/10;
  background-color: #009527;
  pointer-events: none;
  position: absolute;
  inset-inline-end: calc(20/var(--base-size) * 1rem);
  inset-block-start: 1.2em;
  inline-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
  z-index: 3;
}
.entry__item.--area .entry__input select {
  border: 1px solid #009527;
}
.entry__item.--birth .entry__input {
  display: grid;
  grid-template-columns: 1fr auto calc(72/var(--base-size) * 1rem) auto calc(72/var(--base-size) * 1rem) auto;
  gap: calc(8/var(--base-size) * 1rem);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.entry__item.--birth .entry__input select {
  padding-inline: calc(12/var(--base-size) * 1rem);
  inline-size: 100%;
  min-block-size: max(max(11.5px, 24.5px), 35/var(--font-size) * 1rem);
}
.entry__item.--gender .entry__input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: calc(25/var(--base-size) * 1rem);
}
.entry__item.--address .entry__input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: calc(10/var(--base-size) * 1rem);
}
.entry__item.--address .entry__input button {
  background-color: #5f5f5f;
  border: 1px solid #5f5f5f;
  border-radius: 5px;
  font-weight: normal;
  font-size: max(max(11.5px, 11.2px), 16/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-padding-after: 0.05em;
          padding-block-end: 0.05em;
  -webkit-transition: background-color 0.4s var(--easing), color 0.4s var(--easing);
  transition: background-color 0.4s var(--easing), color 0.4s var(--easing);
  inline-size: max(max(11.5px, 66.5px), 95/var(--font-size) * 1rem);
}
@media (any-hover: hover) {
  .entry__item.--address .entry__input button:hover {
    background-color: #fff;
    color: #5f5f5f;
  }
}
.entry__item.--zip select {
  inline-size: max(max(11.5px, 89.6px), 128/var(--font-size) * 1rem);
  min-block-size: max(max(11.5px, 24.5px), 35/var(--font-size) * 1rem);
}

.entry__ttl {
  font-weight: 500;
  font-size: max(max(11.5px, 12.6px), 18/var(--font-size) * 1rem);
  letter-spacing: 0.06em;
  line-height: 1.3;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: calc(10/var(--base-size) * 1rem);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-after: calc(8/var(--base-size) * 1rem);
          margin-block-end: calc(8/var(--base-size) * 1rem);
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}
.entry__ttl span {
  font-weight: 500;
  font-size: max(max(11.5px, 8.4px), 12/var(--font-size) * 1rem);
  color: #fff;
  position: relative;
  z-index: 0;
}
.entry__ttl span::before {
  content: "";
  aspect-ratio: 44/20;
  background-color: #e01010;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -47.5%;
  inline-size: max(max(11.5px, 30.8px), 44/var(--font-size) * 1rem);
  z-index: -3;
}

.entry__b + .entry__b {
  -webkit-margin-before: calc(10/var(--base-size) * 1rem);
          margin-block-start: calc(10/var(--base-size) * 1rem);
}

.entry__sub {
  font-weight: normal;
  font-size: max(9px, 11/var(--base-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: #2e2e2e;
  -webkit-margin-before: calc(10/var(--base-size) * 1rem);
          margin-block-start: calc(10/var(--base-size) * 1rem);
}

.entry__error {
  background-color: rgba(224, 16, 16, 0.2);
  border-radius: 4px;
  font-size: max(max(11.5px, 9.8px), 14/var(--font-size) * 1rem);
  line-height: 1.4;
  color: #e01010;
  -webkit-margin-before: calc(5/var(--base-size) * 1rem);
          margin-block-start: calc(5/var(--base-size) * 1rem);
  padding: calc(8/var(--base-size) * 1rem) calc(15/var(--base-size) * 1rem);
}
.entry__error.--global {
  -webkit-margin-before: calc(10/var(--base-size) * 1rem);
          margin-block-start: calc(10/var(--base-size) * 1rem);
  padding: calc(12/var(--base-size) * 1rem) calc(15/var(--base-size) * 1rem);
}

.entry__select {
  position: relative;
}
.entry__select::after {
  content: "";
  aspect-ratio: 7/12;
  background-color: currentColor;
  -webkit-mask: url(../img/arrow_next.svg) no-repeat center/contain;
          mask: url(../img/arrow_next.svg) no-repeat center/contain;
  position: absolute;
  inset-inline-end: calc(12/var(--base-size) * 1rem);
  inset-block-start: 50%;
  translate: 0 -50%;
  rotate: 90deg;
  -webkit-transition: background-color 0.5s var(--easing);
  transition: background-color 0.5s var(--easing);
  inline-size: max(5px, 7/var(--base-size) * 1rem);
}

.entry__agree {
  -webkit-margin-before: calc(25/var(--base-size) * 1rem);
          margin-block-start: calc(25/var(--base-size) * 1rem);
  text-align: center;
}

.tel_hour_free{
  height:80px;
}

.entry__agree .p_01 {
  font-weight: normal;
  font-size: max(max(11.5px, 9.8px), 14/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.785;
  color: #343434;
  display: grid;
  justify-items: center;
  gap: calc(8/var(--base-size) * 1rem);
}
.entry__agree .p_01 a {
  font-family: "Shippori Mincho", serif;
  background: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor)) left bottom 0.2em/100% 1px no-repeat;
  background: -webkit-linear-gradient(currentColor, currentColor) left bottom 0.2em/100% 1px no-repeat;
  background: linear-gradient(currentColor, currentColor) left bottom 0.2em/100% 1px no-repeat;
  font-weight: 600;
  font-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  color: #009527;
  -webkit-margin-end: 1.1em;
          margin-inline-end: 1.1em;
  position: relative;
  -webkit-transition: background-size 0.5s;
  transition: background-size 0.5s;
}
@media (any-hover: hover) {
  .entry__agree .p_01 a:hover {
    background-size: 0 1px;
  }
}
.entry__agree .p_01 a::after {
  content: "";
  aspect-ratio: 1;
  background: url(../img/ico_tab.svg) no-repeat center/contain;
  position: absolute;
  inset-inline-end: -1.1em;
  inset-block-start: 50%;
  translate: 0 -50%;
  inline-size: 0.933em;
}
.entry__agree .p_02 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: max(max(11.5px, 11.2px), 16/var(--font-size) * 1rem);
  line-height: 1.4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(10/var(--base-size) * 1rem);
  -webkit-margin-before: calc(15/var(--base-size) * 1rem);
          margin-block-start: calc(15/var(--base-size) * 1rem);
}
.entry__agree .p_02 input {
  accent-color: #009527;
  -webkit-margin-before: 0.05em;
          margin-block-start: 0.05em;
}

.entry__btn {
  position: relative;
  display: grid;
  gap: calc(30/var(--base-size) * 1rem);
  justify-items: center;
  -webkit-margin-before: calc(20/var(--base-size) * 1rem);
          margin-block-start: calc(20/var(--base-size) * 1rem);
  text-align: center;
}

.entry__btn .wpcf7-spinner {
position: absolute;
bottom: -30px;
}
.wpcf7 form .wpcf7-response-output {
display: none;
}

.entry__btn input[type=submit] {
  font-family: "Shippori Mincho", serif;
  background-color: #5f5f5f !important;
  border: 1px solid #5f5f5f;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.26);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.26);
  font-weight: 800;
  font-size: max(max(11.5px, 13.3px), 19/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: background-color 0.4s var(--easing), color 0.4s var(--easing), opacity 0.4s var(--easing);
  transition: background-color 0.4s var(--easing), color 0.4s var(--easing), opacity 0.4s var(--easing);
  inline-size: 100%;
  block-size: max(max(11.5px, 44.8px), 64/var(--font-size) * 1rem);
}
@media (any-hover: hover) {
  .entry__btn input[type=submit]:hover {
    background-color: #fff !important;
    color: #5f5f5f;
  }
  .entry__btn:hover::after {
  background-color: #5f5f5f;
  }
}
.entry__btn input[type=submit][disabled] {
  opacity: 0.3;
  pointer-events: none;
}
.entry__btn::after {
  content: "";
  aspect-ratio: 7/12;
  background-color: #fff;
  -webkit-mask: url(../img/arrow_next.svg) no-repeat center/contain;
          mask: url(../img/arrow_next.svg) no-repeat center/contain;
  position: absolute;
  inset-inline-end: calc(25/var(--base-size) * 1rem);
  inset-block-start: 2.125em;
  translate: 0 -50%;
  -webkit-transition: background-color 0.5s var(--easing);
  transition: background-color 0.5s var(--easing);
  inline-size: max(8px, 10/var(--base-size) * 1rem);
  pointer-events: none;
}
.entry__btn input[type=submit] {
  font-size: max(max(11.5px, 11.2px), 16/var(--font-size) * 1rem);
  position: relative;
}
@media (any-hover: hover) {
  .entry__btn:hover::before {
    scale: 0 1;
  }
}
.entry__btn input[type=submit]::before {
  content: "";
  background-color: currentColor;
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0;
  -webkit-transition: scale 0.6s var(--easing);
  transition: scale 0.6s var(--easing);
  -webkit-transform-origin: left;
          transform-origin: left;
  inline-size: 100%;
  block-size: 1px;
}

.entry__thanks .p_01 {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: max(max(11.5px, 18.2px), 26/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: #5f5f5f;
  -webkit-margin-after: calc(15/var(--base-size) * 1rem);
          margin-block-end: calc(15/var(--base-size) * 1rem);
  text-align: center;
}
.entry__thanks .p_01 span {
  background: -webkit-gradient(linear, left top, right top, from(#139d57), color-stop(62.5%, #ff9d39));
  background: -webkit-linear-gradient(left, #139d57 0%, #ff9d39 62.5%);
  background: linear-gradient(90deg, #139d57 0%, #ff9d39 62.5%);
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.entry__thanks .p_02 {
  font-weight: normal;
  font-size: max(max(11.5px, 9.8px), 14/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.72;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
}
.entry__thanks .p_03 {
  -webkit-margin-before: calc(30/var(--base-size) * 1rem);
          margin-block-start: calc(30/var(--base-size) * 1rem);
}
.entry__thanks .p_03 a {
  font-family: "Shippori Mincho", serif;
  background-color: #5f5f5f;
  border: 1px solid #5f5f5f;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.26);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.26);
  font-weight: 800;
  font-size: max(max(11.5px, 13.3px), 19/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: background-color 0.4s var(--easing), color 0.4s var(--easing), opacity 0.4s var(--easing);
  transition: background-color 0.4s var(--easing), color 0.4s var(--easing), opacity 0.4s var(--easing);
  inline-size: 100%;
  block-size: max(max(11.5px, 44.8px), 64/var(--font-size) * 1rem);
}
@media (any-hover: hover) {
  .entry__thanks .p_03 a:hover {
    background-color: #fff;
    color: #5f5f5f;
  }
}
.entry__thanks .p_03 a::after {
  content: "";
  aspect-ratio: 7/12;
  background-color: currentColor;
  -webkit-mask: url(../img/arrow_next.svg) no-repeat center/contain;
          mask: url(../img/arrow_next.svg) no-repeat center/contain;
  position: absolute;
  inset-inline-end: calc(25/var(--base-size) * 1rem);
  inset-block-start: 50%;
  translate: 0 -50%;
  -webkit-transition: background-color 0.5s var(--easing);
  transition: background-color 0.5s var(--easing);
  inline-size: max(8px, 10/var(--base-size) * 1rem);
}

/* ----------------------------------------------
 * faq
---------------------------------------------- */
.faq {
  padding: calc(30/var(--base-size) * 1rem) calc(10/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem);
}

.faq__h .en {
  -webkit-margin-after: 0.2em;
          margin-block-end: 0.2em;
}

.faq__b {
  border-radius: 10px;
  background: #fff;
  border: 1px solid #c3c3c3;
  display: grid;
  gap: calc(20/var(--base-size) * 1rem);
  padding: calc(30/var(--base-size) * 1rem) calc(20/var(--base-size) * 1rem);
}

.faq__accordion {
  border: 1px solid #009527;
  border-radius: 10px;
  overflow: hidden;
}
.faq__accordion.is-open .faq__summary::before {
  rotate: 360deg;
}
.faq__accordion.is-open .faq__summary::after {
  opacity: 0;
  rotate: 270deg;
}

.faq__summary {
  background-color: #009527;
  font-weight: 600;
  font-size: max(max(11.5px, 11.2px), 16/var(--font-size) * 1rem);
  line-height: 1.4;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: calc(10/var(--base-size) * 1rem) calc(13/var(--base-size) * 1rem);
}
.faq__summary span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: calc(10/var(--base-size) * 1rem);
}
.faq__summary span::before {
  font-family: "Shippori Mincho", serif;
  content: "Q.";
  font-weight: 600;
  font-size: max(max(11.5px, 15.4px), 22/var(--font-size) * 1rem);
  line-height: 1;
  margin-block: -0.1em;
}
.faq__summary::before, .faq__summary::after {
  grid-column: 2/3;
  grid-row: 1/2;
  content: "";
  background-color: #fff;
  -webkit-transition: background-color 0.4s var(--easing), opacity 0.4s var(--easing), rotate 0.4s var(--easing);
  transition: background-color 0.4s var(--easing), opacity 0.4s var(--easing), rotate 0.4s var(--easing);
  block-size: 1.5px;
  inline-size: max(max(11.5px, 10.5px), 15/var(--font-size) * 1rem);
}
.faq__summary::before {
  rotate: 90deg;
}

.faq__details {
  font-weight: normal;
  font-size: max(max(11.5px, 9.8px), 14/var(--font-size) * 1rem);
  letter-spacing: 0.03em;
  line-height: 1.785;
  color: #343434;
  padding: calc(15/var(--base-size) * 1rem) calc(12/var(--base-size) * 1rem);
}