@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Kosugi+Maru&family=Yusei+Magic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Kosugi+Maru&family=Yusei+Magic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Kosugi+Maru&family=Yusei+Magic&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

body {
  font-size: 16px;
  line-height: 1.5;
  color: #55000c;
  background-color: #fff;
  font-family: "Kosugi Maru", sans-serif;
  background-image: url(../../assets/img/common/sp-bg.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  body {
    background-image: url(../../assets/img/common/bg.webp);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

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

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

picture {
  display: block;
}

.acf-map {
  width: 100%;
  height: 100%;
}

.acf-map img {
  max-width: inherit !important;
}

body.no-scroll {
  position: fixed;
  left: 0;
  width: 100%;
  /* overflow: hidden; は position:fixed で不要になることが多い */
  /* height: 100%; は position:fixed で不要になることが多い */
}

.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 10px;
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}

input[type=date],
input[type=time],
input[type=datetime-local] {
  -webkit-appearance: none;
  height: 1em;
  /* iOSのSafariでの問題を解決するための初期設定 */
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  min-height: 50px;
  line-height: 1.5; /* 文字を垂直中央に配置 */
  width: 100%;
  min-width: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

input[type=date]::-webkit-date-and-time-value,
input[type=time]::-webkit-date-and-time-value {
  text-align: left;
}

.swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

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

@-webkit-keyframes fadeUpAnime {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: var(--fade-opacity, 1);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: var(--fade-opacity, 1);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.opacity-custom {
  --fade-opacity: 0.8;
}

.is-fadeUp-icon {
  -webkit-animation-name: fadeUpAnimeIcon;
          animation-name: fadeUpAnimeIcon;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeIcon {
  from {
    -webkit-transform: translate(-50%, -30%) translateY(30px);
            transform: translate(-50%, -30%) translateY(30px);
  }
  to {
    opacity: var(--fade-opacity, 1);
    -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
  }
}

@keyframes fadeUpAnimeIcon {
  from {
    -webkit-transform: translate(-50%, -30%) translateY(30px);
            transform: translate(-50%, -30%) translateY(30px);
  }
  to {
    opacity: var(--fade-opacity, 1);
    -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
  }
}
.js-fadeup-trigger {
  opacity: 0;
}
.js-fadeup-trigger:not(.c-heading__icon):not([class*=__icon]) {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.js-fadeup-trigger.c-heading__icon, .js-fadeup-trigger[class*=__icon] {
  -webkit-transform: translate(-50%, -30%) translateY(30px);
          transform: translate(-50%, -30%) translateY(30px);
}

@media screen and (min-width: 768px) {
  .c-breadcrumb {
    margin-top: 10px;
  }
}

.c-breadcrumb__inner {
  margin: 0 auto;
  width: 99%;
  padding-left: 4vw;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__inner {
    width: 75%;
    padding-inline: 20px;
    max-width: 1080px;
    padding-left: 0.0694444444vw;
  }
}

.c-breadcrumb__list {
  padding: 0;
  margin: 0;
  padding-right: 13px;
  word-break: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  height: 38px;
}

.c-breadcrumb__link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__link:hover {
    opacity: 0.7;
  }
}

.c-breadcrumb__arrow {
  width: 8px;
  height: 12px;
  margin: 0 6px;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__arrow {
    margin: 0 8px;
  }
}

.c-button {
  display: block;
  border: 2px solid #55000c;
  border-radius: 30px;
  background-color: #fff;
  position: relative;
  width: 100%;
  padding-block: 15px;
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 1;
  color: #55000c;
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .c-button {
    max-width: 240px;
    max-height: 60px;
    letter-spacing: 0.1em;
    padding-block: 19px;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .c-button:hover {
    color: #fff;
    background-color: #55000c;
    border-color: #55000c;
  }
  .c-button:hover::after {
    color: white;
  }
}
.c-button--pink {
  background-color: #ffedf0;
}
.c-button--yellow {
  background-color: #fff7b8;
}

.c-button::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 16px;
  font-weight: 900;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #55000c;
}

.c-button--form {
  display: block;
  border: 2px solid #55000c;
  border-radius: 30px;
  background-color: #fff;
  width: 100%;
  padding-block: 15px;
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 1;
  cursor: pointer;
  color: #55000c;
  font-size: 1.125rem;
  width: 100%;
  max-width: 300px;
  min-height: 60px;
}
.c-card-komorebi {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-card-komorebi {
    border-radius: 20px;
  }
}

.c-card-komorebi__link {
  display: block;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  min-height: 280px;
  max-height: 280px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-card-komorebi__link {
    min-height: 280px;
  }
  .c-card-komorebi__link:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .c-card-komorebi__link:hover .c-card-komorebi__image > img {
    -webkit-transform: translateY(-50%) scale(1.05);
            transform: translateY(-50%) scale(1.05);
  }
}

.c-card-komorebi__image {
  position: relative;
  padding-top: 44.25%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-card-komorebi__image {
    padding-top: 42.25%;
  }
}

.c-card-komorebi__image > img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-card-komorebi__body {
  padding: 15px 15px 10px;
}
@media screen and (min-width: 768px) {
  .c-card-komorebi__body {
    padding: 15px 12px 10px;
  }
}

.c-card-komorebi__body > *:first-child {
  margin-top: 0;
}

.c-card-komorebi__title {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #333;
}

.c-card-komorebi__text {
  color: #333;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-top: 16px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  white-space: normal;
}

.c-card-komorebi__date {
  font-size: 0.875rem;
  position: absolute;
  bottom: 11px;
  right: 12px;
  letter-spacing: 0.04em;
  display: block;
  color: #333;
}

.c-heading {
  text-align: center;
}

.c-heading__icon {
  margin: 0 auto;
  background: #fff7b8;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-heading__icon {
    width: 108px;
    height: 108px;
  }
}
.c-heading__icon img {
  width: 53px;
  height: 53px;
}
@media screen and (min-width: 768px) {
  .c-heading__icon img {
    width: 72px;
    height: 72px;
  }
}
.c-heading__icon--large {
  width: 108px;
  height: 108px;
}
.c-heading__icon--large img {
  width: 72px;
  height: 72px;
}

.c-heading__subtitle {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  font-family: "Jost", sans-serif;
}

/* letter */
.c-letters {
  background-image: url(../../assets/img/common/pinktentenback-sp.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .c-letters {
    padding-bottom: 120px;
  }
}

.c-letters__line-1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

.c-letters__line-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: 100%;
}

.c-letters__icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-letters__icon img {
  width: 59px;
  height: 59px;
}
@media screen and (min-width: 768px) {
  .c-letters__icon img {
    width: 80px;
    height: 80px;
  }
}

.c-letters__inner {
  padding-top: 48px;
}

.c-letters__head {
  text-align: center;
}

.c-letters__title {
  margin-top: 3px;
  font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-letters__title {
    margin-top: 17px;
  }
}

.c-letters__subtitle {
  margin-top: 10px;
}

.c-letters__list {
  margin-top: 61px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .c-letters__list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-top: 43px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
    gap: 47px 37px;
  }
}

.c-letters__item {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-letters__item {
    min-width: 320px;
    max-height: 280px;
    min-height: 280px;
  }
}

.c-letters__button-wrap {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .c-letters__button-wrap {
    margin-top: 64px;
  }
}

.c-letters__button {
  display: block;
  margin: 0 auto;
  border: 2px solid #55000c;
}
@media screen and (min-width: 768px) {
  .c-letters__button {
    font-size: 1.125rem;
    line-height: 1;
  }
}

.c-list-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25px;
  width: 154px;
  background: #fff;
  border-radius: 30px;
  border: 2px solid #55000c;
  padding: 0 24px;
  height: 60px;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.c-list-link__text {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #55000c;
  line-height: 1;
  text-align: center;
}
.c-list-link__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 12px;
  height: 19.2px;
  background: #fff;
  border-radius: 4px;
}
.c-list-link__icon .fa-chevron-right {
  color: #55000c;
  font-size: 16px;
}
.c-list-link.js-list-link {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-list-link:hover {
    background: #fff7b8;
  }
}

.c-page-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99;
  width: 12.8%;
  aspect-ratio: 1;
  min-width: 40px;
  max-width: 58px;
}
@media screen and (min-width: 768px) {
  .c-page-top {
    right: 34px;
    bottom: 29px;
    width: 5%;
    max-width: 72px;
  }
}
.c-page-top__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: opacity 0.3s, background-color 0.3s;
  transition: opacity 0.3s, background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .c-page-top__link:hover {
    background-color: #fff7b8;
  }
  .c-page-top__link:hover::after {
    -webkit-transform: translate(-50%, -60%) rotate(270deg);
            transform: translate(-50%, -60%) rotate(270deg);
  }
}
.c-page-top__link::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(270deg);
          transform: translate(-50%, -50%) rotate(270deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: clamp(1.25rem, 2.7777777778vw, 2.5rem);
  color: #55000c;
}
@media screen and (min-width: 768px) {
  .c-page-top__link::after {
    top: 50%;
  }
}

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

.c-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-pagination__list {
    gap: 7px;
  }
}

.c-pagination__item {
  list-style: none;
  text-align: center;
  width: 36px;
  height: 36px;
}

.c-pagination__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 1rem;
  color: #ef8f9c;
  background-color: #fff;
  border: 1px solid #ef8f9c;
  -webkit-box-shadow: 0 1px 4px rgba(85, 0, 12, 0.06);
          box-shadow: 0 1px 4px rgba(85, 0, 12, 0.06);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-pagination__link:hover {
    background-color: #ef8f9c;
    color: white;
  }
}

.c-pagination__link.c-pagination__link--active {
  background-color: #ef8f9c;
  color: white;
}

.c-pagination__text {
  margin-right: 4px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-pagination__text {
    font-size: 1rem;
  }
}

.c-pagination__arrow {
  font-size: 12px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-pagination__arrow {
    font-size: 14px;
  }
}

.c-sidebar {
  margin-top: 40px;
  padding-bottom: 76px;
}
@media screen and (min-width: 768px) {
  .c-sidebar {
    margin-top: 60px;
    padding: 0;
    border-left: 1px solid #55000c;
    min-width: 304px;
  }
}

.c-sidebar {
  width: 100%;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .c-sidebar {
    width: 280px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0px;
  }
}

.c-sidebar__inner {
  padding: 12px;
  border-top: 1px solid #55000c;
}
@media screen and (min-width: 768px) {
  .c-sidebar__inner {
    padding: 10px 3px 18px 24px;
    border-top: none;
  }
}

.c-sidebar__title {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-sidebar__title {
    font-size: 24px;
    letter-spacing: 0.2em;
  }
}

.c-sidebar__archive {
  margin-top: 10px;
}

.c-sidebar__year-group {
  margin-bottom: 10px;
}
.c-sidebar__year-group:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-sidebar__year-group:last-child {
    margin-top: -4px;
  }
}

.c-sidebar__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-left: 4px;
}

.c-sidebar__year-marker {
  display: block;
  width: 4px;
  height: 21px;
  background-color: #ef8f9c;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .c-sidebar__year-marker {
    height: 24px;
  }
}

.c-sidebar__year-text {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-sidebar__year-text {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}

.c-sidebar__months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 16px;
  padding-left: 8px;
  margin-top: 6px;
}

.c-sidebar__month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 12px;
  background-color: #fff;
  border-radius: 8px;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  font-size: clamp(0.75rem, 0.9722222222vw, 0.875rem);
}
@media screen and (min-width: 768px) {
  .c-sidebar__month:hover {
    background-color: #f5f5f5;
  }
}

.l-footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#fffbe6), to(#fff6c8));
  background: -webkit-linear-gradient(#fffbe6, #fff6c8);
  background: linear-gradient(#fffbe6, #fff6c8);
}

.l-footer__inner {
  padding-block: 48px 12px;
  padding-inline: 25px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    max-width: 1080px;
  }
}

.l-footer__logo {
  text-align: center;
  width: 200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    width: 240px;
  }
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .l-footer__link {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-footer__link:hover {
    opacity: 0.8;
  }
}

.l-footer__nav {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    margin-top: 46px;
  }
}

.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 17px 0px;
  max-width: 345px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-list {
    margin-top: 40px;
    max-width: 1080px;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 18px 27px;
  }
}

