@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body {
  font-size: 1rem;
  color: #101a22;
}

@media (min-width: 820px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

html {
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 499px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  html {
    font-size: calc(16 / 375 * 500 * 1px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1439px) {
  html {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

button {
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
}

body.is-scroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 2.5rem;
  height: 4.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 1.25rem;
    height: 60px;
  }
}

.header__logo a {
  display: block;
  width: 5.625rem;
  aspect-ratio: 90/60;
}
@media screen and (max-width: 768px) {
  .header__logo a {
    width: 3.75rem;
  }
}

.header__logo-img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.home .header__logo-img {
  -webkit-filter: none;
          filter: none;
}

.header__contents {
  width: 55.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__contents {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  list-style: none;
}

.header__nav-link {
  display: grid;
  place-content: center;
  height: 4.375rem;
  padding: 0 1rem;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.3866666158em;
  color: #101a22;
}

.header__nav-link span {
  padding: 0.1875rem 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#101a22), to(#101a22));
  background-image: linear-gradient(#101a22, #101a22);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}

@media (any-hover: hover) {
  .header__nav-link:hover span {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}
.header__contact {
  padding-bottom: 0.0625rem;
}
@media screen and (max-width: 768px) {
  .header__contact {
    display: none;
  }
}

.header__contact-btn {
  width: 9rem;
  display: inline-block;
  padding: 0.75rem 1.4375rem;
  background-color: #101a22;
  border-radius: 94px;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1em;
  color: #fff;
  text-align: center;
  -webkit-box-shadow: inset 1px 1px 1px 0px rgba(255, 255, 255, 0.25);
          box-shadow: inset 1px 1px 1px 0px rgba(255, 255, 255, 0.25);
  -webkit-transition: background-color color border 0.3s ease;
  transition: background-color color border 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__contact-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    width: auto;
  }
}

@media (any-hover: hover) {
  .header__contact-btn:hover {
    background: #fff;
    color: #101a22;
    border: 1px solid #101a22;
  }
}
.home .header.js-active {
  background-color: #fff;
}

.home .header.js-active .header__logo-img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.drawer__icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer__icon {
    display: block;
    position: absolute;
    z-index: 102;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 16px;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #101a22;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.home .drawer__icon--bar {
  background: #fff;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 17.375rem;
  height: 100svh;
  background: #101a22;
  overflow-y: scroll;
  visibility: hidden;
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
  visibility: visible;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 88px 40px;
  padding-left: 34px;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
}
.drawer__list li a {
  display: block;
  padding: 0.75rem 0;
  color: #B2A295;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
}

.drawer__btn {
  display: inline-block;
  padding: 6px 30px;
  background: #fff;
  border-radius: 100vmax;
  color: #001A75;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
}

.footer__block {
  width: 100%;
  padding: 7rem 0 0;
  background-color: #101a22;
}
@media screen and (max-width: 768px) {
  .footer__block {
    padding: 3.75rem 1.25rem 0;
  }
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    width: 100%;
  }
}

.footer__info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__logo {
  width: 5.625rem;
  height: 3.75rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 3.75rem;
    height: 2.5rem;
  }
}

.footer__address {
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .footer__address {
    margin-top: 1.25rem;
    width: 100%;
  }
}

.footer__address-text {
  font-family: "游明朝", YuMincho, "Yu Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: #B2A295;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer__address-text {
    font-size: 0.875rem;
  }
}

.footer__address-text a {
  color: #B2A295;
}

.footer__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__nav-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: 1.125rem;
  width: 7.0625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    width: 100%;
  }
}

.footer__nav-item {
  width: 100%;
}

.footer__nav-link {
  display: block;
  font-family: "游明朝", YuMincho, "Yu Mincho", serif;
  font-weight: 500;
  font-size: 1.1875rem;
  line-height: 1.2631578947;
  letter-spacing: -0.01em;
  color: #B2A295;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .footer__nav-link {
    font-size: 1rem;
  }
}

