@charset "UTF-8";
:root {
  --black: #4A4A4A;
  --gray10: #333333;
  --gray20: #474747;
  --gray30: #5C5C5C;
  --gray40: #757575;
  --gray50: #9E9E9E;
  --gray60: #C2C2C2;
  --gray70: #E0E0E0;
  --gray80: #F4F4F4;
  --gray90: #FBFBFB;
  --white: #ffffff;
  --primary-red: #E0300D;
  --primary-green: #22ab39;
  --secondary-green: #169D47;
  --primary-orange: #FF8128;
  --border: var(--gray70);
  --primary-link: var(--primary-green);
  --accent: var(--primary-link);
  --inactive: var(--gray60);
  --disabled: var(--gray60);
  --japanese-sans-serif:
    "Noto Sans JP",
    "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN",
    "メイリオ", Meiryo, Arial, sans-serif;
  --english-sans-serif: "Nunito Sans", var(--japanese-sans-serif);
  --japanese-serif: "Shippori Mincho", serif;
  --space-xs: clamp(1.25rem, 0.1389rem + 2.3148vw, 1.875rem);
  --space-sm: calc(var(--space-xs) * 1.5);
  --space-md: calc(var(--space-xs) * 2);
  --space-lg: calc(var(--space-xs) * 3);
  --space-xl: calc(var(--space-xs) * 4);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: var(--black);
  font-feature-settings: "palt";
  font-family: var(--japanese-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
  margin: 0;
  background-color: #ffffff;
}
body.home {
  background: url("../../assets/img/bg-prism.jpg") repeat center top/2000px auto;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

p a {
  display: inline-block;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
  margin: 0;
}

ol,
ul,
dl,
ol ol,
ul ul,
ol ul,
ul ol {
  padding: 0;
  margin: 0;
}

ol li,
ul li {
  list-style-position: inside;
  padding: 0;
}

ul li, ol li {
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

a, p a {
  color: var(--active);
  display: block;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: var(--active);
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin: 0;
  overflow: auto;
}

figure {
  margin: 0;
}

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

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption {
  color: var(--black);
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin: 0;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
  vertical-align: top;
  padding: 0.2rem 0.5rem;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

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

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

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=submit] {
  outline: none;
  border: 1px solid var(--border);
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

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

input[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
}

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

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

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none;
  border: none;
  background: none;
}

input[type=submit], input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none;
  border: none;
}

button, select, input {
  color: var(--black);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}
button::-moz-placeholder, select::-moz-placeholder, input::-moz-placeholder {
  color: var(--black);
}
button::placeholder, select::placeholder, input::placeholder {
  color: var(--black);
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.l-header {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  border-bottom: 1px solid var(--gray70);
  background-color: #FFFEF3;
}
.l-header__inner {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  width: 22%;
  min-width: 225px;
  max-width: 328px;
  display: block;
  line-height: 1;
  text-align: left;
  padding: 0;
  margin: 0 0 0 20px;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.l-header__navi {
  width: calc(100% - 328px);
  margin: 0 10vw 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-header {
    position: relative;
  }
  .l-header__inner {
    height: 80px;
  }
  .l-header__logo {
    width: 25%;
  }
}

.l-footer {
  position: relative;
  padding: 50px 0;
  background: #2D2D2D;
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.l-footer__navi {
  display: none;
}
.l-footer__content {
  margin: 0;
}
.l-footer__list {
  width: 100%;
  max-width: 240px;
  display: flex;
  margin: 45px auto 0;
  border-left: 1px solid #fff;
}
.l-footer__list li {
  width: 50%;
  line-height: 1;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5527734977rem + 0.3081664099vw, 0.75rem);
  text-align: center;
  letter-spacing: 0.02em;
  padding: 0 2%;
  border-right: 1px solid #fff;
}
.l-footer__list li a {
  color: #fff;
  display: block;
  transition: all 0.35s ease;
}
.l-footer__list li a:hover {
  opacity: 0.5;
}
.l-footer__logo {
  max-width: 328px;
}
.l-footer__copy {
  color: #fff;
  line-height: 1;
  text-align: center;
  margin: 2em auto 0;
}
.l-footer__copy small {
  font-size: 11px;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.6513867488rem + 0.1540832049vw, 0.75rem);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.l-footer__button {
  position: fixed;
  bottom: 6px;
  right: 21px;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    flex-direction: row;
  }
  .l-footer__navi {
    width: 50%;
    max-width: none;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .l-footer__navi ul > li {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-size: 0.75rem;
    font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
    letter-spacing: 0.05em;
  }
  .l-footer__navi ul > li:not(:first-of-type) {
    margin: 0.25em 0 0;
  }
  .l-footer__navi ul > li a {
    color: var(--white);
    transition: all 0.35s ease;
  }
  .l-footer__navi ul > li a:hover {
    opacity: 0.5;
  }
  .l-footer__navi ul > li ul {
    margin: 0.25em 0 0;
  }
  .l-footer__navi ul li {
    position: relative;
  }
  .l-footer__navi ul li i {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px 0 0;
  }
  .l-footer__navi ul li i:before {
    content: "";
    display: block;
    width: 6px;
    height: 12px;
    background: url("../../assets/img/ico-arrow-footer.svg") no-repeat 0 0/cover;
  }
  .l-footer__content {
    margin: 0 auto 0 0;
  }
  .l-footer__list {
    margin: 2em auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__navi {
    width: 33%;
  }
  .l-footer__button {
    position: absolute;
    bottom: inherit;
    top: -30px;
    right: 5%;
  }
}

.l-main {
  margin-top: 64px;
}
@media screen and (min-width: 1024px) {
  .l-main {
    margin-top: 0;
  }
}

.l-mainContent {
  padding: 0 5% 50px;
  margin: 0 auto;
  background: #F1F1F1;
}
.l-mainContent__inner {
  max-width: 1180px;
  padding: var(--space-md) 20px var(--space-md);
  margin: 0 auto;
  border-radius: 10px;
  background: var(--white);
}
.l-mainContent__inner:has(aside) {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .l-mainContent__inner:has(aside) {
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
.l-mainContent__sub {
  max-width: 1180px;
  padding: 80px 5% 0;
  margin: 0 auto;
}
.l-mainContent__content {
  width: 100%;
}
.l-mainContent__side {
  width: 100%;
  margin-top: var(--space-lg);
}
@media screen and (min-width: 768px) {
  .l-mainContent__inner {
    padding: var(--space-lg) 7% calc(var(--space-lg) + 1rem);
  }
}
@media screen and (min-width: 1024px) {
  .l-mainContent {
    padding: 0 5% 100px;
  }
  .l-mainContent__inner {
    padding: 80px 90px 80px;
  }
  .l-mainContent__content {
    width: 68%;
  }
  .l-mainContent__side {
    width: 27%;
    margin-top: 0;
  }
}

.c-globalNavi {
  display: none;
}
.c-globalNavi__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.c-globalNavi__item {
  color: var(--gray40);
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
}
.c-globalNavi__item:not(:first-of-type) {
  margin-left: 1.5em;
}
.c-globalNavi__item a {
  color: var(--gray20);
  position: relative;
  padding: 1em 0;
  transition: all 0.35s ease;
}
.c-globalNavi__item a:hover {
  color: var(--primary-green);
}
.c-globalNavi__item a:hover::after {
  width: 100%;
}
.c-globalNavi__item a.is-disabled {
  color: var(--gray70);
  opacity: 0.8;
  pointer-events: none;
}
.c-globalNavi__item a::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background-color: var(--primary-green);
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s;
}
@media screen and (min-width: 1200px) {
  .c-globalNavi {
    display: block;
  }
}

.js-winNavi.is-active .c-winNavi__list {
  transform: translate(-50%, 0);
}
@media screen and (min-width: 1024px) {
  .js-winNavi.is-active .c-winNavi__list {
    transform: translate(0px, -50%);
  }
}

.c-winNavi__list {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  position: fixed;
  bottom: 0;
  left: 40%;
  z-index: 1000;
  transition: all 0.35s ease;
  transform: translate(-50%, 150px);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.5);
}
.c-winNavi__item {
  width: 80px;
  border-right: 1px solid var(--white);
  background-color: var(--white);
}
.c-winNavi__item--calendar a {
  background: var(--primary-green);
}
.c-winNavi__item--shops a {
  background: var(--gray40);
}
.c-winNavi__item--contact a {
  background: var(--gray20);
}
.c-winNavi__item a {
  min-height: 70px;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  transition: all 0.35s ease;
}
.c-winNavi__item a:hover {
  opacity: 0.5;
}
.c-winNavi__item p {
  color: var(--white);
  line-height: 1.1;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5527734977rem + 0.3081664099vw, 0.75rem);
  font-weight: 700;
  text-align: center;
  margin: 0.5em auto 0;
}
.c-winNavi__item:first-child {
  border-radius: 15px 0 0 0;
}
.c-winNavi__item:last-child {
  border-radius: 0 15px 0 0;
  border-right: none;
}
@media screen and (min-width: 768px) {
  .c-winNavi__list {
    left: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .c-winNavi__list {
    flex-direction: column;
    top: 50%;
    bottom: inherit;
    right: 0;
    left: inherit;
    border-radius: 10px 0 0 10px;
    transform: translate(100px, -50%);
  }
  .c-winNavi__list > * {
    width: 85px;
    border-right: none;
  }
  .c-winNavi__list > * a {
    min-height: 95px;
  }
  .c-winNavi__list > *:last-child {
    border-radius: 0 0 0 10px;
  }
  .c-winNavi__item {
    width: 90px;
  }
  .c-winNavi__item a {
    min-height: 90px;
    flex-direction: column;
  }
  .c-winNavi__item p {
    line-height: 1.3;
    margin: 0 auto;
  }
}

.c-buttonToTop {
  max-width: 61px;
}
.c-buttonToTop a {
  border-radius: 100%;
  box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
}
.c-buttonToTop a:hover {
  opacity: 0.5;
}
.c-heading {
  color: var(--black);
  position: relative;
  z-index: 100;
  font-size: 22px;
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 1.0860939908rem + 1.2326656394vw, 1.875rem);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5rem;
  text-indent: 0.5rem;
  margin: 0 auto;
}
.c-heading span {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.2rem;
  text-indent: 0.2rem;
  margin: 8px auto 0;
}
.icon {
  display: inline-block;
  font-style: normal;
  vertical-align: middle;
}
.icon:before {
  content: "";
  display: block;
  margin: 0 5px 0 0;
}
.icon:after {
  content: "";
  display: block;
  margin: 0 0 0 5px;
}
.icon--calendar {
  display: block;
  margin: 8px auto 0;
}
.icon--calendar:before {
  width: 1.5em;
  aspect-ratio: 32/34;
  margin: 0 auto;
  background: url("../../assets/img/icon-calendar.png") no-repeat 0 0/cover;
}
@media screen and (min-width: 1024px) {
  .icon--calendar {
    margin: 8px auto 0;
  }
  .icon--calendar:before {
    width: 32px;
    height: 34px;
  }
}
.icon--shops {
  display: block;
}
.icon--shops:before {
  width: 2.25em;
  aspect-ratio: 46/28;
  margin: 0 auto;
  background: url("../../assets/img/icon-shops.png") no-repeat 0 0/cover;
}
@media screen and (min-width: 1024px) {
  .icon--shops {
    margin: 8px auto 0;
  }
  .icon--shops:before {
    width: 46px;
    height: 28px;
  }
}
.icon--contact {
  display: block;
}
.icon--contact:before {
  width: 1.625em;
  aspect-ratio: 33/22;
  margin: 0 auto;
  background: url("../../assets/img/icon-contact.png") no-repeat 0 0/cover;
}
@media screen and (min-width: 1024px) {
  .icon--contact {
    margin: 8px auto 0;
  }
  .icon--contact:before {
    width: 33px;
    height: 22px;
  }
}

.ico {
  display: inline-block;
  font-style: normal;
  vertical-align: middle;
}
.ico:before {
  content: "";
  display: block;
  margin: 0 5px 0 0;
}
.ico:after {
  content: "";
  display: block;
  margin: 0 0 0 5px;
}
.ico.ico-blog:before {
  width: 20px;
  height: 18px;
  background: url("../../assets/img/ico-baloon-gry.svg") no-repeat 0 0/cover;
}
.ico.ico-staff:before {
  width: 16px;
  height: 17px;
  transform: translateY(-2px);
  background: url("../../assets/img/ico-human-gry.svg") no-repeat 0 0/cover;
}
.ico.ico-home:before {
  width: 16px;
  height: 15px;
  transform: translateY(-2px);
  background: url("../../assets/img/ico-home-gry.svg") no-repeat 0 0/cover;
}
.ico.ico-company:before {
  width: 19px;
  height: 18px;
  background: url("../../assets/img/ico-list-gry.svg") no-repeat 0 0/cover;
}
.ico.ico-recruit:before {
  width: 19px;
  height: 19px;
  background: url("../../assets/img/ico-search-gry.svg") no-repeat 0 0/cover;
}
.ico.ico-contact:before {
  width: 26px;
  height: 19px;
  transform: translateY(-1px);
  background: url("../../assets/img/ico-mail-grn.svg") no-repeat 0 0/cover;
}
.ico.ico-shop:before {
  width: 24px;
  height: 28px;
  transform: translateY(-3px);
  background: url("../../assets/img/ico-building-grn.svg") no-repeat 0 0/cover;
}
.ico.ico-instagram:before {
  width: 25px;
  height: 25px;
  transform: translateY(-2px);
  background: url("../../assets/img/ico-instagram.svg") no-repeat 0 0/cover;
}
.ico.ico-email {
  display: block;
  margin: 8px auto 0;
}
.ico.ico-email:before {
  display: block;
  width: 26px;
  height: 19px;
  margin: 0 auto;
  background: url("../../assets/img/ico-email.svg") no-repeat 0 0/cover;
}
.ico.ico-instagram-grn {
  display: block;
  margin: 8px auto 0;
}
.ico.ico-instagram-grn:before {
  width: 26px;
  height: 26px;
  margin: 0 auto;
  background: url("../../assets/img/ico-instagram-grn.svg") no-repeat 0 0/cover;
}
.ico.ico-arrow-grn {
  display: block;
}
.ico.ico-arrow-grn:before {
  width: 8px;
  height: 8px;
  margin: 0;
  background: url("../../assets/img/ico-arrow-grn.svg") no-repeat 0 0/cover;
  position: absolute;
  top: 12px;
  right: 5px;
}
.ico.ico-tenpo:before {
  width: 3em;
  aspect-ratio: 72/75;
  margin: 0;
  background: url("../../assets/img/ico-tenpo.svg") no-repeat 0 0/cover;
}
@media screen and (min-width: 1024px) {
  .ico.ico-tenpo:before {
    width: 72px;
    height: 75px;
    background: url("../../assets/img/ico-tenpo.svg") no-repeat 0 0/cover;
  }
}
.ico.ico-shops:after {
  width: 20px;
  height: 20px;
  margin: 0 0 2px 5px;
  background: url("../../assets/img/ico-shops.svg") no-repeat 0 0/cover;
}
.ico.ico-phone:before {
  width: 16px;
  height: 17px;
  margin: 0 5px 7px 0;
  background: url("../../assets/img/ico-phone.svg") no-repeat 0 0/cover;
}
.ico.ico-pin {
  vertical-align: middle;
}
.ico.ico-pin:before {
  width: 13px;
  height: 20px;
  margin: 0 5px 5px 0;
  background: url("../../assets/img/ico-pin.svg") no-repeat 0 0/cover;
}

.btn-normal {
  color: var(--black);
  position: relative;
  width: 180px;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  line-height: 1;
  text-align: center;
  padding: 12px 0;
  margin: 0 auto;
  border: 1px solid var(--black);
}
.btn-normal:hover {
  color: var(--white);
  opacity: 1;
}
.btn-normal:hover:after {
  width: 100%;
}
.btn-normal:after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  background: var(--black);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.2s 0s ease;
}
.btn-normal span {
  position: relative;
  z-index: 2;
}
.btn-mid01 {
  color: var(--primary-green);
  width: 300px;
  height: 68px;
  line-height: 68px;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7305469954rem + 0.6163328197vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  border-radius: 50px;
  padding: 0 20px;
  box-sizing: border-box;
  background: var(--white);
  box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.5);
}
.btn-mid01 .ico {
  margin: 0 1em 0 0;
}
.btn-mid01:active {
  transform: translateY(5px);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
.btn-mid02 {
  color: var(--white);
  position: relative;
  z-index: 1;
  position: relative;
  width: 300px;
  height: 68px;
  line-height: 68px;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7305469954rem + 0.6163328197vw, 1.125rem);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  border-radius: 50px;
  border: 1px solid #fff;
  box-sizing: border-box;
  background: none;
  overflow: hidden;
}
.btn-mid02 span {
  position: relative;
  z-index: 2;
}
.btn-mid02:after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  background: var(--white);
  position: absolute;
  left: 0%;
  top: 0%;
  z-index: 1;
  transition: width 0.2s ease;
}
.btn-mid02:hover {
  color: var(--primary-green);
  opacity: 1;
}
.btn-mid02:hover:after {
  width: 100%;
}
.btn-mid02:hover .ico:before {
  width: 25px;
  height: 25px;
  background: url("../../assets/img/ico-instagram_grn.svg") no-repeat 0 0/cover;
}
.btn-blog {
  color: var(--primary-green);
  width: 250px;
  height: 68px;
  line-height: 68px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7569337442rem + 0.7704160247vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  border: 1px solid var(--primary-green);
  border-radius: 50px;
  padding: 0 20px;
  box-sizing: border-box;
  background: var(--white);
  transition: all 0.35s ease;
}
.btn-blog:hover {
  color: var(--white);
  background-color: var(--primary-green);
}
.btn-submit {
  color: var(--white);
  display: block;
  cursor: pointer;
  width: 250px;
  height: 70px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7569337442rem + 0.7704160247vw, 1.25rem);
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 0 auto;
  outline: none;
  border: none;
  border-radius: 60px;
  background: var(--primary-green);
  transition: opacity 0.2s ease 0s;
}
.btn-submit:hover {
  opacity: 0.3;
}