.l-footer__nav-item:nth-child(1), .l-footer__nav-item:nth-child(3), .l-footer__nav-item:nth-child(5), .l-footer__nav-item:nth-child(7) {
  min-width: 174px;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-item:nth-child(1), .l-footer__nav-item:nth-child(3), .l-footer__nav-item:nth-child(5), .l-footer__nav-item:nth-child(7) {
    min-width: auto;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__nav-item:nth-child(1), .l-footer__nav-item:nth-child(2), .l-footer__nav-item:nth-child(6) {
    width: 14%;
    max-width: 140px;
  }
  .l-footer__nav-item:nth-child(3) {
    width: 16%;
    max-width: 163px;
  }
  .l-footer__nav-item:nth-child(4), .l-footer__nav-item:nth-child(5) {
    width: 9%;
    max-width: 92px;
  }
}

.l-footer__nav-link {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-link {
    font-size: 1rem;
  }
  .l-footer__nav-link:hover {
    color: #55000c;
  }
  .l-footer__nav-link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }
  .l-footer__nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #55000c;
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
}
.l-footer__nav-link--small {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-link--small {
    font-size: 1rem;
  }
}

.l-footer__copyright {
  margin-top: 42px;
  font-size: clamp(0.75rem, 0.9722222222vw, 0.875rem);
  letter-spacing: 0.1em;
  display: block;
  text-align: center;
}

.l-header {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding-top: 5.59%;
  }
}
@media screen and (min-width: 1200px) {
  .l-header {
    padding-top: 6.5972222222%;
  }
}

.l-header__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    max-width: 1280px;
    width: 82%;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__inner {
    width: 88.8888888889%;
  }
}

.l-header__nav {
  display: none;
}
@media screen and (min-width: 950px) {
  .l-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .l-header__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 12.890625%;
    position: relative;
    z-index: 50;
  }
  .l-header__item:not(:nth-child(4)) {
    border-left: 1px dotted #55000c;
  }
  .l-header__item:nth-child(3), .l-header__item:last-child {
    border-right: 1px dotted #55000c;
  }
  .l-header__item:not(:nth-child(4))::before, .l-header__item:not(:nth-child(4))::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #55000c;
    z-index: 50;
  }
  .l-header__item:not(:nth-child(4))::before {
    top: 0;
    left: -5px;
  }
  .l-header__item:not(:nth-child(4))::after {
    bottom: 0;
    left: -5px;
  }
}

@media screen and (min-width: 768px) {
  .l-header__link {
    padding-top: 12px;
    width: 100%;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .l-header__link:hover {
    opacity: 0.7;
  }
}

.l-header__item-sepa::before, .l-header__item-sepa::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #55000c;
  z-index: 50;
}
.l-header__item-sepa::before {
  top: 0;
  right: -5px;
}
.l-header__item-sepa::after {
  bottom: 0;
  right: -5px;
}

.l-header__item--center {
  width: 21.875%;
  min-height: 100%;
}

.l-header__icon {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__icon img {
  max-width: 48px;
  max-height: 48px;
  width: 32%;
  height: 32%;
}

.l-header__icon {
  width: 100%;
  height: auto;
}

.l-header__icon--logo img {
  max-width: 280px;
  max-height: 89px;
  width: 100%;
  height: 100%;
}

.l-header__label {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-header__label {
    margin-top: 3px;
  }
}

.l-header__label-ja {
  display: block;
  font-size: clamp(0.625rem, 1.1111111111vw, 1rem);
  font-family: "Kosugi Maru", sans-serif;
  letter-spacing: 0.04em;
  color: #55000c;
}

.l-header__label-en {
  font-size: clamp(0.5rem, 0.6944444444vw, 0.625rem);
  font-family: "Jost", sans-serif;
  letter-spacing: 0.1em;
  color: #55000c;
}
@media screen and (min-width: 768px) {
  .l-header__label-en {
    display: inline-block;
    vertical-align: top;
  }
}

.l-header__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media screen and (min-width: 950px) {
  .l-header__nav-sp {
    display: none;
  }
}

.l-header__logo-sp {
  position: relative;
  text-align: center;
  display: block;
  padding-top: 12.8%;
  z-index: 51;
  height: auto;
  margin: 0 auto;
  width: 53.3333333333%;
}
.l-header__logo-sp img {
  width: 100%;
  height: auto;
}

.l-header__menu-text {
  font-size: 0.625rem;
  margin-top: -23px;
  display: block;
  letter-spacing: 0.05em;
  font-weight: 900;
  font-family: "Jost", sans-serif;
}

.l-header__menu-btn {
  position: absolute;
  top: 12px;
  right: 3.2%;
  z-index: 100;
  width: 48px;
  height: 48px;
  color: #55000c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 1px solid #55000c;
}

.l-header__menu-icon {
  position: relative;
  width: 100%;
  height: 100%;
}

.l-header__menu-bar {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 1px;
  background-color: #55000c;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

/* 3本線の位置 */
.l-header__menu-bar:nth-child(1) {
  top: 12px;
}

.l-header__menu-bar:nth-child(2) {
  top: 18px;
}

.l-header__menu-bar:nth-child(3) {
  top: 24px;
}

/* メニューオープン時の変化 */
.is-open .l-header__menu-bar:nth-child(1) {
  top: 18px;
  -webkit-transform: translateX(-50%) rotate(25deg);
          transform: translateX(-50%) rotate(25deg);
}

.is-open .l-header__menu-bar:nth-child(2) {
  opacity: 0;
}

.is-open .l-header__menu-bar:nth-child(3) {
  top: 17px;
  -webkit-transform: translateX(-50%) rotate(-25deg);
          transform: translateX(-50%) rotate(-25deg);
}

.l-header__drawer {
  display: none;
  padding: 150px 15px 15px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  margin-top: 4px;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
  position: fixed;
  top: 63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 721px;
  z-index: 100;
  border-radius: 40px;
  max-width: 345px;
}

.l-header__drawer.is-open {
  display: block;
}

.l-header__drawer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 31px 16px;
  width: 100%;
  max-width: 400px;
}

.l-header__drawer-item {
  list-style: none;
}

.l-header__drawer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 5px 10px;
  text-decoration: none;
  border: 1.5px solid #4b0d0d;
  border-radius: 12px;
  color: inherit;
  background: #fff;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.l-header__drawer-link img {
  min-width: 48px;
  min-height: 48px;
}

.l-header__drawer-link img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__drawer-label {
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.l-header__drawer-en {
  margin-top: -1px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  font-family: "Jost", sans-serif;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-10px);
            transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-10px);
            transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
.l-page-heading {
  width: 92%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-inline: auto;
  margin-top: 75px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-page-heading {
    width: 75%;
  }
}

.l-page-heading__inner {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-page-heading__inner {
    max-width: 1080px;
    margin: 0 auto;
  }
}

.l-page-heading__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.l-page-heading__title {
  font-size: clamp(1.25rem, 2.2222222222vw, 2rem);
  white-space: nowrap;
}

.l-page-heading__subtitle {
  font-size: 0.625rem;
  margin-top: 6px;
}

.p-about__heading {
  margin-top: 75px;
  margin-inline: auto;
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-about__heading {
    margin-top: 85px;
  }
}
@media screen and (min-width: 1500px) {
  .p-about__heading {
    margin-top: 119px;
  }
}

.p-about__heading__title {
  white-space: nowrap;
}

.p-about-welcome {
  margin-top: 74px;
}
@media screen and (min-width: 768px) {
  .p-about-welcome {
    text-align: center;
    margin-top: 112px;
  }
}

.p-about-welcome__title {
  font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
  margin-top: 11px;
}

.p-about-welcome__subtitle {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .p-about-welcome__subtitle {
    margin-top: 14px;
  }
}

.p-about-welcome__body {
  margin-top: 46px;
  line-height: 3;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  letter-spacing: 0.2em;
  margin-top: 46px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .p-about-welcome__body {
    max-width: 1080px;
    padding-inline: 0;
    margin-inline: auto;
  }
}

.p-about-schedule {
  margin-top: 163px;
  padding-bottom: 81px;
}
@media screen and (min-width: 768px) {
  .p-about-schedule {
    margin-top: 120px;
    padding-bottom: 120px;
  }
}

.p-about-schedule__inner {
  margin-top: 29px;
}
.p-about-schedule__head {
  text-align: center;
  margin-bottom: 32px;
}

.p-about-schedule__title {
  font-size: 1.5rem;
  margin-top: 13px;
}

.p-about-schedule__subtitle {
  margin-top: 11px;
}

.p-about-schedule__wrapper {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 60px 12px 60px;
  max-width: 345px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-about-schedule__wrapper {
    padding: 57px 40px;
    border-radius: 40px;
    max-width: 1080px;
  }
}

.p-about-schedule__list {
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-about-schedule__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
  }
}

.p-about-schedule__card {
  overflow: hidden;
  border-radius: 16px;
  background-color: #fff1f5;
  padding: 12px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-about-schedule__card {
    width: 100%;
    max-width: 320px;
  }
}

.p-about-schedule__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 20px;
  max-height: 180px;
}
@media screen and (min-width: 768px) {
  .p-about-schedule__img {
    max-width: 296px;
    min-height: 180px;
    height: 180px;
  }
}
.p-about-schedule__img img {
  -o-object-position: center;
     object-position: center;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.p-about-schedule__caption {
  margin-top: 8px;
}

.p-about-schedule__month {
  font-size: 1.25rem;
  margin-top: 9px;
}

.p-about-schedule__event {
  font-size: 0.875rem;
  margin-top: 4px;
}

.p-about-schedule__note {
  margin-top: 15px;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-about-schedule__note {
    margin-top: 29px;
  }
}

.c-footer-contact {
  background: url("../../assets/img/common/contact-footer-sp.webp") no-repeat top/cover;
  padding-block: 80px 92px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-footer-contact {
    padding-block: 80px 72px;
    background-image: url("../../assets/img/common/contact-footer.webp");
  }
}

.c-footer-contact__inner {
  margin: 0 auto;
}

.c-footer-contact__content {
  background: rgba(255, 255, 255, 0.85);
  padding: 64px 20px 64px;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 40px;
}
@media screen and (min-width: 768px) {
  .c-footer-contact__content {
    padding: 64px;
    border-radius: 40px;
  }
}

.c-footer-contact__icon img {
  width: 64px;
}

.c-footer-contact__title {
  margin-top: 11px;
  font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
  letter-spacing: 0.1em;
}

.c-footer-contact__subtitle {
  margin-top: 9px;
}

.c-footer-contact__text {
  margin-top: 41px;
  line-height: 1.5;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-footer-contact__text {
    margin-top: 54px;
  }
}

.c-footer-contact__buttons {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
}
@media screen and (min-width: 768px) {
  .c-footer-contact__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 516px;
    margin: 0 auto;
    margin-top: 43px;
  }
}

.c-footer-contact__button {
  margin: 0 auto;
  width: 240px;
  max-width: 240px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  padding-block: 19px;
}

.p-komorebi-main__heading {
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-komorebi-main__heading {
    margin-top: 93px;
  }
}
@media screen and (min-width: 1500px) {
  .p-komorebi-main__heading {
    margin-top: 119px;
  }
}

.p-komorebi__breadcrumb {
  margin-top: -7px;
}

.p-komorebi-main {
  padding-top: 87px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-main {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1350px;
    margin: 0 auto;
    gap: 32px;
    padding-bottom: 116px;
    padding-inline: 15px;
    margin-top: 116px;
  }
  .p-komorebi-main--single {
    margin-top: 113px;
  }
}

.p-komorebi__breadcrumb__inner {
  width: 99%;
  margin-top: 9px;
}
@media screen and (min-width: 768px) {
  .p-komorebi__breadcrumb__inner {
    width: 75%;
  }
}

.p-komorebi-search,
.p-komorebi-letter {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-komorebi-letter {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-komorebi-main__left {
    width: calc(73% - 5px);
  }
}

.p-komorebi-search {
  padding-bottom: 11px;
  border-bottom: 1px solid #55000c;
}
@media screen and (min-width: 768px) {
  .p-komorebi-search {
    padding-bottom: 12px;
  }
}

.p-komorebi-search__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-search__heading {
    gap: 10px;
  }
}

.p-komorebi-search__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-komorebi-search__icon img {
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-search__icon img {
    width: 20px;
    height: 20px;
  }
}

.p-komorebi-search__title {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #55000c;
}
@media screen and (min-width: 768px) {
  .p-komorebi-search__title {
    font-size: 24px;
    letter-spacing: 0.1em;
  }
}

.p-komorebi-search__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-search__filters {
    margin-top: 20px;
    margin-top: 7px;
  }
}

.p-komorebi-search__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  height: 36px;
  cursor: pointer;
  width: 100%;
  max-width: 240px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-komorebi-search__filter--prefecture {
    width: 71%;
    width: 240px;
  }
  .p-komorebi-search__filter:hover {
    background-color: #f5f5f5;
  }
}
.p-komorebi-search__filter select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding-right: 24px;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #333;
  outline: none;
}
@media screen and (min-width: 768px) {
  .p-komorebi-search__filter select {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}

.p-komorebi-search__filter-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 71%;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-search__filter-button {
    width: 240px;
  }
}

