@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-topics__column {
  margin: 0 0 50px;
}
.p-topics__column a {
  display: flex;
  transition: all 0.35s ease;
}
.p-topics__column a:hover {
  opacity: 0.5;
}
.p-topics__thumbnail {
  width: 40%;
}
.p-topics__content {
  width: calc(60% - 12px);
  margin: 0 0 0 12px;
}
.p-topics__title {
  color: var(--gray40);
  line-height: 1.4;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.7569337442rem + 0.7704160247vw, 1.25rem);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--gray40);
  padding: 0 0 10px;
  margin: -5px 0 0;
}
.p-topics__titleSingle {
  color: var(--gray40);
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.0694337442rem + 0.7704160247vw, 1.5625rem);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--gray40);
  padding: 0 0 10px;
  margin: -5px 0 0;
}
.p-topics__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 12px 0 0;
}
.p-topics__item {
  line-height: 1;
  margin: 0 10px 0.5em 0;
}
.p-topics__desc {
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7041602465rem + 0.4622496148vw, 1rem);
  letter-spacing: 0.05em;
  text-align: justify;
  line-height: 1.6;
  margin: 0.2em 0 0;
}
.p-topics__post {
  margin-top: 2em;
}
.p-topics__post > h3 {
  color: var(--black);
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8291602465rem + 0.4622496148vw, 1.125rem);
  letter-spacing: 0.1em;
}
.p-topics__post > p {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  text-align: justify;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
.p-topics__post > ul li {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  line-height: 2.3;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-topics__content {
    width: calc(60% - 20px);
    margin: 0 0 0 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-topics__item {
    margin: 0 10px 0 0;
  }
  .p-topics__title {
    line-height: 1.6;
  }
  .p-topics__desc {
    line-height: 1.8;
    margin: 0.5em 0 0;
  }
}

.p-example__header {
  margin: 0 auto;
}
.p-example__heading {
  color: var(--black);
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8291602465rem + 0.4622496148vw, 1.125rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  border-bottom: 2px dotted var(--primary-green);
  padding: 0 100px 0.5em 0;
  margin: 0;
}
.p-example__listPlace {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -1% 0;
}
.p-example__itemPlace {
  color: var(--white);
  width: 23%;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 1%;
  border-radius: 5px;
}
.p-example__itemPlace a {
  color: var(--white);
  transition: all 0.35s ease;
}
.p-example__itemPlace a:hover {
  opacity: 0.5;
}
.p-example__listCategory {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -0.2em 0;
}
.p-example__listCategory > * {
  display: inline-block;
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  letter-spacing: 0.05em;
  word-break: keep-all;
  margin: 0.2em 0.2em;
}
.p-example__listCategory > * a {
  padding: 0.5em 0.8em;
  border: 1px solid var(--primary-green);
  border-radius: 5px;
  transition: all 0.35s ease;
}
.p-example__listCategory > * a:hover {
  opacity: 0.5;
}
.p-example__main {
  margin-top: var(--space-lg);
}
.p-example__title {
  color: var(--primary-green);
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.9083204931rem + 0.9244992296vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  margin: 0 auto 1.2em;
}
@media screen and (min-width: 768px) {
  .p-example__header {
    max-width: 920px;
    margin: 0 auto;
  }
  .p-example__main {
    margin-top: var(--space-md);
  }
}
.p-exSingle__header {
  width: 100%;
}
.p-exSingle__heading {
  color: var(--black);
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.8888674884rem + 1.5408320493vw, 1.875rem);
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 0 auto;
}
.p-exSingle__main {
  max-width: 690px;
  margin: 20px auto 0;
}
.p-exSingle__meta {
  max-width: 690px;
  margin: 65px auto 0;
  border-top: 1px solid var(--primary-green);
  border-bottom: 1px solid var(--primary-green);
}
.p-exSingle__detail {
  width: 100%;
}
.p-exSingle__detail th, .p-exSingle__detail td {
  box-sizing: border-box;
}
.p-exSingle__detail th {
  color: var(--primary-green);
  width: 15%;
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8291602465rem + 0.4622496148vw, 1.125rem);
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  padding: 1em 0;
}
.p-exSingle__detail td {
  padding: 1em 0 1em 1em;
}
.p-exSingle__metaList1 li {
  color: var(--black);
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  letter-spacing: 0.05em;
  margin: 0 1.5em 0 0;
}
.p-exSingle__metaList2 {
  margin: 5px 0 0;
}
.p-exSingle__metaList2 li {
  color: var(--secondary-green);
  display: inline-block;
  line-height: 1;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5527734977rem + 0.3081664099vw, 0.75rem);
  padding: 0.5em 1em;
  margin: 0 0.5em 0 0;
  border: 1px solid var(--primary-green);
  border-radius: 5px;
  box-sizing: border-box;
}
.p-exSingle__post {
  max-width: 690px;
  margin: 25px auto 0;
}
.p-exSingle__post > p {
  color: var(--black);
  line-height: 2.2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  text-align: justify;
  letter-spacing: 0.05em;
  margin: 0;
}
.p-exSingle__pager {
  max-width: 690px;
  margin: var(--space-lg) auto 0;
}
@media screen and (min-width: 768px) {
  .p-exSingle__heading {
    letter-spacing: 0.15em;
    text-indent: 0.15em;
  }
}
@media screen and (min-width: 1024px) {
  .p-exSingle__heading {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
  .p-exSingle__detail {
    padding: 18px 0;
  }
  .p-exSingle__post > p {
    line-height: 2.5;
    letter-spacing: 0.1em;
  }
  .p-exSingle__pager {
    margin: 80px auto 0;
  }
}

.p-shops__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-shops__header > * {
  margin: 0 3%;
}
.p-shops__headingWrap {
  position: relative;
  width: 60%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: 100%;
  background: #C8DC76;
}
.p-shops__headingWrap:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 12.5px 0 12.5px;
  border-color: #C8DC76 transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 99%;
  transform: translate(-50%, 0);
}
.p-shops__heading {
  color: var(--white);
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.4874807396rem + 1.3867488444vw, 1.375rem);
  word-break: keep-all;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-shops__heading .ico {
  margin: 10px auto 0;
}
.p-shops__headerImage {
  max-width: 355px;
  width: 100%;
  margin: 50px auto 0;
}
.p-shops__content {
  border-top: 1px solid var(--border);
  margin: var(--space-lg) auto 0;
}
.p-shops__column {
  display: flex;
  flex-direction: column;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}