.c-area {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
  background-color: var(--white);
}
.c-area__header {
  padding: 0 120px;
}
.c-area__heading {
  color: var(--black);
  position: relative;
  z-index: 100;
  font-size: 22px;
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 1.2305469954rem + 0.6163328197vw, 1.625rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.2em;
  white-space: nowrap;
  margin: 0;
}
.c-area__shops {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--gray60);
  margin: var(--space-xs) 0 0;
}
.c-area__content {
  width: 100%;
  margin: 0;
}
.c-area__content h3 {
  color: var(--black);
  line-height: 1.5;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.6847072419rem + 1.0785824345vw, 1.375rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0;
}
.c-area__content dl {
  color: var(--black);
  margin: 10px 0 0;
}
.c-area__content dl dt {
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 700;
  position: relative;
}
.c-area__content dl dt span {
  position: absolute;
  left: 0;
}
.c-area__content dl dd {
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 400;
  margin: 0 0 0 5em;
}
.c-area__content dl dd p {
  margin: 0;
}
.c-area__content dl dd strong {
  margin-left: -5em;
}
.c-area__map {
  width: 80%;
  max-width: 450px;
  margin: var(--space-sm) auto 0;
}
.c-area__list {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-xs) 0 0;
  margin: 0 auto 0;
}
.c-area__item {
  margin: 2% 0 0;
}
.c-area__item a {
  transition: all 0.35s ease;
}
.c-area__item a:hover {
  opacity: 0.5;
}
.c-area__title {
  color: var(--primary-green);
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  letter-spacing: 0.05em;
  padding: 0 0 0.5em;
  background-image: linear-gradient(to right, #22AB39 2px, transparent 3px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  margin: 0;
}
.c-area__title:hover {
  color: var(--primary-green);
}
.c-area__desc {
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  line-height: 1.5;
  margin: 0.5em 0 0;
}
.c-area__desc a {
  display: inline-block;
}
.c-area__desc span {
  display: inline-block;
  padding: 2px 10px;
  margin: 5px 0 0;
  border: 1px solid var(--black);
}
@media screen and (min-width: 768px) {
  .c-area__shops {
    padding-bottom: 45px;
  }
  .c-area__list {
    width: auto;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 -2.5% -20px;
  }
  .c-area__item {
    width: 45%;
    margin: 20px 2.5%;
  }
}
@media screen and (min-width: 1024px) {
  .c-area {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .c-area__shops {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 120px 32px;
    margin: -55px auto 0;
  }
  .c-area__content {
    width: 55%;
    margin-top: 55px;
  }
  .c-area__map {
    width: 100%;
    max-width: 270px;
    margin: 0 4% 0 0;
  }
  .c-area__list {
    flex-wrap: nowrap;
    margin: 0 0 0;
  }
  .c-area__item {
    margin: 0 2%;
  }
}

.c-buttonMoreNews {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1em 0;
  transition: all 0.35s ease;
}
.c-buttonMoreNews:hover {
  opacity: 0.5;
}
.c-buttonMoreNews__title {
  color: var(--white);
  line-height: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7402734977rem + 0.3081664099vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-right: 1em;
}
@media screen and (min-width: 1024px) {
  .c-buttonMoreNews {
    min-width: 150px;
    height: calc(100% - 3em);
    padding: 0;
    margin: 1.5em 0;
    border-left: 1px solid var(--white);
  }
}

.c-buttonMoreShops {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0;
  border-radius: 5px;
  background-color: var(--primary-green);
  transition: all 0.35s ease;
}
.c-buttonMoreShops:hover {
  opacity: 0.5;
}
.c-buttonMoreShops__title {
  color: var(--white);
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7305469954rem + 0.6163328197vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-right: 2em;
}
@media screen and (min-width: 1024px) {
  .c-buttonMoreShops {
    padding: 1.2em 0;
  }
  .c-buttonMoreShops__title {
    margin-right: 1em;
  }
}

.c-buttonMoreKnowledge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0;
  border: 2px solid var(--white);
  border-radius: 5px;
  background-color: var(--primary-green);
  transition: all 0.35s ease;
}
.c-buttonMoreKnowledge:hover {
  opacity: 0.5;
}
.c-buttonMoreKnowledge__title {
  color: var(--white);
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7305469954rem + 0.6163328197vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-right: 2em;
}
@media screen and (min-width: 1024px) {
  .c-buttonMoreKnowledge {
    padding: 1.2em 0;
  }
  .c-buttonMoreKnowledge__title {
    margin-right: 1em;
  }
}

.c-searchBox__content {
  padding: 0 20px;
  border-radius: 10px;
  background-color: #C1EFC9;
}
.c-searchBox__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2em 0;
}
.c-searchBox__column:not(:first-of-type) {
  background-image: linear-gradient(to right, #22AB39 3px, transparent 0px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left top;
}
.c-searchBox__title {
  color: var(--black);
  min-width: 9em;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.c-searchBox__title br {
  display: none;
}
.c-searchBox__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.5em -5px 0;
}
.c-searchBox__item {
  color: var(--black);
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7402734977rem + 0.3081664099vw, 0.9375rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 0.5em 0.8em;
  margin: 5px 4px;
  border: 2px solid var(--gray20);
  border-radius: 5px;
  background-color: var(--white);
}
.c-searchBox__item a {
  transition: all 0.35s ease;
}
.c-searchBox__item a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1024px) {
  .c-searchBox__column {
    flex-direction: row;
    padding: 0;
  }
  .c-searchBox__content {
    padding: 0 40px;
  }
  .c-searchBox__list {
    justify-content: flex-start;
    margin: 25px -5px;
  }
  .c-searchBox__item {
    padding: 0.7em 1.2em;
    margin: 5px;
  }
  .c-searchBox__title {
    min-width: 12em;
  }
  .c-searchBox__title br {
    display: block;
  }
}