.p-komorebi-search__filter-text {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #333;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-komorebi-search__filter-text {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}

.p-komorebi-search__filter-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.p-komorebi-search__filter-icon img {
  width: 13px;
  height: 8px;
}

.p-komorebi-search__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #55000c;
  border-radius: 8px;
  min-width: 36px;
  height: 36px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-komorebi-search__button {
    width: 36px;
  }
  .p-komorebi-search__button:hover {
    opacity: 0.8;
  }
}

.p-komorebi-search__button-text {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  padding: 0 8px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-search__button-text {
    font-size: 16px;
  }
}

.p-komorebi-search__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-komorebi-search__svg {
  fill: #fff;
}

.p-komorebi-letter__inner {
  padding-inline: 22px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-komorebi-letter__inner {
    padding-inline: 0;
  }
}

.p-komorebi-letter__list {
  margin-top: 33px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-letter__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 32px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    justify-items: center;
    gap: 30px 25px;
  }
}

@media screen and (min-width: 768px) {
  .p-komorebi-letter__item {
    max-width: 300px;
    min-width: 300px;
    min-height: 280px;
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-komorebi-letter__card__image {
    padding-top: 45.25%;
  }
}

.p-komorebi-letter__card-body {
  padding: 15px 15px 23px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-letter__card-body {
    padding: 15px 11px 14px;
  }
}

.p-komorebi-letter__card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  word-break: break-all;
  white-space: normal;
}

.p-komorebi-letter__card-text {
  margin-top: 12px;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
  white-space: normal;
  line-height: 1.5;
  max-height: 3em;
}

.p-komorebi-letter__card-date {
  margin-top: 7px;
  bottom: 25px;
  font-size: clamp(0.75rem, 0.9722222222vw, 0.875rem);
}
@media screen and (min-width: 768px) {
  .p-komorebi-letter__card-date {
    margin-top: 13px;
    bottom: 15px;
  }
}

.p-komorebi-letter__pagination {
  margin-top: 31px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-letter__pagination {
    margin-top: 30px;
  }
}

.p-news__heading {
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-news__heading {
    margin-top: 90px;
  }
}
@media screen and (min-width: 1500px) {
  .p-news__heading {
    margin-top: 119px;
  }
}

@media screen and (min-width: 768px) {
  .p-news__breadcrumb {
    margin-top: 4px;
  }
}

.p-news__breadcrumb__inner {
  width: 99.27%;
}
@media screen and (min-width: 768px) {
  .p-news__breadcrumb__inner {
    width: 75.27%;
  }
}

.p-news__filter-button {
  display: inline-block;
  padding: 5px 15px;
  background: #fff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 4px rgba(85, 0, 12, 0.06);
          box-shadow: 0 1px 4px rgba(85, 0, 12, 0.06);
  border: 1px solid #ef8f9c;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  cursor: pointer;
  letter-spacing: 0.1em;
  color: #ef8f9c;
}
.p-news__filter-button--prefecture {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-news__filter-button {
    font-size: 1rem;
    max-width: 200px;
    padding: 5px 15px;
  }
  .p-news__filter-button:hover {
    background-color: #ef8f9c;
    color: white;
  }
  .p-news__filter-button--prefecture {
    max-width: 150px;
  }
}

.p-news__filter-buttons__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-top: 79px;
}
@media screen and (min-width: 768px) {
  .p-news__filter-buttons__inner {
    gap: 6px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 112px;
  }
}
.p-news__filter-buttons__inner--prefecture {
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-news__filter-buttons__inner--prefecture {
    gap: 12px;
  }
}

.p-news__filter-button--active {
  background-color: #ef8f9c;
  color: white;
}

.p-news-content {
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .p-news-content {
    padding-bottom: 119px;
  }
}
.p-news-content--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-news-content--pc {
    padding-block: 7px;
  }
}
@media screen and (min-width: 768px) {
  .p-news-content--sp {
    display: none;
  }
  .p-news-content--pc {
    display: block;
  }
}

.p-news-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-news-content__list {
    margin-top: 56px;
  }
}

.p-news-content__category-icon {
  width: 28.8px;
  height: 28.8px;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-news-content__category-icon {
    width: 48px;
    height: 48px;
  }
}

.p-news-content__card {
  border-bottom: 1px solid #333333;
  padding-bottom: 4px;
}

.p-news-content__link {
  text-decoration: none;
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  .p-news-content__link:hover {
    opacity: 0.7;
  }
}

.p-news-content__body {
  padding: 12px 0;
}
@media screen and (min-width: 768px) {
  .p-news-content__body {
    padding-block: 11px 5px;
  }
}

.p-news-content__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 10px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .p-news-content__meta {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 23px;
  }
}

.p-news-content__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 7.2px;
  font-size: 0.675rem;
  color: #ffffff;
  gap: 10px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-news-content__category {
    font-size: 1.125rem;
    min-width: 120px;
    height: 120px;
  }
}

.p-news-content__category--pink {
  background-color: #ffc9de;
}

.p-news-content__category--blue {
  background-color: #a4c8ff;
}

.p-news-content__category--yellow {
  background-color: #ffc657;
}

.p-news-content__category i {
  font-size: 24px;
}

.p-news-content__date {
  font-family: "Kosugi Maru", sans-serif;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-news-content__date--sp {
    display: none;
  }
}

.p-news-content__title {
  font-size: clamp(1.125rem, 1.3888888889vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #55000c;
}
@media screen and (min-width: 768px) {
  .p-news-content__title {
    letter-spacing: 0.04em;
  }
  .p-news-content__title--pc {
    margin-top: 15px;
  }
}

.p-news-content__excerpt {
  font-family: "Kosugi Maru", sans-serif;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333333;
  margin-top: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 3行まで表示 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-news-content__pagination {
  margin-top: 32px;
}

.p-news-content__pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.p-news-content__pagination-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ef8f9c;
  border-radius: 8px;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  background-color: #ffffff;
  text-decoration: none;
  color: #ef8f9c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .p-news-content__pagination-link:hover {
    background-color: #ef8f9c;
    color: #ffffff;
  }
}

.p-news-content__pagination-link--active {
  background-color: #ef8f9c;
  color: #ffffff;
}

.p-news-content__pagination-link--next i {
  font-size: 12.8px;
}

.p-news__pagination {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-news__pagination {
    margin-top: 29px;
  }
}

.p-contact-heading {
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-contact-heading {
    margin-top: 88px;
  }
}
@media screen and (min-width: 1500px) {
  .p-contact-heading {
    margin-top: 119px;
  }
}

.p-contact-intro {
  margin-top: 73px;
}
@media screen and (min-width: 768px) {
  .p-contact-intro {
    margin-top: 110px;
  }
}

.p-contact-breadcrumb__inner {
  width: 99%;
}
@media screen and (min-width: 768px) {
  .p-contact-breadcrumb__inner {
    width: 78%;
    margin: 0 auto;
  }
}

.p-contact-intro__text {
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  color: #333333;
}

.p-contact-intro__text-bottom {
  display: inline-block;
  margin-top: 13px;
  text-decoration: underline;
  text-decoration-color: #333333;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.p-contact-form {
  padding: 48px 10px 80px;
}
@media screen and (min-width: 768px) {
  .p-contact-form {
    padding: 48px 10px 115px;
  }
}

.p-contact-form__inner {
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 47px 20px 49px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-contact-form__inner {
    max-width: 1080px;
    padding: 64px 20px 62px;
    margin: 0 auto;
  }
}

.p-contact-form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__content {
    max-width: 800px;
    margin: 0 auto;
    gap: 16px;
  }
}

.p-contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 13%;
  }
}

.p-contact-form__label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__label-wrap {
    min-width: 231px;
  }
}

.p-contact-form__label {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #55000c;
}

.p-contact-form__required {
  display: inline-block;
  padding: 2px 8px;
  background-color: #ef8f9c;
  color: #ffffff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.p-contact-form__optional {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 8px;
  background-color: #333333;
  color: #ffffff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__optional {
    font-size: 14px;
  }
}

.p-contact-form__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact-form__radio-group {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-contact-form__radio-group--beside {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__radio-group--beside {
    gap: 30px;
  }
}

.p-contact-form__radio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__radio-item {
    gap: 16px;
  }
}

.p-contact-form__radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #333333;
  border-radius: 50%;
  position: relative;
}
.p-contact-form__radio:checked {
  background-color: #55000c;
  border-color: #55000c;
}
.p-contact-form__radio:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
}
.p-contact-form__radio-label {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-contact-form__radio-label {
    font-size: 16px;
  }
}

.p-contact-form__checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact-form__checkbox-group {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-contact-form__checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__checkbox-item {
    gap: 16px;
  }
}

input[type=checkbox].p-contact-form__checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #55000c;
  background-color: #fff;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  cursor: pointer;
  margin-right: 8px;
  top: 50%;
  -webkit-transform: translateY(-146%);
          transform: translateY(-146%);
  left: 0;
}
@media screen and (min-width: 768px) {
  input[type=checkbox].p-contact-form__checkbox {
    top: 119%;
    left: -32px;
  }
}
input[type=checkbox].p-contact-form__checkbox:checked {
  background-color: #55000c;
  border-color: #55000c;
}
input[type=checkbox].p-contact-form__checkbox:checked::after {
  content: "";
  position: absolute;
  display: block;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
input[type=checkbox].p-contact-form__checkbox:focus-visible {
  outline: 2px solid #55000c;
  outline-offset: 2px;
}

.p-contact-form__checkbox-label {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-contact-form__checkbox-label {
    font-size: 16px;
  }
}

.p-contact-form__input-wrap {
  width: 100%;
}
.p-contact-form__input {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #333333;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333333;
}
.p-contact-form__input::-webkit-input-placeholder {
  color: #999999;
}
.p-contact-form__input::-moz-placeholder {
  color: #999999;
}
.p-contact-form__input:-ms-input-placeholder {
  color: #999999;
}
.p-contact-form__input::-ms-input-placeholder {
  color: #999999;
}
.p-contact-form__input::placeholder {
  color: #999999;
}
.p-contact-form__textarea-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact-form__textarea-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-contact-form__textarea {
  width: 100%;
  height: 200px;
  padding: 8px 12px;
  border: 1px solid #333333;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333333;
  resize: vertical;
}
.p-contact-form__textarea::-webkit-input-placeholder {
  color: #999999;
}
.p-contact-form__textarea::-moz-placeholder {
  color: #999999;
}
.p-contact-form__textarea:-ms-input-placeholder {
  color: #999999;
}
.p-contact-form__textarea::-ms-input-placeholder {
  color: #999999;
}
.p-contact-form__textarea::placeholder {
  color: #999999;
}
.p-contact-form__textarea--other {
  min-height: 100px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__textarea {
    font-size: 16px;
  }
}

.p-contact-form__privacy {
  margin-top: -6px;
  position: relative;
}
.p-contact-form__privacy .wpcf7-form-control-wrap {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__privacy .wpcf7-form-control-wrap {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-contact-form__privacy .wpcf7-form-control-wrap {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-form__privacy {
    margin-top: -3px;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-form__privacy .p-contact-form__required {
    margin-right: 22%;
  }
}
.p-contact-form__privacy .wpcf7-list-item {
  margin: 0 0 0 2em;
}
@media screen and (min-width: 768px) {
  .p-contact-form__privacy .wpcf7-list-item {
    margin: 0;
  }
}

.p-contact-form__privacy-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__privacy-check {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 22%;
  }
}

.p-contact-form__button-wrap {
  position: relative;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  max-width: 300px;
  max-height: 60px;
  margin: 29px auto 0;
  width: 100%;
}
.p-contact-form__button-wrap .wpcf7-spinner {
  display: none;
}
.p-contact-form__button-wrap::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #55000c;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-contact-form__button-wrap {
    width: 300px;
    height: 60px;
  }
  .p-contact-form__button-wrap:hover::after {
    color: white;
  }
  .p-contact-form__button-wrap:hover .c-button--form {
    background-color: #55000c;
    border-color: #55000c;
    color: white;
  }
}

.p-contact-form__item--address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__item--address {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-form__item--address .p-contact-form__label-wrap {
    min-width: 39%;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-form__item--address .p-contact-form__input {
    width: 100%;
  }
}

.p-contact-form__address-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
}
.p-contact-form__address-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact-form__address-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 9%;
  }
  .p-contact-form__address-row:last-child {
    margin-bottom: 0;
  }
}

.p-contact-form__address-label {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  width: 100%;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-contact-form__address-label {
    max-width: 120px;
    min-width: 120px;
  }
}

.p-contact-form__input-wrap--zip {
  width: 100%;
}
.p-contact-form__input-wrap--prefecture {
  width: 100%;
}
.p-contact-form__input-wrap--city,
.p-contact-form__input-wrap--street {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact-form__input-wrap--city,
  .p-contact-form__input-wrap--street {
    width: calc(100% - 120px);
  }
}