.p-shops__thumbnail {
  width: 60%;
  max-width: 230px;
  transition: all 0.35s ease;
}
.p-shops__thumbnail:hover {
  opacity: 0.5;
}
.p-shops__text {
  width: 100%;
  margin: var(--space-sm) 0 0;
}
.p-shops__title {
  color: var(--primary-green);
  line-height: 1.5;
  margin: 0;
}
.p-shops__title > a {
  color: var(--primary-green);
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.0694337442rem + 0.7704160247vw, 1.5625rem);
  letter-spacing: 0.1em;
  transition: all 0.35s ease;
}
.p-shops__title > a:hover {
  opacity: 0.5;
}
.p-shops__list {
  margin: 0.5em 0 0;
}
.p-shops__metas {
  padding: 15px 20px;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 22px 0 0;
  background: #EEF3F1;
}
.p-shops__metas h3 {
  color: var(--primary-green);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 400;
  margin: 0;
}
.p-shops__metas p {
  color: var(--black);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 400;
  text-align: justify;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-shops__column {
    flex-direction: row;
  }
  .p-shops__thumbnail {
    width: 45%;
  }
  .p-shops__text {
    width: 71%;
    margin: 0 0 0 4%;
  }
}
@media screen and (min-width: 1024px) {
  .p-shops__header {
    flex-direction: row;
  }
  .p-shops__headingWrap {
    width: 350px;
    max-width: inherit;
  }
  .p-shops__headingWrap:before {
    border-style: solid;
    border-width: 15px 0 15px 32px;
    border-color: transparent transparent transparent #c8dc76;
    left: 99%;
    top: 50%;
    transform: translate(0, -50%);
  }
  .p-shops__headerImage {
    max-width: 355px;
    width: calc(95% - 350px);
    margin: 0 0 0 5%;
  }
  .p-shops__content {
    margin: 60px auto 0;
  }
  .p-shops__column {
    padding: 40px 0;
  }
  .p-shops__title {
    margin: -0.2em 0 0;
  }
  .p-shops__list {
    margin: 0.6em 0 0;
  }
}