.c-cardBanner {
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--white);
}
.c-cardBanner:hover img {
  transform: scale(1.1);
}
.c-cardBanner__thumbnail img {
  transition: all 0.5s ease;
}
.c-cardBanner__text {
  position: relative;
  z-index: 2;
  padding: 0.65em 0.8em;
  background-color: #E2EDE3;
}
.c-cardBanner__title {
  color: var(--primary-green);
  position: relative;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6319337442rem + 0.7704160247vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.c-cardBanner__title::after {
  content: "";
  display: block;
  width: 7px;
  height: 12px;
  background: url("../../assets/img/icon-arrow-banner-right.png") no-repeat 0 0/cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .c-cardBanner__text {
    padding: 1.2em 1.5em;
  }
}

.c-listBannerPartners {
  display: flex;
  flex-wrap: wrap;
  margin: -5px -5px;
}
.c-listBannerPartners > * {
  width: calc(50% - 10px);
  margin: 5px 5px;
}
.c-listBannerPartners > * a {
  overflow: hidden;
  border: 1px solid var(--gray60);
  border-radius: 5px;
  transition: all 0.35s ease;
}
.c-listBannerPartners > * a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 1024px) {
  .c-listBannerPartners {
    justify-content: center;
    margin: -6.5px -9px;
  }
  .c-listBannerPartners > * {
    width: calc(16.6666% - 18px);
    margin: 6.5px 9px;
  }
}

.c-frame {
  margin: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding-top: 67%;
}
.c-frame:hover img {
  transform: scale(1.2);
}
.c-frame img {
  position: absolute;
  top: 0;
  left: 50%;
  height: auto;
  margin-left: -50%;
  transition: all 0.35s ease;
}
.c-links {
  position: relative;
  padding-top: 15vw;
  padding-bottom: 15vw;
}
.c-links:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../../assets/img/bg-links.jpg") no-repeat 0 0/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-links__inner.wrap {
  max-width: 1040px;
}
.c-links__list {
  width: 88%;
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: -10px auto;
}
.c-links__item {
  margin: 10px auto;
  border-radius: 10px;
  background-color: var(--white);
}
.c-links__item a {
  transition: all 0.35s ease;
}
.c-links__item a:hover {
  opacity: 0.5;
  color: var(--primary-green);
}
@media screen and (min-width: 768px) {
  .c-links {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }
}
@media screen and (min-width: 1024px) {
  .c-links {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .c-links__list {
    width: 100%;
    max-width: inherit;
    flex-direction: row;
    margin: 0 -27px;
  }
  .c-links__item {
    margin: 0 27px;
  }
}

.meta {
  display: block;
  line-height: 1.2;
  text-align: center;
  padding: 5px 20px;
  box-sizing: border-box;
}
.meta-cat {
  color: var(--white);
  background: #F5A623;
}
.meta-cat-blog {
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2px 20px;
}
.meta-cat-blog.cat-asakita {
  background: #7DAFEF;
}
.meta-cat-blog.cat-asaminami {
  background: #D9B727;
}
.meta-cat-blog.cat-itsukaichi {
  background: #4ECDB1;
}
.meta-cat-blog.cat-hatsukaichi {
  background: #797ABF;
}

.c-popupCal {
  opacity: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2001;
  transform: translateX(120%);
  transition: all 0.2s 0s ease;
}
.c-popupCal.is-show {
  opacity: 1;
  transform: translateX(0px);
}
.c-popupCal__content {
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 5px 5px 8px 4px rgba(0, 0, 0, 0.05);
  background-color: var(--white);
}
.c-popupCal__button {
  cursor: pointer;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 25px;
  height: 25px;
  border-radius: 20px;
  background: var(--white);
  transition: opacity 0.2s 0s ease;
}
.c-popupCal__button:hover {
  opacity: 0.5;
}
.c-popupCal__button i:before, .c-popupCal__button i:after {
  display: block;
  content: "";
  position: absolute;
  top: 11px;
  left: 4px;
  width: 18px;
  height: 2px;
  background: #22ab39;
  transition: all 0.3s 0s ease;
}
.c-popupCal__button i:before {
  transform: rotate(-45deg);
}
.c-popupCal__button i:after {
  transform: rotate(45deg);
}
.c-offcanvas {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.c-offcanvas__button {
  cursor: pointer;
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-color: var(--gray20);
  transition: all 200ms 0s ease;
}
.c-offcanvas__button:hover {
  opacity: 1;
}
.c-offcanvas__button.is-active {
  background-color: #1F703C;
}
.c-offcanvas__button span {
  color: var(--white);
  line-height: 1;
  cursor: pointer;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0;
  position: absolute;
  top: calc(50% + 0.8em);
  left: 50%;
  transform: translateX(-50%);
}
.c-offcanvas__button i {
  display: block;
  position: absolute;
  top: 39%;
  left: 50%;
  z-index: 101;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--white);
  transform-origin: center center;
  transform: translate(-50%, -55%);
}
.c-offcanvas__button i::before, .c-offcanvas__button i::after {
  display: block;
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 300ms 0s ease;
}
.c-offcanvas__button i::before {
  margin-top: -7px;
}
.c-offcanvas__button i::after {
  margin-top: 7px;
}
.c-offcanvas__button.is-active span {
  color: var(--white);
}
.c-offcanvas__button.is-active i {
  background: none;
}
.c-offcanvas__button.is-active i::before {
  margin-top: 0;
  transform: rotate(-45deg);
  background: var(--white);
}
.c-offcanvas__button.is-active i::after {
  margin-top: 0;
  transform: rotate(45deg);
  background: var(--white);
}
.c-offcanvas__body {
  display: none;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  right: 0;
  padding: 20px 20px 65px;
  background-color: #1F703C;
  transition: transform 0.5s ease;
  transform: translateY(-100%);
}
.c-offcanvas__body.is-active {
  display: block;
  transform: translateY(0);
}
.c-offcanvas__body > * {
  overflow: hidden;
  opacity: 0;
}
.c-offcanvas__body > *.is-active {
  opacity: 1;
  transition: opacity 1000ms 0s ease, transform 500ms 0s ease;
}
.c-offcanvas__logo {
  display: none;
  max-width: 328px;
}
.c-offcanvas__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1035px;
  margin: 60px auto 0;
}
.c-offcanvas__listWrap {
  width: 100%;
}
.c-offcanvas__list {
  display: flex;
  flex-wrap: wrap;
  margin: -1em 0;
}
.c-offcanvas__list ul {
  width: 44%;
  margin: 1em 3%;
}
.c-offcanvas__list ul:not(:first-of-type) {
  margin-left: auto;
}
.c-offcanvas__list ul > li {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.c-offcanvas__list ul > li.is-textSm {
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5527734977rem + 0.3081664099vw, 0.75rem);
}
.c-offcanvas__list ul > li:not(:first-of-type) {
  margin-top: 1em;
}
.c-offcanvas__list ul > li a {
  color: var(--white);
  transition: opacity 0.35s ease;
}
.c-offcanvas__list ul > li a:hover {
  opacity: 0.5;
}
.c-offcanvas__list ul ul {
  width: 100%;
  margin-top: 1em;
}
.c-offcanvas__list ul ul li {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.c-offcanvas__list ul ul li:not(:first-of-type) {
  margin-top: 0.5em;
}
.c-offcanvas__list ul ul li a {
  display: flex;
  align-items: center;
  transition: opacity 0.35s ease;
}
.c-offcanvas__list ul ul li a:hover {
  opacity: 0.5;
}
.c-offcanvas__list ul ul li a::before {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  margin-right: 0.5em;
  background: url("../../assets/img/ico-arrow-footer.svg") no-repeat 0 0/cover;
}
.c-offcanvas__buttonContact {
  max-width: 240px;
  margin: 30px 0 0 3%;
}
.c-offcanvas__buttonContact a {
  transition: opacity 0.35s ease;
}
.c-offcanvas__buttonContact a:hover {
  opacity: 0.5;
}
.c-offcanvas__thumbnail {
  display: none;
  max-width: 370px;
}
@media screen and (min-width: 1024px) {
  .c-offcanvas__logo {
    display: block;
  }
  .c-offcanvas__button {
    width: 100px;
    height: 100px;
  }
  .c-offcanvas__button span {
    font-size: 13px;
    font-size: 0.8125rem;
    top: calc(50% + 1em);
  }
  .c-offcanvas__button i {
    width: 32px;
    height: 3px;
  }
  .c-offcanvas__button i::before, .c-offcanvas__button i::after {
    width: 32px;
    height: 3px;
  }
  .c-offcanvas__button i::before {
    margin-top: -10px;
  }
  .c-offcanvas__button i::after {
    margin-top: 10px;
  }
  .c-offcanvas__listWrap {
    width: calc(94% - 370px);
  }
  .c-offcanvas__list ul {
    width: auto;
    margin: 1em 0;
  }
  .c-offcanvas__body {
    padding: 20px 40px 65px;
  }
  .c-offcanvas__buttonContact {
    margin: 40px 0 0;
  }
  .c-offcanvas__thumbnail {
    display: block;
  }
}

.c-breadcrumb {
  background: #F1F1F1;
}
.c-breadcrumb__list {
  max-width: 1350px;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 5%;
  margin: 0 auto;
}
.c-breadcrumb__item {
  color: var(--gray40);
  display: flex;
  position: relative;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5527734977rem + 0.3081664099vw, 0.75rem);
  letter-spacing: 0.1em;
  margin: 0 0.5em 0 0;
}
.c-breadcrumb__item a {
  color: var(--gray40);
  transition: all 0.35s ease;
}
.c-breadcrumb__item a:hover {
  opacity: 0.5;
}
.c-breadcrumb__item:nth-child(n+1)::after {
  color: var(--gray40);
  content: "＞";
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
  margin: 0 0 0 0.5em;
}
.c-breadcrumb__item:last-child:after {
  display: none;
}
.c-headline {
  background: #F1F1F1;
}
.c-headline__content {
  position: relative;
  display: table;
  padding: 2em 0 3em;
  margin: 0 auto;
}
.c-headline__content::after {
  content: "";
  display: block;
  width: calc(100% + 5em);
  height: 5px;
  transform: translateX(-50%);
  background: #44794D;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
}
.c-headline__title {
  color: #44794D;
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 0.905527735rem + 2.0030816641vw, 2.1875rem);
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-headline__content {
    padding: 3em 0 4em;
  }
}
@media screen and (min-width: 1024px) {
  .c-headline__title {
    letter-spacing: 0.3em;
    text-indent: 0.3em;
  }
}