@media screen and (min-width: 768px) {
  .p-contact-form__button:hover {
    background-color: #ffffff;
    color: #55000c;
  }
}

.p-contact-confirm {
  padding-bottom: 84px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm {
    padding-bottom: 120px;
    margin-top: 120px;
  }
}

.p-contact-confirm__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 768px) {
  .p-contact-confirm__inner {
    padding: 0 40px;
  }
}

.p-contact-confirm__container {
  background-color: #fff;
  border-radius: 30px;
  padding: 45px 16px 60px;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__container {
    padding: 63px 0 60px;
    border-radius: 40px;
  }
}

.p-contact-confirm__form {
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__form {
    padding-inline: 15px;
  }
}

.p-contact-confirm__item + .p-contact-confirm__item {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}

.p-contact-confirm__item.p-contact-confirm__item--dpt .p-contact-confirm__value {
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__item.p-contact-confirm__item--dpt .p-contact-confirm__value {
    margin-top: 0px;
  }
}
.p-contact-confirm__item.p-contact-confirm__item--email {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__item.p-contact-confirm__item--email {
    margin-top: 16px;
  }
}
.p-contact-confirm__item.p-contact-confirm__item--phone .p-contact-confirm__value {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__item.p-contact-confirm__item--phone .p-contact-confirm__value {
    margin-top: 0;
  }
}

.p-contact-confirm__item--email {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__item--email {
    margin-top: 16px;
  }
}

.p-contact-confirm__label-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

@media screen and (min-width: 768px) {
  .p-contact-confirm__label-container {
    margin-bottom: 0;
    width: 300px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-contact-confirm__label {
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-contact-confirm__label {
    font-size: 16px;
  }
}

.p-contact-confirm__required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ef8f9c;
  color: #ffffff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 10%;
  line-height: 1;
}

.p-contact-confirm__optional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #333;
  color: #ffffff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 10%;
  line-height: 1;
}

.p-contact-confirm__value {
  font-size: 1rem;
  color: #333333;
  margin-top: 7px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__value {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-confirm__value {
    font-size: 16px;
  }
}

.p-contact-confirm__value-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__value-block {
    gap: 8px;
    margin-top: 0;
  }
}

.p-contact-confirm__address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__address-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 41px;
  }
}

.p-contact-confirm__address-label {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__address-label {
    min-width: 120px;
  }
}

.p-contact-confirm__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .p-contact-confirm__checkbox {
    margin-bottom: 40px;
  }
}

.p-contact-confirm__checkbox-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.p-contact-confirm__checkbox-label {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 14px;
  color: #000000;
  cursor: pointer;
  letter-spacing: 10%;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-contact-confirm__checkbox-label {
    font-size: 16px;
  }
}

.p-contact-confirm__button-container {
  position: relative;
  cursor: pointer;
  max-width: 300px;
  max-height: 60px;
  margin: 51px auto 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-contact-confirm__button-container .wpcf7-spinner {
  display: none;
}
.p-contact-confirm__button-container::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #55000c;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__button-container::after {
    right: 27px;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__button-container {
    width: 300px;
    height: 60px;
  }
  .p-contact-confirm__button-container:hover::after {
    color: white;
  }
  .p-contact-confirm__button-container:hover .c-button--form {
    background-color: #55000c;
    border-color: #55000c;
    color: white;
  }
}

.p-contact-confirm__button {
  margin: 0 auto;
}

.p-contact-confirm__button {
  padding-block: 20px;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__button {
    font-size: 18px;
    margin-top: 51px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-confirm__button:hover {
    opacity: 0.8;
  }
}

/* 404 */
.p-404-heading {
  margin-top: 75px;
}
@media screen and (min-width: 768px) {
  .p-404-heading {
    margin-top: 85px;
  }
}
@media screen and (min-width: 1500px) {
  .p-404-heading {
    margin-top: 119px;
  }
}

.p-404-container {
  margin-top: 40px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .p-404-container {
    margin-top: 60px;
    margin-top: 112px;
  }
}

.p-404-breadcrumb__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-404-breadcrumb__inner {
    width: 75%;
  }
}

.p-404-heading__text {
  line-height: 1.875;
  top: 56%;
}
@media screen and (min-width: 768px) {
  .p-404-heading__text {
    top: 50%;
  }
}

@media screen and (min-width: 768px) {
  .p-404-heading__title {
    letter-spacing: 0.1em;
  }
}

.p-404-container__inner {
  padding-inline: 15px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-404-container__inner {
    margin: 0;
    padding-inline: calc(12% + 8px);
    max-width: 1080px;
  }
}

.p-404-container__image {
  margin-top: 20px;
}
.p-404-container__image img {
  width: 200px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-404-container__image {
    margin-top: 0;
  }
  .p-404-container__image img {
    width: 300px;
  }
}

.p-404-container__text-area {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .p-404-container__text-area {
    margin-top: 0;
  }
}

.p-404-container__text {
  font-size: clamp(1.0625rem, 1.3888888889vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #000000;
}

.p-404-container__text--sub {
  margin-top: 24px;
}

.p-404-container__text--guide {
  margin-top: 24px;
}

.p-404-container__button-area {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-404-container__button-area {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-404-container__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 30px;
  background-color: #55000c;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 16px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-404-container__button {
    padding: 15px 40px;
    font-size: 18px;
  }
  .p-404-container__button:hover {
    opacity: 0.8;
  }
}

.p-index-fv {
  position: relative;
}

.p-index-fv__inner {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  padding-inline: 30px;
}
@media screen and (min-width: 768px) {
  .p-index-fv__inner {
    max-width: 1320px;
    padding-inline: 20px;
  }
}

.p-index-fv__image {
  margin-top: 13px;
}
.p-index-fv__image img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-index-fv__image {
    border-radius: 120px;
    overflow: hidden;
    margin-top: -14px;
  }
}

