@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  min-inline-size: 0;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

:root {
  --headerHeight: 50px;
  --inner: 15px;
  --main: #333333;
  --brown1: #E7DCD7;
  --brown2: #4D3E3E;
  --brown3: #806B4B;
  --brown4: #f4e9d5;
  --brown5: #F7F0EC;
  --red: #CA444E;
  --blue: #3B69A7;
  --green: #06C755;
  --darkgreen: #018637;
  --Sans: "Noto Sans JP", sans-serif;
  --Serif: "Noto Serif JP", serif;
  --Bellefair: "Bellefair", serif;
  --transition-opacity: filter .3s ease-out;
  --opacity: opacity(.8);
}
@media screen and (min-width: 768px) {
  :root {
    --inner: 50px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --headerHeight: 120px;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 375px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}

body {
  color: var(--main);
  font-size: 0.9375rem;
  font-family: var(--Sans);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  body {
    line-height: 2;
  }
}

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.l-siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-main {
  margin-top: var(--headerHeight);
  flex: 1;
}

.l-container {
  position: relative;
  margin-inline: auto;
  width: min(100%, 1200px);
  padding: 0 var(--inner);
}

.u-ft-marker {
  background-color: var(--brown4);
}

.arrow {
  fill: none;
  stroke: #806B4B;
  width: 20px;
  height: auto;
}

.p-page__top {
  z-index: 99;
  display: none;
  background-color: #D8C7BF;
  cursor: pointer;
  transition: var(--transition-opacity);
  border-radius: 50%;
  width: 4.625rem;
  aspect-ratio: 1;
  position: fixed;
  bottom: 30px;
  right: 30px;
}
@media screen and (min-width: 768px) {
  .p-page__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-page__top svg {
  fill: transparent;
  stroke: #806B4B;
  width: 15px;
  height: auto;
  display: block;
  rotate: -90deg;
}
.p-page__top span {
  font-size: 1.125rem;
  color: #806B4B;
  letter-spacing: 0.1em;
  font-family: var(--Bellefair);
}
@media screen and (min-width: 1024px) {
  .p-page__top:hover {
    filter: var(--opacity);
  }
}

.p-default__container {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.p-default__container a {
  color: var(--brown3);
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .p-default__container a:hover {
    text-decoration: underline;
  }
}

.u-ft-brown {
  color: #806B4B;
}

.l-header__logo {
  width: min(100%, 150px);
}
@media screen and (min-width: 1024px) {
  .l-header__logo {
    width: min(100%, 202px);
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo a img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header {
  z-index: 999;
  width: 100%;
  height: var(--headerHeight);
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  transition: background-color 0.3s ease-out;
}

.l-header.is-active {
  background-color: rgba(255, 255, 255, 0.7);
}

.l-header__inner {
  height: inherit;
  margin-inline: auto;
  padding-left: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .l-header__inner {
    padding-left: 40px;
    padding-right: 30px;
  }
}

.l-header__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.l-header__left-items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.l-header__tel {
  display: none;
  font-size: 1.75rem;
  line-height: 1.5;
  font-family: var(--Bellefair);
  color: var(--brown3);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .l-header__tel {
    display: block;
  }
}

.l-header__sns {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__sns {
    display: flex;
    align-items: center;
    justify-items: center;
  }
}
.l-header__sns img {
  display: block;
  width: 24px;
  height: auto;
}

.l-header__sns--facebook {
  margin-left: 20px;
}

.l-header__sns--insta {
  margin-left: 15px;
}

.l-header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--red);
  position: relative;
  overflow: hidden;
}
.l-header__button span {
  position: relative;
  z-index: 3;
}
.l-header__button::before {
  --darkred: #9C151F;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  border-right: 2.5rem solid transparent;
  border-bottom: 2.5rem solid var(--darkred);
  translate: -100% 0;
  transition: translate 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .l-header__button:hover::before {
    translate: 0 0;
  }
}

.l-header__button--contact {
  width: var(--headerHeight);
  aspect-ratio: 1;
  border-radius: 0;
}
@media screen and (min-width: 1024px) {
  .l-header__button--contact {
    margin-left: 10px;
    width: 13.125rem;
    height: 2.5rem;
    border-radius: 1.5625rem;
  }
}
.l-header__button--contact img {
  display: block;
  width: 34.84%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .l-header__button--contact img {
    display: none;
  }
}
.l-header__button--contact span {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__button--contact span {
    display: block;
  }
}

.l-header__button--info {
  margin-left: 30px;
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__button--info {
    display: flex;
    width: 11.875rem;
    height: 2.5rem;
    border-radius: 1.5625rem;
  }
}

.c-humberger {
  position: relative;
  display: block;
  width: var(--headerHeight);
  aspect-ratio: 1;
  border: none;
  background-color: var(--brown1);
}
@media screen and (min-width: 1024px) {
  .c-humberger {
    display: none;
  }
}
.c-humberger span {
  --space: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #695D57;
  width: 30%;
  height: 1px;
}
.c-humberger span:nth-child(1) {
  translate: -50% calc(-50% - var(--space));
}
.c-humberger span:nth-child(2) {
  translate: -50% -50%;
}
.c-humberger span:nth-child(3) {
  translate: -50% calc(-50% + var(--space));
}

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

.l-header__nav-items {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.l-header__nav-item {
  position: relative;
}
.l-header__nav-item a, .l-header__nav-item > div {
  padding: 10px;
  color: var(--main);
  font-weight: 500;
  cursor: pointer;
  display: block;
}

.l-header__nav-item:not(:has(ul)) a {
  transition: color 0.3s ease-out;
}
@media screen and (min-width: 1024px) {
  .l-header__nav-item:not(:has(ul)) a:hover {
    color: var(--brown3);
  }
}

.l-header__nav-item-sub {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out;
}
.l-header__nav-item-sub li:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.l-header__nav-item-sub a {
  width: 12.5rem;
  height: 3.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #695D57;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .l-header__nav-item:has(ul):hover .l-header__nav-item-sub {
    opacity: 1;
    visibility: visible;
  }
}
.l-header__nav-item:has(ul):hover .l-header__nav-item-sub a {
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .l-header__nav-item:has(ul):hover .l-header__nav-item-sub a {
    transition: background-color 0.3s ease-out, color 0.3s ease-out;
  }
  .l-header__nav-item:has(ul):hover .l-header__nav-item-sub a:hover {
    background-color: var(--brown5);
    color: var(--brown3);
  }
}

/*
spメニュー
*/
.l-header__sp-nav.is-active {
  translate: 0 0;
}

.l-header__sp-nav {
  display: block;
  translate: 100% 0;
  transition: translate 0.3s ease-out;
  position: absolute;
  z-index: 999;
  top: var(--headerHeight);
  right: 0;
  width: 100%;
  height: 110vh;
  min-height: 100%;
  background-color: var(--brown1);
  overflow-y: scroll;
}
@media screen and (min-width: 600px) {
  .l-header__sp-nav {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__sp-nav {
    display: none;
  }
}

.l-header__sp-nav-items {
  padding: 30px 15px 40px;
}
@media screen and (min-width: 600px) {
  .l-header__sp-nav-items {
    padding: 30px 30px 40px;
  }
}

.l-header__sp-nav-item {
  border-bottom: 1px solid #D8C7BF;
}
.l-header__sp-nav-item > a, .l-header__sp-nav-item > div {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__sp-nav-item a, .l-header__sp-nav-item div {
  color: #695D57;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.l-header__sp-nav-item svg {
  fill: transparent;
  stroke: #695D57;
  width: 1.125rem;
  height: auto;
  display: block;
}

.l-header__sp-nav-item-sub {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: height 0.3s ease-out, opacity 0.3s ease-out;
}
.l-header__sp-nav-item-sub a {
  padding: 15px 0;
  display: block;
}

.l-header__sp-nav-item-title svg {
  transition: rotate 0.3s ease-out;
}

.l-header__sp-nav-item-title.is-active svg {
  rotate: 90deg;
}

.l-header__sp-nav-item-sub.is-active {
  padding: 0 0 15px 15px;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.l-header__sp-nav-tel {
  text-align: center;
  color: #695D57;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: var(--Bellefair);
  display: block;
}

.l-header__sp-nav-sns {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-bottom: 120px;
}

.l-footer {
  padding-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-bottom: 60px;
  }
}

.l-footer__contact {
  background-color: var(--brown5);
  margin-top: 60px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .l-footer__contact {
    margin-top: 130px;
    padding-top: 75px;
    padding-bottom: 100px;
  }
}

.l-footer__contact h2, .l-footer__contact p, .l-footer__contact .l-footer__contact-tel {
  text-align: center;
  color: var(--brown3);
}
.l-footer__contact h2 {
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: 400;
  font-family: var(--Bellefair);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .l-footer__contact h2 {
    font-size: 3.75rem;
  }
}

.l-footer__contact-para {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .l-footer__contact-para {
    margin-top: 0px;
  }
}

.l-footer__contact-tel {
  margin-top: 30px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  display: block;
  font-family: var(--Bellefair);
}
@media screen and (min-width: 768px) {
  .l-footer__contact-tel {
    margin-top: 35px;
    font-size: 2.25rem;
  }
}

.l-footer__contact-buttons {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(100% - var(--inner) * 2, 400px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__contact-buttons {
    width: min(100% - var(--inner) * 2, 1040px);
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.l-footer__contact-button {
  --height: 100px;
  width: 100%;
  height: var(--height);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.l-footer__contact-button span, .l-footer__contact-button img {
  position: relative;
  z-index: 2;
}
.l-footer__contact-button::before {
  content: "";
  width: 100%;
  border-right: 55px solid transparent;
  transition: translate 0.3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  translate: -100% 0;
}

@media screen and (min-width: 1024px) {
  .l-footer__contact-button:hover::before {
    translate: 0 0;
  }
}

.l-footer__contact-button--reserve {
  --color: var(--brown3);
  background-color: #fff;
  color: var(--color);
}
.l-footer__contact-button--reserve::before {
  border-bottom: var(--height) solid var(--brown3);
}

@media screen and (min-width: 1024px) {
  .l-footer__contact-button--reserve:hover {
    --color: #fff;
  }
}

.l-footer__contact-button--line {
  background-color: var(--green);
  color: #fff;
}
.l-footer__contact-button--line img {
  margin-right: 10px;
}
.l-footer__contact-button--line::before {
  border-bottom: var(--height) solid var(--darkgreen);
}

.l-footer__info {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .l-footer__info {
    padding-top: 90px;
  }
}

.l-footer__info-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer__info-container {
    grid-template-columns: 51.8181818182% fit-content(100%);
    justify-content: space-between;
  }
}

.l-footer__info-left {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__info-left {
    text-align: left;
  }
}

.l-footer__info-logo {
  width: min(100%, 202px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__info-logo {
    margin-inline: 0;
  }
}
.l-footer__info-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer__address {
  margin-top: 20px;
  font-style: normal;
}
.l-footer__address a {
  cursor: pointer;
  color: #333;
}
@media screen and (min-width: 1024px) {
  .l-footer__address a:hover {
    text-decoration: underline;
  }
}

.l-footer__address-name {
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: var(--Serif);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .l-footer__address-name {
    font-size: 1.5rem;
  }
}

.l-footer__address-detail,
.l-footer__address-name {
  margin-top: 20px;
}

.l-footer__info-para {
  margin-top: 30px;
}

.l-footer__copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-family: var(--Bellefair);
  line-height: 1.5;
  color: rgba(51, 51, 51, 0.85);
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    margin-top: 90px;
  }
}

.l-footer__info-right p {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-family: var(--Bellefair);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .l-footer__info-right p {
    font-size: 1.5rem;
  }
}

.l-footer__info-right {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer__info-right {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__info-nav {
    margin-top: 15px;
    display: flex;
    gap: min(9.0909090909vw, 100px);
  }
}

.l-footer__info-nav-list a {
  font-size: 0.8125rem;
  line-height: 2.2;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: var(--transition-opacity);
}
@media screen and (min-width: 1024px) {
  .l-footer__info-nav-list a:hover {
    filter: var(--opacity);
  }
}

.l-footer__info-nav-list:has(ul) {
  margin-bottom: 0.3em;
}
.l-footer__info-nav-list:has(ul) li {
  padding-left: 1em;
}

.c-button {
  --width: 300px;
  --height: 70px;
  --size: 1rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, var(--width));
  height: var(--height);
  font-size: var(--size);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color);
  border: 1px solid var(--border);
  background-color: var(--bgColor);
  border-radius: 100px;
  cursor: pointer;
}
.c-button span, .c-button svg {
  z-index: 3;
}
.c-button span {
  position: relative;
}
.c-button svg {
  stroke: var(--color);
  fill: transparent;
  position: absolute;
  top: 50%;
  right: 8.3333333333%;
  translate: 0 -50%;
}
.c-button::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 110%;
  border-right: 50px solid transparent;
  border-bottom: var(--height) solid var(--hoverColor);
  transform: translateX(-100%);
  transition: all 0.25s ease-out;
}

.c-button.c-button--small {
  --size: 0.875rem;
}

@media screen and (min-width: 1024px) {
  .c-button:hover::before {
    transform: translateX(0%);
  }
}

.c-button--brown {
  --color: var(--brown3);
  --border: var(--brown3);
  --bgColor: transparent;
}
.c-button--brown::before {
  --hoverColor: var(--brown3);
}

.c-button--brown:hover {
  --color: #fff;
}

.c-button--white {
  --color: #fff;
  --border: #fff;
  --bgColor: transparent;
}
.c-button--white::before {
  --hoverColor: #fff;
}

.c-button--white:hover {
  --color: var(--blue);
}

.c-button--white-2:hover {
  --color: var(--brown3);
}

.c-button--red {
  --color: #fff;
  --bgColor: #C11221;
  --border: transparent;
}
.c-button--red::before {
  --hoverColor: #9C151F;
}

.c-button--yellow {
  --color: #fff;
  --bgColor: #FAB402;
  --border: transparent;
}
.c-button--yellow::before {
  --hoverColor: #dda10a;
}

.c-button.c-button--large {
  margin-inline: auto;
  --width: 340px;
  --height: 70px;
  --size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-button.c-button--large {
    --width: 490px;
    --height: 100px;
    --size: 1.25rem;
  }
}
.c-button.c-button--large svg {
  width: 1.125rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-button.c-button--large svg {
    width: 1.5rem;
  }
}

.c-title-top {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title-top {
    text-align: left;
  }
}
.c-title-top h2 {
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--brown3);
  line-height: 1;
}
.c-title-top span {
  margin-top: 15px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-family: var(--Bellefair);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-title-top span {
    font-size: 3.75rem;
  }
}

.c-title-h2, .c-title-h3, .c-title-h4 {
  --weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: var(--weight);
}

.c-title-h2, .c-title-h3 {
  font-family: var(--Serif);
}

.c-title-h2 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-title-h2 {
    font-size: 2rem;
  }
}

.c-title-h3 {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-title-h3 {
    font-size: 1.75rem;
  }
}

.c-title-h4 {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-title-h4 {
    font-size: 1.25rem;
  }
}

.c-title-h3-2 {
  --weight: 500;
  font-weight: var(--weight);
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-title-h3-2 {
    font-size: 1.5rem;
  }
}

.c-title-page {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title-page {
    text-align: left;
  }
}
.c-title-page span {
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: var(--Bellefair);
}
@media screen and (min-width: 768px) {
  .c-title-page span {
    font-size: 2rem;
  }
}
.c-title-page h2, .c-title-page h3 {
  margin-top: 5px;
  color: var(--brown3);
  font-weight: 400;
  line-height: 1.5;
}

.c-title-page.c-title-page--center {
  text-align: center;
}

.c-title-page.c-title-page--normal span {
  text-transform: none;
}

.c-cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .c-cards {
    margin-top: 70px;
  }
}

.c-card a {
  display: flex;
  flex-direction: column;
  color: var(--main);
  cursor: pointer;
  transition: var(--transition-opacity);
}
@media screen and (min-width: 1024px) {
  .c-card a:hover {
    filter: var(--opacity);
  }
}
.c-card ul {
  margin-top: 20px;
}
.c-card h3 {
  margin-top: 15px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.c-card__lists {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-card__list-number {
  font-family: var(--Bellefair);
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #B69D92;
}

.c-card__list-cat {
  text-align: center;
  background-color: var(--brown3);
  color: #fff;
  padding: 5px 17px;
  border-radius: 25px;
  min-width: 140px;
}

.c-card__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  background-color: aliceblue;
  object-fit: cover;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  text-align: right;
}

.c-articles {
  margin-inline: auto;
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .c-articles {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-article h3 {
  margin-top: 30px;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-article h3 {
    font-size: 1.25rem;
  }
}
.c-article ul {
  margin-top: 15px;
}
.c-article li + li {
  margin-top: 10px;
}

.c-article__anker {
  color: #333;
  cursor: pointer;
}

@media screen and (min-width: 1024px) {
  .c-article__anker:hover figure img {
    filter: opacity(0.95);
  }
}
@media screen and (min-width: 1024px) {
  .c-article__anker:hover .c-article__link {
    color: var(--red);
  }
}
@media screen and (min-width: 1024px) {
  .c-article__anker:hover .c-article__link::after {
    scale: 1 1;
  }
}

.c-article__figure {
  box-shadow: 0px 4px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
  background-color: #fff;
}
.c-article__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  transition: var(--transition-opacity);
}

.c-article__list {
  display: flex;
}
.c-article__list div + div {
  margin-left: 20px;
}

.c-article__date {
  font-size: 1.25rem;
  line-height: 1.7;
  font-family: var(--Bellefair);
  font-weight: 400;
}

.c-article__link {
  margin-top: 20px;
  display: block;
  padding-bottom: 16px;
  text-align: right;
  color: #806B4B;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.3em;
  font-family: var(--Bellefair);
  position: relative;
  transition: color 0.3s ease-out;
  text-transform: uppercase;
}
.c-article__link::before, .c-article__link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
}
.c-article__link::after {
  background-color: var(--red);
  scale: 0 1;
  transition: scale 0.5s ease-out;
  transform-origin: left;
}
.c-article__link::before {
  background-color: var(--brown3);
}

.c-tables {
  overflow-x: scroll;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-tables {
    overflow-x: visible;
  }
}

.c-table {
  margin-inline: auto;
  --headColor: #806B4B;
  --border: #D8C7BF;
  white-space: nowrap;
  background-color: transparent;
  text-align: center;
  width: 600px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .c-table {
    width: 100%;
  }
}
.c-table thead {
  background-color: var(--headColor);
  color: #fff;
  width: 100%;
}
.c-table thead th {
  padding: 15px 0;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-table thead th {
    font-size: 1.125rem;
  }
}
.c-table thead th:first-child {
  width: 19.0909090909%;
}
.c-table thead th:last-child {
  width: 17.7272727273%;
}
.c-table tbody {
  width: 100%;
  background-color: #fff;
}
.c-table tbody tr, .c-table tbody td {
  padding: 15px 0;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  border: 1px solid var(--border);
}
@media screen and (min-width: 768px) {
  .c-table tbody tr, .c-table tbody td {
    font-size: 0.9375rem;
  }
}

/* fv */
.p-top__fv {
  position: relative;
}
.p-top__fv::before {
  display: block;
  content: none;
  width: calc(50vw + min(31.884057971%, 440px));
  max-height: 105.9620596206%;
  height: auto;
  aspect-ratio: 1187/782;
  background-color: var(--brown1);
  position: absolute;
  top: calc(-1 * var(--headerHeight));
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-top__fv::before {
    content: "";
  }
}

.p-top__fv-inner {
  position: relative;
  width: min(100%, 1500px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top__fv-inner {
    padding: 10px 60px 0;
  }
}

.p-top__fv-image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top__fv-image {
    width: 83.768115942%;
    margin-inline-start: auto;
  }
}
.p-top__fv-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  aspect-ratio: 375/500;
}
@media screen and (min-width: 768px) {
  .p-top__fv-image img {
    max-height: none;
    aspect-ratio: 1156/728;
  }
}

.p-top__fv-title {
  position: absolute;
  top: 30px;
  left: 35px;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .p-top__fv-title {
    top: 50%;
    left: min(7.1875vw, 115px);
    translate: 0 -50%;
    writing-mode: initial;
  }
}
.p-top__fv-title span {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  white-space: nowrap;
  background-color: #fff;
  color: var(--brown2);
  padding: 0.3181818182em 0.3636363636em;
}
@media screen and (min-width: 768px) {
  .p-top__fv-title span {
    font-size: 2.5rem;
    padding: 0.4em 0.55em;
  }
}
.p-top__fv-title span + span {
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .p-top__fv-title span + span {
    margin-top: 13px;
  }
}

/* about */
.p-top__about {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-top__about {
    margin-top: 140px;
  }
}

.p-top__about-title {
  margin-top: 8px;
  font-size: 1.5rem;
  font-family: var(--Serif);
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top__about-title {
    margin-top: 0px;
    font-size: 2.5rem;
    text-align: left;
  }
}
.p-top__about-title::before {
  display: block;
  content: "story";
  text-transform: capitalize;
  font-size: 6.25rem;
  line-height: 1;
  font-weight: 400;
  font-family: var(--Bellefair);
  color: var(--brown1);
}
@media screen and (min-width: 768px) {
  .p-top__about-title::before {
    translate: 0 40%;
    z-index: -1;
    position: relative;
  }
}

.p-top__about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-top__about-container {
    grid-template-columns: 1fr 47.8181818182%;
    gap: 0px;
    align-items: center;
  }
}

.p-top__about-para,
.p-top__about-figure {
  margin-inline: auto;
  width: min(100%, 351px);
}
@media screen and (min-width: 768px) {
  .p-top__about-para,
  .p-top__about-figure {
    width: min(100%, 525px);
  }
}

.p-top__about-para {
  margin-top: 1.15em;
}
.p-top__about-para p + p {
  margin-top: 2em;
}

.p-top__about-figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-top__about-figure img {
    translate: 50px 0;
  }
}