.c-listAddress li {
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.8722072419rem + 1.0785824345vw, 1.5625rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.c-listAddress li:nth-child(2) {
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8291602465rem + 0.4622496148vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.c-listAddress li a {
  color: var(--black);
  display: inline-block;
  transition: all 0.35s ease;
}
.c-listAddress li a:hover {
  opacity: 0.5;
}
.c-pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: var(--space-md) auto 0;
}
.c-pagination span {
  width: 33px;
}
.c-pagination a, .c-pagination span {
  height: 33px;
  line-height: 33px;
  display: inline-block;
  color: var(--black);
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6055469954rem + 0.6163328197vw, 1rem);
  letter-spacing: 0.05rem;
  margin: 0 8px;
  text-align: center;
}
.c-pagination a.is-inactive, .c-pagination span.is-inactive {
  color: var(--black);
  width: 33px;
  box-sizing: border-box;
  border-radius: 5px;
  transition: all 0.2s 0s ease;
}
.c-pagination a.is-current, .c-pagination a.is-inactive:hover, .c-pagination span.is-current, .c-pagination span.is-inactive:hover {
  color: var(--white);
  opacity: 1;
  border-radius: 5px;
  background: var(--primary-green);
}
.c-pagination a.nav-prev, .c-pagination a.nav-next, .c-pagination a.nav-first, .c-pagination a.nav-last, .c-pagination span.nav-prev, .c-pagination span.nav-next, .c-pagination span.nav-first, .c-pagination span.nav-last {
  transition: all 0.35s ease;
}
.c-pagination a.nav-prev:hover, .c-pagination a.nav-next:hover, .c-pagination a.nav-first:hover, .c-pagination a.nav-last:hover, .c-pagination span.nav-prev:hover, .c-pagination span.nav-next:hover, .c-pagination span.nav-first:hover, .c-pagination span.nav-last:hover {
  opacity: 0.5;
}
.c-pagination a.nav-prev i, .c-pagination a.nav-next i, .c-pagination a.nav-first i, .c-pagination a.nav-last i, .c-pagination span.nav-prev i, .c-pagination span.nav-next i, .c-pagination span.nav-first i, .c-pagination span.nav-last i {
  color: var(--black);
  position: relative;
  font-style: normal;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
}
.c-pagination a.nav-prev i:before, .c-pagination span.nav-prev i:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(-135deg);
  margin: 0 5px 0 0px;
}
.c-pagination a.nav-next i:after, .c-pagination span.nav-next i:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg);
  margin: 0 0px 0 5px;
}
.c-pagination a.nav-first i:before, .c-pagination span.nav-first i:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(-135deg);
  margin: 0 5px 0 0px;
}
.c-pagination a.nav-first i:after, .c-pagination span.nav-first i:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(-135deg);
  position: absolute;
  left: -4px;
  top: 50%;
}
.c-pagination a.nav-last i:after, .c-pagination span.nav-last i:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg);
  margin: 0 0px 0 5px;
}
.c-pagination a.nav-last i:before, .c-pagination span.nav-last i:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg);
  position: absolute;
  right: -4px;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .c-pagination {
    margin: var(--space-lg) auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-pagination {
    margin: 90px auto 0;
  }
}

.c-pager {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-md);
}
.c-pager span {
  width: 33px;
}
.c-pager a {
  transition: all 0.35s ease;
}
.c-pager a:hover {
  opacity: 0.5;
}
.c-pager a, .c-pager span {
  line-height: 1;
  height: 1em;
  line-height: 1em;
  display: inline-block;
  color: var(--black);
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7041602465rem + 0.4622496148vw, 1rem);
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}
.c-pager a.nav-prev i, .c-pager a.nav-next i, .c-pager span.nav-prev i, .c-pager span.nav-next i {
  color: var(--black);
  font-style: normal;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.c-pager a.nav-prev i:before, .c-pager a.nav-prev i:after, .c-pager a.nav-next i:before, .c-pager a.nav-next i:after, .c-pager span.nav-prev i:before, .c-pager span.nav-prev i:after, .c-pager span.nav-next i:before, .c-pager span.nav-next i:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 4px;
  vertical-align: middle;
}
.c-pager a.nav-prev i:before, .c-pager span.nav-prev i:before {
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(-135deg);
  margin: 0 8px 0 0px;
}
.c-pager a.nav-next i:after, .c-pager span.nav-next i:after {
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg);
  margin: 0 0px 0 8px;
}
.c-pager a.nav-archive, .c-pager span.nav-archive {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-side__category {
  margin: 0 0 45px;
}
.c-side__title {
  color: var(--primary-green);
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8291602465rem + 0.4622496148vw, 1.125rem);
  letter-spacing: 0.1em;
  margin: 0;
  border-bottom: 2px solid var(--primary-green);
}
.c-side__list {
  margin: 20px 0;
}
.c-side__item {
  color: var(--gray40);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 5px 0;
}
.c-side__item > a {
  color: var(--gray40);
  transition: all 0.35s ease;
}
.c-side__item > a:hover {
  opacity: 0.5;
}
.c-side__post {
  margin: 0 0 45px;
}
.c-side__postColumn {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray40);
}
.c-side__postColumn > a {
  transition: all 0.35s ease;
}
.c-side__postColumn > a:hover {
  opacity: 0.5;
}
.c-side__postTitle {
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 5px 0 0;
}
.c-side__postList {
  display: flex;
  line-height: 1;
  margin: 5px 0 0;
}
.c-side__postItem {
  margin: 0 10px 0 0;
}
.c-side__archiveList {
  width: 100%;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  padding: 0.5em 0.75em;
  border: 1px solid var(--gray40);
  border-radius: 5px;
  margin: 20px 0 0;
}
.c-date {
  color: var(--black);
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.c-metaTaxTopics {
  color: var(--black);
  display: block;
  font-size: 9px;
  font-size: 0.5625rem;
  font-size: clamp(0.5625rem, 0.4541602465rem + 0.4622496148vw, 0.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  white-space: nowrap;
  padding: 0.4em 0.8em;
  border-radius: 2px;
  background: var(--gray40);
}
.c-metaTaxTopics--news {
  color: var(--primary-green);
  background-color: #D6F7DC;
}
.c-metaTaxTopics--event {
  color: var(--primary-orange);
  background-color: #FFE1CC;
}

.c-navArchive__list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: var(--space-lg) auto 0;
}
.c-navArchive__item {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  border-bottom: 1px solid var(--gray40);
}
.c-navArchive__item:first-child {
  border-top: 1px solid var(--gray40);
}
.c-navArchive__item a {
  color: var(--primary-green);
  padding: 15px 0;
  transition: all 0.35s ease;
}
.c-navArchive__item a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .c-navArchive__list {
    flex-direction: row;
  }
  .c-navArchive__item {
    border-right: 1px solid var(--gray40);
    border-bottom: none;
  }
  .c-navArchive__item:first-child {
    border-top: none;
    border-left: 1px solid var(--gray40);
  }
}
@media screen and (min-width: 1024px) {
  .c-navArchive__list {
    margin: 80px auto 0;
  }
}