.p-shopsSingle {
  display: flex;
  flex-direction: column;
}
.p-shopsSingle__slide {
  width: 80%;
  margin: 0 auto;
}
.p-shopsSingle__content {
  width: 100%;
  margin: var(--space-sm) 0 0;
}
.p-shopsSingle__content > img {
  max-width: 320px;
  margin: 30px 0 0;
  border: 1px solid #E9ECE9;
}
.p-shopsSingle__list {
  margin: -10px 0 0;
}
.p-shopsSingle__metas {
  border-bottom: 1px solid #E9ECE9;
  margin: 35px 0 0;
}
.p-shopsSingle__metas th, .p-shopsSingle__metas td {
  width: 100%;
  display: block;
  text-align: left;
  font-weight: 400;
}
.p-shopsSingle__metas th {
  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;
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid #E9ECE9;
}
.p-shopsSingle__metas td {
  color: var(--black);
  padding: 0 0 20px;
  margin: 0;
}
.p-shopsSingle__metas td p {
  color: var(--black);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  text-align: justify;
  letter-spacing: 0.05em;
  margin: 0;
}
.p-shopsSingle__button {
  margin: 30px 0 0;
}
@media screen and (min-width: 1024px) {
  .p-shopsSingle {
    flex-direction: row;
  }
  .p-shopsSingle__slide {
    width: 45%;
    margin: 0;
  }
  .p-shopsSingle__content {
    width: 50%;
    margin: 0 0 0 5%;
  }
}

.p-flow__column {
  display: flex;
  flex-direction: column;
}
.p-flow__column:not(:first-of-type) {
  padding-top: 25px;
  margin-top: 25px;
  border-top: 2px dashed var(--gray60);
}
.p-flow__text {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.p-flow__title {
  color: var(--white);
  position: relative;
  width: 100%;
  min-width: 200px;
  aspect-ratio: 335/66;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 0.9083204931rem + 0.9244992296vw, 1.5rem);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  padding-bottom: 0.7em;
  background: url("../../assets/img/bg-flow-title-sp.png") no-repeat 0 0/cover;
}
.p-flow__title br {
  display: none;
}
.p-flow__desc {
  color: #4A4A4A;
  width: 100%;
  line-height: 1.8;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 1.5em 0 0;
}
.p-flow__thumbnail {
  width: 100%;
  max-width: 300px;
  margin: 1.5em auto 0;
}
@media screen and (min-width: 768px) {
  .p-flow__title {
    padding-bottom: 1.2em;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__column {
    flex-direction: row;
    align-items: center;
  }
  .p-flow__column:not(:first-of-type) {
    padding-top: 25px;
    margin-top: 25px;
    border-top: 2px dashed var(--gray60);
  }
  .p-flow__text {
    width: calc(100% - 330px);
    flex-direction: row;
    align-items: center;
  }
  .p-flow__title {
    width: 28%;
    min-width: 200px;
    aspect-ratio: 200/180;
    padding-bottom: 0;
    background: url("../../assets/img/bg-flow-title.png") no-repeat 0 0/cover;
  }
  .p-flow__title br {
    display: block;
  }
  .p-flow__desc {
    width: 67%;
    margin: 0 0 0 5%;
  }
  .p-flow__thumbnail {
    margin: 0 0 0 auto;
  }
}

.p-company__title {
  color: var(--primary-green);
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.6916409861rem + 1.8489984592vw, 1.875rem);
  font-weight: 400;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  margin: 0 auto;
}
.p-company__list {
  width: 100%;
  margin: 35px auto 0;
  border-bottom: 1px solid var(--border);
}
.p-company__list th, .p-company__list td {
  color: var(--black);
  font-weight: 400;
  text-align: left;
  letter-spacing: 0;
  padding: 15px 2%;
  border-top: 1px solid var(--border);
}
.p-company__list th {
  width: 25%;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7041602465rem + 0.4622496148vw, 1rem);
  background: #f8f8f8;
}
.p-company__list td {
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7041602465rem + 0.4622496148vw, 1rem);
}
.p-company__licence {
  margin: 65px auto 90px;
}
.p-company__licenceTitle {
  color: var(--primary-green);
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8291602465rem + 0.4622496148vw, 1.125rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0;
}
.p-company__licenceGrid {
  display: flex;
  flex-direction: column;
  margin: 20px auto 0;
}
.p-company__licenceList {
  width: 100%;
}
.p-company__licenceList tr:nth-child(even) th, .p-company__licenceList tr:nth-child(even) td {
  background: #ffffff;
}
.p-company__licenceList th, .p-company__licenceList td {
  color: var(--black);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 10px 2%;
  background: #f8f8f8;
}
.p-company__licenceList th {
  color: var(--black);
  text-align: left;
}
.p-company__licenceList td {
  color: var(--primary-green);
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .p-company__list th, .p-company__list td {
    letter-spacing: 0.05em;
  }
  .p-company__licenceGrid {
    flex-direction: row;
    align-items: flex-start;
    margin: 20px -3%;
  }
  .p-company__licenceList {
    width: 44%;
    margin: 0 3%;
  }
}