.footer__nav-link span {
  padding: 0.1875rem 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#B2A295), to(#B2A295));
  background-image: linear-gradient(#B2A295, #B2A295);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}

.footer__nav-item:nth-child(n+3) .footer__nav-link {
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
@media screen and (max-width: 768px) {
  .footer__nav-item:nth-child(n+3) .footer__nav-link {
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .footer__nav-link:hover span {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}
.footer__bottom {
  margin-top: 12rem;
  width: 100%;
  border-top: 1px solid rgba(178, 162, 149, 0.3);
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    margin-top: 3.75rem;
  }
}

.footer__bottom-inner {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 49.4375rem;
  width: 80rem;
  max-width: 100%;
  padding: 1.75rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__bottom-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    padding: 1.25rem 0;
  }
}

.footer__copyright-group {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footer__copyright-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}

.footer__copyright {
  display: block;
  font-family: "Cardo", serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1;
  color: rgba(178, 162, 149, 0.6);
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 0.75rem;
  }
}

.footer__privacy {
  display: block;
  font-family: "游明朝", YuMincho, "Yu Mincho", serif;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1;
  color: rgba(178, 162, 149, 0.6);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .footer__privacy {
    font-size: 0.75rem;
  }
}

@media (any-hover: hover) {
  .footer__privacy:hover {
    opacity: 0.7;
  }
}
.footer__pagetop {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footer__pagetop {
    width: 100%;
  }
}

.footer__pagetop-link {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 100;
  display: block;
  font-family: "Cardo", serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  color: #B2A295;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -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;
}
@media screen and (max-width: 768px) {
  .footer__pagetop-link {
    bottom: 1.25rem;
    right: 1.25rem;
    font-size: 0.875rem;
    text-align: right;
  }
}
.footer__pagetop-link.js-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (any-hover: hover) {
  .footer__pagetop-link:hover {
    opacity: 0.7;
  }
}
.contact-top {
  width: 100%;
  padding: 3.5625rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-top {
    padding: 2rem 0 2.25rem;
  }
}
.contact-top::before {
  content: "";
  width: 80rem;
  height: 1px;
  background-color: rgba(16, 26, 34, 0.1);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .contact-top::before {
    width: calc(100% - 2.5rem);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.contact-top__content {
  width: 52.875rem;
  margin-inline: auto;
  background-color: #f2f0ee;
  padding: 2.75rem 6.5625rem 3.1875rem 6.5625rem;
}
@media screen and (max-width: 768px) {
  .contact-top__content {
    width: 100%;
    padding: 1.75rem 1.25rem 2rem;
  }
}

.contact-top__title {
  font-family: "YuMincho", "游明朝", serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.96;
  letter-spacing: -0.01em;
  color: #101a22;
  margin: 0 0 0.875rem 0;
}
@media screen and (max-width: 768px) {
  .contact-top__title {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }
}

.contact-top__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
}
@media screen and (max-width: 768px) {
  .contact-top__info {
    gap: 0.75rem;
  }
}

.contact-top__tel-fax {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #101a22;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact-top__tel-fax {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.contact-top__tel-fax a {
  color: #101a22;
  text-decoration: none;
}
.contact-top__tel-fax a:hover {
  text-decoration: underline;
}

.contact-top__hours {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #101a22;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact-top__hours {
    font-size: 0.8125rem;
  }
}

.contact-form {
  width: 100%;
  padding: 4.625rem 0 13.875rem;
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 1.5rem 0 3rem;
  }
}

.contact-form__list {
  width: 52.875rem;
  margin: 0 auto;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .contact-form__list {
    width: 100%;
    gap: 1.125rem;
  }
}

.contact-form__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
}

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

.contact-form__label {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  color: #101a22;
}
@media screen and (max-width: 768px) {
  .contact-form__label {
    font-size: 0.875rem;
  }
}

.contact-form__badge {
  display: block;
  padding: 0.25rem 0.5rem;
  border-radius: 1.5625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-form__badge--required {
  background-color: #C60101;
}
.contact-form__badge--optional {
  background-color: #999999;
}

.contact-form__radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.contact-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: 0.5rem;
}
@media screen and (max-width: 768px) {
  .contact-form__radio {
    padding-left: 0;
  }
}