.p-top__feature {
  position: relative;
  margin-top: 50px;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-top__feature {
    margin-top: 170px;
    padding: 100px 0;
  }
}
.p-top__feature::before {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(75, 56, 28, 0.7);
}
.p-top__feature .l-container {
  position: relative;
  z-index: 3;
}

.p-top__feature-title {
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  color: #fff;
  font-family: var(--Serif);
}
.p-top__feature-title span {
  font-size: 0.72em;
}
@media screen and (min-width: 768px) {
  .p-top__feature-title {
    font-size: 3.125rem;
  }
}

.p-top__feature-bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top__feature-items {
  margin-top: 120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 95px;
  width: min(100%, 500px);
}
@media screen and (min-width: 768px) {
  .p-top__feature-items {
    width: 100%;
    margin-top: 80px;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.p-top__feature-item {
  position: relative;
  color: #fff;
}
.p-top__feature-item h3 {
  margin-top: 20px;
}
.p-top__feature-item p {
  margin-top: 20px;
}
.p-top__feature-item a {
  margin-top: 36px;
}

.p-top__feature-item-icon {
  position: absolute;
  top: -10%;
  left: 0;
  width: min(41.1764705882%, 140px);
  aspect-ratio: 243/276;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .p-top__feature-item-icon {
    top: -5%;
    left: -5%;
  }
}
.p-top__feature-item-icon span {
  z-index: 2;
  position: relative;
}
.p-top__feature-item-icon img {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.p-top__feature-item-number, .p-top__feature-item-en {
  font-family: var(--Bellefair);
  letter-spacing: 0.1em;
  line-height: 1;
}

.p-top__feature-item-number {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__feature-item-number {
    font-size: min(1.8333333333vw, 1.375rem);
  }
}

.p-top__feature-item-en {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top__feature-item-en {
    font-size: min(1.1666666667vw, 0.875rem);
  }
}

.p-top__feature-item-ja {
  font-size: 1.5rem;
  font-family: var(--Serif);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-top__feature-item-ja {
    font-size: min(2vw, 1.5rem);
  }
}

.p-top__feature-item-title {
  text-align: center;
  font-size: 1.375rem;
  font-family: var(--Serif);
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top__feature-item-title {
    font-size: 1.75rem;
  }
}
.p-top__feature-item-title span {
  display: block;
}
.p-top__feature-item-title span:first-of-type {
  font-size: 0.7142857143em;
}

.p-top__feature-item-figure img {
  display: block;
  background-color: transparent;
  width: 100%;
  margin-inline: auto;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-top__feature-item-figure img {
    width: 88.2352941176%;
  }
}

.p-top__feature-item-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  height: 70px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-top__feature-item-link {
    font-size: 1.25rem;
  }
}
.p-top__feature-item-link span {
  font-size: 0.8em;
}
.p-top__feature-item-link img {
  display: block;
  width: 1.3125rem;
  height: auto;
  position: absolute;
  top: 50%;
  right: 7.6470588235%;
  translate: 0 -50%;
  transition: translate 0.3s ease-out;
}
.p-top__feature-item-link::after, .p-top__feature-item-link::before {
  display: block;
  content: "";
  width: 96%;
  height: 1px;
  position: absolute;
  background-color: #fff;
}
.p-top__feature-item-link::after {
  top: 0;
  left: 0;
}
.p-top__feature-item-link::before {
  bottom: 0;
  right: 0;
}

@media screen and (min-width: 1024px) {
  .p-top__feature-item-link:hover img {
    translate: 8px -50%;
  }
}

.p-top__event {
  padding: 60px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__event {
    margin-top: 85px;
    padding: 95px 0 80px;
  }
}
.p-top__event::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50vw + 680px);
  height: 100%;
  background-color: var(--brown5);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.p-top__event-items {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-top__event-items {
    margin-top: 60px;
  }
}

.p-top__event-link {
  margin-top: 65px;
  margin-inline: auto;
}

/*
work
*/
.p-top__work {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .p-top__work {
    margin-top: 140px;
  }
}

.p-top__work-body {
  padding: 0 40px;
}
@media screen and (min-width: 768px) {
  .p-top__work-body {
    padding: 0;
    margin-left: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top__work-body {
    margin-left: calc(50vw - 560px);
  }
}

.p-top__work-link {
  margin-top: 50px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top__work-link {
    margin-top: 70px;
  }
}

.swiper-body {
  position: relative;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .swiper-body {
    margin-top: 60px;
  }
}

.swiper-slide + .swiper-slide {
  margin-left: 30px;
}

.swiper__buttons {
  position: relative;
  margin-top: 30px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .swiper__buttons {
    margin-top: 0px;
    position: absolute;
    top: -85px;
    right: 80px;
  }
}
.swiper__buttons > * {
  padding: 0 25px;
  cursor: pointer;
}
.swiper__buttons > * + * {
  border-left: 1px solid #EADADA;
}

.swiper__prev,
.swiper__next {
  cursor: pointer;
}
.swiper__prev svg,
.swiper__next svg {
  display: block;
  stroke: var(--brown3);
  fill: transparent;
}

.swiper__prev {
  scale: -1 -1;
}

.p-top__ctr {
  --top: 60px;
  --bottom: 50px;
  position: relative;
  margin-top: 50px;
  padding-top: var(--top);
  padding-bottom: var(--bottom);
  background-color: var(--blue);
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-top__ctr {
    --top: 100px;
    --bottom: 70px;
    margin-top: 160px;
  }
}

.p-top__ctr-bg {
  margin-inline: auto;
  width: min(100%, 500px);
}
@media screen and (min-width: 768px) {
  .p-top__ctr-bg {
    position: absolute;
    bottom: calc(-1 * var(--bottom));
    right: -260px;
    width: min(85.8333333333%, 1030px);
  }
}
.p-top__ctr-bg img {
  display: block;
  width: 100%;
  aspect-ratio: 345/265;
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-top__ctr-bg img {
    aspect-ratio: 1030/575;
  }
}

.p-top__ctr-container {
  display: flex;
  flex-direction: column;
  gap: 27px;
  color: #fff;
}
.p-top__ctr-container h2, .p-top__ctr-container p, .p-top__ctr-container a {
  z-index: 2;
  position: relative;
}
.p-top__ctr-container h2, .p-top__ctr-container p {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top__ctr-container h2, .p-top__ctr-container p {
    text-align: left;
  }
}
.p-top__ctr-container img {
  z-index: 1;
}
.p-top__ctr-container h2 {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: var(--Bellefair);
}
@media screen and (min-width: 768px) {
  .p-top__ctr-container h2 {
    font-size: 5rem;
  }
}
.p-top__ctr-container p {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
  font-family: var(--Serif);
}

.p-top__ctr-link {
  margin-inline: auto;
  order: 3;
}
@media screen and (min-width: 768px) {
  .p-top__ctr-link {
    order: 0;
    margin-inline: 0;
  }
}

.p-top__renove {
  padding-top: 60px;
  padding-bottom: 50px;
  background-color: #FEF8F5;
}
@media screen and (min-width: 768px) {
  .p-top__renove {
    padding-top: 130px;
    padding-bottom: 100px;
  }
}

.p-top__renove-container {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-top__renove-container {
    gap: 80px;
    grid-template-columns: 1fr 33.3333333333%;
  }
}

.p-top__renove-figure {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-top__renove-figure {
    margin-top: 0;
  }
}
.p-top__renove-figure img {
  margin-inline: auto;
  display: block;
  width: min(100%, 300px);
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-top__renove-figure img {
    width: 100%;
  }
}

.p-top__renove-text {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top__renove-text {
    display: block;
  }
}
.p-top__renove-text h2 {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown3);
  font-family: var(--Bellefair);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top__renove-text h2 {
    font-size: 3.75rem;
    text-align: left;
  }
}
.p-top__renove-text h3 {
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
  font-family: var(--Serif);
}
.p-top__renove-text p {
  margin-top: 10px;
}

.p-top__renova-link {
  margin-top: 50px;
  margin-inline: auto;
  order: 4;
}
@media screen and (min-width: 768px) {
  .p-top__renova-link {
    order: 1;
    margin-inline-start: 0;
  }
}

.p-top__news {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-top__news {
    margin-top: 115px;
  }
}

.p-top__news-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  grid-template-areas: "title" "items" "link";
}
@media screen and (min-width: 768px) {
  .p-top__news-container {
    grid-template-columns: fit-content(100%) 1fr;
    grid-template-areas: "top items";
    gap: min(8.3333333333vw, 100px);
  }
}
.p-top__news-container > div {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top__news-container > div {
    display: block;
    grid-area: "top";
  }
}