.p-recruit__inner {
  margin: 0 auto 100px;
}
.p-recruit__inner + * {
  margin-top: 85px !important;
}
.p-recruit__title {
  color: var(--primary-green);
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.6916409861rem + 1.8489984592vw, 1.875rem);
  font-weight: 400;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  margin: 0 auto;
}
.p-recruit__list {
  width: 100%;
  margin: 35px auto 0;
  border-bottom: 1px solid var(--gray40);
}
.p-recruit__list th, .p-recruit__list td {
  color: var(--black);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.05em;
  padding: 20px 2% 0;
  border-top: 1px solid var(--gray40);
  box-sizing: border-box;
}
.p-recruit__list th {
  width: 25%;
  padding: 20px 2%;
  background: #f8f8f8;
}
.p-recruit__list td h3 {
  color: var(--primary-green);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.05em;
  margin: 0 0 5px;
}
.p-recruit__list td p {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  text-align: justify;
  margin: 0 0 22px;
}
.p-message__title {
  color: var(--primary-green);
  position: relative;
  font-family: var(--japanese-serif);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.1166217257rem + 3.2357473035vw, 2.1875rem);
  font-weight: 700;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  padding: 0 0 80px;
  margin: 0 auto;
}
.p-message__title:after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: var(--primary-green);
  position: absolute;
  bottom: 30px;
  left: 50%;
}
.p-message__desc {
  color: var(--black);
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7041602465rem + 0.4622496148vw, 1rem);
  font-weight: 400;
  text-align: justify;
  line-height: 2.2;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  margin: 0 auto var(--space-md);
}
.p-message__desc br {
  display: none;
}
.p-message__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 5% 0;
  background: #EEF3F1;
}
.p-message__cardTitle {
  color: var(--black);
  font-family: var(--japanese-serif);
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.4874807396rem + 1.3867488444vw, 1.375rem);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
}
.p-message__cardTitle br {
  display: none;
}
.p-message__cardThumb {
  width: 55%;
  min-width: 250px;
  margin: var(--space-xs) 5% 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-message__title {
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  .p-message__desc {
    line-height: 2.3;
    text-align: center;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    margin: 0 auto 45px;
  }
  .p-message__desc br {
    display: block;
  }
  .p-message__card {
    flex-direction: row;
    padding: 50px 8% 180px;
  }
  .p-message__cardTitle {
    letter-spacing: 0.1em;
  }
  .p-message__cardTitle br {
    display: block;
  }
  .p-message__cardThumb {
    width: 42%;
    max-width: 388px;
    margin: 0;
    position: absolute;
    right: 5%;
    bottom: 0;
  }
}

.p-faq__content > * + * {
  margin-top: 85px;
}
.p-faq__title {
  color: var(--black);
  display: table;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.6916409861rem + 1.8489984592vw, 1.875rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  padding: 0 0;
  margin: 0 auto;
}
.p-faq__list {
  margin-top: 35px;
}
.p-faq__item + * {
  margin-top: -1px;
}
@media screen and (min-width: 1024px) {
  .p-faq__title {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
}

.staff__body {
  margin: 45px auto 0;
}
.staff__content > * + * {
  margin-top: 85px;
}
.staff__list {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.staff__item {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.staff__item:not(:first-of-type) {
  margin: 80px auto 0;
}
@media screen and (min-width: 768px) {
  .staff__body {
    max-width: 650px;
    margin: 45px auto 0;
  }
  .staff__list {
    flex-direction: row;
    flex-wrap: wrap;
    margin: -40px -16px;
  }
  .staff__item {
    width: calc(50% - 32px);
    min-width: calc(50% - 32px);
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 40px 16px;
  }
  .staff__item:not(:first-of-type) {
    margin: 40px 16px;
  }
}
@media screen and (min-width: 1024px) {
  .staff__body {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 40px auto 0;
  }
  .staff__list {
    margin: -40px -16px;
  }
  .staff__item {
    width: calc(33.3333% - 32px);
    min-width: calc(33.3333% - 32px);
    margin: 40px 16px;
  }
  .staff__item:not(:first-of-type) {
    margin: 40px 16px;
  }
}

.p-commitment__content {
  padding-left: 2%;
  padding-right: 2%;
}
.p-commitment__column:not(:first-of-type) {
  margin-top: var(--space-lg);
}
.p-commitment__column:nth-child(even) .p-commitment__title {
  background-color: var(--primary-orange);
}
.p-commitment__column:nth-child(even) .p-commitment__title::after {
  border-color: var(--primary-orange) transparent transparent transparent;
}
.p-commitment__column:nth-child(even) .p-commitment__text::before, .p-commitment__column:nth-child(even) .p-commitment__text::after {
  border-color: var(--primary-orange);
}
.p-commitment__column:nth-child(even) .p-commitment__note {
  color: var(--primary-orange);
}
.p-commitment__thumbnail {
  width: 100%;
  margin: 0 auto;
}
.p-commitment__title {
  color: var(--white);
  position: relative;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--japanese-maru-gothic);
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.4777542373rem + 1.6949152542vw, 1.5625rem);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  padding: 1.5em 0;
  margin: 1em auto 0;
  border-radius: 10px;
  background-color: var(--primary-green);
}
.p-commitment__title::after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 12px 13.5px 0 13.5px;
  border-color: var(--primary-green) transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.p-commitment__subtitle {
  color: #4A4A4A;
  line-height: 2;
  font-family: var(--japanese-maru-gothic);
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.4874807396rem + 1.3867488444vw, 1.375rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  text-align: center;
  margin: 1.2em auto 0;
}
.p-commitment__text {
  position: relative;
  padding: 1em 8%;
  margin-top: 1.2em;
}
.p-commitment__text::before {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  border-top: 2px solid var(--primary-green);
  border-left: 2px solid var(--primary-green);
  border-bottom: 2px solid var(--primary-green);
  border-radius: 10px 0 0 10px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.p-commitment__text::after {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  border-top: 2px solid var(--primary-green);
  border-right: 2px solid var(--primary-green);
  border-bottom: 2px solid var(--primary-green);
  border-radius: 0 10px 10px 0;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
}
.p-commitment__desc {
  color: #4A4A4A;
  line-height: 2.5;
  line-break: strict;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7041602465rem + 0.4622496148vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 0 auto;
}
.p-commitment__note {
  color: var(--primary-green);
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.6583204931rem + 0.9244992296vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 1.2em auto 0;
}
@media screen and (min-width: 768px) {
  .p-commitment__content {
    padding-left: 5%;
    padding-right: 5%;
  }
  .p-commitment__title {
    letter-spacing: 0.15em;
    text-indent: 0.15em;
  }
  .p-commitment__title::after {
    border-width: 18px 18.5px 0 18.5px;
  }
  .p-commitment__subtitle {
    letter-spacing: 0.15em;
    text-indent: 0.15em;
  }
  .p-commitment__text::before {
    border-top: 3px solid var(--primary-green);
    border-left: 3px solid var(--primary-green);
    border-bottom: 3px solid var(--primary-green);
  }
  .p-commitment__text::after {
    border-top: 3px solid var(--primary-green);
    border-right: 3px solid var(--primary-green);
    border-bottom: 3px solid var(--primary-green);
  }
}
@media screen and (min-width: 1024px) {
  .p-commitment__content {
    padding-left: 8.5%;
    padding-right: 8.5%;
  }
  .p-commitment__column:not(:first-of-type) {
    margin-top: 85px;
  }
  .p-commitment__title {
    width: auto;
    min-width: 600px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 1.2em 2.5em;
  }
  .p-commitment__desc {
    letter-spacing: 0.1em;
  }
}

.p-contact__content > * + * {
  margin-top: 65px;
}
.p-contact__title {
  color: var(--primary-green);
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9277734977rem + 0.3081664099vw, 1.125rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
  margin: 0 0 20px;
}
.p-contact__innerColumns {
  display: flex;
}
.p-contact__innerColumns > * {
  width: 45%;
  display: flex;
  flex-direction: column;
}
.p-contact__table {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.p-contact__table th, .p-contact__table td {
  color: var(--black);
  display: block;
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.05em;
  padding: 20px 0.5em;
  border-top: 1px solid var(--border);
}
.p-contact__table th {
  min-width: 250px;
  background: #f8f8f8;
}
.p-contact__table th .required {
  color: var(--white);
  float: right;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 2px 5px;
  box-sizing: border-box;
  border-radius: 3px;
  background: var(--primary-orange);
}
.p-contact__table td {
  width: 100%;
}
.p-contact__table td .prefix {
  min-width: 2em;
  vertical-align: sub;
  display: inline-block;
  line-height: 1;
  margin-right: 0.5em;
}
.p-contact__table td input[type=text], .p-contact__table td input[type=email], .p-contact__table td input[type=tel] {
  width: 100%;
  max-width: 522px;
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  padding: 0.4em 1em;
  border-radius: 3px;
  border: 1px solid var(--border);
}
.p-contact__table td input[type=text]:focus, .p-contact__table td input[type=email]:focus, .p-contact__table td input[type=tel]:focus {
  outline: none;
  border: none;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.1);
}
.p-contact__table td input[type=text].width-short, .p-contact__table td input[type=email].width-short, .p-contact__table td input[type=tel].width-short {
  max-width: 10em;
}
.p-contact__table td input[type=text]::-moz-placeholder, .p-contact__table td input[type=email]::-moz-placeholder, .p-contact__table td input[type=tel]::-moz-placeholder {
  color: var(--gray60);
}
.p-contact__table td input[type=text]::placeholder, .p-contact__table td input[type=email]::placeholder, .p-contact__table td input[type=tel]::placeholder {
  color: var(--gray60);
}
.p-contact__table td select {
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  padding: 0.8em 1em;
  border-radius: 3px;
  border: 1px solid var(--border);
}
.p-contact__table td select:focus {
  outline: none;
  border: none;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.1);
}
.p-contact__table td .flex {
  display: flex;
  align-items: center;
}
.p-contact__table td .flex > * {
  width: calc(50% - 0.5rem);
  display: flex;
  align-items: center;
}
.p-contact__table td .flex > * + * {
  margin-left: 1rem;
}
.p-contact__textarea {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  padding: 8px 2%;
  border-radius: 3px;
  border: 1px solid var(--border);
  vertical-align: top;
}
.p-contact__textarea:focus {
  outline: none;
  border: none;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.1);
}
.p-contact__button {
  margin-top: var(--space-md);
}
@media screen and (min-width: 1024px) {
  .p-contact__table th, .p-contact__table td {
    width: auto;
    display: table-cell;
    padding: 20px 2%;
  }
  .p-contact__table th {
    width: 250px;
  }
  .p-contact__table td .flex > * {
    width: auto;
  }
  .p-contact__innerColumns > * {
    width: 32%;
  }
  .p-contact__button {
    margin-top: 60px;
  }
}

.p-policy__column {
  display: flex;
  flex-direction: column;
}
.p-policy__column:not(:first-of-type) {
  margin-top: var(--space-md);
}
.p-policy__title {
  color: var(--primary-green);
  position: relative;
  line-height: 1.4;
  line-break: strict;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.9083204931rem + 0.9244992296vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0 0 0.8em 1.2em;
  border-bottom: 2px solid var(--primary-green);
}
.p-policy__title > span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-policy__content {
  line-height: 1.8;
  line-break: strict;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  margin-top: 1em;
}
.p-policy__content > * + * {
  margin-top: 1.2em;
}
.p-policy__content > p {
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: justify;
}
.p-policy__content > p a {
  display: inline-block;
  color: var(--accent);
  margin-left: 1em;
  transition: all 0.35s ease;
}
.p-policy__content > p a:hover {
  opacity: 0.5;
}
.p-policy__content > p span {
  display: inline-block;
  margin-left: 1em;
}
.p-policy__content > ol {
  padding-left: 1em;
}
.p-policy__content > ol li {
  list-style-type: decimal;
  list-style-position: outside;
}
.p-policy__content > ul li {
  position: relative;
  padding-left: 1em;
}
.p-policy__content > ul li::before {
  content: "・";
  display: block;
  width: 1em;
  height: 1em;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .p-policy__column:not(:first-of-type) {
    margin-top: 30px;
  }
  .p-policy__title {
    letter-spacing: 0.1em;
  }
  .p-policy__content > p {
    letter-spacing: 0.05em;
  }
}

.p-sitemap__list {
  max-width: 500px;
  display: flex;
  flex-wrap: wrap;
  margin: -1em auto;
}
.p-sitemap__list ul {
  width: 50%;
  margin: 1em 0;
}
.p-sitemap__list ul:not(:first-of-type) {
  margin-left: auto;
}
.p-sitemap__list ul > li {
  font-size: 15px;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.8291602465rem + 0.4622496148vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.p-sitemap__list ul > li:not(:first-of-type) {
  margin-top: 1em;
}
.p-sitemap__list ul > li a {
  color: var(--gray20);
  transition: opacity 0.35s ease;
}
.p-sitemap__list ul > li a:hover {
  opacity: 0.5;
}
.p-sitemap__list ul ul {
  width: 100%;
  margin-top: 1em;
}
.p-sitemap__list ul ul li {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8027734977rem + 0.3081664099vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.p-sitemap__list ul ul li:not(:first-of-type) {
  margin-top: 1em;
}
.p-sitemap__list ul ul li a {
  display: flex;
  align-items: center;
  transition: opacity 0.35s ease;
}
.p-sitemap__list ul ul li a:hover {
  opacity: 0.5;
}
.p-sitemap__list ul ul li a::before {
  content: "";
  display: block;
  width: 6px;
  height: 9px;
  margin-right: 0.5em;
  background: url("../../assets/img/ico-arrow-gray-sm.svg") no-repeat 0 0/cover;
}
@media screen and (min-width: 1024px) {
  .p-sitemap__list {
    max-width: 760px;
    margin: 0 auto;
  }
  .p-sitemap__list ul {
    width: auto;
    margin: 0;
  }
  .p-sitemap__list ul > li {
    letter-spacing: 0.05em;
  }
  .p-sitemap__list ul ul li {
    letter-spacing: 0.05em;
  }
}

.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;
  }
}