.c-cardExample__heading {
  color: var(--primary-green);
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.8888674884rem + 1.5408320493vw, 1.875rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 0 auto 1.5em;
}
.c-cardExample__columns {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0;
}
.c-cardExample__column {
  position: relative;
  width: 100%;
}
.c-cardExample__column:not(:first-of-type) {
  margin: var(--space-md) 0 0;
}
.c-cardExample__card {
  display: block;
  transition: all 0.35s ease;
}
.c-cardExample__card:hover {
  opacity: 0.5;
}
.c-cardExample__card.is-new::before {
  content: "";
  display: block;
  width: 58px;
  height: 58px;
  background: url("../../assets/img/ico-new.png") no-repeat 0 0/cover;
  position: absolute;
  bottom: 80%;
  left: 15px;
  z-index: 10;
}
.c-cardExample__thumbnail {
  -webkit-mask: url("../../assets/img/mask-home.svg") no-repeat 0 0/cover;
          mask: url("../../assets/img/mask-home.svg") no-repeat 0 0/cover;
}
.c-cardExample__title {
  color: var(--secondary-green);
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8291602465rem + 0.4622496148vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 1em 0 0;
}
.c-cardExample__list {
  margin: 0.4em 0 0;
}
.c-cardExample__item {
  display: flex;
  flex-wrap: wrap;
}
.c-cardExample__item span {
  color: var(--black);
  line-height: 1.2;
  display: inline-block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7763867488rem + 0.1540832049vw, 0.875rem);
  letter-spacing: 0.05em;
  margin: 0 0.8em 0 0;
}
.c-cardExample__item--tag {
  margin-top: 0.8em;
}
.c-cardExample__item--tag span {
  color: var(--secondary-green);
  line-height: 1;
  display: inline-block;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5527734977rem + 0.3081664099vw, 0.75rem);
  letter-spacing: 0;
  padding: 0.3em 0.8em;
  margin: 0 0.5em 0.5em 0;
  border: 1px solid var(--secondary-green);
  border-radius: 5px;
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .c-cardExample__columns {
    flex-direction: row;
    margin: -20px -1.5%;
  }
  .c-cardExample__column {
    width: 47%;
    margin: 20px 1.5%;
  }
  .c-cardExample__column:not(:first-of-type) {
    margin: 20px 1.5%;
  }
}
@media screen and (min-width: 1024px) {
  .c-cardExample__columns {
    margin: -35px -1.5%;
  }
  .c-cardExample__column {
    width: 30.3333%;
    margin: 35px 1.5%;
  }
  .c-cardExample__column:not(:first-of-type) {
    margin: 35px 1.5%;
  }
}

.c-faq:has(.is-active) .c-faq__arrow {
  transform: translate(0, -50%) rotate(-180deg);
}
.c-faq__question {
  cursor: pointer;
  position: relative;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6680469954rem + 0.6163328197vw, 1.0625rem);
  border-top: 1px solid var(--gray70);
  border-bottom: 1px solid var(--gray70);
  background-color: #F8F8F8;
}
.c-faq__questionInner {
  position: relative;
  line-height: 1;
  display: flex;
  align-items: center;
  margin: 1em 1.5em;
}
.c-faq__questionInner .icon {
  color: var(--primary-green);
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.8888674884rem + 1.5408320493vw, 1.875rem);
  font-weight: 400;
  position: absolute;
  top: 0;
}
.c-faq__questionInner .text {
  color: var(--primary-green);
  line-height: 1.5;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6680469954rem + 0.6163328197vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0 2em 0 2.5em;
}
.c-faq__answer {
  opacity: 0;
  width: 100%;
  max-height: 0;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6680469954rem + 0.6163328197vw, 1.0625rem);
  background-color: var(--white);
  margin: 0;
  transition: all 0.2s ease-out;
}
.c-faq__answerInner {
  position: relative;
  line-height: 1;
  display: flex;
  align-items: center;
  margin: 1em 1.5em;
}
.c-faq__answerInner .icon {
  color: var(--black);
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.8888674884rem + 1.5408320493vw, 1.875rem);
  font-weight: 400;
  position: absolute;
  top: 0;
}
.c-faq__answerInner .text {
  color: var(--black);
  line-height: 1.8;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6680469954rem + 0.6163328197vw, 1.0625rem);
  font-weight: 500;
  text-align: justify;
  letter-spacing: 0.1em;
  padding: 0 0 0 2.5em;
}
.c-faq__arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  transition: all 0.2s ease;
  transform: translate(0, -50%);
}
@media screen and (min-width: 1024px) {
  .c-faq__questionInner .text {
    padding: 0 0 0 3em;
  }
  .c-faq__answerInner .text {
    padding: 0 0 0 3em;
  }
}

.c-iconFaq {
  display: block;
}
.c-iconFaq:before {
  content: "";
  display: block;
  width: 16px;
  height: 9px;
  margin: 0 auto;
  background: url("../../assets/img/icon-arrow-faq.svg") no-repeat 0 0/cover;
}

.c-cardStaff {
  position: relative;
  height: 100%;
  padding: 42% 25px 20px;
  border-radius: 5px;
  background-color: #EEF3F1;
}
.c-cardStaff__thumbnail {
  display: block;
  width: 48%;
  max-width: 180px;
  margin: 0 auto;
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
}
.c-cardStaff__position {
  color: var(--primary-green);
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-cardStaff__name {
  color: var(--black);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1.5;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5527734977rem + 0.3081664099vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0 0 0.8em;
  margin: 0.5em 0 0;
  border-bottom: 2px solid var(--primary-green);
}
.c-cardStaff__name span {
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7569337442rem + 0.7704160247vw, 1.25rem);
  font-weight: 500;
  margin-right: 1em;
}
.c-cardStaff__desc {
  color: var(--black);
  line-height: 1.6;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0.05em;
  margin: 0.8em 0 0;
}
.c-cardStaff__table {
  color: var(--black);
  line-height: 1.8;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0.8em 0 0;
}
.c-cardStaff__table th, .c-cardStaff__table td {
  font-weight: 400;
}
.c-cardStaff__table th {
  color: var(--primary-green);
  min-width: 3.5em;
}
.c-cardStaff__table td {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .c-cardStaff {
    padding: 48% 25px 30px;
  }
  .c-cardStaff__thumbnail {
    width: 55%;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
}

.wpcf7 form .wpcf7-response-output {
  color: #FFF;
  padding: 1rem 2rem;
  background-color: #FF0001;
}

.c-customRadioContainer .wpcf7-list-item + * {
  margin-left: 1em;
}
.c-customRadioContainer .wpcf7-list-item label {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.c-customRadioContainer .wpcf7-list-item label:has(input[type=radio]:checked)::before {
  border-color: var(--primary-green);
}
.c-customRadioContainer .wpcf7-list-item label:has(input[type=radio]:checked)::after {
  opacity: 1;
  background-color: var(--primary-green);
}
.c-customRadioContainer .wpcf7-list-item label::before {
  content: "";
  display: block;
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  margin-right: 0.25em;
  border: 0.0625px solid var(--black); /* 1px */
  border-radius: 100%;
  background: #FFFFFF;
  transition: all 0.2s ease-in-out;
}
.c-customRadioContainer .wpcf7-list-item label::after {
  opacity: 0;
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 100%;
  background-color: var(--black);
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.5);
}

.c-customRadio {
  color: var(--black);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 400;
  vertical-align: middle;
  letter-spacing: 0;
}
.c-customRadio + * {
  margin-left: 1em;
}
.c-customRadio:has(input[type=radio]:checked)::before {
  border-color: var(--primary-green);
}
.c-customRadio:has(input[type=radio]:checked)::after {
  opacity: 1;
  background-color: var(--primary-green);
}
.c-customRadio::before {
  content: "";
  display: block;
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  margin-right: 0.25em;
  border: 0.0625px solid var(--black); /* 1px */
  border-radius: 100%;
  background: #FFFFFF;
  transition: all 0.2s ease-in-out;
}
.c-customRadio::after {
  opacity: 0;
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 100%;
  background-color: var(--black);
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.5);
}
.c-customCheckboxContainer .wpcf7-list-item {
  display: block;
}
.c-customCheckboxContainer .wpcf7-list-item + * {
  margin-top: 0.5em;
}
.c-customCheckboxContainer .wpcf7-list-item label {
  position: relative;
  display: flex;
  align-items: center;
}
.c-customCheckboxContainer .wpcf7-list-item label:has(input[type=checkbox]:checked)::before {
  border-color: var(--primary-green);
  background-color: var(--primary-green);
}
.c-customCheckboxContainer .wpcf7-list-item label:has(input[type=checkbox]:checked)::after {
  opacity: 1;
  transform: rotate(45deg) scale3d(1, 1, 1);
}
.c-customCheckboxContainer .wpcf7-list-item label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 0.4em;
  border: 1px solid #A3A3A3;
  border-radius: 4px;
  background: #FFFFFF;
  transition: all 0.2s ease-in-out;
}
.c-customCheckboxContainer .wpcf7-list-item label::after {
  opacity: 0;
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  position: absolute;
  top: 4px;
  left: 7px;
  transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
  transition: all 0.2s ease-in-out;
}