.p-index-fv__text {
  position: absolute;
  top: 1%;
  left: 2%;
  z-index: 50;
  width: 93%;
}
.p-index-fv__text img {
  -webkit-filter: drop-shadow(0px 0px 50px #fff);
          filter: drop-shadow(0px 0px 50px #fff);
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-index-fv__text {
    max-width: 600px;
    width: 48.3870967742%;
    top: auto;
    left: -8px;
    bottom: -28px;
  }
}

.p-index-fv__notice {
  position: absolute;
  top: 418px;
  left: 24px;
  background: #fff7b8;
  border-radius: 20px;
  width: 240px;
  max-width: 90vw;
  -webkit-box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .p-index-fv__notice {
    left: auto;
    right: 31px;
    top: 375px;
  }
}
.p-index-fv__notice.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
}
.p-index-fv__notice-link {
  display: block;
  padding: 16px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .p-index-fv__notice-link:hover {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  .p-index-fv__notice-link:hover .p-index-fv__notice-title {
    color: #55000c;
  }
}

.p-index-fv__notice-title {
  font-size: clamp(1rem, 1.3888888889vw, 1.25rem);
  letter-spacing: 0.1em;
}

.p-index-fv__notice-text {
  font-size: clamp(0.75rem, 0.9722222222vw, 0.875rem);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.p-index-fv__notice-date {
  font-size: clamp(0.625rem, 0.8333333333vw, 0.75rem);
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-index-fv__notice-date {
    margin-top: 0;
  }
}

/* concept */
.p-index-concept {
  text-align: center;
  margin-top: 88px;
}
@media screen and (min-width: 768px) {
  .p-index-concept {
    margin-top: 120px;
  }
}

.p-index-concept__inner {
  max-width: 600px;
  margin: 0 auto;
}

.p-index-concept__title {
  margin-top: 10px;
  font-size: clamp(1.125rem, 1.6666666667vw, 1.5rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.p-index-concept__subtitle {
  margin-top: 8px;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-index-concept__subtitle {
    margin-top: 4px;
  }
}

.p-index-concept__text-block {
  margin-top: 42px;
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
  letter-spacing: 0.2em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-index-concept__text-block {
    margin-top: 61px;
  }
}

.p-index-concept__lead {
  margin-top: 0;
}

.p-index-concept__message {
  margin-top: 31px;
}
@media screen and (min-width: 768px) {
  .p-index-concept__message {
    margin-top: 16px;
  }
}

.p-index-intro {
  text-align: center;
  margin-top: 88px;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .p-index-intro {
    margin-top: 120px;
    padding-bottom: 162px;
  }
}

.p-index-intro__inner {
  max-width: 400px;
  margin: 0 auto;
}

.p-index-intro__title {
  margin-top: 10px;
  font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
  letter-spacing: 0.1em;
}

.p-index-intro__subtitle {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-index-intro__subtitle {
    margin-top: 13px;
  }
}

.p-index-intro__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  margin: 0 auto;
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .p-index-intro__list {
    margin-top: 77px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px 20px;
  }
}

.p-index-intro__item {
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-index-intro__item {
    max-width: 320px;
    width: 31%;
    margin: 0;
  }
}

.p-index-intro__link {
  display: block;
  background: white;
  padding-block: 12px 10px;
  border-radius: 12px;
  text-decoration: none;
  font-size: clamp(1.125rem, 1.6666666667vw, 1.5rem);
  letter-spacing: 0.1em;
  color: #333;
  line-height: 1;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
@media screen and (min-width: 768px) {
  .p-index-intro__link {
    padding-block: 18px;
  }
  .p-index-intro__link:hover {
    background-color: #fff7b8;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 0 5px 10px rgba(75, 13, 13, 0.1);
            box-shadow: 0 5px 10px rgba(75, 13, 13, 0.1);
  }
}

.p-index-intro__button-wrap {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-index-intro__button-wrap {
    margin-top: 57px;
  }
}

.p-index-intro__button {
  display: inline-block;
  border: 2px solid #55000c;
  text-decoration: none;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
}

.p-index-letters {
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .p-index-letters {
    padding-bottom: 109px;
  }
}

.swiper1 .swiper-slide {
  width: 120px;
}
.swiper1 .swiper-slide img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .swiper1 .swiper-slide {
    width: 240px;
  }
}

/* recruit */
.p-index-recruit {
  background: url("../../assets/img/common/saiyou-sp.webp") no-repeat top/cover;
  padding-block: 75px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-index-recruit {
    padding-block: 80px 72px;
    background-image: url("../../assets/img/common/saiyou.webp");
  }
}

.p-index-recruit__inner {
  margin: 0 auto;
}

.p-index-recruit__content {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  padding: 64px 20px 64px;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-index-recruit__content {
    padding: 64px;
    border-radius: 40px;
  }
}

.p-index-recruit__icon img {
  width: 64px;
}

.p-index-recruit__title {
  margin-top: 11px;
  font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
  letter-spacing: 0.1em;
}

.p-index-recruit__subtitle {
  margin-top: 9px;
}

.p-index-recruit__text {
  margin-top: 35px;
  line-height: 1.8;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-index-recruit__text {
    margin-top: 48px;
  }
}

.p-index-recruit__buttons {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
}
@media screen and (min-width: 768px) {
  .p-index-recruit__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 516px;
    margin: 0 auto;
    margin-top: 43px;
  }
}

.p-index-recruit__button {
  margin: 0 auto;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  padding-block: 19px;
  display: block;
  max-width: 240px;
}

.c-page-top {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-page-top.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*==============================
  各園紹介セクション（p-intro-gurdens）
==============================*/
.p-intro__heading {
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-intro__heading {
    margin-top: 86px;
  }
}
@media screen and (min-width: 1500px) {
  .p-intro__heading {
    margin-top: 119px;
  }
}

.p-intro-gurdens {
  background-image: url(../../assets/img/common/pinktentenback-sp.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 80px;
  margin-top: 73px;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens {
    padding-bottom: 83px;
    margin-top: 122px;
  }
}

.p-intro-gurdens__no-posts {
  margin-top: 15px;
}

.p-intro-gurdens__inner {
  position: relative;
  padding-top: 155px;
}
.p-intro-gurdens__inner--prefecture {
  padding-top: 154px;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__inner {
    padding-top: 166px;
  }
}

.p-intro-gurdens__line-1,
.p-intro-gurdens__line-2 {
  position: absolute;
  left: 0;
  width: 100%;
}

.p-intro-gurdens__line-1 {
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-intro-gurdens__line-2 {
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.p-intro-gurdens__icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-intro-gurdens__icon img {
  width: 47px;
  height: 47px;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__icon img {
    width: 64px;
    height: 64px;
  }
}

.p-intro-gurdens__head {
  text-align: center;
}

.p-intro-gurdens__title {
  font-size: 1.5rem;
  margin-top: 13px;
}

.p-intro-gurdens__subtitle {
  margin-top: 11px;
}

.p-intro-gurdens__filter-tabs {
  position: relative;
  z-index: 2;
  gap: 8px;
  -webkit-transform: translateY(-143%);
          transform: translateY(-143%);
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  line-height: 1.2142857143;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__filter-tabs {
    -webkit-transform: translateY(-193%);
            transform: translateY(-193%);
    margin-bottom: -40px;
  }
}

.p-intro-gurdens__filter-tab-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__filter-tab-inner {
    gap: 11px;
  }
}

.p-intro-gurdens__filter-tab {
  background-color: #fff;
  border: 1px solid #ef8f9c;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 7px 30px 0;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 0.875rem;
  color: #ef8f9c;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 100px;
  text-align: center;
  -webkit-box-shadow: 0 -2px 4px rgba(85, 0, 12, 0.06);
          box-shadow: 0 -2px 4px rgba(85, 0, 12, 0.06);
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__filter-tab {
    padding: 7px 41px;
    font-size: 1rem;
    min-width: 140px;
  }
  .p-intro-gurdens__filter-tab:hover {
    background-color: #ef8f9c;
    color: white;
  }
}

.p-intro-gurdens__filter-tab--active {
  background-color: #ef8f9c;
  color: white;
}

.p-intro-gurdens__filter-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13px;
  margin-top: -38px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__filter-buttons {
    gap: 9px 12px;
  }
}
.p-intro-gurdens__filter-buttons--prefecture {
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__filter-buttons--prefecture {
    gap: 12px;
  }
}

.p-intro-gurdens__filter-button {
  display: inline-block;
  padding: 8px 0px;
  background: #fff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 0.875rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 4px rgba(85, 0, 12, 0.06);
          box-shadow: 0 1px 4px rgba(85, 0, 12, 0.06);
  letter-spacing: 0.04em;
  line-height: 1.2;
  border: 1px solid #ef8f9c;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  cursor: pointer;
  color: #ef8f9c;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  min-width: 150px;
  max-width: 150px;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__filter-button {
    font-size: 1rem;
    padding-block: 8px;
    max-width: 200px;
    min-width: 200px;
  }
  .p-intro-gurdens__filter-button:hover {
    background-color: #ef8f9c;
    color: white;
  }
  .p-intro-gurdens__filter-button--prefecture {
    max-width: 150px;
  }
}

.p-intro-gurdens__filter-buttons[data-filter-group=prefecture] .p-intro-gurdens__filter-button {
  max-width: 150px;
  min-width: 150px;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__filter-buttons[data-filter-group=prefecture] .p-intro-gurdens__filter-button {
    max-width: 150px;
  }
}

.p-intro-gurdens__filter-button--active {
  background-color: #ef8f9c;
  color: white;
}

.p-intro-gurdens__wrapper {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 18px 12px 48px;
  max-width: 345px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__wrapper {
    padding: 50px 40px 59px;
    border-radius: 40px;
    max-width: 1080px;
  }
}

.p-intro-gurdens__list {
  margin-top: 31px;
  margin-top: 29px;
  gap: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }
}

.p-intro-gurdens__item {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  margin: 0;
}

.p-intro-gurdens__link {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  background-color: #ffedf0;
  padding: 12px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.p-intro-gurdens__link--yellow {
  background-color: #fff7b8;
}
.p-intro-gurdens__link--blue {
  background-color: #edf4ff;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__link:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-box-shadow: 0 5px 15px rgba(75, 13, 13, 0.15);
            box-shadow: 0 5px 15px rgba(75, 13, 13, 0.15);
  }
  .p-intro-gurdens__link:hover .p-intro-gurdens__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-intro-gurdens__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__img {
    max-width: 296px;
    height: 180px;
  }
}

.p-intro-gurdens__img img {
  -o-object-position: center;
     object-position: center;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  min-height: 180px;
  max-height: 180px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.p-intro-gurdens__name {
  font-size: clamp(1.125rem, 1.3888888889vw, 1.25rem);
  margin-top: 3px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  word-break: break-all;
  white-space: normal;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__name {
    margin-top: 7px;
  }
}

.p-intro-gurdens__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 8px;
}

.p-intro-gurdens__badge {
  display: inline-block;
  padding: 2px 9px;
  background: #fff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 0.875rem;
  border-radius: 16px;
  -webkit-box-shadow: 0 1px 4px rgba(85, 0, 12, 0.06);
          box-shadow: 0 1px 4px rgba(85, 0, 12, 0.06);
  letter-spacing: 0.04em;
  line-height: 1.2;
  border: 1px solid #f5e0e7;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.p-intro-gurdens__badge--prefecture {
  font-size: clamp(0.75rem, 0.9722222222vw, 0.875rem);
}

@media screen and (min-width: 768px) {
  .p-intro-gurdens__badge {
    border-radius: 12px;
  }
}
.p-intro-gurdens__pagination {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-intro-gurdens__pagination {
    margin-top: 20px;
  }
}

.p-intro-gurdens__pagination-link {
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.p-intro__breadcrumb {
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .p-intro__breadcrumb {
    margin-top: 11px;
  }
  .p-intro__breadcrumb .c-breadcrumb__link {
    -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
    transition: color 0.3s ease, -webkit-transform 0.3s ease;
    transition: color 0.3s ease, transform 0.3s ease;
    transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    display: inline-block;
  }
  .p-intro__breadcrumb .c-breadcrumb__link:hover {
    color: #55000c;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

.p-intro__breadcrumb-inner {
  width: 99vw;
}
@media screen and (min-width: 768px) {
  .p-intro__breadcrumb-inner {
    width: 75vw;
  }
}

@media screen and (min-width: 768px) {
  .p-intro-gurdens__pagination-link--next:hover .c-pagination__arrow {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  .p-intro-gurdens__pagination-link--next .c-pagination__arrow {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

/* recruit */
.p-intro-recruit {
  background: url("../../assets/img/common/saiyou-sp.webp") no-repeat top/cover;
  padding-block: 73px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-intro-recruit {
    padding-block: 80px 72px;
    background-image: url("../../assets/img/common/saiyou.webp");
  }
}

.p-intro-recruit__inner {
  margin: 0 auto;
}

.p-intro-recruit__content {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  padding: 64px 20px 64px;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-intro-recruit__content {
    padding: 64px;
    border-radius: 40px;
  }
}

.p-intro-recruit__icon img {
  width: 64px;
}

.p-intro-recruit__title {
  margin-top: 11px;
  font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
  letter-spacing: 0.1em;
}

.p-intro-recruit__subtitle {
  margin-top: 9px;
}

.p-intro-recruit__text {
  margin-top: 35px;
  line-height: 1.8;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-intro-recruit__text {
    margin-top: 48px;
  }
}

.p-intro-recruit__buttons {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
}
@media screen and (min-width: 768px) {
  .p-intro-recruit__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 516px;
    margin: 0 auto;
    margin-top: 43px;
  }
}

.p-intro-recruit__button {
  margin: 0 auto;
  width: 240px;
  font-size: 1.125rem;
  max-width: 240px;
  letter-spacing: 0.1em;
  padding-block: 19px;
}

.p-privacy-heading {
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-privacy-heading {
    margin-top: 85px;
  }
}
@media screen and (min-width: 1500px) {
  .p-privacy-heading {
    margin-top: 119px;
  }
}

@media screen and (min-width: 768px) {
  .p-privacy-breadcrumb {
    margin-top: 5px;
  }
}

.p-privacy-breadcrumb__inner {
  width: 99.2%;
}
@media screen and (min-width: 768px) {
  .p-privacy-breadcrumb__inner {
    width: 75%;
  }
}

.p-privacy-container {
  margin-top: 56px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container {
    margin-top: 73px;
    padding-bottom: 80px;
  }
}

.p-privacy-container__numbered-list {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p-privacy-container__numbered-list.p-privacy-container__numbered-list--1 {
  margin-top: 8px;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__numbered-list.p-privacy-container__numbered-list--1 {
    margin-top: 5px;
  }
}
.p-privacy-container__numbered-list.p-privacy-container__numbered-list--2 {
  margin-top: 8px;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__numbered-list.p-privacy-container__numbered-list--2 {
    margin-top: 9px;
  }
}
@media screen and (min-width: 768px) {
  .p-privacy-container__numbered-list.p-privacy-container__numbered-list--3 {
    margin-top: 9px;
  }
}
@media screen and (min-width: 768px) {
  .p-privacy-container__numbered-list {
    margin-top: 24px;
    gap: 8px;
  }
}

.p-privacy-container__numbered-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__numbered-item {
    gap: 0px;
  }
}

.p-privacy-container__number {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__number {
    font-size: 16px;
  }
}

.p-privacy-container__text-content {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__text-content {
    font-size: 16px;
  }
}

.p-privacy-container__date-signature {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__date-signature {
    margin-top: 15px;
  }
}

.p-privacy-container__text--right {
  text-align: right;
  line-height: 1.8;
}

.p-privacy-container__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__inner {
    padding: 0 40px;
  }
}

.p-privacy-container__content {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 16px 32px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__content {
    padding: 48px 36px 47px;
    border-radius: 40px;
  }
}

.p-privacy-container__heading {
  margin-top: 24px;
  padding: 10px 15px;
  border: 1px solid #55000c;
  border-radius: 12px;
}
.p-privacy-container__heading:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__heading {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1500px) {
  .p-privacy-container__heading {
    margin-top: 119px;
  }
}

.p-privacy-container__heading-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.p-privacy-container__heading-text {
  border-left: 4px solid #55000c;
  padding-left: 8px;
  line-height: 1.1875;
  font-size: clamp(1rem, 1.3888888889vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .p-privacy-container__heading-text {
    letter-spacing: 0.1em;
  }
}
.p-privacy-container__heading-text--big {
  font-size: 1.25rem;
}

.p-privacy-container__block + .p-privacy-container__block {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__block + .p-privacy-container__block {
    margin-top: 37px;
  }
}
.p-privacy-container__block.p-privacy-container__block--1 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__block.p-privacy-container__block--1 {
    margin-top: 35px;
  }
}
.p-privacy-container__block.p-privacy-container__block--2 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__block.p-privacy-container__block--2 {
    margin-top: 35px;
  }
}
.p-privacy-container__block.p-privacy-container__block--3 {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__block.p-privacy-container__block--3 {
    margin-top: 38px;
  }
}
.p-privacy-container__block.p-privacy-container__block--4 {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__block.p-privacy-container__block--4 {
    margin-top: 36px;
  }
}
.p-privacy-container__block.p-privacy-container__block--5 {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__block.p-privacy-container__block--5 {
    margin-top: 37px;
  }
}
.p-privacy-container__block.p-privacy-container__block--6 {
  margin-top: 29px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__block.p-privacy-container__block--6 {
    margin-top: 34px;
  }
}

.p-privacy-container__text-block {
  margin-top: 15px;
  padding-inline: 10px 10px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__text-block {
    margin-top: 18px;
    padding-inline: 11px 13px;
  }
}

.p-privacy-container__subheading {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__subheading {
    margin-top: -2px;
  }
}

.p-privacy-container__subheading-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.p-privacy-container__subheading-line {
  width: 4px;
  height: 16px;
  background-color: #fff9cb;
  border-radius: 1px;
}

.p-privacy-container__subheading-text {
  font-size: 0.875rem;
  color: #333333;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__subheading-text {
    font-size: 1rem;
  }
}

.p-privacy-container__subtext-block {
  margin-top: 8px;
}
.p-privacy-container__subtext-block.p-privacy-container__subtext-block--1 {
  margin-top: -7px;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__subtext-block.p-privacy-container__subtext-block--1 {
    margin-top: -12px;
  }
}
@media screen and (min-width: 768px) {
  .p-privacy-container__subtext-block {
    margin-top: 12px;
  }
}

.p-privacy-container__text {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #333333;
}
.p-privacy-container__text + .p-privacy-container__text {
  margin-top: 8px;
}
.p-privacy-container__text.p-privacy-container__text--contact {
  margin-top: 21px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__text.p-privacy-container__text--contact {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-privacy-container__text {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .p-privacy-container__text-block--contact {
    padding-top: 0px;
  }
}

.p-privacy-container__contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-privacy-container__contact-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}

.p-recruit-heading {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-recruit-heading {
    margin-top: 89px;
  }
}
@media screen and (min-width: 1500px) {
  .p-recruit-heading {
    margin-top: 119px;
  }
}

.p-recruit-confirm {
  padding-bottom: 84px;
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .p-recruit-confirm {
    padding-bottom: 122px;
    margin-top: 120px;
  }
}

.p-recruit-confirm__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 768px) {
  .p-recruit-confirm__inner {
    padding: 0 40px;
  }
}

.p-recruit-confirm__container {
  background-color: #fff;
  border-radius: 30px;
  padding: 65px 16px 60px;
}
@media screen and (min-width: 768px) {
  .p-recruit-confirm__container {
    padding: 63px 13% 60px;
    border-radius: 40px;
  }
}

.p-recruit-confirm__form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.p-recruit-confirm__item + .p-recruit-confirm__item {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-recruit-confirm__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 29px;
  }
}

.p-recruit-confirm__item.p-recruit-confirm__item--dpt {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .p-recruit-confirm__item.p-recruit-confirm__item--dpt {
    margin-top: 16px;
  }
}

.p-recruit-confirm__label-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

@media screen and (min-width: 768px) {
  .p-recruit-confirm__label-container {
    margin-bottom: 0;
    width: 38%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-recruit-confirm__label {
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-recruit-confirm__label {
    font-size: 16px;
  }
}

.p-recruit-confirm__required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ef8f9c;
  color: #ffffff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 10%;
  line-height: 1;
}

.p-recruit-confirm__optional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #333;
  color: #ffffff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 10%;
  line-height: 1;
}

.p-recruit-confirm__value {
  font-size: 1rem;
  color: #333333;
  margin-top: 7px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-recruit-confirm__value {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-confirm__value {
    font-size: 16px;
  }
}

.p-recruit-confirm__value-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .p-recruit-confirm__value-block {
    gap: 8px;
    margin-top: 0;
  }
}

.p-recruit-confirm__address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-recruit-confirm__address-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 41px;
  }
}

.p-recruit-confirm__address-label {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-recruit-confirm__address-label {
    min-width: 120px;
  }
}

.p-recruit-confirm__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .p-recruit-confirm__checkbox {
    margin-bottom: 40px;
  }
}

.p-recruit-confirm__checkbox-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.p-recruit-confirm__checkbox-label {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 14px;
  color: #000000;
  cursor: pointer;
  letter-spacing: 10%;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-recruit-confirm__checkbox-label {
    font-size: 16px;
  }
}

.p-recruit-confirm__button-container {
  position: relative;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  max-width: 300px;
  margin: 0 auto;
  max-height: 60px;
}
.p-recruit-confirm__button-container .wpcf7-spinner {
  display: none;
}
.p-recruit-confirm__button-container::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #55000c;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-confirm__button-container::after {
    right: 27px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-confirm__button-container {
    width: 300px;
    height: 60px;
  }
  .p-recruit-confirm__button-container:hover::after {
    color: white;
  }
  .p-recruit-confirm__button-container:hover .c-button--form {
    background-color: #55000c;
    border-color: #55000c;
    color: white;
  }
}

.p-recruit-confirm__button {
  margin: 53px auto 0;
}

.p-recruit-confirm__button {
  padding-block: 20px;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .p-recruit-confirm__button {
    font-size: 18px;
    margin-top: 49px;
  }
}

.p-recruit-confirm__button:hover {
  opacity: 0.8;
}

.p-recruit-heading--thx {
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-recruit-heading--thx {
    margin-top: 72px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-heading--thx {
    margin-top: 88px;
  }
}
.p-recruit-heading--thx .p-recruit-heading__text {
  top: 52%;
}
.p-recruit-heading--thx .p-recruit-heading__title {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-recruit-heading--thx .p-recruit-heading__title {
    letter-spacing: 0.1em;
  }
}
.p-recruit-heading--thx .p-recruit-heading__subtitle {
  margin-top: 9px;
  letter-spacing: 0.12em;
}

.p-recruit-thx {
  margin-top: 60px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .p-recruit-thx {
    margin-top: 75px;
    text-align: center;
  }
}

.p-recruit-thx__text {
  color: #333;
  font-size: clamp(1rem, 1.3888888889vw, 1.25rem);
  letter-spacing: 0.1em;
}

.p-recruit-thx__button-block {
  margin-top: 82px;
}
@media screen and (min-width: 768px) {
  .p-recruit-thx__button-block {
    margin-top: 114px;
  }
}

.p-recruit-thx__button {
  max-width: 300px;
  margin: 0 auto;
  padding-block: 21px;
}
@media screen and (min-width: 768px) {
  .p-recruit-thx__button {
    letter-spacing: 0.2em;
  }
  .p-recruit-thx__button::after {
    right: 22px;
  }
}

.p-recruit__heading {
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-recruit__heading {
    margin-top: 75px;
  }
}
@media screen and (min-width: 1500px) {
  .p-recruit__heading {
    margin-top: 119px;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit__breadcrumb {
    margin-top: 6px;
  }
}

.p-recruit__breadcrumb-inner {
  width: 99.2%;
}
@media screen and (min-width: 768px) {
  .p-recruit__breadcrumb-inner {
    width: 75.2%;
  }
}

.p-recruit-motto {
  margin-top: 76px;
  padding-bottom: 84px;
}
@media screen and (min-width: 768px) {
  .p-recruit-motto {
    margin-top: 112px;
    padding-bottom: 123px;
  }
}

.p-recruit-motto__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-recruit-motto__content {
    gap: 30px;
    margin-top: 62px;
  }
}

.p-recruit-motto__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-recruit-motto__item.p-recruit-motto__item--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-motto__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 48px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-recruit-motto__item + .p-recruit-motto__item .p-recruit-motto__image {
  margin-top: 0;
}
.p-recruit-motto__item + .p-recruit-motto__item .p-recruit-motto__description {
  letter-spacing: 0.2em;
}
.p-recruit-motto__item + .p-recruit-motto__item:nth-of-type(3) .p-recruit-motto__description {
  letter-spacing: 0.1em;
}

.p-recruit-motto__image {
  text-align: center;
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .p-recruit-motto__image {
    margin-top: 0;
  }
}
.p-recruit-motto__image img {
  width: 240px;
  height: 160px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-recruit-motto__image img {
    width: 480px;
    height: 320px;
    border-radius: 40px;
  }
}

.p-recruit-motto__main-title {
  margin-top: 9px;
  font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
}

.p-recruit-motto__subtitle {
  margin-top: 18px;
}

.p-recruit-motto__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-recruit-motto__text-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 24px;
    margin-top: 0px;
  }
}