.contact-form__radio span label input {
  margin: 0;
  width: 0.875rem;
  height: 0.875rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #f2f0ee;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-form__radio span label input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 0.25rem;
  height: 0.5rem;
  border-right: 2px solid #101a22;
  border-bottom: 2px solid #101a22;
}

.contact-form__radio span {
  margin: 0;
}

.contact-form__radio .wpcf7-list-item-label {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 2;
  color: #101a22;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  background-color: #f2f0ee;
  border: none;
  border-radius: 0.3125rem;
  padding: 1.125rem 1.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 2;
  color: #101a22;
}
@media screen and (max-width: 768px) {
  .contact-form__input,
  .contact-form__textarea {
    margin-left: 0;
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
}
.contact-form__input::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder {
  color: #999999;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #999999;
}
.contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
  color: #999999;
}
.contact-form__input::-ms-input-placeholder, .contact-form__textarea::-ms-input-placeholder {
  color: #999999;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #999999;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: 2px solid #101a22;
  outline-offset: 2px;
}

.contact-form__textarea {
  min-height: 15.4375rem;
  resize: vertical;
  padding: 1.125rem;
}
@media screen and (max-width: 768px) {
  .contact-form__textarea {
    min-height: 11.25rem;
    height: 12.5rem;
    padding: 0.875rem 1rem;
  }
}

.contact-privacy__block {
  width: 53.75rem;
  height: 24.125rem;
  margin-top: 7.5rem;
  margin-left: 13.5625rem;
  background-color: #f2f0ee;
  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: 1.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-privacy__block {
    width: 100%;
    height: 18.75rem;
    min-height: 15rem;
    margin-top: 1.75rem;
    margin-left: 0;
    gap: 1.125rem;
  }
}

.contact-privacy__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: calc(100% - 0.875rem);
  height: 3.5rem;
  background: #f2f0ee;
}
@media screen and (max-width: 768px) {
  .contact-privacy__block::before {
    height: 1.25rem;
  }
}

.contact-privacy__block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 0.875rem);
  height: 3.5rem;
  background: #f2f0ee;
}
@media screen and (max-width: 768px) {
  .contact-privacy__block::after {
    height: 1.25rem;
  }
}

.contact-privacy__policy {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  position: relative;
  overflow-y: auto;
}

.contact-privacy__policy-inner {
  padding: 5rem 4rem 3.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-privacy__policy-inner {
    width: 100%;
    padding: 1.75rem 1rem 1.5rem;
  }
}
.contact-privacy__policy-inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.875rem;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact-privacy__policy-inner::after {
    width: 0.5rem;
  }
}

.contact-privacy__policy-title {
  font-family: "YuMincho", "游明朝", serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.13;
  letter-spacing: -0.01em;
  color: #101a22;
  text-align: center;
  margin: 0 0 4rem 0;
}
@media screen and (max-width: 768px) {
  .contact-privacy__policy-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}

.contact-privacy__policy-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .contact-privacy__policy-content {
    gap: 0.625rem;
  }
}
.contact-privacy__policy-content p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #101a22;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact-privacy__policy-content p {
    font-size: 0.8125rem;
    line-height: 1.65;
  }
}
.contact-privacy__policy-content p strong {
  font-weight: 700;
}
.contact-privacy__policy-content p a {
  color: #101a22;
}
.contact-privacy__policy-content p a:hover {
  text-decoration: none;
}

.contact-privacy__label {
  margin-top: 2.5rem;
  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: 0.5rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact-privacy__label {
    margin-top: 1.25rem;
    gap: 0.375rem;
  }
}