.p-top__news-title {
  grid-area: title;
}
@media screen and (min-width: 768px) {
  .p-top__news-title {
    grid-area: auto;
  }
}

.p-top__news-link {
  margin-inline: auto;
  grid-area: link;
  margin-top: 50px;
  padding-bottom: 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  font-family: var(--Bellefair);
  color: var(--brown3);
  transition: color 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-top__news-link {
    margin-inline: 0;
    grid-area: auto;
  }
}
.p-top__news-link::before, .p-top__news-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
}
.p-top__news-link::before {
  background-color: var(--brown3);
}
.p-top__news-link::after {
  background-color: var(--red);
  scale: 0 1;
  transition: scale 0.3s ease-out;
  transform-origin: left;
}

@media screen and (min-width: 1024px) {
  .p-top__news-link:hover {
    color: var(--red);
  }
}
@media screen and (min-width: 1024px) {
  .p-top__news-link:hover::after {
    scale: 1 1;
  }
}

.p-top__news-lists {
  grid-area: items;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-top__news-lists {
    margin-top: 0;
  }
}

.p-top__news-list a {
  color: var(--main);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-bottom: 1px solid #D8C7BF;
  transition: var(--transition-opacity);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-top__news-list a {
    padding: 30px 0;
    flex-direction: row;
    gap: 35px;
    align-items: center;
  }
}
.p-top__news-list a > div {
  display: flex;
  gap: 35px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .p-top__news-list a:hover {
    filter: var(--opacity);
  }
}