.c-customCheckbox {
  color: var(--black);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 400;
  vertical-align: middle;
  letter-spacing: 0;
}
.c-customCheckbox + * {
  margin-top: 0.5em;
}
.c-customCheckbox:has(input[type=checkbox]:checked)::before {
  border-color: var(--primary-green);
  background-color: var(--primary-green);
}
.c-customCheckbox:has(input[type=checkbox]:checked)::after {
  opacity: 1;
  transform: rotate(45deg) scale3d(1, 1, 1);
}
.c-customCheckbox::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 0.4em;
  border: 1px solid #A3A3A3;
  border-radius: 4px;
  background: #FFFFFF;
  transition: all 0.2s ease-in-out;
}
.c-customCheckbox::after {
  opacity: 0;
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  position: absolute;
  top: 4px;
  left: 7px;
  transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
  transition: all 0.2s ease-in-out;
}
.p-hero {
  overflow: hidden;
}
.p-hero__inner {
  position: relative;
  padding-bottom: 50px;
}
.p-hero__button {
  color: var(--white);
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6055469954rem + 0.6163328197vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  position: absolute;
  bottom: 50px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
.p-hero__button:hover {
  color: var(--white);
}
.p-hero__button::after {
  content: "";
  display: block;
  width: 1px;
  height: 2.75em;
  margin-top: 0.5em;
  background-color: var(--white);
}
.p-news {
  padding-top: var(--space-sm);
}
.p-news__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12vw 20px 0;
  border-radius: 5px;
  background-color: var(--primary-green);
}
.p-news__header {
  display: flex;
  align-items: center;
  position: absolute;
  top: -25px;
  left: 0;
}
.p-news__heading {
  color: var(--white);
  width: 7em;
  height: auto;
  aspect-ratio: 208/118;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--english-sans-serif);
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.4221879815rem + 2.4653312789vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: -0.2em;
  background-color: var(--gray20);
  -webkit-clip-path: url(#maskNewsHeading);
          clip-path: url(#maskNewsHeading);
}
.p-news__list {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-news__item {
  line-height: 1;
  padding: 1.5em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.p-news__link {
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}
.p-news__link:hover {
  opacity: 0.5;
}
.p-news__meta {
  display: flex;
  align-items: center;
}
.p-news__term {
  color: var(--white);
  line-height: 1;
  display: inline-flex;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.4805469954rem + 0.6163328197vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0.4em 0.8em;
  border: 1px solid var(--white);
  border-radius: 3px;
}
.p-news__date {
  color: var(--white);
  min-width: 11em;
  line-height: 1;
  font-size: 11px;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.5430469954rem + 0.6163328197vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0 0 0 1.2em;
}
.p-news__title {
  color: var(--white);
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7402734977rem + 0.3081664099vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin: 0.8em 0 0;
}
.p-news__button {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-news {
    padding-top: 45px;
  }
  .p-news__content {
    flex-direction: row;
    align-items: stretch;
    padding: 0;
  }
  .p-news__heading {
    width: 208px;
  }
  .p-news__header {
    top: 50%;
    transform: translateY(-50%);
  }
  .p-news__list {
    padding: 6px 0 6px 208px;
  }
  .p-news__item {
    line-height: 3;
    padding: 0 1.5em;
    border-bottom: none;
  }
  .p-news__link {
    flex-direction: row;
    align-items: center;
  }
  .p-news__date {
    display: inline-block;
    min-width: 10em;
  }
  .p-news__title {
    text-overflow: ellipsis;
    margin: 0 0 0 1em;
  }
  .p-news__button {
    width: 150px;
    margin: 0 0 0 auto;
  }
}

.p-slogan {
  overflow: hidden;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}
.p-slogan__inner {
  position: relative;
}
.p-slogan__inner.wrap {
  max-width: 880px;
}
.p-slogan__content {
  position: relative;
  padding: var(--space-md) 5%;
  margin-bottom: 100vw;
  border-radius: 20px;
  background-color: var(--white);
  box-shadow: 0 0 20px 0 rgba(52, 47, 47, 0.25);
}
.p-slogan__content::after {
  content: "";
  display: block;
  width: 95%;
  height: auto;
  aspect-ratio: 634/886;
  background: url("../../assets/img/bg-slogan-sp.png") no-repeat 0 0/cover;
  position: absolute;
  top: 96%;
  left: 50%;
  transform: translateX(-50%);
}
.p-slogan__heading {
  color: var(--primary-green);
  line-height: 1.5;
  font-family: var(--japanese-serif);
  font-size: 26px;
  font-size: 1.625rem;
  font-size: clamp(1.625rem, 1.1194144838rem + 2.157164869vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
.p-slogan__desc01 {
  color: var(--gray20);
  line-height: 2;
  font-family: var(--japanese-serif);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7305469954rem + 0.6163328197vw, 1.125rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  margin-top: 1.5em;
}
.p-slogan__desc01 > *:not(:first-of-type) {
  margin-top: 2em;
}
.p-slogan__desc02 {
  color: var(--primary-green);
  font-family: var(--japanese-serif);
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.7110939908rem + 1.2326656394vw, 1.5rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 3em auto 1em;
}
.p-slogan__objects > * {
  display: none;
  width: 100%;
  position: absolute;
}
.p-slogan__objects > *.obj01 {
  max-width: 400px;
  top: 160px;
  right: calc(50% + 350px);
}
.p-slogan__objects > *.obj02 {
  max-width: 400px;
  top: 105px;
  left: calc(50% + 350px);
}
@media screen and (min-width: 1024px) {
  .p-slogan {
    padding-top: 80px;
    padding-bottom: 145px;
  }
  .p-slogan__heading {
    line-height: 1;
  }
  .p-slogan__heading br {
    display: none;
  }
  .p-slogan__content {
    padding: 90px 5%;
    margin-bottom: 0;
  }
  .p-slogan__content::after {
    display: none;
  }
  .p-slogan__desc01 {
    line-height: 2.2;
    margin-top: 2em;
  }
  .p-slogan__desc01 .spbr {
    display: none;
  }
  .p-slogan__desc02 {
    margin: 35px auto 0;
  }
  .p-slogan__desc02 .spbr {
    display: none;
  }
  .p-slogan__objects > * {
    display: block;
  }
}

.p-shops {
  padding-bottom: 40px;
  margin-top: 0;
}
.p-shops__heading {
  color: var(--primary-green);
  line-height: 1.5;
  display: table;
  position: relative;
  font-size: 24px;
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 0.9221879815rem + 2.4653312789vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  margin: 0 auto;
}
.p-shops__heading::before, .p-shops__heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-green);
  position: absolute;
  top: 50%;
}
.p-shops__heading::before {
  right: calc(100% + 5px);
  transform: translateY(-50%) rotate(60deg);
}
.p-shops__heading::after {
  left: calc(100% + 5px);
  transform: translateY(-50%) rotate(-60deg);
}
.p-shops__subheading {
  color: var(--black);
  line-height: 1.8;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7305469954rem + 0.6163328197vw, 1.125rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 1.3em auto 0;
}
.p-shops__content {
  max-width: 500px;
  padding: 0 3%;
  margin: 0 auto;
}
.p-shops__list {
  display: flex;
  flex-wrap: wrap;
  margin: 14vw -15px 0;
}
.p-shops__item {
  width: calc(50% - 30px);
  padding-right: 3%;
  margin: 0 15px;
}
.p-shops__item:nth-child(even) {
  margin-top: 35px;
  margin-bottom: 35px;
}
.p-shops__link {
  display: block;
  position: relative;
  transition: all 0.35s ease;
}
.p-shops__link:hover {
  opacity: 0.8;
}
.p-shops__link:hover .p-shops__thumbnail img {
  transform: scale(1.05);
}
.p-shops__link:hover::after {
  transform: scale(1.05);
}
.p-shops__link--asakita::after {
  background: url("../../assets/img/balloon-shop-asakita.png") no-repeat 0 0/cover;
}
.p-shops__link--asaminami::after {
  background: url("../../assets/img/balloon-shop-asaminami.png") no-repeat 0 0/cover;
}
.p-shops__link--itsukaichi::after {
  background: url("../../assets/img/balloon-shop-itsukaichi.png") no-repeat 0 0/cover;
}
.p-shops__link--hatsukaichi::after {
  background: url("../../assets/img/balloon-shop-hatsukaichi.png") no-repeat 0 0/cover;
}
.p-shops__link::after {
  content: "";
  display: block;
  width: 72%;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: -32%;
  right: -22%;
  transition: all 0.5s ease;
  transform: scale(1);
  transform-origin: bottom left;
}
.p-shops__thumbnail {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.p-shops__thumbnail img {
  transition: all 0.5s ease;
}
.p-shops__button {
  width: 100%;
  max-width: 200px;
  display: table;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-shops {
    margin-top: -30px;
  }
  .p-shops__heading {
    line-height: 1;
  }
  .p-shops__heading::before, .p-shops__heading::after {
    width: 50px;
    height: 6px;
  }
  .p-shops__heading::before {
    right: calc(100% + 40px);
  }
  .p-shops__heading::after {
    left: calc(100% + 40px);
  }
  .p-shops__heading br {
    display: none;
  }
  .p-shops__subheading {
    margin: 1em auto 0;
  }
  .p-shops__subheading .spbr {
    display: none;
  }
  .p-shops__content {
    max-width: inherit;
  }
  .p-shops__list {
    margin: 95px -30px 0;
  }
  .p-shops__item {
    width: calc(25% - 60px);
    padding-right: 0;
    margin: 0 30px;
  }
  .p-shops__item:nth-child(even) {
    margin-top: 60px;
    margin-bottom: 0;
  }
  .p-shops__link::after {
    width: 180px;
    top: -80px;
    right: -45px;
  }
  .p-shops__button {
    max-width: 228px;
    margin: 40px auto 0;
  }
}

.p-knowledge {
  padding-top: 80px;
  padding-bottom: 30vw;
  background: url("../../assets/img/bg-knowledge.jpg") no-repeat center top/cover;
  -webkit-clip-path: url(#maskKnowledge);
          clip-path: url(#maskKnowledge);
}
.p-knowledge__heading {
  color: var(--primary-green);
  line-height: 1;
  display: table;
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 0.9221879815rem + 2.4653312789vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  margin: 0 auto;
}
.p-knowledge__heading span {
  font-family: var(--english-sans-serif);
  font-size: 49px;
  font-size: 3.0625rem;
  font-size: clamp(3.0625rem, 1.9429892142rem + 4.7765793529vw, 5rem);
  font-weight: 900;
  margin: 0 0.1em;
}
.p-knowledge__heading::after {
  content: "";
  display: block;
  width: calc(100% + 50px);
  height: 22px;
  background-color: #FFFFCC;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
.p-knowledge__subheading {
  color: var(--black);
  line-height: 1.8;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7305469954rem + 0.6163328197vw, 1.125rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 1em auto 0;
}
.p-knowledge__content {
  max-width: 930px;
  margin: -10px auto 0;
}
.p-knowledge__list {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  margin: 15px auto 0;
}
.p-knowledge__item {
  width: 75%;
  margin: 5px 0;
}
.p-knowledge__item:nth-child(even) {
  margin: 5px 0 5px auto;
}
.p-knowledge__link {
  display: block;
  transition: all 0.35s ease;
}
.p-knowledge__link:hover {
  opacity: 1;
}
.p-knowledge__link:hover .p-knowledge__image > * + * {
  opacity: 0;
  transition: all 0.35s ease;
}
.p-knowledge__image {
  position: relative;
}
.p-knowledge__image > * + * {
  transition: all 0.1s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.p-knowledge__button {
  width: 100%;
  max-width: 240px;
  display: table;
  margin: 40px auto 0;
}
@media screen and (min-width: 1024px) {
  .p-knowledge {
    padding-top: 120px;
    padding-bottom: 305px;
  }
  .p-knowledge__subheading {
    margin: 1.5em auto 0;
  }
  .p-knowledge__subheading br {
    display: none;
  }
  .p-knowledge__list {
    max-width: inherit;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: -40px -20px;
  }
  .p-knowledge__item {
    width: calc(50% - 40px);
    margin: 35px 20px;
  }
  .p-knowledge__item:nth-child(even) {
    margin: 18px 0 5px auto;
  }
  .p-knowledge__item:nth-child(2) {
    margin-top: 65px;
  }
  .p-knowledge__item:nth-child(3), .p-knowledge__item:nth-child(5), .p-knowledge__item:nth-child(7) {
    margin-top: -12px;
  }
  .p-knowledge__button {
    max-width: 264px;
    margin: 80px auto 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-knowledge {
    background-attachment: fixed;
    background-position: center;
  }
}

.p-flow {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 50px;
  margin-top: -30vw;
}
.p-flow::after {
  content: "";
  display: block;
  width: 100%;
  min-width: 1440px;
  height: auto;
  aspect-ratio: 1440/637;
  background-color: #E2EDE3;
  -webkit-clip-path: url(#maskFlow);
          clip-path: url(#maskFlow);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
.p-flow__inner.wrap {
  max-width: 1040px;
}
.p-flow__body {
  display: flex;
  flex-direction: column;
}
.p-flow__content {
  width: 100%;
}
.p-flow__title {
  color: var(--primary-green);
  line-height: 1;
  display: table;
  position: relative;
  z-index: 1;
  font-size: 26px;
  font-size: 1.625rem;
  font-size: clamp(1.625rem, 1.1194144838rem + 2.157164869vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.15em;
  margin: 0 auto;
}
.p-flow__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 22px;
  background-color: #FFFFCC;
  position: absolute;
  bottom: -10px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
.p-flow__desc {
  color: var(--black);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7305469954rem + 0.6163328197vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 1.5em 0 0;
}
.p-flow__thumbnail {
  max-width: 507px;
  position: relative;
  margin: 40px auto 0;
}
.p-flow__thumbnail > img {
  width: 78%;
}
.p-flow__thumbnail::after {
  content: "";
  display: block;
  width: 33%;
  max-width: 191px;
  height: auto;
  aspect-ratio: 1;
  background: url("../../assets/img/img-mark-biginer.png") no-repeat 0 0/cover;
  position: absolute;
  bottom: 0;
  right: 0;
}
.p-flow__button {
  width: 100%;
  max-width: 260px;
  display: table;
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .p-flow {
    margin-top: -22vw;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow {
    padding-top: 200px;
    padding-bottom: 100px;
    margin-top: -205px;
    background-color: #E2EDE3;
    -webkit-clip-path: url(#maskFlow);
            clip-path: url(#maskFlow);
  }
  .p-flow::after {
    display: none;
  }
  .p-flow__body {
    flex-direction: row;
    align-items: center;
  }
  .p-flow__content {
    width: calc(100% - 507px - 10px);
  }
  .p-flow__title {
    margin: 0;
  }
  .p-flow__desc {
    align-items: flex-start;
  }
  .p-flow__button {
    max-width: 310px;
    margin: 35px 0 0;
  }
  .p-flow__thumbnail {
    margin: 0 0 0 10px;
  }
  .p-flow__thumbnail > img {
    width: 100%;
  }
  .p-flow__thumbnail::after {
    width: 191px;
    height: 191px;
    right: -55px;
  }
}

.p-works {
  padding-top: var(--space-md);
}
.p-works__heading {
  color: var(--primary-green);
  line-height: 1;
  display: table;
  position: relative;
  z-index: 1;
  font-size: 26px;
  font-size: 1.625rem;
  font-size: clamp(1.625rem, 1.1194144838rem + 2.157164869vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 0 auto;
}
.p-works__heading::after {
  content: "";
  display: block;
  width: calc(100% + 1em);
  height: 0.5em;
  background-color: #C1EFC9;
  position: absolute;
  bottom: -0.2em;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
.p-works__subheading {
  color: var(--black);
  line-height: 1.8;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7305469954rem + 0.6163328197vw, 1.125rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 1.2em 0 0;
}
.p-works__body {
  margin-top: 20px;
}
.p-works__link:hover .p-works__thumbnail img {
  transform: scale(1.1);
}
.p-works__thumbnail {
  position: relative;
}
.p-works__tmbInner {
  position: relative;
  z-index: 2;
  -webkit-mask: url("../../assets/img/mask-home.svg") no-repeat 0 0/cover;
          mask: url("../../assets/img/mask-home.svg") no-repeat 0 0/cover;
}
.p-works__tmbInner img {
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}
.p-works__tmbBg {
  width: 100%;
  height: 100%;
  -webkit-mask: url("../../assets/img/mask-home.svg") no-repeat 0 0/cover;
          mask: url("../../assets/img/mask-home.svg") no-repeat 0 0/cover;
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 1;
}
.p-works__tmbBg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--primary-green);
}
.p-works__title {
  color: var(--primary-green);
  line-height: 1.5;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7305469954rem + 0.6163328197vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0;
  margin: 1.2em 0 0;
}
.p-works__listDetail {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
}
.p-works__listDetail > * {
  color: var(--gray20);
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.p-works__listDetail > *:not(:last-of-type) {
  margin-right: 1em;
}
.p-works__listCategory {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
}
.p-works__listCategory > * {
  color: var(--secondary-green);
  display: inline-block;
  font-size: 11px;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.6513867488rem + 0.1540832049vw, 0.75rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0.4em 1em;
  border: 1px solid var(--secondary-green);
  border-radius: 4px;
  background: var(--white);
  margin: 0 0.5em 0.5em 0;
}
.p-works__search {
  max-width: 920px;
  padding: 0 20px;
  margin: 30px auto 0;
}
.p-works__button {
  width: 100%;
  max-width: 240px;
  display: table;
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .p-works__search {
    padding: 0 30px;
  }
}
@media screen and (min-width: 820px) {
  .p-works__search {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1024px) {
  .p-works {
    padding-top: 70px;
  }
  .p-works__tmbBg {
    left: 6px;
    top: 6px;
  }
  .p-works__title {
    margin: 1em 0 0;
  }
  .p-works__listDetail {
    flex-wrap: nowrap;
    margin-top: 0.5em;
  }
  .p-works__listCategory {
    margin-top: 1em;
  }
  .p-works__listCategory > * {
    padding: 0.4em 1.2em;
  }
  .p-works__search {
    padding: 0;
  }
  .p-works__button {
    max-width: 270px;
  }
}

.p-movie {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}
.p-movie__heading {
  color: var(--primary-green);
  line-height: 1;
  display: table;
  position: relative;
  z-index: 1;
  font-family: var(--english-sans-serif);
  font-size: 28px;
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 1.3166409861rem + 1.8489984592vw, 2.5rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  margin: 0 auto;
}
.p-movie__heading::after {
  content: "";
  display: block;
  width: calc(100% + 1em);
  height: 0.5em;
  background-color: #C1EFC9;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
.p-movie__subheading {
  color: var(--black);
  line-height: 1.8;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 1.2em 0 0;
}
.p-movie__body {
  margin-top: 20px;
}
.p-movie__link:hover img {
  transform: scale(1.1);
}
.p-movie__link img {
  transition: all 0.5s ease;
}
.p-movie__thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  font-size: clamp(0.625rem, 0.4083204931rem + 0.9244992296vw, 1rem);
}
.p-movie__thumbnail::before {
  pointer-events: none;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-movie__thumbnail::after {
  pointer-events: none;
  content: "";
  display: block;
  width: 6em;
  max-width: 86px;
  aspect-ratio: 1;
  background: url("../../assets/img/icon-play-youtube.svg") no-repeat 0 0/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}
.p-movie__title {
  color: var(--black);
  line-height: 1.5;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7305469954rem + 0.6163328197vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0.5em 0 0;
}
@media screen and (min-width: 1024px) {
  .p-movie {
    padding-top: 100px;
    padding-bottom: 90px;
  }
  .p-movie__body {
    margin-top: 40px;
  }
  .p-movie__thumbnail::after {
    width: 5em;
  }
}

.p-banner {
  padding-top: 15vw;
  padding-bottom: 15vw;
  background-color: #D4E2D6;
}
.p-banner__content {
  max-width: 1180px;
  margin: 0 auto;
}
.p-banner__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -8px -8px;
}
.p-banner__item {
  width: calc(50% - 16px);
  margin: 8px 8px;
}
.p-banner__contentBottom {
  width: 80%;
  max-width: 1140px;
  margin: 12vw auto 0;
}
@media screen and (min-width: 768px) {
  .p-banner {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }
}
@media screen and (min-width: 1024px) {
  .p-banner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .p-banner__list {
    margin: 0 -10px;
  }
  .p-banner__item {
    width: calc(25% - 20px);
    margin: 0 10px;
  }
  .p-banner__contentBottom {
    width: 100%;
    margin: 70px auto 0;
  }
}

.wrap {
  width: 100%;
  max-width: 1350px;
  padding-left: 5%;
  padding-right: 5%;
  margin: 0 auto;
}
.wrap--max1150 {
  max-width: 1250px;
}
@media screen and (min-width: 768px) {
  .wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 820px) {
  .wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .wrap {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-button-next, .swiper-button-prev {
  cursor: pointer;
  margin: 0;
  z-index: 500;
  position: absolute;
  top: 50%;
  transition: all 0.35s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  opacity: 0.5;
}
.swiper-button-next::before, .swiper-button-next::after, .swiper-button-prev::before, .swiper-button-prev::after {
  content: "";
  display: block;
  position: absolute;
  transform: translate(-50%);
}
.swiper-button-next::before, .swiper-button-prev::before {
  top: 50%;
  left: 50%;
}
.swiper-button-next::after, .swiper-button-prev::after {
  content: "" !important;
}

.swiper-pagination {
  position: absolute;
  bottom: 5px;
  z-index: 101;
  transform: translateX(-50%);
  left: 50%;
}
.swiper-pagination span {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 10px;
  margin: 0 5px;
  background: #fff;
}

#slider-hero.swiper-container {
  max-width: 1150px;
  height: 100%;
  overflow: visible;
  z-index: 1;
}
#slider-hero .swiper-button-prev, #slider-hero .swiper-button-next {
  top: calc(50% - 25px);
  transform: translateY(-50%);
}
#slider-hero .swiper-button-prev::before, #slider-hero .swiper-button-next::before {
  height: auto;
  aspect-ratio: 61/85;
}
#slider-hero .swiper-button-prev {
  left: 20px;
}
#slider-hero .swiper-button-prev::before {
  width: 32px;
  background: url("../../assets/img/ico-prev.svg") no-repeat center center/cover;
}
#slider-hero .swiper-button-next {
  right: 20px;
}
#slider-hero .swiper-button-next::before {
  width: 32px;
  background: url("../../assets/img/ico-next.svg") no-repeat center center/cover;
}
#slider-hero .swiper-pagination {
  bottom: -32px;
}
#slider-hero .swiper-pagination span {
  width: 8px;
  height: 8px;
}
#slider-hero .swiper-pagination-bullet {
  margin: 0 7px;
  background-color: var(--gray20);
}
#slider-hero .swiper-pagination-bullet-active {
  background-color: var(--primary-green);
}
@media screen and (min-width: 768px) {
  #slider-hero .swiper-button-prev::before {
    width: 45px;
  }
  #slider-hero .swiper-button-next::before {
    width: 45px;
  }
}
@media screen and (min-width: 1024px) {
  #slider-hero .swiper-button-prev {
    left: 30px;
  }
  #slider-hero .swiper-button-prev::before {
    width: 61px;
  }
  #slider-hero .swiper-button-next {
    right: 30px;
  }
  #slider-hero .swiper-button-next::before {
    width: 61px;
  }
  #slider-hero .swiper-pagination {
    bottom: -40px;
  }
  #slider-hero .swiper-pagination span {
    width: 12px;
    height: 12px;
  }
}

#slider-works.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
#slider-works .swiper-button-prev, #slider-works .swiper-button-next {
  top: 25vw;
  transform: translateY(-50%);
}
#slider-works .swiper-button-prev::before, #slider-works .swiper-button-next::before {
  height: auto;
  aspect-ratio: 61/85;
}
#slider-works .swiper-button-prev {
  left: 20px;
}
#slider-works .swiper-button-prev::before {
  width: 32px;
  background: url("../../assets/img/ico-prev.svg") no-repeat center center/cover;
}
#slider-works .swiper-button-next {
  right: 20px;
}
#slider-works .swiper-button-next::before {
  width: 32px;
  background: url("../../assets/img/ico-next.svg") no-repeat center center/cover;
}
@media screen and (min-width: 1024px) {
  #slider-works.swiper-container {
    padding: 0 10%;
  }
  #slider-works .swiper-button-prev, #slider-works .swiper-button-next {
    top: 12vw;
  }
  #slider-works .swiper-button-prev {
    left: 100px;
  }
  #slider-works .swiper-button-prev::before {
    width: 61px;
  }
  #slider-works .swiper-button-next {
    right: 100px;
  }
  #slider-works .swiper-button-next::before {
    width: 61px;
  }
}