.contact-privacy__label-inner {
  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;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-privacy__label-inner {
    gap: 0.625rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.contact-privacy__checkbox {
  width: 0.875rem;
  height: 0.875rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0.125rem;
  background-color: #F5F5F3;
  position: relative;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-privacy__checkbox:checked {
  background-color: #F5F5F3;
}
.contact-privacy__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 0.25rem;
  height: 0.5rem;
  border-right: 2px solid #2E2E2E;
  border-bottom: 2px solid #2E2E2E;
}

.contact-privacy__text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 2;
  color: #2E2E2E;
}
@media screen and (max-width: 768px) {
  .contact-privacy__text {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}

.contact-privacy__badge {
  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;
  width: 2.6875rem;
  height: 1.3125rem;
  border-radius: 1.5625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-privacy__badge--required {
  background-color: #C60101;
}

.wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .wpcf7-list-item label {
    gap: 0.625rem;
  }
}

.contact-privacy__submit {
  margin-top: 2.625rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .contact-privacy__submit {
    margin-top: 1.75rem;
  }
}

.contact-privacy__btn {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 0.8125rem 1.5625rem;
  width: 15.125rem;
  background-color: rgba(16, 26, 34, 0.5);
  border: none;
  border-radius: 4rem;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-privacy__btn {
    width: 100%;
    max-width: 20.9375rem;
    font-size: 0.875rem;
    padding: 0.875rem 1.25rem;
    gap: 0.75rem;
  }
}
.contact-privacy__btn:hover:not(:disabled) {
  opacity: 0.8;
}
.contact-privacy__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wpcf7-form:valid .contact-privacy__btn:not(:disabled),
form:valid .contact-privacy__btn:not(:disabled) {
  background-color: rgb(16, 26, 34);
}

.wpcf7-form.wpcf7-valid .contact-privacy__btn:not(:disabled) {
  background-color: rgb(16, 26, 34);
}

.contact-privacy__btn-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-privacy__btn-icon {
  width: 1.5rem;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 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;
}
@media screen and (max-width: 768px) {
  .contact-privacy__btn-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.contact-privacy__btn-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.wpcf7-not-valid-tip {
  color: #C60101;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-form .wpcf7-form > p {
    margin-bottom: 1.125rem;
  }
  .contact-form .wpcf7-form > p:last-of-type {
    margin-bottom: 0;
  }
}

.confirm__area {
  width: 100%;
  max-width: 52.875rem;
  margin: 0 auto;
  padding-top: 1.5rem;
}

.confirm__area-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: 2rem;
}
@media screen and (max-width: 768px) {
  .confirm__area-inner {
    gap: 1.5rem;
  }
}

.confirm__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #101a22;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .confirm__title {
    font-size: 1.125rem;
  }
}

.confirm__area .contact-form__list {
  margin-bottom: 0;
}

.confirm__area .contact-form__input.confirm__value,
.confirm__area .contact-form__textarea.confirm__value {
  outline: none;
  cursor: default;
  white-space: pre-wrap;
  word-break: break-all;
}

.confirm__area .contact-form__textarea.confirm__value {
  resize: none;
  min-height: 15.4375rem;
}
@media screen and (max-width: 768px) {
  .confirm__area .contact-form__textarea.confirm__value {
    min-height: 11.25rem;
    height: auto;
  }
}

.confirm__privacy-row.contact-privacy__label {
  margin-top: 1.5rem;
  cursor: default;
}
@media screen and (max-width: 768px) {
  .confirm__privacy-row.contact-privacy__label {
    margin-top: 1.125rem;
  }
}

.confirm__privacy-checkbox {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.125rem;
  background-color: #F5F5F3;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.confirm__privacy-checkbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 0.25rem;
  height: 0.5rem;
  border-right: 2px solid #2E2E2E;
  border-bottom: 2px solid #2E2E2E;
}

.confirm__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .confirm__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
  }
}

.confirm__back {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 0.8125rem 2rem;
  background-color: transparent;
  border: 1px solid #101a22;
  border-radius: 4rem;
  color: #101a22;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .confirm__back {
    width: 100%;
    max-width: 20.9375rem;
    font-size: 0.875rem;
    padding: 0.875rem 1.25rem;
  }
}
.confirm__back:hover {
  opacity: 0.8;
}