.p-top__news-list-date {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  font-family: var(--Bellefair);
  font-weight: 400;
}

.p-top__news-list-tag {
  min-width: 6.25rem;
  padding: 0 14px;
  height: 1.875rem;
  border-radius: 1.5625rem;
  background-color: var(--brown3);
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-top__news-list-title {
  font-weight: 400;
}

.p-page {
  padding-top: 35px;
}
@media screen and (min-width: 768px) {
  .p-page {
    padding-top: 75px;
  }
}

.p-page__title, .p-page__breadcrumb {
  margin-inline: auto;
  width: min(100% - var(--inner) * 2, 1100px);
}

.p-page__breadcrumb {
  margin-top: 25px;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-page__breadcrumb {
    margin-top: 40px;
  }
}
.p-page__breadcrumb a {
  color: #000;
}
.p-page__breadcrumb > span:first-of-type {
  padding-right: 10px;
}
.p-page__breadcrumb > span:not(:first-of-type) {
  padding: 0 10px;
}

.p-page__title-sub,
.p-page__title-main {
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.p-page__title-sub {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-page__title-sub {
    font-size: 1rem;
  }
}

.p-page__title-main {
  font-size: 1.25rem;
  font-family: var(--Serif);
}
@media screen and (min-width: 768px) {
  .p-page__title-main {
    font-size: 1.875rem;
  }
}

.p-page__title-en {
  margin-top: 4px;
  font-size: 0.875rem;
  font-family: var(--Bellefair);
  color: var(--brown1);
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-page__title-en {
    font-size: 1rem;
  }
}

.p-page__image {
  margin-top: 30px;
  margin-inline-start: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-page__image {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .p-page__image {
    width: calc(50vw + 550px);
  }
}
.p-page__image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 150px;
  max-height: 450px;
  object-fit: cover;
}

.l-section {
  margin-top: 60px;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .l-section {
    margin-top: 100px;
  }
}

.l-section--brown {
  background-color: var(--brown5);
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .l-section--brown {
    padding: 70px 0;
  }
}

.p-perform__block h2 {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-perform__block p {
    text-align: center;
  }
}
.p-perform__block > *:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-perform__block > *:not(:first-child) {
    margin-top: 50px;
  }
}

.p-perform__note {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-perform__note {
    margin-top: 100px;
  }
}

/* feature */
.p-perform__feature {
  margin-top: 150px;
}

.p-perform__feature-items {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-perform__feature-items {
    margin-top: 100px;
    gap: 100px;
  }
}

.p-perform__feature-item {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-perform__feature-item {
    gap: 80px;
  }
}

.p-2cols {
  margin-inline: auto;
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-2cols {
    width: 100%;
    grid-template-columns: 1fr 43.9090909091%;
    gap: 65px;
  }
}

.p-2cols__figure img {
  display: block;
  width: 100%;
  height: auto;
  background-color: aliceblue;
}

.p-2cols__text > *:nth-child(2) {
  margin-top: 28px;
}

.p-2cols__para {
  margin-top: 1.3333333333em;
}
.p-2cols__para p + p {
  margin-top: 1.3333333333em;
}

.p-link__title {
  text-align: center;
}

.p-link__items {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-link__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-link__item {
  position: relative;
}
.p-link__item a {
  background-color: var(--brown3);
  color: #fff;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  border-radius: 10px;
  transition: var(--transition-opacity);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-link__item a {
    font-size: 1.25rem;
    height: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .p-link__item a:hover {
    filter: opacity(0.75);
  }
}
.p-link__item svg {
  fill: transparent;
  stroke: #fff;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 8.6705202312%;
  width: 1.125rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-link__item svg {
    width: 1.5rem;
  }
}

.p-perform__button {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-perform__button {
    margin-top: 80px;
  }
}

/*
checkbox
*/
.p-checkbox {
  --color: #fff;
  --width: 100%;
  margin-inline: auto;
  background-color: var(--color);
  width: var(--width);
  padding: 30px 20px;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .p-checkbox {
    padding: 50px 60px;
    border-radius: 20px;
  }
}
.p-checkbox ul {
  --size: 1rem;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--size);
  line-height: 1.6;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media screen and (min-width: 768px) {
  .p-checkbox ul {
    line-height: 2;
    --size: 1.25rem;
  }
}
.p-checkbox li {
  padding-left: 2.5em;
  position: relative;
}
.p-checkbox li img {
  display: block;
  position: absolute;
  top: calc(var(--size) * 2 / 2);
  left: 0;
  translate: 0 -50%;
}

.p-checkbox-pattern2 {
  padding: 30px 20px;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .p-checkbox-pattern2 {
    padding: 50px 60px;
    border-radius: 20px;
  }
}
.p-checkbox-pattern2 > ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-checkbox-pattern2 h4 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-checkbox-pattern2 h4 {
    font-size: 1.25rem;
  }
}
.p-checkbox-pattern2 p {
  margin-top: 20px;
}

.p-checkbox-pattern2__lists {
  margin-left: 1em;
  margin-top: 20px;
}
.p-checkbox-pattern2__lists li {
  position: relative;
  padding-left: 0.9em;
}
.p-checkbox-pattern2__lists li::before {
  content: "";
  width: 3px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #333;
  position: absolute;
  top: 0.9375rem;
  left: 0;
  translate: 0 -50%;
}

.p-checkbox.p-checkbox--brown {
  background-color: var(--brown5);
}

.p-checkbox-pattern2.p-checkbox-pattern2--brown {
  background-color: var(--brown5);
}

.p-quality__section h2 {
  text-align: center;
}

.p-quality__head {
  display: flex;
  flex-direction: column;
}
.p-quality__head p {
  margin-top: 28px;
}

.p-quality__box {
  margin-top: 50px;
  --width: min(100%, 870px);
}
@media screen and (min-width: 768px) {
  .p-quality__box {
    margin-top: 80px;
  }
}

.p-quality__message {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-quality__message {
    margin-top: 100px;
  }
}
.p-quality__message p {
  font-size: 1.125rem;
  font-family: var(--Serif);
  line-height: 1.1;
  letter-spacing: 0.2em;
  font-weight: 400;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .p-quality__message p {
    font-size: 1.5rem;
  }
}
.p-quality__message span {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}
.p-quality__message span + span {
  margin-right: 20px;
  padding-top: 1em;
}

.p-quality__gallary {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-quality__gallary {
    margin-top: 100px;
  }
}
.p-quality__gallary img {
  display: block;
  width: 100%;
  height: auto;
  background-color: aliceblue;
}

.p-quality__blocks {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: min(100% - var(--inner) * 2, 1100px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-quality__blocks {
    margin-top: 100px;
    gap: 100px;
  }
}

.p-quality__block {
  text-align: center;
}
.p-quality__block p {
  margin-top: 1.8666666667em;
}

.p-quality__items {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-quality__items {
    margin-top: 100px;
    gap: 100px;
  }
}

.p-quality__item {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.p-quality__item-note--center {
  text-align: center;
}

.p-quality__button {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-quality__button {
    margin-top: 80px;
  }
}

.p-cost__title {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.p-cost__title span {
  display: inline-block;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-cost__title span {
    padding-bottom: 30px;
  }
}
.p-cost__title::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 100%;
  left: 0;
}
.p-cost__title::after {
  content: "";
  display: block;
  width: 0.5em;
  aspect-ratio: 1;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  rotate: 135deg;
  position: absolute;
  bottom: -6px;
  left: 50%;
  translate: -50% 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-cost__title::after {
    bottom: -7px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
  }
}
.p-cost__title img {
  display: none;
  width: 1.3333333333em;
  height: auto;
  position: absolute;
  top: 0;
  right: -35px;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .p-cost__title img {
    display: block;
  }
}

.p-cost__blocks {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media screen and (min-width: 768px) {
  .p-cost__blocks {
    margin-top: 100px;
    gap: 120px;
  }
}

.p-cost__items {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-cost__items {
    margin-top: 75px;
    gap: 100px;
  }
}

.p-cost__item {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-cost__item {
    gap: 80px;
  }
}

.p-renove__notice {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-renove__notice {
    margin-top: 120px;
  }
}

.p-notice {
  position: relative;
  background-color: var(--brown5);
  border-radius: 20px;
  padding: 40px 25px 25px;
}
@media screen and (min-width: 768px) {
  .p-notice {
    padding: 70px 50px 50px;
  }
}

.p-notice__text {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-notice__text .u-ft-large {
  font-size: 2em;
  letter-spacing: 0.1em;
}

.p-notice__lists li {
  --size: 0.9375rem;
  font-size: var(--size);
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-notice__lists li {
    --size: 1.125rem;
  }
}
.p-notice__lists li::before {
  content: "";
  width: 4px;
  aspect-ratio: 1;
  position: absolute;
  top: calc(var(--size) * 2 / 2);
  left: 0;
  translate: 0 -50%;
  background-color: #333;
  border-radius: 50%;
}

.u-cl-red {
  color: #CA444E;
}

.p-notice__number {
  background-color: #CA444E;
  color: #fff;
  min-width: 230px;
  padding: 0 30px;
  height: 50px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 700;
  border-radius: 26.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: max-content;
}

.p-cost__item-text > *:not(:first-child) {
  margin-top: 1.25em;
}

.p-cost__item-text-list li {
  padding-left: 1em;
  position: relative;
  font-weight: 500;
}
.p-cost__item-text-list li::before {
  content: "";
  width: 3px;
  aspect-ratio: 1;
  background-color: var(--main);
  border-radius: 50%;
  position: absolute;
  top: 0.9375rem;
  left: 0;
  translate: 0 -50%;
}

.p-cost__item-message {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.p-cost__item-box {
  margin-inline: auto;
  width: min(100%, 960px);
}

.p-cost__item-box--pattern1 {
  padding: 30px 20px;
  border-radius: 20px;
  background-color: var(--brown5);
}
@media screen and (min-width: 768px) {
  .p-cost__item-box--pattern1 {
    padding: 50px 60px;
  }
}
.p-cost__item-box--pattern1 h4 {
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}
.p-cost__item-box--pattern1 p {
  margin-top: 20px;
}

.p-cost__item-calc {
  margin-top: 40px;
  text-align: center;
}

.p-cost__item-calc-para .u-ft-large {
  padding: 0 15px;
  display: inline-block;
  font-size: 1.6em;
  font-weight: 700;
}

.p-cost__item-calc-note {
  color: #CA444E;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-cost__item-calc-note {
    font-size: 1.5rem;
  }
}
.p-cost__item-calc-note .u-ft-large {
  font-size: 1.3333333333em;
}

.p-cost__table {
  margin-top: 50px;
}

.p-cost__head {
  text-align: center;
}
.p-cost__head h3 {
  margin-top: 50px;
}
.p-cost__head p {
  margin-top: 28px;
}

.p-cost__text {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-cost__text {
    margin-top: 100px;
  }
}
.p-cost__text p {
  margin-top: 28px;
}
.p-cost__text a {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .p-cost__text a {
    margin-top: 80px;
  }
}

.p-staff__title {
  text-align: center;
}

.p-staff__items {
  margin-top: 50px;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 25px 15px;
}
@media screen and (min-width: 768px) {
  .p-staff__items {
    gap: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .p-staff__items {
    grid-template-columns: repeat(5, 1fr);
  }
}

.p-staff__item a {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #333;
  cursor: pointer;
  transition: var(--transition-opacity);
}
@media screen and (min-width: 1024px) {
  .p-staff__item a:hover {
    filter: var(--opacity);
  }
}

.p-staff__item-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-staff__text div {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.p-staff__text-name {
  margin-top: 10px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-staff__text-name {
    font-size: 1.125rem;
  }
}

.p-staff__text-name {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-staff__text-name {
    font-size: 0.875rem;
  }
}

.p-staff__blocks {
  margin-top: 75px;
  padding: 65px 0 50px;
  background-color: #E7E3E2;
  display: flex;
  flex-direction: column;
  gap: 110px;
}
@media screen and (min-width: 768px) {
  .p-staff__blocks {
    margin-top: 150px;
    padding: 130px 0 100px;
  }
}

.p-staff__block {
  --padding-top: 35px;
  --padding-left: 20px;
  position: relative;
  margin-inline: auto;
  width: min(100% - var(--inner) * 2, 500px);
  background-color: #fff;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: var(--padding-top) var(--padding-left);
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-staff__block {
    --padding-top: 75px;
    --padding-left: 60px;
    width: min(100% - var(--inner) * 2, 1100px);
  }
}

.p-staff__block-number {
  position: absolute;
  top: 0;
  left: var(--padding-left);
  translate: 0 -50%;
  font-family: var(--Bellefair);
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--brown3);
  font-weight: 400;
  text-transform: capitalize;
}

.p-staff__block-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-staff__block-head {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

.p-staff__block-figure img {
  display: block;
  width: 100%;
  height: auto;
  background-color: aliceblue;
}

.p-staff__block-lists {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-staff__block-lists div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-staff__block__name {
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D8C7BF;
}
.p-staff__block__name h4 {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-staff__block__name h4 {
    font-size: 1.75rem;
  }
}

.p-staff__block-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-staff__block-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-staff__block-bottom-item {
  position: relative;
  background-color: #F8F6F4;
  padding: 34px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-staff__block-bottom-item h4 {
  padding-bottom: 20px;
  border-bottom: 1px solid #D8C7BF;
  text-align: center;
}
.p-staff__block-bottom-item::before {
  position: absolute;
  content: "";
  width: 5.1835853132%;
  aspect-ratio: 24/34;
  display: block;
  position: absolute;
  top: 0;
  left: 40px;
  translate: 0 -98%;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #F8F6F4;
}

.p-staff__icon {
  --margin: 75px;
  position: absolute;
  top: calc(100% + var(--margin));
  right: 50px;
  width: 120px;
  height: auto;
  display: block;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .p-staff__icon {
    --margin: 150px;
    right: 140px;
    width: 173px;
  }
}

.p-head h2 {
  text-align: center;
}
.p-head p {
  margin-top: 50px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-head p {
    text-align: center;
  }
}
.p-head figure {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-head figure {
    margin-top: 100px;
  }
}
.p-head figure img {
  display: block;
  width: 100%;
  height: auto;
  background-color: aliceblue;
}

.p-imageTexts {
  margin-top: 60px;
  margin-inline: auto;
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-imageTexts {
    margin-top: 100px;
  }
}
@media screen and (min-width: 768px) {
  .p-imageTexts {
    width: 100%;
    gap: 80px;
  }
}

.p-imageText {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "text" "image";
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-imageText {
    gap: min(5.8333333333vw, 70px);
    align-items: center;
  }
}
.p-imageText figure {
  grid-area: image;
}
.p-imageText figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-imageText:nth-child(odd) {
    grid-template-areas: "text image";
    grid-template-columns: 1fr 50.9090909091%;
  }
}

@media screen and (min-width: 768px) {
  .p-imageText:nth-child(even) {
    grid-template-areas: "image text";
    grid-template-columns: 50.9090909091% 1fr;
  }
}

.p-imageText__text {
  grid-area: text;
}
.p-imageText__text p {
  margin-top: 1.6em;
}

.p-imageText__text-en {
  font-family: var(--Bellefair);
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
}

.p-renove__link {
  margin-inline: auto;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-renove__link {
    margin-top: 100px;
  }
}

.p-renove__items {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}

.p-renove__item figure img {
  display: block;
  width: 100%;
  height: auto;
  background-color: aliceblue;
}
.p-renove__item h3 {
  margin-top: 30px;
  text-align: center;
}
.p-renove__item p {
  margin-top: 15px;
}

.p-model__lists {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-model__lists {
    gap: 50px;
    margin-top: 100px;
  }
}

.p-model__list a {
  font-weight: 500;
  color: #333;
  cursor: pointer;
  padding: 0.4em 1.3em 0.4em 1em;
  position: relative;
  transition: var(--transition-opacity);
}
@media screen and (min-width: 768px) {
  .p-model__list a {
    padding: 0.4em 1.55em;
  }
}
.p-model__list a::before {
  content: "";
  display: block;
  width: 0.5em;
  aspect-ratio: 1;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  position: absolute;
  top: 0.9375rem;
  right: 0;
  translate: 0 -50%;
  rotate: 135deg;
}
@media screen and (min-width: 1024px) {
  .p-model__list a:hover {
    filter: var(--opacity);
  }
}

.p-model__section h2, .p-model__section h3 {
  text-align: center;
}

.p-model__2col-items {
  margin-top: 50px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-model__2col-items {
    margin-top: 80px;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

.p-model__head {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-model__figure img {
  display: block;
  width: 100%;
  height: auto;
  background-color: aliceblue;
}

.p-model__row-block {
  --position: "text" "image";
  --column: 1fr;
  display: grid;
  grid-template-columns: var(--column);
  grid-template-areas: var(--position);
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-model__row-block {
    --position: "image text";
    --column: calc(520 / 1100 * 100%) 1fr;
    align-items: center;
  }
}
.p-model__row-block figure {
  grid-area: image;
}
.p-model__row-block figure img {
  display: block;
  width: 100%;
  height: auto;
  background-color: aliceblue;
}

@media screen and (min-width: 768px) {
  .p-model__row-block.p-model__row-block--reverse {
    --position: "text image";
    --column: 1fr calc(520 / 1100 * 100%);
  }
}

.p-model__row-block-text {
  grid-area: text;
}

.p-model__column-block {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.p-model__column-block figure {
  margin-top: 50px;
}
.p-model__column-block figure img {
  display: block;
  width: 100%;
  height: auto;
  background-color: aliceblue;
}

.p-model__number {
  font-family: var(--Bellefair);
  font-size: 0.9375rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-model__number {
    font-size: 1.125rem;
  }
}

.p-model__para {
  margin-top: 30px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .p-model__para {
    font-size: 1.25rem;
  }
}

.p-model__blocks {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-model__blocks {
    margin-top: 100px;
    gap: 80px;
  }
}

.p-model__area {
  margin-top: 60px;
  margin-inline: auto;
  width: min(100% - var(--inner) * 2, 1100px);
}
@media screen and (min-width: 768px) {
  .p-model__area {
    margin-top: 100px;
  }
}

.p-model__area-map {
  margin-top: 60px;
  display: block;
}
.p-model__area-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1100/450;
  height: auto;
}

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

.p-model__ol-items {
  --gap: 95px;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.p-model__ol-item {
  position: relative;
  background-color: var(--brown5);
  padding: 30px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-model__ol-item {
    padding: 50px;
  }
}

.p-model__ol-next {
  position: absolute;
  top: calc(100% + var(--gap) / 2);
  left: 50%;
  translate: -50% -50%;
  display: block;
  fill: transparent;
  stroke: #333;
}

.p-company__head h3 {
  text-align: center;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-company__head h3 {
    margin-top: 70px;
  }
}
.p-company__head p {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-company__head p {
    text-align: center;
  }
}

.p-company__para {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-company__para {
    margin-top: 50px;
  }
}

.p-company__figure {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-company__figure {
    margin-top: 100px;
  }
}
.p-company__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.p-company_online-block{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 80px;
}
.p-company_online-block h3{
  margin-bottom: 30px;
}

.p-company__message {
  padding: 50px 0;
  background-color: #F7F0EC;
}
@media screen and (min-width: 768px) {
  .p-company__message {
    padding: 100px 0;
  }
}

.p-company__message-2col {
  margin-top: 50px;
  margin-inline: auto;
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-company__message-2col {
    width: 100%;
    margin-top: 70px;
    grid-template-columns: 1fr 41.8181818182%;
    gap: 65px;
  }
}

.p-company__message-name {
  margin-top: 40px;
}
.p-company__message-name .u-ft-large {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-company__message-name .u-ft-large {
    font-size: 1.5rem;
  }
}

.p-company__info-lists {
  margin-top: 40px;
}

.c-list {
  padding: 25px 30px;
  border-top: 1px solid #D8C7BF;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-list {
    grid-template-columns: 25.4716981132% 1fr;
    gap: 60px;
  }
}
.c-list:last-child {
  border-bottom: 1px solid #D8C7BF;
}
.c-list address {
  font-style: normal;
}
.c-list a {
  color: #333;
}
@media screen and (min-width: 1024px) {
  .c-list a:hover {
    text-decoration: underline;
  }
}

.p-company__info-images {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-company__info-images {
    flex-direction: row;
    margin-top: 100px;
    gap: 55px;
  }
}
.p-company__info-images figure {
  padding: 0 10px;
  max-width: 520px;
  margin-inline: auto;
}
.p-company__info-images figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-company__map-items {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-company__map-items {
    margin-top: 70px;
  }
}

.p-company__map-item {
  margin-inline: auto;
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-company__map-item {
    align-items: center;
    width: 100%;
    grid-template-columns: 1fr 52.7272727273%;
  }
}
.p-company__map-item:not(:first-child) {
  margin-top: 50px;
  border-top: 1px solid #D8C7BF;
  padding-top: 50px;
}

.p-compnay__map-iframe iframe {
  display: block;
  width: 100%;
  aspect-ratio: 580/340;
}

.p-company__map-text address {
  margin-top: 28px;
  font-style: normal;
}

.p-company__map-text-tel a {
  color: #333;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .p-company__map-text-tel a:hover {
    text-decoration: underline;
  }
}

.p-company__map-link {
  margin-top: 40px;
}

.p-company__map-text-icon {
  width: 30px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.9375rem;
  left: 0;
  translate: 0 -50%;
}
.p-company__map-text-icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-company__map-text-address,
.p-company__map-text-tel {
  position: relative;
  padding-left: 40px;
}

.p-company__map-image {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-company__map-image {
    margin-top: 100px;
  }
}
.p-company__map-image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-company__esg-head p {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-company__esg-head p {
    margin-top: 70px;
  }
}
.p-company__esg-head figure {
  margin-top: 60px;
  width: min(100%, 920px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-company__esg-head figure {
    margin-top: 100px;
  }
}
.p-company__esg-head figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-company__esg-blocks {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-company__esg-blocks {
    margin-top: 100px;
    gap: 80px;
  }
}
.p-company__esg-blocks h3 {
  text-align: center;
}

.p-company__esg-block-image {
  width: min(100%, 440px);
  margin-inline: auto;
}
.p-company__esg-block-image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-company__esg-block {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-company__2col-item {
  margin-inline: auto;
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-company__2col-item {
    width: 100%;
    grid-template-columns: 1fr 40.9090909091%;
    gap: 5vw;
  }
}

.p-company__2col-item-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.p-company__2col-item-list:not(:first-child) {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #D8C7BF;
}

.p-company__2col-item-images {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-company__2col-item-figure img {
  display: block;
  width: 100%;
  height: auto;
  background-color: aliceblue;
}

.p-company__esg-flow {
  display: block;
  margin-inline: auto;
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .p-company__esg-flow {
    overflow-x: visible;
  }
}
.p-company__esg-flow img {
  display: block;
  width: 700px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-company__esg-flow img {
    width: min(100%, 1060px);
  }
}

.p-company__message-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.p-support__msg-cover {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-support__msg-cover-para {
  writing-mode: vertical-rl;
}
.p-support__msg-cover-para span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  line-height: 1.2;
  font-family: var(--Serif);
}
@media screen and (min-width: 768px) {
  .p-support__msg-cover-para span {
    font-size: 1.5rem;
  }
}
.p-support__msg-cover-para span + span {
  margin-right: 20px;
}

.p-support__msg-figure {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-support__msg-figure {
    margin-top: 100px;
  }
}
.p-support__msg-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-support__msg-main {
  position: relative;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-support__msg-main {
    margin-top: 100px;
  }
}

.p-support__msg-head {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.p-support__msg-head h2, .p-support__msg-head h3 {
  text-align: center;
}
.p-support__msg-head p {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-support__msg-head p {
    text-align: center;
  }
}

.p-support__msg-images {
  position: relative;
}

.p-support__msg-image {
  width: min(100%, 626px);
  margin-inline: auto;
  position: relative;
}
.p-support__msg-image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-support__msg-icon,
.p-support__msg-icon-2 {
  position: absolute;
  display: none;
  height: auto;
  width: min(35vw, 420px);
}
@media screen and (min-width: 768px) {
  .p-support__msg-icon,
  .p-support__msg-icon-2 {
    display: block;
  }
}

.p-support__msg-icon {
  top: -60px;
  left: -220px;
}

.p-support__msg-icon-2 {
  top: -40px;
  right: -260px;
}

.p-supprt__flow-para {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-supprt__flow-para {
    margin-top: 70p;
  }
}
.p-supprt__flow-para p + p {
  margin-top: 1.5em;
}

.p-supprt__flow-lists {
  --gap: 90px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
@media screen and (min-width: 768px) {
  .p-supprt__flow-lists {
    margin-top: 100px;
  }
}

.p-support__flow-list {
  position: relative;
  padding: 30px 20px;
  background-color: #F7F0EC;
  border-radius: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-support__flow-list {
    padding: 50px;
  }
}
.p-support__flow-list p {
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-support__flow-list p {
    font-size: 1.125rem;
    text-align: center;
  }
}
.p-support__flow-list img {
  display: block;
  position: absolute;
  top: calc(100% + var(--gap) / 2);
  left: 50%;
  translate: -50% 0;
}

.p-support__flow-list-number {
  width: 6.875rem;
  height: 1.875rem;
  display: block;
  background-color: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 26.5px;
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .p-support__flow-list-number {
    font-size: 1rem;
    width: 10.3125rem;
    height: 3.3125rem;
  }
}

.p-support__faq-blocks {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-support__faq-blocks {
    margin-top: 70px;
    gap: 80px;
  }
}

.p-support__faq-block h3 {
  text-align: center;
}

.p-support__faq-lists {
  margin-top: 50px;
}

.p-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-support__faq-list:not(:first-child) {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #D8C7BF;
}
.p-support__faq-list:last-child {
  border-bottom: 1px solid #D8C7BF;
  padding-bottom: 20px;
}

.p-support__faq-list dt,
.p-support__faq-list dd {
  position: relative;
  padding-left: 2.25em;
}
@media screen and (min-width: 768px) {
  .p-support__faq-list dt,
  .p-support__faq-list dd {
    padding-left: 4em;
  }
}
.p-support__faq-list dt::before,
.p-support__faq-list dd::before {
  content: attr(data-label);
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: var(--Bellefair);
  text-transform: uppercase;
  position: absolute;
  top: 0.9375rem;
  left: 0;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .p-support__faq-list dt::before,
  .p-support__faq-list dd::before {
    font-size: 1.25rem;
  }
}

.p-support__renove {
  position: relative;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .p-support__renove {
    padding: 100px 0;
  }
}
.p-support__renove h2, .p-support__renove p {
  text-align: center;
  color: #fff;
}
.p-support__renove p {
  margin-top: 50px;
  margin-inline: auto;
  width: min(100% - var(--inner) * 2, 960px);
}
.p-support__renove a {
  margin-top: 60px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-support__renove a {
    margin-top: 80px;
  }
}

.p-support__renove-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-contact__para {
  text-align: center;
}

.p-contact__2col-items {
  margin-top: 50px;
  margin-inline: auto;
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 20px;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact__2col-items {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.p-contact__2col-item {
  background-color: #F7F0EC;
  padding: 25px;
  text-align: center;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact__2col-item {
    padding: 65px 60px 70px;
  }
}
.p-contact__2col-item a {
  margin-top: 24px;
  cursor: pointer;
  transition: var(--transition-opacity);
}
@media screen and (min-width: 1024px) {
  .p-contact__2col-item a:hover {
    filter: var(--opacity);
  }
}

.p-contact__2col-item-link--tel {
  font-size: 1.75rem;
  line-height: 1.3;
  font-family: var(--Bellefair);
  letter-spacing: 0.1em;
  display: block;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-contact__2col-item-link--tel {
    font-size: 2.5rem;
  }
}

.p-contact__2col-item-link--line {
  width: min(100%, 340px);
  height: 65px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background-color: #06C755;
  color: #fff;
  font-size: 0.9375rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-contact__2col-item-link--line {
    font-size: 1.125rem;
    height: 90px;
    gap: 20px;
  }
}
.p-contact__2col-item-link--line img {
  display: block;
  width: 1.5rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__2col-item-link--line img {
    width: 2rem;
  }
}

.p-contact__form-body {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-body {
    margin-top: 100px;
  }
}

.p-contact__form-head {
  text-align: center;
}


.p-contact__form-head p {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-head p {
    margin-top: 50px;
    text-align: center;
  }
}

.p-privacy__block {
  margin-top: 40px;
}
.p-privacy__block h4 + p {
  margin-top: 1.5em;
}
.p-privacy__block ol {
  margin-top: 2em;
}
.p-privacy__block ol > li:not(:first-child) {
  margin-top: 2em;
}
.p-privacy__block h5 {
  margin-top: 2em;
  font-weight: 400;
}
.p-privacy__block p a {
  color: #806B4B;
}
@media screen and (min-width: 1024px) {
  .p-privacy__block p a:hover {
    text-decoration: underline;
  }
}
.p-privacy__block li ul > li {
  position: relative;
  padding-left: 1em;
}
.p-privacy__block li ul > li::before {
  content: "";
  width: 3px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #333;
  position: absolute;
  top: 0.9375rem;
  left: 0;
  translate: 0 -50%;
}

.p-contact__form-box {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-contact__form-box {
    margin-top: 100px;
  }
}

.p-form__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-form__item {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
}
.p-form__item:not(:first-of-type) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-form__item:not(:first-of-type) {
    margin-top: 40px;
  }
}
.p-form__item dd:has(select) {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-form__item dd:has(select)::before {
  content: "";
  width: 0.5em;
  aspect-ratio: 1;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  rotate: 45deg;
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 10;
  rotate: 135deg;
}
.p-form__item select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  width: 18.75rem;
  padding: 0.8em 1.2em 0.6em;
  border: 1px solid #C1C1C1;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-form__item select {
    font-size: 0.9375rem;
  }
}
.p-form__item input[type=email],
.p-form__item input[type=tel],
.p-form__item input[type=text],
.p-form__item textarea {
  width: 100%;
  padding: 0.8em 1.2em 0.6em;
  background-color: #fff;
  border: 1px solid #C1C1C1;
  vertical-align: middle;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-form__item input[type=email],
  .p-form__item input[type=tel],
  .p-form__item input[type=text],
  .p-form__item textarea {
    font-size: 0.9375rem;
  }
}
.p-form__item dt, .p-form__item dd {
  font-size: 0.875rem;
  line-height: 2;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .p-form__item dt, .p-form__item dd {
    font-size: 0.9375rem;
  }
}
.p-form__item textarea {
  height: 100px;
}

.p-form__item .must {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-form__item .must {
    justify-content: space-between;
    gap: 20px;
  }
}
.p-form__item .must::after {
  content: "必須";
  font-size: 0.875rem;
  width: 3.125rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red);
  color: #fff;
  line-height: 1;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-form__item .must::after {
    font-size: 0.9375rem;
  }
}

.p-form__item.p-form__item--short input[type=text],
.p-form__item.p-form__item--short input[type=tel] {
  display: inline-block;
  width: min(100%, 18.75rem);
}

input::placeholder,
textarea::placeholder {
  color: #C1C1C1;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  input::placeholder,
  textarea::placeholder {
    font-size: 0.9375rem;
  }
}

.p-form__privacy {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-form__privacy {
    margin-top: 80px;
  }
}
.p-form__privacy input {
  width: 1.25rem;
  aspect-ratio: 1;
  display: inline-block;
  border: 1px solid #707070;
  margin-right: 0.625rem;
  translate: 0 -1px;
}

.p-form__button {
  margin-top: 30px;
}
.p-form__button button.c-button {
  margin-inline: auto;
  cursor: not-allowed;
  pointer-events: none;
  --size: 1rem;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-form__button button.c-button {
    --size: 1.125rem;
  }
}
.p-form__button button.c-button.enabled {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .p-form__button button.c-button.enabled:hover {
    cursor: pointer;
  }
}

.wpcf7-not-valid-tip {
  margin-top: 0.625rem;
}

.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-privacy {
  margin-top: 60px;
  width: 100%;
  height: 300px;
  overflow-y: scroll;
  padding: 40px;
  border: 1px solid #333;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    margin-top: 80px;
  }
}

.p-archive__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-archive__links {
    flex-direction: row;
    gap: 50px;
  }
}

.p-archive__link a {
  color: #333;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 5px;
}

.p-archive__link.is-active a {
  font-weight: 700;
  border-bottom: 1px solid var(--red);
}
@media screen and (min-width: 768px) {
  .p-archive__link.is-active a {
    padding: 5px 30px;
    border-radius: 100px;
    background-color: var(--red);
    color: #fff;
    border: none;
  }
}

.p-archive__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 50px 40px;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-archive__items {
    margin-top: 100px;
  }
}

.p-archive__item-figure img {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  background-color: aliceblue;
}

.p-arvhice__item-lists {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-archive__item a {
  color: #333;
  cursor: pointer;
  transition: var(--transition-opacity);
}
@media screen and (min-width: 1024px) {
  .p-archive__item a:hover {
    filter: var(--opacity);
  }
}
.p-archive__item h2 {
  margin-top: 15px;
  font-weight: 400;
}

.p-archive__item-date {
  font-size: 0.875rem;
  font-family: var(--Bellefair);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.p-archive__item-cat {
  color: #fff;
  background-color: #806B4B;
  min-width: 115px;
  padding: 0 15px;
  width: initial;
  height: 35px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-archive__no-text {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-archive__no-text {
    margin-top: 70px;
  }
}

.p-single__head-lists {
  display: flex;
  gap: 30px;
  align-items: center;
}

.p-single__head-cat {
  min-width: 120px;
  padding: 0 15px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background-color: #806B4B;
  color: #fff;
  border-radius: 25px;
  text-align: center;
}

.p-single__head-date {
  font-size: 0.875rem;
  font-family: var(--Bellefair);
  letter-spacing: 0.2em;
  line-height: 1.5;
}

.p-single__title {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-single__title {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .p-single__work-title {
    text-align: center;
  }
}

.p-single__image--else {
  width: min(100%, 960px);
}
.p-single__image--else img {
  aspect-ratio: 960/500;
}

.p-single__image--event {
  width: min(100%, 500px);
}
.p-single__image--event img {
  aspect-ratio: 1;
}

.p-single__works-image {
  width: min(100%, 1100px);
}
.p-single__works-image img {
  aspect-ratio: 1100/800;
}

.p-single__image, .p-single__works-image {
  margin-top: 50px;
  margin-inline: auto;
}
.p-single__image img, .p-single__works-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-single__content {
  margin-top: 50px;
}
.p-single__content h2, .p-single__content h3 {
  font-family: var(--Serif);
}
.p-single__content h2 {
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: var(--Serif);
}
@media screen and (min-width: 768px) {
  .p-single__content h2 {
    font-size: 1.75rem;
  }
}
.p-single__content h3 {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-single__content h3 {
    font-size: 1.25rem;
  }
}
.p-single__content h4, .p-single__content h5 {
  font-weight: 500;
}
.p-single__content h4 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single__content h4 {
    font-size: 1.25rem;
  }
}
.p-single__content ol {
  list-style: decimal;
  margin-left: 1em;
}
.p-single__content ul li {
  position: relative;
  padding-left: 1em;
}
.p-single__content ul li::before {
  content: "";
  width: 4px;
  aspect-ratio: 1;
  display: block;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  top: 0.9375rem;
  left: 0;
  translate: 0 -50%;
}
.p-single__content h2, .p-single__content h3, .p-single__content h4, .p-single__content h5 {
  margin-top: 1.5625em;
  margin-bottom: 1em;
}
.p-single__content p, .p-single__content ul, .p-single__content ol {
  margin-top: 1.5em;
  margin-bottom: 1em;
}

.p-single__event-box {
  padding: 25px 20px;
  background-color: #F7F0EC;
}
@media screen and (min-width: 768px) {
  .p-single__event-box {
    padding: 50px;
  }
}
.p-single__event-box h2 {
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1rem;
  line-height: 1.5;
}

.p-single__event-lists {
  margin-top: 20px;
}

.p-single__event-list {
  display: flex;
}
.p-single__event-list dt {
  white-space: nowrap;
}
.p-single__event-list dd {
  flex: 1;
}

.p-single__line-button {
  margin-top: 50px;
  width: min(100%, 500px);
  height: 100px;
  background-color: #06C755;
  color: #fff;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  gap: 10px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-opacity);
}
@media screen and (min-width: 768px) {
  .p-single__line-button {
    gap: 20px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .p-single__line-button:hover {
    filter: var(--opacity);
  }
}

.wp-block-columns {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .wp-block-columns {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.wp-element-caption {
  text-align: center;
}

/*
ページネーション
*/
.p-single__page {
  margin-top: 50px;
  --_width: 240px;
  display: grid;
  grid-template-columns: 1fr minmax(0, var(--_width)) 1fr;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single__page {
    margin-top: 80px;
    gap: 2.5rem;
    --_width: 280px;
  }
}

.p-single__page-button.c-button {
  grid-column: 2/3;
  font-size: 0.9375rem;
  --height: 60px;
}

.p-single__page-prev,
.p-single__page-next {
  --size: 0.875rem;
  font-size: var(--size);
  font-family: var(--Bellefair);
  letter-spacing: 0.1em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brown3);
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-single__page-prev,
  .p-single__page-next {
    --size: 1.125rem;
  }
}
.p-single__page-prev::before, .p-single__page-prev::after,
.p-single__page-next::before,
.p-single__page-next::after {
  display: inline-block;
  width: 0.8125rem;
  aspect-ratio: 20.5/18;
  background: url(./images/common/icon_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-single__page-prev::before, .p-single__page-prev::after,
  .p-single__page-next::before,
  .p-single__page-next::after {
    width: 1.28125rem;
  }
}

.p-single__page-prev {
  --space: .5em;
  grid-column: 1/2;
}
.p-single__page-prev::before {
  content: "";
  margin-right: 0.7em;
}
@media screen and (min-width: 768px) {
  .p-single__page-prev::before {
    margin-right: 1em;
  }
}

.p-single__page-next {
  grid-column: 3/4;
}
.p-single__page-next::after {
  content: "";
  scale: -1 -1;
  margin-left: 0.7em;
}
@media screen and (min-width: 768px) {
  .p-single__page-next::after {
    margin-left: 1em;
  }
}

.c-pagenation {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-pagenation {
    margin-top: 100px;
  }
}
.c-pagenation .wp-pagenavi {
  position: relative;
  display: flex;
  justify-content: center;
}
.c-pagenation .page, .c-pagenation .current, .c-pagenation .last, .c-pagenation .first {
  margin: 0 0.3125rem;
  width: 2.3125rem;
  height: 2.3125rem;
  display: inline-block;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: normal;
  letter-spacing: 0.1em;
  font-family: var(--Bellefair);
  font-weight: 400;
  border-radius: 50%;
  transition: filter 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .c-pagenation .page, .c-pagenation .current, .c-pagenation .last, .c-pagenation .first {
    font-size: 1rem;
    width: 2.3125rem;
    height: 2.3125rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-pagenation .page:hover, .c-pagenation .current:hover, .c-pagenation .last:hover, .c-pagenation .first:hover {
    cursor: pointer;
    filter: opacity(0.8);
  }
}
.c-pagenation .extend, .c-pagenation .first {
  align-self: center;
}
.c-pagenation .current {
  color: #fff;
  background-color: #806B4B;
}
.c-pagenation .page, .c-pagenation .last, .c-pagenation .first {
  color: #806B4B;
  background-color: #fff;
  border: 1px solid #806B4B;
}

.previouspostslink,
.nextpostslink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  transition: filter 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .previouspostslink,
  .nextpostslink {
    width: 2.3125rem;
  }
}
@media screen and (min-width: 1024px) {
  .previouspostslink:hover,
  .nextpostslink:hover {
    cursor: pointer;
    filter: opacity(0.8);
  }
}
.previouspostslink span,
.nextpostslink span {
  width: 0.6em;
  aspect-ratio: 1;
  display: inline-block;
  border-top: 1px solid #806B4B;
  border-right: 1px solid #806B4B;
}

@media screen and (min-width: 768px) {
  .previouspostslink {
    margin-right: 10px;
  }
}
.previouspostslink span {
  rotate: 225deg;
}

@media screen and (min-width: 768px) {
  .nextpostslink {
    margin-left: 10px;
  }
}
.nextpostslink span {
  rotate: 45deg;
}

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

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

.


/*# sourceMappingURL=style.css.map */