#slider-movie.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  padding: 0 0 40px;
}
#slider-movie .swiper-button-prev, #slider-movie .swiper-button-next {
  top: 22vw;
  transform: translateY(-50%);
}
#slider-movie .swiper-button-prev::before, #slider-movie .swiper-button-next::before {
  height: auto;
  aspect-ratio: 61/85;
}
#slider-movie .swiper-button-prev {
  left: 20px;
}
#slider-movie .swiper-button-prev::before {
  width: 32px;
  background: url("../../assets/img/ico-prev.svg") no-repeat center center/cover;
}
#slider-movie .swiper-button-next {
  right: 20px;
}
#slider-movie .swiper-button-next::before {
  width: 32px;
  background: url("../../assets/img/ico-next.svg") no-repeat center center/cover;
}
#slider-movie .swiper-pagination {
  bottom: 0;
}
#slider-movie .swiper-pagination span {
  width: 8px;
  height: 8px;
}
#slider-movie .swiper-pagination-bullet {
  margin: 0 7px;
  background-color: var(--gray20);
}
#slider-movie .swiper-pagination-bullet-active {
  background-color: var(--primary-green);
}
@media screen and (min-width: 1024px) {
  #slider-movie.swiper-container {
    padding: 0 10% 40px;
  }
  #slider-movie .swiper-button-prev, #slider-movie .swiper-button-next {
    top: 50%;
  }
  #slider-movie .swiper-button-prev {
    left: 100px;
  }
  #slider-movie .swiper-button-prev::before {
    width: 61px;
  }
  #slider-movie .swiper-button-next {
    right: 100px;
  }
  #slider-movie .swiper-button-next::before {
    width: 61px;
  }
  #slider-movie .swiper-pagination span {
    width: 12px;
    height: 12px;
  }
}