.contact-header__block {
  width: 100%;
  background-color: #fff;
  padding: 5rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .contact-header__block {
    margin-top: 3.75rem;
    padding: 2rem 0 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-header .page-header__inner.inner {
    max-width: none;
  }
}

.daily-header__block {
  width: 100%;
  background-color: #fff;
  padding: 7.125rem 0 7.1875rem;
}
@media screen and (max-width: 768px) {
  .daily-header__block {
    margin-top: 3.75rem;
    padding: 1.25rem 0 1.25rem;
  }
}

.daily-header .header__title {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .daily-header .header__title {
    font-size: 1.75rem;
    line-height: 1.35;
  }
}

.header__title-group {
  margin-top: 5.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .header__title-group {
    margin-top: 3.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
}

.header__text {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #101a22;
}
@media screen and (max-width: 768px) {
  .header__text {
    font-size: 0.875rem;
    line-height: 1.65;
    letter-spacing: 0.04em;
  }
}

.daily-gallery__block {
  margin-top: 2.625rem;
  padding: 4rem 0 16.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .daily-gallery__block {
    margin-top: 1.875rem;
    padding: 2.5rem 0 2.5rem;
  }
}

.daily-gallery__block::before {
  content: "";
  width: 80rem;
  height: 1px;
  background-color: rgba(16, 26, 34, 0.062745098);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .daily-gallery__block::before {
    width: 100%;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}

.daily-gallery__category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .daily-gallery__category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.25rem;
  }
}

.daily-gallery__category-label {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #101a22;
}

.daily-gallery__category-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .daily-gallery__category-buttons {
    row-gap: 0.5rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.daily-gallery__category-btn {
  width: 12.25rem;
  padding: 0.5625rem 1.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(16, 26, 34, 0.5);
  background-color: #fff;
  border: 1px solid rgba(16, 26, 34, 0.5);
  border-radius: 1.375rem;
  cursor: pointer;
  -webkit-transition: color 0.3s, color 0.3s, border 0.3s;
  transition: color 0.3s, color 0.3s, border 0.3s;
}
@media screen and (max-width: 768px) {
  .daily-gallery__category-btn {
    width: auto;
    min-width: 7.5rem;
    font-size: 0.875rem;
    padding: 0.375rem 1.875rem;
  }
}
.daily-gallery__category-btn--active {
  background-color: #101a22;
  color: #fff;
  border-color: #101a22;
}
.daily-gallery__category-btn:hover:not(.daily-gallery__category-btn--active) {
  border: 1px solid rgb(16, 26, 34);
  color: rgb(16, 26, 34);
}

.daily-gallery-tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  translate: 0 20px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.daily-gallery-tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 30.5rem;
  margin-top: 8.875rem;
  translate: 0;
}
@media screen and (max-width: 768px) {
  .daily-gallery-tabs__content-wrap.js-show {
    min-height: auto;
    margin-top: 2.5rem;
  }
}

.daily-gallery__list {
  width: 100%;
  max-width: 66.375rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.25rem;
     -moz-column-gap: 2.25rem;
          column-gap: 2.25rem;
  row-gap: 4rem;
}
@media screen and (max-width: 768px) {
  .daily-gallery__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
    row-gap: 1.5rem;
  }
}

.daily-gallery__empty {
  width: 100%;
  max-width: 66.375rem;
  margin: 3.75rem auto 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #101a22;
}
@media screen and (max-width: 768px) {
  .daily-gallery__empty {
    margin-top: 2.5rem;
    font-size: 0.875rem;
    padding-inline: 0.625rem;
  }
}

.daily-gallery__item {
  width: 20.5625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .daily-gallery__item {
    width: 100%;
    min-width: 0;
  }
}

.daily-gallery__link {
  display: block;
  position: relative;
  width: 100%;
  text-decoration: none;
}

.daily-gallery__image {
  width: 100%;
  height: 13.8125rem;
  border-radius: 0.3125rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .daily-gallery__image {
    height: auto;
    aspect-ratio: 329/221;
    min-height: 8.75rem;
  }
}