.p-recruit-motto__icon-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #55000c;
  gap: 8px;
  max-width: 284px;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .p-recruit-motto__icon-title {
    max-width: 277px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-motto__icon-title--free {
    max-width: 227px;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-motto__icon-title--work {
    max-width: 350px;
  }
}
.p-recruit-motto__icon-title img {
  width: 24px;
  height: 24px;
}

.p-recruit-motto__title {
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: inline-block;
  letter-spacing: 0.2em;
  font-size: clamp(1.125rem, 1.3888888889vw, 1.25rem);
}
.p-recruit-motto__inner {
  padding: 0px 30px;
}
@media screen and (min-width: 768px) {
  .p-recruit-motto__inner {
    padding: 0px 20px;
    max-width: 1360px;
    margin: 0 auto;
  }
}

.p-recruit-motto__description {
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
}
.p-recruit-requirements {
  padding-inline: 15px;
  padding-bottom: 76px;
}
@media screen and (min-width: 768px) {
  .p-recruit-requirements {
    padding-bottom: 110px;
  }
}

.p-recruit-requirements__inner {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .p-recruit-requirements__inner {
    margin-top: 59px;
  }
}

.p-recruit-requirements__list {
  padding: 24px 22px 33px 24px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .p-recruit-requirements__list {
    padding: 33px 25px 40px;
    gap: 0px;
    border-radius: 40px;
    max-width: 1080px;
    margin: 0 auto;
  }
}

.p-recruit-requirements__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-recruit-requirements__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px dashed #55000c;
    padding-block: 31px;
  }
}
.p-recruit-requirements__item--holiday .p-recruit-requirements__content {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-recruit-requirements__item--holiday .p-recruit-requirements__content {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-requirements__item--insurance {
    padding-block: 27px;
  }
}
.p-recruit-requirements__item--insurance .p-recruit-requirements__title-box {
  margin-top: 10px;
}
.p-recruit-requirements__item--other .p-recruit-requirements__content {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .p-recruit-requirements__item--other .p-recruit-requirements__content {
    margin-top: 0;
  }
}
.p-recruit-requirements__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-requirements__header {
    width: 200px;
  }
}

.p-recruit-requirements__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ef8f9c;
  border-radius: 15px;
  width: 100%;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .p-recruit-requirements__title-box {
    width: 100%;
  }
}

.p-recruit-requirements__main-title {
  font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
  margin-top: 10px;
}

.p-recruit-requirements__subtitle {
  margin-top: 10px;
}

.p-recruit-requirements__title {
  color: #ffffff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-recruit-requirements__title {
    font-size: 18px;
  }
}

.p-recruit-requirements__content {
  margin-top: 24px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .p-recruit-requirements__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0px;
    padding-inline: 25px;
  }
}

.p-recruit-requirements__text {
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
}
.p-recruit-requirements__text--more-small {
  font-size: 0.875rem;
}
.p-recruit-requirements__text--small {
  letter-spacing: 0.2em;
  font-size: clamp(0.75rem, 0.9722222222vw, 0.875rem);
}
.p-recruit-requirements__text--big {
  letter-spacing: 0.2em;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq {
    padding-bottom: 73px;
  }
}

.p-recruit-faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__inner {
    gap: 32px;
    padding: 0 180px;
  }
}

.p-recruit-faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 62px;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__items {
    gap: 24px;
    max-width: 1080px;
    margin: 62px auto 0;
  }
}

.p-recruit-faq__item {
  border: 2px solid #ef8f9c;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 18px 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__item {
    padding: 17px 32px 20px;
  }
}

.p-recruit-faq__main-title {
  font-size: 1.5rem;
  margin-top: 12px;
}

.p-recruit-faq__subtitle {
  margin-top: 10px;
}

.p-recruit-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 12px 24px 12px 0;
  position: relative;
  cursor: pointer;
  border-bottom: none;
}
.js-accordion-item.is-open .p-recruit-faq__question {
  border-bottom: 1px dashed #000000;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__question {
    padding: 12px 0;
  }
}

.p-recruit-faq__q {
  color: #55000c;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-right: 32px;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__q {
    font-size: 18px;
    margin-right: 26px;
  }
}

.p-recruit-faq__question-text {
  color: #55000c;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__question-text {
    font-size: 18px;
    line-height: 1;
  }
}

.p-recruit-faq__icon {
  position: absolute;
  right: 3px;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 15px;
  background-color: #ef8f9c;
  -webkit-clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
          clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.js-accordion-item.is-open .p-recruit-faq__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__icon {
    right: 0;
  }
}

.p-recruit-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}
.js-accordion-item.is-open .p-recruit-faq__answer {
  max-height: 500px;
  padding: 32px 0 8px;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .js-accordion-item.is-open .p-recruit-faq__answer {
    padding: 40px 0 12px;
  }
}

.p-recruit-faq__a {
  color: #55000c;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-right: 32px;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__a {
    font-size: 18px;
    margin-right: 27px;
  }
}

.p-recruit-faq__answer-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-recruit-faq__answer-text p {
  color: #55000c;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__answer-text p {
    font-size: 16px;
    line-height: 1.5;
  }
}

.p-recruit-form {
  margin-top: 82px;
  padding-inline: 15px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form {
    margin-top: 0;
    padding-bottom: 141px;
  }
}

.p-recruit-form__textarea-other {
  margin-top: 8px;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__textarea-other {
    margin-top: 9px;
    width: 100%;
    height: 100px;
  }
}
.p-recruit-form__textarea-other .wpcf7-form-control-wrap {
  height: 100px;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__textarea-other .wpcf7-form-control-wrap {
    width: 100%;
    height: 100px;
  }
}
.p-recruit-form__textarea-other .wpcf7-form-control-wrap textarea.wpcf7-textarea {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid #333333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  resize: vertical;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #ffffff;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__textarea-other .wpcf7-form-control-wrap textarea.wpcf7-textarea {
    width: 100%;
    height: 100px;
  }
}
.p-recruit-form__textarea-other .wpcf7-form-control-wrap textarea.wpcf7-textarea::-webkit-input-placeholder {
  color: #333333;
}
.p-recruit-form__textarea-other .wpcf7-form-control-wrap textarea.wpcf7-textarea::-moz-placeholder {
  color: #333333;
}
.p-recruit-form__textarea-other .wpcf7-form-control-wrap textarea.wpcf7-textarea:-ms-input-placeholder {
  color: #333333;
}
.p-recruit-form__textarea-other .wpcf7-form-control-wrap textarea.wpcf7-textarea::-ms-input-placeholder {
  color: #333333;
}
.p-recruit-form__textarea-other .wpcf7-form-control-wrap textarea.wpcf7-textarea::placeholder {
  color: #333333;
}

.p-recruit-form__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 32px 14px;
  background-color: #ffffff;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__inner {
    max-width: 1080px;
    border-radius: 40px;
    padding: 64px 14px;
  }
}

.p-recruit-form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__content {
    max-width: 800px;
    margin: 0 auto;
  }
}