.c-slideGallery {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.c-slideGallery__slider {
  position: relative;
}
.c-slideGallery__slider img {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid var(--gray70);
}
.c-slideGallery__slider figcaption {
  color: var(--gray20);
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6416602465rem + 0.4622496148vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0.5em 0 0;
}
.c-slideGallery__slider .swiper-slide:hover {
  cursor: grab;
}
.c-slideGallery__thumbsWrapper {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding: 0 38px 0 50px;
  margin: 1.5em auto 0;
}
.c-slideGallery__thumbs {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.c-slideGallery__thumbs .swiper-wrapper {
  margin: 0 auto;
}
.c-slideGallery__thumbs .swiper-slide {
  max-width: 65px;
  display: flex;
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--gray80);
  opacity: 0.5;
  transition: opacity 0.35s ease;
}
.c-slideGallery__thumbs .swiper-slide:hover {
  opacity: 1;
}
.c-slideGallery__thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid var(--black);
}
.c-slideGallery__thumbs .swiper-slide img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-slideGallery .btnGalleryPrev, .c-slideGallery .btnGalleryNext {
  cursor: pointer;
}
.c-slideGallery .btnGalleryPrev::before, .c-slideGallery .btnGalleryNext::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 101;
  top: 50%;
  background: none;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.c-slideGallery .btnGalleryPrev {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 10%;
  height: 100%;
}
.c-slideGallery .btnGalleryPrev:hover::before {
  left: 10px;
}
.c-slideGallery .btnGalleryPrev::before {
  width: 35px;
  height: 35px;
  left: -50px;
  background: url("../../assets/img/icon-prev-gallery.svg") no-repeat center center/cover;
}
.c-slideGallery .btnGalleryNext {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  width: 10%;
  height: 100%;
}
.c-slideGallery .btnGalleryNext:hover::before {
  right: 10px;
}
.c-slideGallery .btnGalleryNext::before {
  width: 35px;
  height: 35px;
  right: -50px;
  background: url("../../assets/img/icon-next-gallery.svg") no-repeat center center/cover;
}
.c-slideGallery .btnThumbPrev, .c-slideGallery .btnThumbNext {
  cursor: pointer;
}
.c-slideGallery .btnThumbPrev:hover::before, .c-slideGallery .btnThumbNext:hover::before {
  opacity: 0.5;
}
.c-slideGallery .btnThumbPrev::before, .c-slideGallery .btnThumbNext::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 101;
  top: 50%;
  background: none;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.c-slideGallery .btnThumbPrev {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: auto;
  height: 100%;
}
.c-slideGallery .btnThumbPrev::before {
  width: 28px;
  height: 28px;
  left: 0;
  background: url("../../assets/img/icon-prev-gallery.svg") no-repeat center center/cover;
}
.c-slideGallery .btnThumbNext {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  width: auto;
  height: 100%;
}
.c-slideGallery .btnThumbNext::before {
  width: 28px;
  height: 28px;
  right: 0;
  background: url("../../assets/img/icon-next-gallery.svg") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .c-slideGallery__thumbs .swiper-slide {
    max-width: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .c-slideGallery {
    width: 690px;
  }
  .c-slideGallery__thumbs .swiper-slide {
    max-width: 100px;
  }
  .c-slideGallery .btnThumbPrev::before {
    left: 10px;
  }
  .c-slideGallery .btnThumbNext::before {
    right: 10px;
  }
}

.c-carouselShops {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.c-carouselShops__slider {
  position: relative;
}
.c-carouselShops__slider img {
  border: 1px solid var(--gray80);
}
.c-carouselShops__slider figcaption {
  color: var(--gray20);
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0.5em 0 0;
}
.c-carouselShops__slider .swiper-slide:hover {
  cursor: grab;
}
.c-carouselShops__thumbsWrapper {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding: 0;
  margin: 18px 0 0;
}
.c-carouselShops__thumbs {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.c-carouselShops__thumbs .swiper-wrapper {
  margin: 0 auto;
}
.c-carouselShops__thumbs .swiper-slide {
  max-width: 60px;
  display: flex;
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--gray80);
  opacity: 0.5;
  transition: opacity 0.35s ease;
}
.c-carouselShops__thumbs .swiper-slide:hover {
  opacity: 1;
}
.c-carouselShops__thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid var(--black);
}
.c-carouselShops__thumbs .swiper-slide img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-carouselShops .btnGalleryPrev, .c-carouselShops .btnGalleryNext {
  cursor: pointer;
}
.c-carouselShops .btnGalleryPrev::before, .c-carouselShops .btnGalleryNext::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 101;
  top: 50%;
  background: none;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.c-carouselShops .btnGalleryPrev {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 10%;
  height: 100%;
}
.c-carouselShops .btnGalleryPrev:hover::before {
  left: 10px;
}
.c-carouselShops .btnGalleryPrev::before {
  width: 35px;
  height: 35px;
  left: -50px;
  background: url("../../assets/img/icon-prev-gallery.svg") no-repeat center center/cover;
}
.c-carouselShops .btnGalleryNext {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  width: 10%;
  height: 100%;
}
.c-carouselShops .btnGalleryNext:hover::before {
  right: 10px;
}
.c-carouselShops .btnGalleryNext::before {
  width: 35px;
  height: 35px;
  right: -50px;
  background: url("../../assets/img/icon-next-gallery.svg") no-repeat center center/cover;
}
.c-carouselShops .btnThumbPrev, .c-carouselShops .btnThumbNext {
  cursor: pointer;
}
.c-carouselShops .btnThumbPrev:hover::before, .c-carouselShops .btnThumbNext:hover::before {
  opacity: 0.5;
}
.c-carouselShops .btnThumbPrev::before, .c-carouselShops .btnThumbNext::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 101;
  top: 50%;
  background: none;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.c-carouselShops .btnThumbPrev {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: auto;
  height: 100%;
}
.c-carouselShops .btnThumbPrev::before {
  width: 28px;
  height: 28px;
  left: 0;
  background: url("../../assets/img/icon-prev-gallery.svg") no-repeat center center/cover;
}
.c-carouselShops .btnThumbNext {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  width: auto;
  height: 100%;
}
.c-carouselShops .btnThumbNext::before {
  width: 28px;
  height: 28px;
  right: 0;
  background: url("../../assets/img/icon-next-gallery.svg") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .c-carouselShops__thumbs .swiper-slide {
    max-width: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .c-carouselShops__thumbs .swiper-slide {
    max-width: 80px;
  }
  .c-carouselShops .btnThumbPrev::before {
    left: 10px;
  }
  .c-carouselShops .btnThumbNext::before {
    right: 10px;
  }
}

#modal-video {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  transition: 0.5s;
}
#modal-video.close {
  filter: opacity(0);
  visibility: hidden;
}
#modal-video.open {
  filter: opacity(1);
  visibility: visible;
}
#modal-video iframe {
  width: 94vw;
  height: 52vw;
}
#modal-video .button-close {
  display: block;
  position: absolute;
  top: 3%;
  right: 5%;
  width: auto;
  height: 50px;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  background: none;
}
#modal-video .button-close::before, #modal-video .button-close::after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background-color: var(--white);
}
#modal-video .button-close::before {
  transform: rotate(45deg);
  transform-origin: center;
}
#modal-video .button-close::after {
  transform: rotate(-45deg);
  transform-origin: center;
}
@media screen and (min-width: 1024px) {
  #modal-video iframe {
    width: 64vw;
    height: 36vw;
  }
  #modal-video .button-close {
    transition: opacity 0.35s ease;
  }
  #modal-video .button-close:hover {
    opacity: 0.5;
  }
}