.daily-gallery__img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 5px;
  -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 (any-hover: hover) {
  .daily-gallery__link:hover .daily-gallery__img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.daily-gallery__tag {
  margin-top: 0.625rem;
  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: 0.3125rem 1.5rem;
  background-color: #101a22;
  border-radius: 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .daily-gallery__tag {
    margin-top: 0.5rem;
    padding: 0.25rem 1rem;
    font-size: 0.6875rem;
  }
}

.daily-gallery__pagination {
  width: 66.375rem;
  margin: 8.4375rem auto 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;
  gap: 2.1875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .daily-gallery__pagination {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    margin-top: 3.75rem;
  }
}

.daily-gallery__pagination-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .daily-gallery__pagination-numbers {
    gap: 1.5rem;
  }
}

.daily-gallery__pagination-current {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #101a22;
}
@media screen and (max-width: 768px) {
  .daily-gallery__pagination-current {
    font-size: 1.125rem;
  }
}

.daily-gallery__pagination-number {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: rgba(16, 26, 34, 0.5);
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  text-decoration: none;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .daily-gallery__pagination-number {
    font-size: 1.125rem;
  }
}
.daily-gallery__pagination-number--active {
  color: #101a22;
}
.daily-gallery__pagination-number:hover:not(.daily-gallery__pagination-number--active) {
  color: #101a22;
}

.daily-gallery__pagination-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #101a22;
  text-decoration: none;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .daily-gallery__pagination-prev {
    gap: 0.75rem;
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-bottom: 0.625rem;
  }
}