.p-recruit-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 18%;
  }
}

.p-recruit-form__label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__label-wrap {
    min-width: 194px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-form__label-right {
    width: 58%;
  }
}

.p-recruit-form__label {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #55000c;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__label {
    letter-spacing: 0.1em;
  }
}

.p-recruit-form__required {
  display: inline-block;
  padding: 2px 8px;
  background-color: #ef8f9c;
  color: #ffffff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-radius: 4px;
  max-width: 43px;
}
.p-recruit-form__optional {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 8px;
  background-color: #333333;
  color: #ffffff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__optional {
    font-size: 14px;
  }
}

.p-recruit-form__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__radio-group {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-recruit-form__radio-group--beside {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__radio-group--beside {
    gap: 10px 30px;
  }
}

.p-recruit-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-recruit-form__radio .wpcf7-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.p-recruit-form__radio .wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333333;
}
.p-recruit-form__radio .wpcf7-list-item label input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #333333;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  vertical-align: middle;
}
.p-recruit-form__radio .wpcf7-list-item label input[type=radio]:checked {
  border-color: #55000c;
}
.p-recruit-form__radio .wpcf7-list-item label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #55000c;
  border-radius: 50%;
}
.p-recruit-form__radio-group--beside .p-recruit-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 9px;
}
.p-recruit-form__radio-group--beside .p-recruit-form__radio .wpcf7-list-item {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__radio-group--beside .p-recruit-form__radio {
    gap: 10px 8px;
  }
}

.p-recruit-form__checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__checkbox-group {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-recruit-form__checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__checkbox-item {
    gap: 16px;
  }
}

.p-recruit-form__checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #333333;
  border-radius: 2px;
  position: absolute;
  top: 81%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
}
.p-recruit-form__checkbox:checked {
  background-color: #55000c;
  border-color: #55000c;
}
.p-recruit-form__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 7px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-recruit-form__checkbox {
    top: 50%;
    left: -31px;
  }
}

.p-recruit-form__radio.wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  position: static;
  -webkit-transform: none;
          transform: none;
  left: auto;
  top: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #333333;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
}
.p-recruit-form__radio.wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked {
  border-color: #55000c;
  background-color: #fff;
}
.p-recruit-form__radio.wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
  width: 10px;
  height: 10px;
  background-color: #55000c;
  border-radius: 50%;
  border-right: none;
  border-bottom: none;
}

.p-recruit-form__checkbox-label {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__checkbox-label {
    font-size: 16px;
  }
}

.p-recruit-form__input-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__input-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-recruit-form__input {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #333333;
  border-radius: 4px;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333333;
}
.p-recruit-form__input::-webkit-input-placeholder {
  color: #999999;
}
.p-recruit-form__input::-moz-placeholder {
  color: #999999;
}
.p-recruit-form__input:-ms-input-placeholder {
  color: #999999;
}
.p-recruit-form__input::-ms-input-placeholder {
  color: #999999;
}
.p-recruit-form__input::placeholder {
  color: #999999;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__input {
    height: 40px;
    font-size: 16px;
  }
}

.p-recruit-form__textarea-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__textarea-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-recruit-form__textarea {
  width: 100%;
  height: 200px;
  padding: 8px 12px;
  border: 1px solid #333333;
  border-radius: 4px;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333333;
  resize: vertical;
}
.p-recruit-form__textarea::-webkit-input-placeholder {
  color: #999999;
}
.p-recruit-form__textarea::-moz-placeholder {
  color: #999999;
}
.p-recruit-form__textarea:-ms-input-placeholder {
  color: #999999;
}
.p-recruit-form__textarea::-ms-input-placeholder {
  color: #999999;
}
.p-recruit-form__textarea::placeholder {
  color: #999999;
}
.p-recruit-form__textarea--other {
  min-height: 100px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__textarea {
    height: 197px;
    font-size: 16px;
  }
}

.p-recruit-form__privacy {
  margin-top: -4px;
  position: relative;
}
.p-recruit-form__privacy .wpcf7-list-item {
  margin: 0 0 0 2em;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__privacy .wpcf7-list-item {
    margin: 0;
  }
}
.p-recruit-form__privacy .p-recruit-form__required {
  margin-left: 31px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__privacy .p-recruit-form__required {
    margin-left: 0;
  }
}
.p-recruit-form__privacy .wpcf7-list-item-label {
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__privacy {
    margin-left: 46px;
  }
}

.p-recruit-form__privacy-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__privacy-check {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
}

.p-recruit-form__button-wrap {
  position: relative;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  max-width: 300px;
  max-height: 60px;
  margin: 0 auto;
  width: 100%;
  margin-top: 30px;
}
.p-recruit-form__button-wrap .wpcf7-spinner {
  display: none;
}
.p-recruit-form__button-wrap::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 26px;
  top: 50%;
  -webkit-transform: translateY(-51%);
          transform: translateY(-51%);
  color: #55000c;
  font-weight: 900;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__button-wrap:hover::after {
    color: white;
  }
  .p-recruit-form__button-wrap:hover .c-button--form {
    background-color: #55000c;
    border-color: #55000c;
    color: white;
  }
}

.p-recruit-form__item--address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__item--address {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 18%;
    width: 100%;
  }
}

.p-recruit-form__address-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
}
.p-recruit-form__address-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__address-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8%;
  }
  .p-recruit-form__address-row:last-child {
    margin-bottom: 0;
  }
}

.p-recruit-form__address-label {
  font-family: "Kosugi Maru", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__address-label {
    width: 120px;
  }
}

.p-recruit-form__input-wrap--zip {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__input-wrap--zip {
    width: 200px;
  }
}

.p-recruit-form__input-wrap--prefecture {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__input-wrap--prefecture {
    width: 200px;
  }
}

.p-recruit-form__input-wrap--city,
.p-recruit-form__input-wrap--street {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-form__input-wrap--city,
  .p-recruit-form__input-wrap--street {
    width: calc(100% - 120px);
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-form__button:hover {
    background-color: #ffffff;
    color: #55000c;
  }
}

.p-gurden__heading {
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-gurden__heading {
    margin-top: 75px;
  }
}
@media screen and (min-width: 1024px) {
  .p-gurden__heading {
    margin-top: 89px;
  }
}

.p-gurden__heading__title {
  white-space: nowrap;
}

.p-gurden__heading__subtitle {
  font-size: 0.875rem;
}

.p-gurden-detail {
  padding: 52px 0px 121px;
}
@media screen and (min-width: 768px) {
  .p-gurden-detail {
    padding: 65px 0px 175px;
  }
}

.p-gurden-detail__inner {
  text-align: center;
  gap: 24px;
}

.p-gurden-detail__image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
}
@media screen and (min-width: 768px) {
  .p-gurden-detail__image {
    max-height: 450px;
    margin-inline: auto;
    border-radius: 40px;
  }
}

.p-gurden-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-gurden-detail__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-gurden-detail__text {
    margin: 1px auto;
  }
}

.p-gurden-detail__title {
  font-size: clamp(1.125rem, 1.3888888889vw, 1.25rem);
  font-family: "Kosugi Maru", sans-serif;
  line-height: 1.5;
  text-align: center;
  margin: 25px auto 0;
  letter-spacing: 0.2em;
}

.p-gurden-detail__text-block {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-family: "Kosugi Maru", sans-serif;
  line-height: 2;
  letter-spacing: 0.2em;
  margin-top: 12px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-gurden-detail__text-block {
    text-align: center;
  }
}

.p-gurden-inside {
  background-image: url(../../assets/img/common/pinktentenback-sp.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  padding-block: 46px 80px;
}
@media screen and (min-width: 768px) {
  .p-gurden-inside {
    padding-block: 48px 120px;
  }
}

.p-gurden-inside__line-1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

.p-gurden-inside__line-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: 100%;
}

.p-gurden-inside__icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-gurden-inside__head {
  text-align: center;
}

.p-gurden-inside__title {
  margin-top: 3px;
  font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-gurden-inside__title {
    margin-top: 17px;
  }
}

.p-gurden-inside__subtitle {
  margin-top: 10px;
}

.p-gurden-inside img,
.swiper-slide__img img {
  aspect-ratio: 120/80;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .p-gurden-inside img,
  .swiper-slide__img img {
    aspect-ratio: 240/160;
  }
}

.p-gurden-inside .swiper {
  margin-top: 20px;
  overflow-y: hidden;
}
@media screen and (min-width: 768px) {
  .p-gurden-inside .swiper {
    margin-top: 66px;
  }
}

.p-gurden-message {
  padding-block: 80px 80px;
}
@media screen and (min-width: 768px) {
  .p-gurden-message {
    padding-block: 120px 68px;
  }
}

.p-gurden-message__head {
  text-align: center;
}

.p-gurden-message__title {
  margin-top: 11px;
  font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
  letter-spacing: 0.1em;
}
.p-gurden-message__subtitle {
  margin-top: 10px;
}

.p-gurden-message__content {
  margin-top: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.p-gurden-message__content .u-br-spacer {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-gurden-message__content {
    max-width: 800px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 62px auto;
  }
}

.p-gurden-message__image {
  width: 200px;
  height: 266.67px;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-gurden-message__image {
    width: 300px;
    height: 400px;
  }
}
.p-gurden-message__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-gurden-message__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-gurden-message__text-block {
  font-family: "Kosugi Maru", sans-serif;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-gurden-overview {
  margin-top: 9px;
  padding-bottom: 178px;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview {
    padding-bottom: 169px;
  }
}

.p-gurden-overview__calendar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__calendar-list {
    gap: 8px;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.p-gurden-overview__calendar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Kosugi Maru", sans-serif;
}

.p-gurden-overview__calendar-day {
  letter-spacing: 0.2em;
}

.p-gurden-overview__calendar-status {
  padding-top: 4px;
}

.p-gurden-overview__header {
  margin-bottom: 28px;
}

.p-gurden-overview__icon {
  width: 62px;
  height: 62px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__icon {
    width: 72px;
    height: 72px;
  }
}

.p-gurden-overview__title {
  font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__title {
    margin-top: 31px;
  }
}

.p-gurden-overview__subtitle {
  margin-top: 10px;
}

.p-gurden-overview__capacity-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__capacity-list {
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-gurden-overview__capacity-block {
  padding-block: 4px 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__capacity-block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 6px 0;
  }
}

.p-gurden-overview__capacity-num {
  margin-top: 10px;
  margin-left: -6px;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__capacity-num {
    margin-left: 0;
    margin-top: 8px;
  }
}

.p-gurden-overview__inner {
  margin-top: 59px;
  max-width: 370px;
}

.p-gurden-overview__section {
  margin-top: 12px;
}
.p-gurden-overview__section--admis {
  margin-top: 19px;
}
.p-gurden-overview__section--opening {
  margin-top: 21px;
}
.p-gurden-overview__section--time {
  margin-top: 26px;
}
.p-gurden-overview__section--capacity {
  margin-top: 17px;
}
.p-gurden-overview__section--staff {
  margin-top: 19px;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__section {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    min-height: 80px;
    border-bottom: 1px dashed #55000c;
  }
}

.p-gurden-overview__heading {
  background: #fff;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  border-radius: 0;
  padding: 17px 0;
  width: 100%;
  max-width: 345px;
  height: 50px;
  margin-bottom: 0;
  border: none;
  text-align: center;
  border-top: 1px solid #fff;
  letter-spacing: 0.2em;
}
.p-gurden-overview__heading--tel {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__heading {
    width: 200px;
    height: auto;
    min-height: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-gurden-overview__box {
  margin-top: 17px;
  padding-left: 14px;
  letter-spacing: 0.2em;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
}
.p-gurden-overview__box--tel {
  font-size: 1rem;
}
.p-gurden-overview__box--target {
  margin-top: 26px;
  padding-left: 16px;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__box {
    margin-top: 0;
    padding: 33px 23px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
  }
}

.p-gurden-overview__desc {
  margin-top: 26px;
  padding-inline: 12px 9px;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.2em;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__desc {
    padding: 29px 23px;
    margin-top: 0;
  }
}

.p-gurden-overview__calendar {
  margin-bottom: 6px;
}

.p-gurden-overview__calendar span {
  display: inline-block;
  min-width: 18px;
  font-size: 16px;
  letter-spacing: 0.16em;
}

.p-gurden-overview__note {
  font-size: clamp(0.75rem, 0.9722222222vw, 0.875rem);
  margin-top: 4px;
  letter-spacing: 0.2em;
}
.p-gurden-overview__note--capacity {
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
}
.p-gurden-overview__note--staff {
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__note {
    margin-top: -2px;
  }
}

.p-gurden-overview__table-section {
  padding: 14px 13px 0px;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__table-section {
    padding: 10px 24px 20px;
  }
}

.p-gurden-overview__table-label {
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  margin-top: 7px;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__table-label {
    margin-top: 10px;
  }
}
.p-gurden-overview__table-label:nth-of-type(2) {
  margin-top: 20px;
}

.p-gurden-overview__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  font-size: 15px;
  table-layout: fixed;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__table {
    max-width: 600px;
  }
}

.p-gurden-overview__table th {
  width: 42%;
  min-width: 120px;
  min-width: 140px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__table th {
    width: 18%;
    min-width: 150px;
  }
}

.p-gurden-overview__table th {
  text-align: center;
}

.p-gurden-overview__table th,
.p-gurden-overview__table td {
  border: 1px solid #55000c;
  padding: 14px 0px;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__table th,
  .p-gurden-overview__table td {
    padding: 11px 0px;
  }
}

.p-gurden-overview__table td {
  width: 54%;
  letter-spacing: 0.2em;
  background-color: #fff;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__table td {
    text-align: left;
  }
}

.p-gurden-overview__table th {
  background: #fff;
}

.p-gurden-overview__capacity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  margin-top: 24px;
}
.p-gurden-overview__capacity--staff {
  margin-top: 33px;
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__capacity {
    margin-top: 0;
    gap: 31px;
    margin-left: 14px;
  }
}

.p-gurden-overview__table--capacity,
.p-gurden-overview__table--staff {
  background-color: transparent;
}

.p-gurden-overview__capacity-title {
  background: #ffedf0;
  text-align: center;
  border: none;
  padding-block: 12px;
  width: 75px;
  line-height: 1.3714285714;
  letter-spacing: 0.2em;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
}
@media screen and (min-width: 768px) {
  .p-gurden-overview__capacity-title {
    width: 80px;
  }
}

.p-gurden-overview__table--capacity td,
.p-gurden-overview__table--staff td {
  font-size: 14px;
  border: none;
  padding: 0;
}

.p-gurden-letters {
  padding-bottom: 52px;
}
@media screen and (min-width: 768px) {
  .p-gurden-letters {
    padding-bottom: 80px;
  }
}

.p-gurden-letters__list {
  margin-top: 90px;
  gap: 23px;
}
@media screen and (min-width: 768px) {
  .p-gurden-letters__list {
    margin-top: 43px;
  }
}

@media screen and (min-width: 768px) {
  .p-gurden-overview__capacity-flex {
    padding: 30px 26px;
  }
}

.p-gurden-letters__card-link {
  max-height: 270px;
  min-height: 270px;
}

.p-gurden-letters__card-image {
  padding-top: 41.25%;
}

.p-gurden-letters__card-body {
  padding: 18px 13px 11px;
}

.p-gurden-letters__card-body > *:not(:first-child) {
  margin-top: 10px;
}

.p-gurden-letters__card-title {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
}

.p-gurden-letters__card-text {
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
}

.p-gurden-letters__card-date {
  font-size: clamp(0.75rem, 0.9722222222vw, 0.875rem);
}

.p-gurden-letters__button-wrap {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-gurden-letters__button-wrap {
    margin-top: 57px;
  }
}

.p-gurden-letters__button {
  max-width: 240px;
  padding-block: 20px;
}

.p-komorebi-single {
  margin-top: 86px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-komorebi-single {
    width: calc(73% - 5px);
  }
}

.p-komorebi-single__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-single__inner {
    padding: 0;
  }
}

.p-komorebi-single__heading {
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-komorebi-single__heading {
    margin-top: 89px;
  }
}
@media screen and (min-width: 1500px) {
  .p-komorebi-single__heading {
    margin-top: 119px;
  }
}

@media screen and (min-width: 768px) {
  .p-komorebi-single__breadcrumb {
    margin-top: 5px;
  }
}

.p-komorebi-single__breadcrumb__inner {
  width: 99.2%;
}
@media screen and (min-width: 768px) {
  .p-komorebi-single__breadcrumb__inner {
    width: 75%;
  }
}

.p-komorebi-single__container {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 33px 10px 65px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-single__container {
    padding: 28px 33px 64px;
  }
}

.p-komorebi-single__article-title {
  margin-top: 11px;
  color: #333333;
  font-size: clamp(1.25rem, 2.2222222222vw, 2rem);
  border-bottom: 1px solid #333333;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-single__article-title {
    letter-spacing: 0.1em;
  }
}

@media screen and (min-width: 768px) {
  .p-komorebi-single__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.p-komorebi-single__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "Kosugi Maru", sans-serif;
  color: #333333;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
}
.p-komorebi-single__category i {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-single__category i {
    font-size: 14px;
  }
}

.p-komorebi-single__date {
  color: #333333;
  font-size: clamp(0.75rem, 0.9722222222vw, 0.875rem);
  margin-right: -3px;
}

.p-komorebi-single__image {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-komorebi-single__image {
    margin-top: 32px;
  }
}
.p-komorebi-single__image img {
  aspect-ratio: 315/240;
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-single__image img {
    aspect-ratio: 640/320;
    border-radius: 40px;
  }
}

.p-komorebi-single__title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-single__title-block {
    margin-top: 32px;
  }
}

.p-komorebi-single__content + .p-komorebi-single__content .p-komorebi-single__title-block {
  margin-top: 38px;
}

.p-komorebi-single__title-marker {
  width: 4px;
  min-width: 4px;
  height: 32px;
  background-color: #ef8f9c;
  border-radius: 2px;
}

.p-komorebi-single__title {
  color: #333333;
}

.p-komorebi-single__text {
  line-height: 2;
  color: #333333;
  margin-top: 8px;
}
.p-komorebi-single__text:last-child {
  margin-bottom: 0;
}

.p-komorebi-single__back {
  width: 100%;
}

.p-komorebi-single__back-btn {
  font-size: 1.125rem;
  max-width: 300px;
  margin: 54px auto 0;
  padding-block: 19px;
}
@media screen and (min-width: 768px) {
  .p-komorebi-single__back-btn {
    max-width: 300px;
  }
}
.p-news-single {
  margin-top: 51px;
  padding-bottom: 79px;
}
@media screen and (min-width: 768px) {
  .p-news-single {
    margin-top: 119px;
    padding-bottom: 117px;
  }
}

.p-news-single__breadcrumb-item {
  height: 27px;
}

.p-news-single__heading {
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-news-single__heading {
    margin-top: 89px;
  }
}
@media screen and (min-width: 1500px) {
  .p-news-single__heading {
    margin-top: 119px;
  }
}

.p-news-single__breadcrumb {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-news-single__breadcrumb {
    margin-top: 12px;
  }
}

.p-news-single__breadcrumb__inner {
  width: 99.2%;
}
@media screen and (min-width: 768px) {
  .p-news-single__breadcrumb__inner {
    width: 75%;
  }
}

.p-news-single__container {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 29px 17px 65px;
}
@media screen and (min-width: 768px) {
  .p-news-single__container {
    padding: 28px 33px 64px;
  }
}

.p-news-single__article-title {
  margin-top: 11px;
  color: #333333;
  font-size: clamp(1.25rem, 2.2222222222vw, 2rem);
  border-bottom: 1px solid #333333;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-news-single__article-title {
    letter-spacing: 0.1em;
  }
}

@media screen and (min-width: 768px) {
  .p-news-single__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.p-news-single__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "Kosugi Maru", sans-serif;
  color: #333333;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
}
.p-news-single__category i {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-news-single__category i {
    font-size: 14px;
  }
}

.p-news-single__date {
  color: #333333;
  font-size: clamp(0.75rem, 0.9722222222vw, 0.875rem);
  margin-right: -3px;
  letter-spacing: 0.1em;
}

.p-news-single__image {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news-single__image {
    margin-top: 32px;
  }
}
.p-news-single__image img {
  aspect-ratio: 315/156;
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .p-news-single__image img {
    aspect-ratio: 640/320;
    border-radius: 40px;
  }
}

.p-news-single__title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-news-single__title-block {
    margin-top: 8px;
  }
}

.p-news-single__content + .p-news-single__content .p-news-single__title-block {
  margin-top: 42px;
}

.p-news-single__title-marker {
  width: 4px;
  min-width: 4px;
  height: 32px;
  background-color: #ef8f9c;
  border-radius: 2px;
}

.p-news-single__title {
  color: #333333;
}

.p-news-single__text {
  line-height: 2;
  color: #333333;
  margin-top: 8px;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  letter-spacing: 0.1em;
}
.p-news-single__text:last-child {
  margin-bottom: 0;
}

.p-news-single__back {
  width: 100%;
}

.p-news-single__back-btn {
  font-size: 1.125rem;
  max-width: 300px;
  margin: 57px auto 0;
  padding-block: 19px;
}
@media screen and (min-width: 768px) {
  .p-news-single__back-btn {
    max-width: 300px;
    margin: 72px auto 0;
  }
}
/* site-map */
.p-site-map {
  background-image: url(../../assets/img/common/pinktentenback-sp.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 62px;
  margin-top: 73px;
}
@media screen and (min-width: 768px) {
  .p-site-map {
    padding-bottom: 78px;
    margin-top: 122px;
  }
}

.p-site-map-heading {
  margin-top: 20%;
}
@media screen and (min-width: 768px) {
  .p-site-map-heading {
    margin-top: 82px;
  }
}
@media screen and (min-width: 1500px) {
  .p-site-map-heading {
    margin-top: 119px;
  }
}

.p-site-map-breadcrumb__inner {
  width: 99.2%;
}
@media screen and (min-width: 768px) {
  .p-site-map-breadcrumb__inner {
    width: 75%;
  }
  .p-site-map-breadcrumb__inner .c-breadcrumb__link {
    -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
    transition: color 0.3s ease, -webkit-transform 0.3s ease;
    transition: color 0.3s ease, transform 0.3s ease;
    transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    display: inline-block;
  }
  .p-site-map-breadcrumb__inner .c-breadcrumb__link:hover {
    color: #55000c;
  }
}

.p-site-map__line-1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

.p-site-map__line-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: 100%;
}

.p-site-map__icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-site-map__icon img {
  width: 47px;
  height: 47px;
}
@media screen and (min-width: 768px) {
  .p-site-map__icon img {
    width: 64px;
    height: 64px;
  }
}

.p-site-map__inner {
  padding-top: 48px;
}

.p-site-map__title {
  text-align: center;
}

.p-site-map__content {
  padding: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-site-map__content {
    padding: 0px;
    margin-top: 34px;
    width: 100%;
  }
}

.p-site-map__container {
  width: 345px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 33px 22px 37px 22px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-site-map__container {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-radius: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 64px 13% 58px 13%;
  }
}

.p-site-map__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-site-map__column {
    width: 360px;
  }
}

.p-site-map__item {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 3px 0 3px;
  background-color: transparent;
  border-bottom: 1px dashed #55000c;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  color: #55000c;
}
@media screen and (min-width: 768px) {
  .p-site-map__item {
    padding: 4px 0 4px;
  }
  .p-site-map__item:hover {
    background-color: rgba(255, 249, 203, 0.3);
  }
  .p-site-map__item:hover .p-site-map__item-icon {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    background-color: #ffecec;
  }
  .p-site-map__item:hover .p-site-map__item-arrow {
    -webkit-transform: translateY(-50%) translateX(3px);
            transform: translateY(-50%) translateX(3px);
  }
}

.p-site-map__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 12px;
}
@media screen and (min-width: 768px) {
  .p-site-map__item-content {
    padding-left: 3px;
  }
}

.p-site-map__item-icon {
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff9cb;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 8px;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-site-map__item-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}

.p-site-map__item-text {
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: clamp(1rem, 1.3888888889vw, 1.25rem);
}
.p-site-map__item-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 12.8px;
  background-image: url("../../assets/img/site-map/chevron-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #55000c;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-site-map__item-arrow {
    right: 12px;
  }
}

@media screen and (min-width: 768px) {
  .u-dn-pc {
    display: none;
  }
}

.u-dn-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-dn-sp {
    display: block;
  }
}

.u-cf::after {
  clear: both;
  content: "";
  display: block;
}

.u-inner {
  margin-inline: auto;
  padding-inline: 36px;
}
@media screen and (min-width: 768px) {
  .u-inner {
    padding-inline: 20px;
    max-width: 1120px;
  }
}
.u-inner--15 {
  margin-inline: auto;
  padding-inline: 14px;
}
@media screen and (min-width: 768px) {
  .u-inner--15 {
    padding-inline: 20px;
    max-width: 1120px;
  }
}

.u-capitalize {
  text-transform: capitalize;
  font-weight: 900;
}

.u-uppercase {
  text-transform: uppercase;
  font-weight: 900;
}

.u-clear-text-transform {
  text-transform: none;
}

@media screen and (min-width: 768px) {
  .w-100 {
    width: 100%;
  }
}

.u-br-spacer {
  display: block;
  height: 0.5em;
}