.daily-gallery__pagination-prev-icon {
  width: 1.3125rem;
  height: 1.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 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;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #101a22;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -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 (max-width: 768px) {
  .daily-gallery__pagination-prev-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.daily-gallery__pagination-prev-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #101a22;
  -webkit-transition: -webkit-text-decoration 0.3s ease;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
@media screen and (max-width: 768px) {
  .daily-gallery__pagination-prev-text {
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .daily-gallery__pagination-prev:hover .daily-gallery__pagination-prev-text {
    text-decoration: underline;
    text-decoration-color: #101a22;
    text-underline-offset: 0.25rem;
  }
  .daily-gallery__pagination-prev:hover .daily-gallery__pagination-prev-icon {
    -webkit-transform: rotate(180deg) translateX(0.25rem);
            transform: rotate(180deg) translateX(0.25rem);
  }
}
.daily-gallery__pagination-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #101a22;
  text-decoration: none;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .daily-gallery__pagination-next {
    gap: 0.75rem;
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-top: 0.625rem;
  }
}

@media (any-hover: hover) {
  .daily-gallery__pagination-next:hover .daily-gallery__pagination-next-text {
    text-decoration: underline;
    text-decoration-color: #101a22;
    text-underline-offset: 0.25rem;
  }
  .daily-gallery__pagination-next:hover .daily-gallery__pagination-next-icon {
    -webkit-transform: translateX(0.25rem);
            transform: translateX(0.25rem);
  }
}
.daily-gallery__pagination-next-icon {
  width: 1.3125rem;
  height: 1.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 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;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #101a22;
  -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 (max-width: 768px) {
  .daily-gallery__pagination-next-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.daily-gallery__pagination-next-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.daily-gallery__pagination-next-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #101a22;
  -webkit-transition: -webkit-text-decoration 0.3s ease;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
@media screen and (max-width: 768px) {
  .daily-gallery__pagination-next-text {
    font-size: 0.875rem;
  }
}

.inner {
  width: 100%;
  height: 100%;
  max-width: 85rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 1.25rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .inner {
    max-width: 500px;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

.btn {
  font-family: "Zen Old Mincho", "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1em;
  letter-spacing: -0.01em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.8125rem 1.5625rem;
  background-color: #101a22;
  border: 1px solid #101a22;
  border-radius: 64px;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -3em 0 #fff, 0 0 0 #fff;
  -webkit-transition: text-shadow 0.3s;
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 100%;
    max-width: 193px;
    margin-top: 0;
    font-size: 0.875rem;
    padding: 0.5rem 0.875rem 0.5rem 1.25rem;
  }
}

@media (any-hover: hover) {
  .btn:hover {
    text-shadow: 0 0 0 #fff, 0 3em 0 #fff;
  }
  .btn:hover .btn-icon {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
}
.btn-icon {
  width: 1.5rem;
  aspect-ratio: 1/1;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -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 (max-width: 768px) {
  .btn-icon {
    width: 1.125rem;
  }
}

.header__title {
  margin-top: 5.875rem;
  font-family: "游明朝", YuMincho, "Yu Mincho", serif;
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1.1785714286em;
  letter-spacing: -0.01em;
  color: #101a22;
}
@media screen and (max-width: 768px) {
  .header__title {
    margin-top: 1.25rem;
    font-size: 2rem;
  }
}

.section-title__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.595703125rem;
}
@media screen and (max-width: 768px) {
  .section-title__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.625rem;
  }
}

.section-title__label {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #101a22;
}

.section-title__title {
  font-family: "游明朝", YuMincho, "Yu Mincho", serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.46;
  letter-spacing: -0.01em;
  color: #101a22;
}
@media screen and (max-width: 768px) {
  .section-title__title {
    font-size: 1.75rem;
  }
}

.company-section-title {
  font-family: "游明朝", YuMincho, "Yu Mincho", serif;
  font-weight: 500;
  font-size: 2.75rem;
  letter-spacing: -0.01em;
  color: #101a22;
}
@media screen and (max-width: 768px) {
  .company-section-title {
    font-size: 1.625rem;
  }
}

.header__breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__breadcrumb-link {
  font-family: "游明朝", YuMincho, "Yu Mincho", serif;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1em;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color text-decoration 0.3s ease;
  transition: color text-decoration 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__breadcrumb-link {
    font-size: 0.625rem;
  }
}
@media (any-hover: hover) {
  .header__breadcrumb-link:hover {
    color: #101a22;
    text-decoration: underline;
  }
}

.header__breadcrumb-separator {
  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: 0.375rem;
  height: 0.4375rem;
}

.header__breadcrumb-current {
  font-family: "游明朝", YuMincho, "Yu Mincho", serif;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1em;
  letter-spacing: -0.01em;
  color: #101a22;
}
@media screen and (max-width: 768px) {
  .header__breadcrumb-current {
    font-size: 0.625rem;
  }
}

.fade .animation-bg {
  background: #fff;
  content: "";
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-animation-name: PageAnime-fade;
          animation-name: PageAnime-fade;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  pointer-events: none;
}

@-webkit-keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.gsap-char {
  display: inline-block;
  overflow: hidden;
}

.gsap-char-text {
  display: inline-block;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-delay: calc(0.08s * var(--char-index, 0));
          transition-delay: calc(0.08s * var(--char-index, 0));
}

.animated__char.js-show .gsap-char-text {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.error-page {
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .error-page {
    min-height: 50vh;
    padding: 3.75rem 0;
  }
}

.error-page__section {
  width: 100%;
}

.error-page__content {
  text-align: center;
  max-width: 50rem;
  margin-inline: auto;
}

.error-page__code {
  font-family: "Zen Old Mincho", serif;
  font-size: 7.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #101a22;
  opacity: 0.15;
  margin-bottom: -1.25rem;
}
@media screen and (max-width: 768px) {
  .error-page__code {
    font-size: 5rem;
    margin-bottom: -1rem;
  }
}

.error-page__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #101a22;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .error-page__title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}

.error-page__lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #101a22;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .error-page__lead {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

.error-page__text {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #555555;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .error-page__text {
    font-size: 0.8125rem;
    margin-bottom: 2rem;
  }
}

.error-page__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.error-page__btn.btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thanks-page {
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .thanks-page {
    min-height: 50vh;
    padding: 3.75rem 0;
  }
}

.thanks-page__section {
  width: 100%;
}

.thanks-page__content {
  text-align: center;
  max-width: 35rem;
  margin-inline: auto;
}

.thanks-page__lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #101a22;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .thanks-page__lead {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.thanks-page__text {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #555555;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .thanks-page__text {
    font-size: 0.8125rem;
    margin-bottom: 2rem;
  }
}

.thanks-page__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thanks-page__btn.btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}