@charset "UTF-8";
/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  color: #333333;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.page-templateA__upper-content {
  background-color: rgba(245, 165, 78, 0.15);
  padding-top: 5rem;
  padding-bottom: 1.5rem;
  margin-top: -5rem;
}
@media screen and (min-width: 768px) {
  .page-templateA__upper-content {
    padding-top: 7.5rem;
    padding-bottom: 2.5rem;
  }
}

.page-templateA__content > div {
  padding-top: 3.75rem !important;
}
@media screen and (min-width: 768px) {
  .page-templateA__content > div {
    padding-top: 6.25rem !important;
  }
}

.page-templateA__content > div:first-child {
  padding-top: 0 !important;
}

.page-templateA__content .block {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .block {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.page-templateA__content .pattern01 {
  padding-bottom: 3rem;
}
.page-templateA__content .pattern01 figure {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .pattern01 figure {
    margin-top: 3.375rem;
  }
}
.page-templateA__content .pattern02 {
  padding-bottom: 3rem;
}
.page-templateA__content .pattern02 .is-layout-flex:first-of-type {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .pattern02 .is-layout-flex:first-of-type {
    margin-top: 4.875rem;
  }
}
.page-templateA__content .pattern02 .is-layout-flex:not(:first-of-type) {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .pattern02 .is-layout-flex:not(:first-of-type) {
    margin-top: none;
  }
}
.page-templateA__content .pattern02 .is-layout-flex:nth-of-type(even) {
  flex-direction: row-reverse;
}
.page-templateA__content .pattern03 {
  padding-bottom: 0.75rem;
}
.page-templateA__content .pattern03 .wp-block-columns {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .pattern03 .wp-block-columns {
    margin-top: 3.75rem;
  }
}
.page-templateA__content .pattern03 .wp-block-column {
  min-height: 18.75rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .pattern03 .wp-block-column {
    min-height: 37.5rem;
  }
}
.page-templateA__content .pattern03 .wp-block-image {
  max-width: 100%;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .pattern03 .wp-block-image {
    height: 300px;
  }
}
.page-templateA__content .pattern03 .wp-block-image img {
  aspect-ratio: 3/2;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
}
.page-templateA__content .pattern03 .wp-block-column .wp-block-heading {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .pattern03 .wp-block-column .wp-block-heading {
    margin-top: 1.875rem;
  }
}
.page-templateA__content .pattern04 {
  counter-reset: section;
  position: relative;
  padding-bottom: 3rem;
}
.page-templateA__content .pattern04 .wp-block-columns {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .pattern04 .wp-block-columns {
    margin-top: 4.0625rem;
  }
}
.page-templateA__content .pattern04 .wp-block-column {
  border: 1px solid #333;
  padding: 1.875rem 1.25rem 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .pattern04 .wp-block-column {
    padding: 0rem 3.75rem 4.1875rem 3.75rem;
  }
}
.page-templateA__content .pattern04 h3.wp-block-heading::before {
  position: absolute;
  top: -1.875rem;
  counter-increment: section;
  content: counter(section, decimal-leading-zero) ""; /* 先頭にゼロを追加 */
  font-weight: bold;
  color: #333;
  margin-right: 0.5em;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .pattern04 h3.wp-block-heading::before {
    top: -2.5rem;
  }
}
.page-templateA__content .pattern04 h3.wp-block-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.5px;
  background-color: #654B4B;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-templateA__content .wp-block-button {
  margin-inline: auto;
}
.page-templateA__content .wp-block-button__link {
  margin-top: 2.25rem;
  padding: 0.625rem 3.75rem 0.8125rem 3.75rem;
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  border-radius: 100vh;
  color: #fff;
  box-shadow: 7.19px 6.95px 21px rgba(91, 91, 91, 0.21);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .wp-block-button__link {
    margin-top: 3.375rem;
    font-size: 1.1875rem;
    padding: 1.5625rem 6.875rem 1.75rem 3.75rem;
  }
}
.page-templateA__content .wp-block-button__link::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/arrowWhite.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.9375rem;
  height: 0.75rem;
  top: 50%;
  right: 0.9375rem;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .wp-block-button__link::before {
    width: 1.25rem;
    height: 0.9375rem;
  }
}
.page-templateA__content .wp-block-button__link::after {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 2.8125rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .page-templateA__content .wp-block-button__link::after {
    right: 3.8125rem;
    height: 30px;
  }
}
.page-templateA__content .wp-block-button__link:hover {
  opacity: 1;
}
.page-templateA__content .wp-block-button__link:hover::before {
  right: 0.625rem;
}
.page-templateA__content h2 {
  font-size: 3rem;
  font-family: "Zen Old Mincho", serif;
  color: #6A5E5E;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-templateA__content h2 {
    font-size: 3.75rem;
  }
}
.page-templateA__content h3 {
  margin-top: 0rem;
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-templateA__content h3 {
    margin-top: 5rem;
    padding-bottom: 1.5rem;
    font-size: 1.6875rem;
  }
}
.page-templateA__content h3::after {
  content: "";
  display: block;
  width: 4.25rem;
  height: 0.5px;
  background-color: #654B4B;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-templateA__content h4 {
  margin-top: 3rem;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #f3f5f5;
}
@media screen and (min-width: 768px) {
  .page-templateA__content h4 {
    margin-top: 4rem;
    font-size: 1.25rem;
  }
}
.page-templateA__content h5 {
  margin-top: 2.5rem;
  padding: 0.25rem 0 0.25rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-left: 0.25rem solid #E3CDCD;
}
@media screen and (min-width: 768px) {
  .page-templateA__content h5 {
    margin-top: 3rem;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 1.125rem;
  }
}
.page-templateA__content h6 {
  margin-top: 2rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-templateA__content h6 {
    margin-top: 2.375rem;
    font-size: 1rem;
  }
}
.page-templateA__content p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-templateA__content p {
    margin-top: 2.375rem;
    font-size: 1rem;
  }
}
.page-templateA__content p a {
  color: #E3CDCD;
  -webkit-text-decoration: underline #E3CDCD;
          text-decoration: underline #E3CDCD;
}
.page-templateA__content ul {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .page-templateA__content ul {
    margin-top: 2.375rem;
  }
}
.page-templateA__content ul li {
  padding-left: 1.375rem;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -1.125rem;
}
.page-templateA__content ul li:not(:first-of-type),
.page-templateA__content ol li:not(:first-of-type) {
  margin-top: 1rem;
}
.page-templateA__content ul li::before {
  content: "";
  margin-right: 0.625rem;
  position: relative;
  top: -0.1875rem;
  width: 0.5rem;
  height: 0.5rem;
  display: inline-block;
  background-color: #E3CDCD;
  border-radius: 50%;
}
.page-templateA__content ol {
  margin-top: 2rem;
  counter-reset: number;
}
@media screen and (min-width: 768px) {
  .page-templateA__content ol {
    margin-top: 2.375rem;
  }
}
.page-templateA__content ol li {
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -0.75rem;
}
.page-templateA__content ol li::before {
  counter-increment: number;
  content: counter(number) ".";
  margin-right: 0.625rem;
  display: inline-block;
  line-height: 1;
  color: #E3CDCD;
}
.page-templateA__content figure {
  width: 100%;
}
.page-templateA__content figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-templateA__content .sub-title {
  margin-top: 0.8125rem;
  font-size: 1.125rem;
  font-family: "Zen Old Mincho", serif;
  color: #6A5E5E;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .sub-title {
    font-size: 1.75rem;
  }
}
.page-templateA__content .wp-block-group.component_a {
  max-width: 66rem;
  margin-inline: auto;
  margin-top: 0rem;
  background-color: #fff;
  z-index: 20;
  position: relative;
  padding: 0.625rem 1.25rem 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-templateA__content .wp-block-group.component_a {
    padding: 1.875rem 3.875rem 4.1875rem 3.875rem;
    margin-top: -5.9375rem;
  }
}
.page-templateA__content .component_a .sub-title {
  font-size: 1.5rem;
  margin-top: 0rem;
}
.page-templateA__content .component_a p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 2.1875;
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1250px;
    overflow: hidden;
  }
}

.l-page-top {
  position: fixed;
  right: 1.5rem;
  bottom: 23%;
}
@media screen and (min-width: 768px) {
  .l-page-top {
    bottom: 5%;
  }
}

.l-pager {
  margin-top: 2rem;
}

.l-post-connect {
  margin-top: 1rem;
}

.c-breadcrumb {
  text-align: right;
  padding: 1.25rem 0;
}

.c-breadcrumb a {
  color: #333333;
}

.c-btn {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-family: "Zen Old Mincho", serif;
  text-transform: capitalize;
  background-color: var(--btn-bg-color, #948383);
  border-radius: 100vh;
  color: #fff;
  width: 85%;
  box-shadow: 7.19px 6.95px 21px rgba(91, 91, 91, 0.21);
  line-height: 3;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-btn {
    line-height: 1;
    width: initial;
    font-size: 1.1875rem;
    padding: 1.5625rem 6.875rem 1.75rem 3.75rem;
  }
}

.c-btn.custom-btn-color {
  background-color: attr(data-color);
}
.c-btn.custom-btn-color[data-color] {
  background-color: var(--btn-color);
}

.c-btn::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/arrowWhite.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 0.9375rem;
  top: 50%;
  right: 0.9375rem;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.c-btn::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 3.8125rem;
  transform: translateY(-50%);
}

.c-btn:hover {
  opacity: 1;
}

.c-btn:hover::before {
  right: 0.625rem;
}

.c-btn__padding-right {
  padding-right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-btn__padding-right {
    padding: 0;
  }
}

.c-title {
  font-size: 1.5rem;
  color: black;
}
@media screen and (min-width: 768px) {
  .c-title {
    color: red;
  }
}
@media screen and (min-width: 1000px) {
  .c-title {
    color: blue;
  }
}
@media screen and (min-width: 1200px) {
  .c-title {
    color: green;
  }
}

.about {
  padding-top: 4.5rem;
  padding-bottom: 4.6875rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 9.5625rem;
    padding-bottom: 7.25rem;
  }
}

.about::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../images/top/about-bkSP.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about::before {
    width: 42.6875rem;
    background-image: url(../images/top/about-bk.png);
  }
}

.about__image-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .about__image-wrapper {
    width: 100%;
    margin-left: initial;
    margin-top: 4.375rem;
  }
}

.about__image {
  width: 91%;
  max-width: 100%;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__image {
    width: 100%;
  }
}

.about__image img {
  aspect-ratio: 341/228;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about__image img {
    aspect-ratio: 1200/570;
  }
}

.about__text-wrapper {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 1.875rem 2.1875rem 2.9375rem 1.875rem;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-top: -2.25rem;
}
@media screen and (min-width: 768px) {
  .about__text-wrapper {
    margin-top: -13.625rem;
    margin-right: initial;
    width: 64%;
    margin-left: auto;
    padding: 3.4375rem 2.1875rem 2.9375rem 4.25rem;
  }
}

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

.about__subtitle {
  font-size: 1.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .about__subtitle {
    font-size: 2rem;
    line-height: 1.3125;
  }
}

.about__description {
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .about__description {
    margin-top: 1.6875rem;
    font-size: 1rem;
    line-height: 2.1875;
  }
}

.about__btn {
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about__btn {
    margin-top: 4.0625rem;
  }
}

.column-list {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 2.625rem;
}

@media screen and (min-width: 768px) {
  .column-list {
    margin-top: 4.3125rem;
    gap: 4.375rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4.25rem;
  }
}

.column-list--connect {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .column-list--connect {
    grid-template-columns: repeat(3, 1fr);
  }
}

.column-list__item{
  display: grid;
  border-bottom: 1px solid #6A5E5E;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0.625rem;
}
.column-list__item-img{
  height: fit-content;
}
.column-list__item-wrapper{
  height: fit-content;
}
.column-list__item-title{
  height: fit-content;
}
.column-list__item-text{
  height: fit-content;
  margin-block-start: auto;
}
.column-list--slider {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .column-list--slider {
    margin-top: 3.75rem;
  }
}

.column-list__item--slider a{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0.625rem;
  min-height: 500px;
}


.column-list__item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 360/186;
  -o-object-fit: cover;
     object-fit: cover;
}

.column-list__item-content {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding: 1.625rem 0 2.625rem 0;
}


.column-list__item-wrapper {
  display: flex;
  align-items: baseline;
  flex-direction: column-reverse;
  gap: 0.625rem;
  justify-content: space-between;
}
.column-list__item-category--slider .column-list__item-wrapper{
  align-items: flex-end;
}
.column-list__item-category {
  font-size: 1rem;
  line-height: 1;
  color: #E95599;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2.1875;
}
.column-list__item-category span {
  padding: 0 1.4375rem;
  white-space: nowrap;
  border: 1px solid #E95599;


}
@media screen and (min-width: 768px) {
  .column-list__item-wrapper {
    flex-direction: row;
    gap: 1.875rem;
}
}
@media screen and (min-width: 768px) {
  .column-list__item-category {
    font-size: 1.125rem;
  }
}

.column-list__item-title {
  font-size: 1rem;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 768px) {
  .column-list__item-title {
    font-size: 1.5rem;
  }
}

.column-list__item-time {
  font-size: 1rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .column-list__item-time {
    font-size: 1.125rem;
  }
}

.column-list__item-text {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .column-list__item-text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.column-list__item-img--slider {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .column-list__item-img--slider {
    width: 100%;
  }
}

.column-list__item-img--slider img {
  aspect-ratio: 235/147;
}
@media screen and (min-width: 768px) {
  .column-list__item-img--slider img {
    aspect-ratio: 372/221;
  }
}

.column-list__item-category--slider {
  font-size: 0.75rem;
  line-height: 1.8333333333;
}
@media screen and (min-width: 768px) {
  .column-list__item-category--slider {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
    padding: 0 0.625rem;
  }
}

.column-list__item-title--slider {
  font-size: 1rem;
  min-height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .column-list__item-title--slider {
    font-size: 1.125rem;
  }
}

.column-list__item-time--slider {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .column-list__item-time--slider {
    font-size: 1.125rem;
  }
}

.column {
  padding-top: 3.125rem;
  padding-bottom: 3.75rem;
  background-color: rgba(245, 165, 78, 0.15);
}
@media screen and (min-width: 768px) {
  .column {
    padding-top: 5.5625rem;
    padding-bottom: 5.5625rem;
  }
}

.column__btn {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .column__btn {
    margin-top: 2.25rem;
  }
}

.contact-section {
  padding: 5rem 0rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-section {
    padding: 5rem 0rem 3.25rem;
  }
}

.contact-section::before {
  position: absolute;
  content: "";
  background-image: url(../images/top/top13SP.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: right;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .contact-section::before {
    background-image: url(../images/top/top13.jpg);
  }
}

.contact__section-title .section-title span {
  text-align: left;
  border-bottom: none;
}

.contact-section__container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact-section__container {
    flex-direction: row;
    gap: 6.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .contact-section__container-text-box {
    max-width: 37.5rem;
  }
}

.contact-section__container-text {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .contact-section__container-text:nth-child(2) {
    margin-top: 0;
  }
}

.contact-section__container-image {
  width: 23.6875rem;
  height: 22.5625rem;
  aspect-ratio: 379/361;
  margin-top: -3.125rem;
}

.contact-section__container-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-section__btn {
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .contact-section__btn {
    margin-top: -1.875rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.3125rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .faq-list {
    gap: 2.3125rem;
    margin-top: 0;
  }
}

.faq-list--archive {
  margin-top: 1.875rem;
}

.faq-list__item {
  background-color: #FDF9F9  ;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
}

.faq-list__item-question-wrapper {
  padding: 1.25rem 2.875rem 1.25rem 2.75rem;
  position: relative;
  font-size: 0.9375rem;
  font-family: "Zen Old Mincho", serif;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question-wrapper {
    align-items: baseline;
    padding: 1.875rem 6.25rem 1.875rem 5.625rem;
    font-size: 1.3125rem;
  }
}
.faq-list__item-answer-wrapper span{
  position: absolute;
}
.faq-list__item-question-wrapper::before,
.faq-list__item-question-wrapper::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  width: 1.0625rem;
  height: 0.125rem;
  background: #654B4B;
  transition: 0.3s;
  top: 46%;
  transform: translateY(-50%);
}
.faq-list__item-question-wrapper::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list__item-question-wrapper.is-open::after {
  transform: translateY(-50%) rotate(0);
}
@media screen and (min-width: 768px) {
  .faq-list__item-question-wrapper::before,
  .faq-list__item-question-wrapper::after {
    width: 1.875rem;
    right: 1.875rem;
  }
}

.faq-list__item-question::after {
  transform: rotate(90deg);
}

.faq-list__item-question.is-open::after {
  transform: rotate(0deg);
}

.faq-list__item-question-wrapper span {
  position: absolute;
  top: 0.875rem;
  left: 0.3125rem;
  margin-right: 0.625rem;
  color: #654B4B;
  border: 1px solid #654B4B;
  border-radius: 50%;
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sorts Mill Goudy", serif;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question-wrapper span {
    top: 1.25rem;
    left: 1.25rem;
    margin-right: 1.375rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}

.faq-list__item-answer {
  display: none;
}

.faq-list__item-answer-wrapper {
  padding: 1.875rem 2.875rem 1.875rem 2.75rem;
  font-size: 0.9375rem;
  background-color: #F7EEEE;
  font-family: "Zen Old Mincho", serif;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq-list__item-answer-wrapper {
    padding: 1.875rem 6.25rem 1.875rem 5.625rem;
    font-size: 1.3125rem;
    min-height: 5rem;
  }
}

.faq-list__item-answer-wrapper span {
  position: absolute;
  top: 1.625rem;
  left: 0.3125rem;
  color: #fff;
  background-color: #948383;
  border-radius: 50%;
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sorts Mill Goudy", serif;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .faq-list__item-answer-wrapper span {
    top: 1.25rem;
    left: 1.25rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}

.faq-list__item-answer-wrapper p {
  align-self: center;
  position: relative;
}

.faq-list__item-answer-wrapper a {
  color: #48B4AC;
}

.faq {
  padding-top: 4rem;
  padding-bottom: 5.125rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 3.125rem;
    padding-bottom: 9.375rem;
  }
}

.faq-tab {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .faq-tab {
    margin-top: 2.5rem;
  }
}

.faq-tab__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .faq-tab__menu {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.faq-tab__menu-item {
  border: 1px solid #BFB5B5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-tab__menu-item a {
  height: 100%;
  padding: 1.0625rem 0.625rem 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Old Mincho", serif;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1;
  color: #333333;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .faq-tab__menu-item a {
    font-size: 1.25rem;
  }
}

.faq-tab__menu-item a:hover {
  background-color: #948383;
  color: #fff;
}

.faq-tab__menu-item.is-active {
  color: #fff;
  background-color: #948383;
}

.faq-tab__contents {
  margin-top: 1.25rem;
}
.faq-tab__content-item {
  display: none;
}

.faq-tab__content-item ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .faq-tab__content-item ul {
    margin-top: 4.125rem;
  }
}

.faq-tab__content-item li {
  padding-bottom: 1rem;
  border-bottom: 1px solid #948383;
}
@media screen and (min-width: 768px) {
  .faq-tab__content-item li {
    padding-bottom: 2.3125rem;
  }
}

.faq-tab__content-item li:not(:first-child) {
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .faq-tab__content-item li:not(:first-child) {
    padding-top: 2rem;
  }
}

.faq-tab__content-item.is-active {
  display: block;
  animation: fade 0.3s;
}

.faq-tab__content-item-date {
  font-size: 0.8125rem;
  font-family: "Zen Old Mincho", serif;
  color: #948383;
}
@media screen and (min-width: 768px) {
  .faq-tab__content-item-date {
    font-size: 1.125rem;
    margin-right: 1.5625rem;
  }
}

.faq-tab__content-item-category {
  background: #948383;
  color: #fff;
  padding: 0.3125rem 1.0625rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .faq-tab__content-item-category {
    font-size: 0.9375rem;
    display: inline-block;
    width: 12%;
    text-align: center;
    margin-right: 3.125rem;
    white-space: nowrap;
  }
}

.faq-tab__content-item-title {
  font-size: 1.125rem;
  font-weight: 500;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.faq {
  padding-top: 3.9375rem;
  padding-bottom: 5.125rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 3.0625rem;
    padding-bottom: 9.375rem;
  }
}

.faq__inner {
  max-width: 92.5rem;
  display: grid;
  grid-template-areas: "section-title" "sub-title" "list-title" "list" "btn";
}
@media screen and (min-width: 768px) {
  .faq__inner {
    grid-template-columns: 0.45fr 1fr;
    grid-template-rows: auto auto min-content auto;
    grid-template-areas: "section-title list-title" "sub-title list" "btn list" ". list";
  }
}

.top-contact {
  padding-top: 3.9375rem;
  padding-bottom: 5.125rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-contact {
    padding-top: 3.0625rem;
    padding-bottom: 9.375rem;
  }
}
.top-contact::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../images/top/about-bkSP.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-contact::before {
    width: 42.6875rem;
    background-image: url(../images/top/about-bk.png);
    z-index: 0;
  }
}

.section-title {
  grid-area: section-title;
}

.faq__sub-title-wrapper {
  grid-area: sub-title;
  max-width: 19.25rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .faq__sub-title-wrapper {
    font-size: 1.75rem;
    margin-top: 3.1875rem;
  }
}

.faq__sub-title {
  font-size: 1.0625rem;
  line-height: 1.5294117647;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 768px) {
  .faq__sub-title {
    font-size: 1.75rem;
    line-height: 1.6428571429;
  }
}

.faq__list-title {
  grid-area: list-title;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.25rem;
  position: relative;
  line-height: 1.5;
  padding-left: 1.8125rem;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .faq__list-title {
    margin-top: initial;
    line-height: 1.6666666667;
    font-size: 2.0625rem;
    padding-left: 2.6875rem;
    display: flex;
    align-items: center;
  }
}

.faq__list-title::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/icon06SP.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.375rem;
  height: 1.375rem;
  top: 0.25lh;
  left: 0;
}
@media screen and (min-width: 768px) {
  .faq__list-title::before {
    background-image: url(../images/common/icon06.png);
    width: 1.8125rem;
    height: 1.8125rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.faq__btn {
  grid-area: btn;
  margin-top: 2.6875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .faq__btn {
    margin-top: 3.125rem;
    text-align: left;
  }
}

.faq__list {
  grid-area: list;
}

.floating-btn {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  z-index: 2;
  position: fixed;
  bottom: 5%;
  width: 100vw;
  margin-inline: auto;
  z-index: 999;
}

/* 1つのボタンしか表示されない場合のスタイル */
.floating-btn:has(.floating-btn__link:only-child) {
  justify-content: end;
  padding-right: 3rem;

}

@media screen and (min-width: 768px) {
  .floating-btn {
    flex-direction: column;
    width: 100%;
    bottom: 15%;
    right: 2%;
    width: initial;
  }
}
.floating-btn__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-btn__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.floating-btn__link--white {
  flex-direction: column;
}

.floating-btn__link--white .floating-btn__icon {
  width: 18.75rem;
}

.floating-btn__link {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0.625rem 0.9375rem 0.875rem;
  gap: 0.625rem;
  width: calc(100vw - 50% - 14px);
  background-color: var(--floating-btn-bg-color, #333);
  color: var(--floating-btn-text-color, #fff);
  border: 1px solid var(--floating-btn-border-color, transparent) !important;
  border-left-width: initial;
}
@media screen and (min-width: 768px) {
  .floating-btn__link {
    width: 8.125rem;
    flex-direction: column;
    padding: 0.625rem;
  }
}

.floating-btn__link::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  right: 0.375rem;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-top: 10px solid transparent;
  border-right: 10px solid var(--floating-btn-border-color, #fff);
}

.floating-btn__icon {
  width: 1.875rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .floating-btn__icon {
    width: 4.5rem;
  }
}

.floating-btn__icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.floating-btn__text {
  font-size: 0.75rem;
}

.floating-btn__link--white .floating-btn__icon {
  width: 5.8125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .floating-btn__link--white .floating-btn__icon {
    max-width: 9.375rem;
  }
}

.floating-btn__link--white img {
  aspect-ratio: 93/26;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .floating-btn__link--white img {
    aspect-ratio: 150/41;
  }
}

.footer {
  padding-top: 0rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 4.3125rem;
  }
}

.footer__wrap {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .footer__wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer .external-btn {
  position: relative;
  bottom: 0;
  transform: initial;
  right: 0;
  left: 0;
  margin-top: 2.1875rem;
}

@media screen and (min-width: 768px) {
  .footer__right {
    max-width: 34.375rem;
    width: 100%;
    flex: 1;
  }
}

.footer__right-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__nav-items {
  margin-top: 2.0625rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__nav-items {
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
    flex-wrap: wrap;
    row-gap: 0.75rem;
    margin-top: 0.4375rem;
    max-height: 15.625rem;
  }
}

.footer__nav-item {
  padding: 0.9375rem 0.625rem 0.9375rem 1.5rem;
  position: relative;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 1.5px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .footer__nav-item {
    font-size: 1.125rem;
  }
}

.footer__nav-item::before {
  content: "";
  position: absolute;
  top: 1.5lh;
  left: 0;
  transform: translateY(-50%);
  width: 0.3125rem;
  height: 0.3125rem;
  background: rgba(245, 165, 78, 0.3);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .footer__nav-item::before {
    width: 0.4375rem;
    height: 0.4375rem;
  }
}

.footer__admin-link {
  padding-right: 1.875rem;
  border-right: 1px solid #BCBCBC;
  position: relative;
}

.footer__admin-link::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/icon01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1rem;
  height: 1.3125rem;
  top: 50%;
  left: -1.875rem;
  transform: translateY(-50%);
}

.footer__nav-subitems {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.footer__nav-subitem a {
  padding: 0.5rem 0.625rem 0.5rem 0;
}

.footer__left {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__left {
    margin-top: 0;
    flex: 1.8;
  }
}

.footer__logo {
  max-width: 12.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    max-width: 13.625rem;
  }
}

.footer__logo a {
  padding: 0.625rem 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__logo a {
    padding: 0.9375rem 0;
  }
}

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

.footer__policy {
  padding: 0.625rem 0;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .footer__policy {
    font-size: 0.875rem;
  }
}

.footer__copyright {
  margin-top: 3.75rem;
  display: block;
  padding-top: 1.5625rem;
  padding-bottom: 6.9375rem;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.04em;
  background-color: #F5A54E;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 4.875rem;
    padding-top: 1.75rem;
    padding-bottom: 1.875rem;
    font-size: 0.9375rem;
    text-align: center;
  }
}

.footer__copyright span {
  text-transform: uppercase;
}

.gradation-bg {
  /* background-image: url(../images/common/column_bk.png); */
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 6.25rem;
  margin-top: -6.25rem;
  background-color: #FEF8F2;
}
@media screen and (min-width: 768px) {
  .gradation-bg {
    padding-top: 7.5rem;
  }
}

.gradation-bg--post {
  margin-top: 0;
}

.gsc-search-box-tools .gsc-search-box .gsc-input {
  background: none !important;
  z-index: 0;
  position: relative;
  padding-right: 0;
  border: none;

}

#___gcse_1 {
  position: fixed;
  width: 100%;
top: 50px;
left:50%;
transform: translateX(-50%);
  z-index: 1000;
}
#___gcse_1 .gsc-control-cse{
  padding: 5px 30px;
  margin-top: 10px;
}
#___gcse_1.is-active {
  display: block;
}
#___gcse_1 .gsc-search-button{
  background-color: #948383;
}
#___gcse_1 .gsc-search-button-v2{
  border: none;
}
#___gcse_0 {
  height: 1.75rem;
  position: relative;
}
#___gcse_0 .gsc-control-cse {
  padding: 0;
}
.gsc-control-cse {
  height: inherit;
  padding: 0;
}
.gsc-results-wrapper-overlay{
  height: 90vh!important;
}
#___gcse_0 .gsc-control-wrapper-cse {
  height: inherit;
}

#___gcse_0 .gsc-input-box {
  border-radius: 0.8125rem;
  padding: 0;
  width: 14.625rem;
}

#___gcse_0 .gsc-search-box {
  height: 2.0625rem;
}

#___gcse_0 table {
  height: 2.0625rem;
}

#___gcse_0 .gsc-search-button-v2 {
  background-color: #fff;
  border: none;
  padding: 0;
}

#___gcse_0 .gsc-search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 9px;
  right: 14%;
  transform: translateY(-50%);
}

#___gcse_0 .gsc-search-button-v2 svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #654B4B;
}

#___gcse_0 table.gsc-search-box td.gsc-input {
  padding: 0;
}

#___gcse_2 {
  position: relative;
  width: 20.375rem;
  margin-left: auto;
}

#___gcse_2 .gsc-search-button-v2 {
  background: #F5A54E;
  width: 5.125rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 0.625rem;
  border: none;
}

#___gcse_2 .gsc-search-button-v2::after {
  content: "検索";
  width: 100%;
  height: 100%;
  z-index: 1;
  color: #fff;
  font-size: 0.875rem;
  font-family: "Zen Old Mincho", serif;
}

#___gcse_2 .gsc-input-box {
  border-radius: 0.3125rem;
  padding: 0.75rem 1.125rem;
}

#___gcse_2 .gsc-search-button {
  position: absolute;
  top: 46%;
  right: 0.9375rem;
  transform: translateY(-50%);
  border-radius: 1rem;
}

.header {
  height: 3.3125rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 7.25rem;
  }
}
.header__nav-subitems {
  padding: 0.625rem 0.75rem;
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .header__nav-subitems {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 12.5rem;
    padding: 1.25rem;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .header__nav-item:hover .header__nav-subitems {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav {
  position: relative;
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__nav.is-active {
  display: block;
  position: fixed;
  top: 3.3125rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 3.3125rem);
  background: #F4ECEC;
  overflow-y: auto;
  z-index: 900;
}

.header__nav-above {
  padding-right: 7.5rem;
}
@media screen and (min-width: 768px) {
  .header__nav-above {
    display: flex;
    gap: 2.5rem;
    justify-content: flex-end;
    align-items: center;
  }
}

.header__nav-above > *:not(:last-child) {
  border-right: 1px solid #ccc;
  padding-right: 20px;
}

.header__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .header__right {
    padding-right: 6vw;
  }
}
@media screen and (min-width: 768px) {
  .header__right {
    padding-right: 2vw;
  }
}

.header__admin-link {
  position: relative;
}

.header__admin-link::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/icon01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1rem;
  height: 1.3125rem;
  top: 50%;
  left: -1.875rem;
  transform: translateY(-50%);
}

.header__inner {
  padding-left: 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 1.25rem 0 1.25rem;
    justify-content: space-around;
  }
}

.header__logo {
  max-width: 8.75rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 15rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

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

.header__nav-list {
  display: flex;
  height: inherit;
  flex-wrap: wrap;
}

.header__nav-item,
.header__nav-modal-wrap {
  height: inherit;
}

.header__nav-modal-wrap {
  position: relative;
  height: inherit;
  cursor: pointer;
}

.header__nav-item > a,
.header__nav-modal-wrap > p {
  padding: 0.625rem 1rem;
  padding-left: 3.3125rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
}

.header__nav-modal-wrap > p {
  transition: 0.3s;
  position: relative;
}
.header__nav-modal-wrap > p::after {
  content: "";
  position: absolute;
  right: -0.3125rem;
  top: 50%;
  width: 0.5625rem;
  height: 0.5625rem;
  border-right: 2px solid #777;
  border-bottom: 2px solid #777;
  transform: translateY(-50%) rotate(45deg);
}

.header__nav-modal {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) rotateX(90deg);
  max-width: 12.3125rem;
  width: 100%;
  text-align: center;
  background-color: #F2F0F1;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .header__nav-modal {
    position: static;
    transform: none;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    background-color: transparent;
    max-width: none;
    width: 100%;
    text-align: left;
    padding-left: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-modal-wrap:hover > .header__nav-modal {
    transform: translateX(-50%) rotateX(0deg);
    opacity: 1;
    visibility: visible;
  }
}

.header__nav-modal-item a {
  padding: 0.9375rem 0;
  position: relative;
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
  transition: 0.3s;
}
.header__nav-modal-item a:hover {
  background-color: rgba(245, 165, 78, 0.15);
}
.header__nav-modal-item:not(:last-child) {
  border-bottom: 1px solid #B6A7B3;
}

@media screen and (min-width: 768px) {
  .header__nav-modal-item a:hover::before {
    opacity: 0.8;
  }
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 4rem;
  height: inherit;
  background-color: #F5A54E;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger.is-open {
  background-color: #F5A54E;
}
.header__hamburger.is-open span {
  background-color: #fff;
}

.header__hamburger::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background-color: #fff;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.5625rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: 0;
}

.header__hamburger span:nth-of-type(2) {
  top: 0.5rem;
}

.header__hamburger span:nth-of-type(3) {
  top: 1rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0.5rem;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: 0.375rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  margin-top: 3.3125rem;
  padding-bottom: 6.875rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F4ECEC;
  overflow-y: scroll;
  scrollbar-width: none;
}
.header__drawer.is-active {
  display: block;
}

.header__drawer-nav {
  margin-top: 3.3125rem;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-list {
  padding-left: 1.1875rem;
  padding-right: 1.1875rem;
}

.header__drawer-item,
.header__nav-open-item {
  border-bottom: 1px solid #948383;
}

.header__nav-open-item,
.header__drawer-item > a,
.header__drawer-accordion-title {
  padding: 1.25rem 0;
  display: block;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.header__drawer-item.header__drawer-item--contact a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.header__drawer-accordion-title {
  position: relative;
}

.header__drawer-accordion-title::before,
.header__drawer-accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.75rem;
  height: 0.125rem;
  display: block;
  background: #333;
  transition: 0.3s;
}

.header__drawer-accordion-title::before {
  transform: translateY(-50%);
}

.header__drawer-accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
}

.header__drawer-accordion-title.is-open::after {
  transform: translateY(-50%);
}

.header__drawer-accordion-list {
  padding-bottom: 0.625rem;
  display: none;
}

.header__drawer-accordion-list a {
  padding: 0.625rem 2rem;
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.header__SP-btn {
  display: flex;
}
@media screen and (min-width: 768px) {
  .header__SP-btn {
    display: none;
  }
}
.header__search-btn {
  padding: 10px;
  cursor: pointer;
  background-color: #F5A54E;
  width: 4.0625rem;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: none;
}



.header__SP-text {
  font-size: 0.625rem;
  color: #fff;
  margin-top: 0.375rem;
}

.header__SP-text--menu {
  margin-top: 1.125rem;
}

.header__nav-open-item {
  position: relative;
}

.header__nav-open-item::after {
  transform: rotate(90deg);
}

.header__nav-open-item.is-open::after {
  transform: rotate(0deg);
}

.header__nav-open-item span {
  margin-right: 1.25rem;
  display: inline-block;
  color: #F6D970;
}

@media screen and (min-width: 768px) {
  .header__nav-open .header__nav-open-item {
    position: relative;
    padding: 1.25rem 0;
    font-size: 1.0625rem;
    line-height: 1;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #948383;
  }
  .header__nav-open::before, .header__nav-open::after {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-subitem a {
    padding: 0.9375rem 0;
    font-size: 0.9375rem;
    line-height: 1;
    color: #333;
    display: block;
  }
  .header__nav-subitem:not(:last-child) {
    border-bottom: 1px solid #F5A54E;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-modal {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    max-width: 12.3125rem;
    width: 100%;
    text-align: center;
    background-color: #F2F0F1;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  .header__nav-modal-wrap:hover > .header__nav-modal {
    transform: translateX(-50%) rotateX(0deg);
    opacity: 1;
    visibility: visible;
  }
}
.mv-news {
  background-color: #FBE8E8;
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  width: 95%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .mv-news {
    width: calc(100vw - 30%);
    top: 2%;
  }
}

.mv-news__wrapper {
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .mv-news__wrapper {
    padding: 1.125rem 1.5625rem 1.3125rem 1.0625rem;
  }
}

.mv-news__date,
.mv-news__title {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #000;
}
@media screen and (min-width: 768px) {
  .mv-news__date,
  .mv-news__title {
    font-size: 0.9375rem;
  }
}

.mv-news__date {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .mv-news__date {
    display: block;
  }
}

.mv-news__title {
  display: block;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .mv-news__title {
    margin-top: 0;
    display: inline;
  }
}

.mv-news__important-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #000;
}
@media screen and (min-width: 768px) {
  .mv-news__important-text {
    font-size: 0.9375rem;
  }
}

.mv-news__close {
  position: absolute;
  right: 1rem;
  display: inline-block;
  top: 1.25rem;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .mv-news__close {
    top: initial;
  }
}

.mv-news__close::before,
.mv-news__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px; /* バツの太さ */
  background-color: black; /* バツの色 */
}

.mv-news__close::before {
  transform: translate(-50%, -50%) rotate(45deg); /* 斜めの線 */
}

.mv-news__close::after {
  transform: translate(-50%, -50%) rotate(-45deg); /* 逆の斜めの線 */
}

.mv-pickUp {
  right: 0;
  bottom: -2.3125rem;
  width: 100%;
  position: absolute;
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .mv-pickUp {
    width: calc(100vw - 30%);
  }
}

.mv-pickUp__wrapper {
  padding: 1.625rem 1rem 1rem 1.625rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .mv-pickUp__wrapper {
    padding: 1.5625rem 1rem 1rem 2.25rem;
    align-items: center;
    flex-direction: row;
  }
}

.mv-pickUp__text {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-family: "Sorts Mill Goudy", serif;
  color: #000;
}
@media screen and (min-width: 768px) {
  .mv-pickUp__text {
    font-size: 1.5rem;
  }
}

.mv-pickUp__date,
.mv-pickUp__title {
  line-height: 1.5;
  color: #000;
}
@media screen and (min-width: 768px) {
  .mv-pickUp__date,
  .mv-pickUp__title {
    margin-left: 1.6875rem;
  }
}

.mv-pickUp__title {
  display: block;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .mv-pickUp__title {
    display: inline-block;
    font-size: 0.9375rem;
  }
}

.mv-pickUp__date {
  font-size: 0.8125rem;
  color: #948383;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 768px) {
  .mv-pickUp__date {
    margin-left: 1rem;
    font-size: 1rem;
  }
}

.mv-pickUp__arrow {
  position: relative;
  right: -1rem;
  display: none;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .mv-pickUp__arrow {
    display: inline-block;
  }
}

.mv-pickUp__arrow::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 0.9375rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mv {
  position: relative;
  height: 75svh;
  min-height: 25rem;
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .mv {
    height: calc(100svh - 30vh);
    min-height: 480rpx;
    margin-top: 0;
margin-top: 116px;
  }
}
@media screen and (min-width: 1600px) {
  .mv {
    height: calc(100svh - 3vh);
  }
}

.mv__inner {
  height: inherit;
  min-height: inherit;
}

.mv__title-wrap {
  position: absolute;
  z-index: 2;
  bottom: 20%;
  left: 6%;
  color: #333;

}
@media screen and (min-width: 768px) {
  .mv__title-wrap {
    bottom: 0;
    top: 56%;
    left: calc(50% - min(50vw, 25rem));
    transform: translateY(-50%);
    width: initial;
  }
}
@media screen and (min-width: 1000px) {
  .mv__title-wrap {
    bottom: 0;
    top: 56%;
    left: calc(50% - min(50vw, 31.5625rem));
    transform: translateY(-50%);
  }
}
.mv__main-title {
  font-size: clamp(2.125rem, 1.3rem + 2.1vw, 4.25rem);
  font-family: "Zen Old Mincho", serif;
}

.mv__sub-title {
  margin-top: 1.25rem;
  font-size: clamp(1.125rem, 1.108rem + 0.6vw, 1.75rem);
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 768px) {
  .mv__sub-title {
    font-size: 1.25rem;
    line-height: 2.0714285714;
  }
}

.mv__img,
.mv__img video {
  height: inherit;
  min-height: inherit;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.mv__img{
  width: 100%;
  max-width: 100%;
}
.mv__img img {
  aspect-ratio: 1708/648;
  height: 100%;
  object-fit: cover;
}

.mv__img video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.news-tab {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .news-tab {
    margin-top: 2.5rem;
  }
}

.news-tab__menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .news-tab__menu {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.news-tab__menu-item {
  padding: 0.875rem 0.1875rem;
  font-family: "Zen Old Mincho", serif;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1;
  color: #333333;
  background: rgba(245, 165, 78, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .news-tab__menu-item {
    flex-basis: auto;
  }
}
.news-tab__menu-item[data-number=news-tab-all] {
  grid-column: 1/-1;
  margin-bottom: 0.25rem;
  width: calc((100% - 0.5rem) / 3);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .news-tab__menu-item[data-number=news-tab-all] {
    grid-column: auto;
    margin-bottom: 0;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .news-tab__menu-item:not([data-number=news-tab-all]) {
    width: auto;
  }
}

.news-tab__menu-item:hover {
  border-bottom: 1px solid #F5A54E;
}

.news-tab__menu-item.is-active {
  color: #231919;
  background-color: #F5A54E;
}

.news-tab__contents {
  margin-top: 1.25rem;
}
.news-tab__content-item {
  display: none;
}

.news-tab__content-item ul {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news-tab__content-item ul {
    margin-top: 4.125rem;
  }
}

.news-tab__content-item a {
  display: block;
  border-bottom: 1px solid #948383;
  padding-top: 1.3125rem;
  padding-bottom: 1.0625rem;
  padding-right: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-tab__content-item a {
    padding-top: 1.9375rem;
    padding-bottom: 2.3125rem;
  }
}

.news-tab__content-item a::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 0.9375rem;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}

.news-tab__content-item a:not(:first-child) {
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .news-tab__content-item a:not(:first-child) {
    padding-top: 2rem;
  }
}

.news-tab__content-item.is-active {
  display: block;
  animation: fade 0.3s;
}

.news-tab__content-item-date {
  font-size: 0.8125rem;
  font-family: "Zen Old Mincho", serif;
  color: #948383;
}
@media screen and (min-width: 768px) {
  .news-tab__content-item-date {
    font-size: 1.125rem;
    margin-right: 1.5625rem;
  }
}

.news-tab__content-item-category {
  background: #F5A54E;
  color: #fff;
  padding: 0.1875rem 0.9375rem;
  font-size: 0.75rem;
  margin-left: 0.875rem;
}
@media screen and (min-width: 768px) {
  .news-tab__content-item-category {
    padding: 0.3125rem 1.0625rem;
    font-size: 0.9375rem;
    display: inline-block;
    width: 14%;
    text-align: center;
    margin-right: 3.125rem;
    white-space: nowrap;
  }
}

.news-tab__content-item-title {
  font-size: 1.125rem;
  font-weight: 500;
  display: block;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .news-tab__content-item-title {
    display: inline-block;
    margin-top: 0;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.news {
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 6.5625rem;
  }
}

.news__btn {
  margin-top: 2.0625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__btn {
    margin-top: 2.9375rem;
  }
}

.p-404__inner {
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-404__inner {
    padding-top: 6.25rem;
  }
}

.p-404__title {
  text-align: center;
}

.p-404__btn {
  text-align: center;
  margin-top: 2.5rem;
}

.page-contact__upper-content {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  margin-top: -2.5rem;
  background-color: rgba(245, 165, 78, 0.15);
}
@media screen and (min-width: 768px) {
  .page-contact__upper-content {
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
  }
}

.page-contact__content {
  background-color: rgba(245, 165, 78, 0.15);
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-contact__content {
    padding-bottom: 7.875rem;
  }
}
.page-contact__content .contact-wrapper {
  max-width: 75rem;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 0.3125rem;
  box-shadow: 7px 7px 29px rgba(91, 91, 91, 0.08);
  padding: 1.25rem 1.125rem 1.25rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .page-contact__content .contact-wrapper {
    padding: 3.9375rem 3.75rem 3.5rem 3.75rem;
  }
}
.page-contact__content .contact-wrapper ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid #A7B6B4;
  padding-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .page-contact__content .contact-wrapper ul {
    padding-bottom: 4.75rem;
    gap: 1.3125rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-contact__content h2 {
  font-size: 1.125rem;
  font-family: "Zen Old Mincho", serif;
  color: #333333;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .page-contact__content h2 {
    font-size: 2rem;
  }
}
.page-contact__content h3 {
  margin-top: 4rem;
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-contact__content h3 {
    margin-top: 5rem;
    padding-bottom: 1.5rem;
    font-size: 1.6875rem;
  }
}
.page-contact__content h3::after {
  content: "";
  display: block;
  width: 4.25rem;
  height: 0.5px;
  background-color: #654B4B;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-contact__content h4 {
  margin-top: 3rem;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #f3f5f5;
}
@media screen and (min-width: 768px) {
  .page-contact__content h4 {
    margin-top: 4rem;
    font-size: 1.25rem;
  }
}
.page-contact__content h5 {
  margin-top: 2.5rem;
  padding: 0.25rem 0 0.25rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-left: 0.25rem solid #E3CDCD;
}
@media screen and (min-width: 768px) {
  .page-contact__content h5 {
    margin-top: 3rem;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 1.125rem;
  }
}
.page-contact__content h6 {
  margin-top: 2rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-contact__content h6 {
    margin-top: 2.375rem;
    font-size: 1rem;
  }
}
.page-contact__content p {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-contact__content p {
    margin-top: 2.375rem;
    font-size: 1rem;
  }
}
.page-contact__content p a {
  color: #E3CDCD;
  -webkit-text-decoration: underline #E3CDCD;
          text-decoration: underline #E3CDCD;
}
.page-contact__content ul {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .page-contact__content ul {
    margin-top: 2.375rem;
  }
}
.page-contact__content ul li {
  padding-left: 1.375rem;
  font-size: 0.75rem;
  line-height: 1.5;
  text-indent: -1.125rem;
}
@media screen and (min-width: 768px) {
  .page-contact__content ul li {
    font-size: 1rem;
  }
}
.page-contact__content ol li:not(:first-of-type) {
  margin-top: 1rem;
}
.page-contact__content ul li::before {
  content: "";
  margin-right: 0.625rem;
  position: relative;
  top: -0.1875rem;
  width: 0.5rem;
  height: 0.5rem;
  display: inline-block;
  background-color: #E3CDCD;
  border-radius: 50%;
}
.page-contact__content ol {
  margin-top: 2rem;
  counter-reset: number;
}
@media screen and (min-width: 768px) {
  .page-contact__content ol {
    margin-top: 2.375rem;
  }
}
.page-contact__content ol li {
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -0.75rem;
}
.page-contact__content ol li::before {
  counter-increment: number;
  content: counter(number) ".";
  margin-right: 0.625rem;
  display: inline-block;
  line-height: 1;
  color: #E3CDCD;
}
.page-contact__content figure {
  width: 100%;
}
.page-contact__content figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-contact__content .wp-block-button {
  margin-inline: auto;
}
.page-contact__content .wp-block-button__link {
  margin-top: 2.25rem;
  padding: 0.625rem 3.75rem 0.8125rem 3.75rem;
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  background-color: #948383;
  border-radius: 100vh;
  color: #fff;
  box-shadow: 7.19px 6.95px 21px rgba(91, 91, 91, 0.21);
}
@media screen and (min-width: 768px) {
  .page-contact__content .wp-block-button__link {
    margin-top: 3.375rem;
    font-size: 1.1875rem;
    padding: 1.5625rem 6.875rem 1.75rem 3.75rem;
  }
}
.page-contact__content .wp-block-button__link::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/arrowWhite.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 0.9375rem;
  top: 50%;
  right: 0.9375rem;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.page-contact__content .wp-block-button__link::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/arrowWhite.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 0.9375rem;
  top: 50%;
  right: 0.9375rem;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.page-contact__content .wp-block-button__link::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 3.8125rem;
  transform: translateY(-50%);
}
.page-contact__content .wp-block-button__link:hover {
  opacity: 1;
}
.page-contact__content .wp-block-button__link:hover::before {
  right: 0.625rem;
}

.faq__description {
  background-color: rgba(245, 165, 78, 0.15);
  padding-top: 6rem;
  margin-top: -6.25rem;
}
@media screen and (min-width: 768px) {
  .faq__description {
    padding-top: 7.5rem;
    padding-bottom: 2.5rem;
  }
}

.faq__description-text {
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq__description-text {
    padding-top: 1.875rem;
  }
}

.page-faq__search {
  text-align: right;
  margin-bottom: 2.5rem;
  position: relative;
}

.page-faq__search input {
  width: 100%;
  height: 2.5rem;
  border: 1px solid rgba(245, 165, 78, 0.15);
  border-radius: 0.625rem;
  padding: 1.25rem 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-faq__search input {
    width: 18.75rem;
  }
}

.page-faq__search::after {
  content: "";
  position: absolute;
  background-image: url(../images/common/icon02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.8125rem;
  height: 1.8125rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.page-faq__lists {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}

.page-mv {
  position: relative;
  height: 25vh;
  min-height: 9.375rem;
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .page-mv {
    min-height: 35rem;
    margin-top: 7.25rem;
  }
}

.page-mv__inner {
  height: inherit;
  min-height: inherit;
  overflow: hidden;
}

.page-mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 54%;
  left: 5%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-mv__title-wrap {
    width: initial;
    padding: 2.375rem 4.6875rem 3.5625rem 3.125rem;
  }
}

.page-mv__main-title {
  position: relative;
  padding: 0;
  font-size: 2rem;
  line-height: 1.5;
  align-self: center;
  color: #BC99B1 ;
  font-weight: 400;
  font-family: "Sorts Mill Goudy", serif;
  letter-spacing: 0.05em;
  display: inline;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .page-mv__main-title {
    font-size: 5rem;
  }
}

.page-mv__sub-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #4e5a59;
  font-family: "Zen Old Mincho", serif;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-mv__sub-title {
    font-size: 2rem;
  }
}

.page-mv__img {
  position: relative;
}

.page-mv__img,
.page-mv__img img {
  height: inherit;
  min-height: inherit;
}

.page-mv__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1123/562;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-mv__img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.page-news-list {
  margin-top: 1.875rem;
  background-color: rgba(255, 255, 255, 0.57);
}

.page-news-list__item + .page-news-list__item {
  margin-top: 1.875rem;
}

.page-news-list__item a {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-news-list__item a {
    flex-direction: row;
  }
}

.page-news-list__item-img {
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .page-news-list__item-img {
    width: 16.125rem;
  }
}

.page-news-list__item-img img {
  width: 100%;
  aspect-ratio: 369/258;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-news-list__item-content {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .page-news-list__item-content {
    margin-left: 4.375rem;
  }
}

.page-news-list__item-meta {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-news-list__item-meta {
    flex-direction: row;
  }
}

.page-news-list__item-date {
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 768px) {
  .page-news-list__item-date {
    margin-left: 1.25rem;
    font-size: 1rem;
  }
}
.page-news-list__item-categories{
  display: flex;
  flex-wrap: wrap;
  gap: 0.325rem;
}
@media screen and (min-width: 768px) {
  .page-news-list__item-categories {
    gap: 0.625rem;
  }
}
.page-news-list__item-category {
  padding: 0.3125rem 0.625rem;
  min-width: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.625rem;
  line-height: 1;
  color: #fff;
  background-color: #948383;
  text-align: center;
  font-size: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .page-news-list__item-category {
    font-size: 0.75rem;
  }
}

.page-news-list__item-title {
  margin-top: 0.625rem;
  font-size: 1.375rem;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 768px) {
  .page-news-list__item-title {
    font-size: 1.5rem;
  }
}

.page-news-list__item-text {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.9333333333;
}

.page-news-tab {
  margin-top: 2.5rem;
  padding: 1.875rem 0.625rem 1.875rem 0.625rem;
  background: rgba(255, 255, 255, 0.57);
}
@media screen and (min-width: 768px) {
  .page-news-tab {
    margin-top: 4.5rem;
    padding: 2.875rem 1.25rem 2.9375rem 1.25rem;
  }
}

.page-news-tab__title {
  position: absolute;
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #7C2D52;
  text-transform: capitalize;
  translate: 0 -3.25rem;
}
@media screen and (min-width: 768px) {
  .page-news-tab__title {
    font-size: 2rem;
    translate: 0 -4.5rem;
  }
}

.page-news-tab__menu {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-news-tab__menu {
    row-gap: 1.25rem;
    gap: 1.25rem;
  }
}

.page-news-tab__menu-item {
  padding: 0.375rem 0.625rem 0.4375rem;
  font-family: "Zen Old Mincho", serif;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  line-height: 1;
  color: #333333;
  background: #F2F0F1;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  width: calc(25% + 10px);
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .page-news-tab__menu-item {
    font-size: 0.9375rem;
  }
}

.page-news-tab__menu-item:hover {
  border-bottom: 1px solid #7C2D52;
}

.page-news-tab__menu-item.is-active {
  color: #fff;
  background-color: #948383;
}

.page-news-tab__contents {
  margin-top: 1.25rem;
}
.page-news-tab__content-item {
  display: none;
}

.page-news-tab__content-item ul {
  display: flex;
  flex-direction: column;
  padding: 2.375rem 2.5rem 2.375rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-news-tab__content-item ul {
    margin-top: 7.1875rem;
  }
}

.page-news-tab__content-item li {
  display: flex;
  padding-bottom: 1rem;
  border-bottom: 1px solid #948383;
}
@media screen and (min-width: 768px) {
  .page-news-tab__content-item li {
    padding-bottom: 2.3125rem;
  }
}

.page-news-tab__content-item li:not(:first-child) {
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .page-news-tab__content-item li:not(:first-child) {
    padding-top: 2rem;
  }
}

.page-news-tab__content-item.is-active {
  display: block;
  animation: fade 0.3s;
}

.page-news-tab__content-item-date {
  font-size: 0.8125rem;
  font-family: "Zen Old Mincho", serif;
  color: #948383;
}
@media screen and (min-width: 768px) {
  .page-news-tab__content-item-date {
    font-size: 1.125rem;
    margin-right: 1.5625rem;
  }
}

.page-news-tab__content-item-category {
  background: #948383;
  color: #fff;
  padding: 0.3125rem 1.0625rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .page-news-tab__content-item-category {
    font-size: 0.9375rem;
    display: inline-block;
    width: 12%;
    text-align: center;
    margin-right: 3.125rem;
    white-space: nowrap;
  }
}

.page-news-tab__content-item-title {
  font-size: 1.125rem;
  font-weight: 500;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-top {
  padding-top: 0.9375rem;
  width: 2.9375rem;
  height: 2.9375rem;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 50%;
  border: 2px solid #333333;
  z-index: 20;
  cursor: pointer;
  display: none;
}

.page-top::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 0.1875rem solid #333333;
  border-right: 0.1875rem solid #333333;
  transform: translateX(-50%) rotate(-45deg);
}

.post-banner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .post-banner {
    padding-top: 5.375rem;
    padding-bottom: 5.5rem;
  }
}

.post-banner__image {
  width: 100%;
  max-width: 100%;
}

.post-banner__image img {
  aspect-ratio: 1275/578;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post__content {
  background-color: rgba(255, 255, 255, 0.57);
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .post__content {
    padding: 4.375rem 8.5625rem 4.5625rem;
    max-width: 75rem;
  }
}

.post__meta {
  display: flex;
  align-items: center;
}

.post__date {
  font-size: 1.125rem;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
}

.post__category {
  margin-left: 1.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff;
  background-color: #E3CDCD;
}

.post__title {
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  margin-top: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .post__title {
    font-size: 2.375rem;
  }
}

.post__mv {
  margin-top: 2.5rem;
  width: 100%;
}

.post__mv img {
  width: 100%;
  aspect-ratio: 926/489;
  -o-object-fit: cover;
     object-fit: cover;
}

.post__content h2 {
  margin-top: 2.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  border-bottom: 0.125rem solid #F5A54E;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .post__content h2 {
    margin-top: 3.4375rem;
    padding-bottom: 1.75rem;
    font-size: 1.75rem;
  }
}
.post__content h3 {
  margin-top: 4rem;
  padding: 1.25rem 0;
  font-size: 1.125rem;
  line-height: 1.8;
  border-left: 1px solid #F5A54E;
  padding: 1rem 1rem 1rem 1.5rem;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 768px) {
  .post__content h3 {
    margin-top: 5rem;
    font-size: 1.625rem;
  }
}
.post__content h4 {
  margin-top: 3rem;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  color: #948383;
  position: relative;
  padding: 1rem 1rem 1rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .post__content h4 {
    margin-top: 4rem;
    font-size: 1.25rem;
  }
}
.post__content h4::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/icon06SP.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.75rem;
  height: 0.75rem;
  top: 1lh;
  left: 0;
}
@media screen and (min-width: 768px) {
  .post__content h4::before {
    background-image: url(../images/common/icon06.png);
    left: 0;
    transform: translateY(-50%);
    width: 1.1875rem;
    height: 1.1875rem;
  }
}
.post__content h5 {
  margin-top: 2.5rem;
  padding: 0.25rem 0 0.25rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-left: 0.25rem solid #E3CDCD;
}
@media screen and (min-width: 768px) {
  .post__content h5 {
    margin-top: 3rem;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 1.125rem;
  }
}
.post__content h6 {
  margin-top: 2rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .post__content h6 {
    margin-top: 2.375rem;
    font-size: 1rem;
  }
}
.post__content p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 2.0555555556;
}
@media screen and (min-width: 768px) {
  .post__content p {
    font-size: 1.125rem;
  }
}
.post__content p a {
  color: #48B4AC;
  position: relative;
}
.post__content p a::after {
  content: "";
  margin-right: 0.625rem;
  margin-bottom: -0.1875rem;
  margin-left: 0.3125rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url(../images/common/icon07.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.post__content ul {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .post__content ul {
    margin-top: 2.375rem;
  }
}
.post__content ul li {
  padding-left: 1.375rem;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -1.125rem;
}
.post__content ul li:not(:first-of-type),
.post__content ol li:not(:first-of-type) {
  margin-top: 1rem;
}
.post__content ul li::before {
  content: "";
  margin-right: 0.625rem;
  position: relative;
  top: -0.1875rem;
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  background-color: rgba(245, 165, 78, 0.3);
  border-radius: 50%;
}
.post__content ol {
  margin-top: 2rem;
  counter-reset: number;
}
@media screen and (min-width: 768px) {
  .post__content ol {
    margin-top: 2.375rem;
  }
}
.post__content ol li {
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -0.75rem;
}
.post__content ol li::before {
  counter-increment: number;
  content: counter(number) ".";
  margin-right: 0.625rem;
  display: inline-block;
  line-height: 1;
  color: #333333;
  font-family: "Zen Old Mincho", serif;
}
.post__content figure {
  margin-top: 2rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .post__content figure {
    margin-top: 3rem;
  }
}
.post__content figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post__content table tr:first-of-type {
  background-color: #948383;
  color: #fff;
  font-weight: 500;
}
.post__content table tr {
  text-align: center;
  padding: 0 1rem;
}
.post__content .wp-block-table td, .post__content .wp-block-table th {
  padding: 1rem;
}

.section-title__wrapper {
  border-bottom: 1px solid #ebebeb;
  width: 100%;
  position: relative;
}

.section-title__wrapper--column {
  border-bottom: 1px solid #fff;
}

.section-title {
  font-size: 2.25rem;
  text-transform: capitalize;
  font-weight: 500;
  color: #6A5E5E;
  position: relative;
  padding-bottom: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
    padding-bottom: 1.875rem;
  }
}

.section-title--faq {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section-title--faq {
    padding-bottom: 7.5rem;
  }
}

.section-title--archive {
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 1.5rem;
  font-size: 1.25rem;
  border-bottom: 1px solid #fff;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .section-title--archive {
    padding-bottom: 2rem;
    font-size: 2rem;
  }
}

.section-title::after {
  content: "";
  display: block;
  width: 94px;
  height: 2px;
  background-color: #F5A54E;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .section-title::after {
    width: 176px;
  }
}

.section-title--faq::after {
  left: initial;
  transform: initial;
}

.splide__meta {
  margin-top: 1.25rem;
  display: flex;
  gap: 2.125rem;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .splide__meta {
    justify-content: flex-end;
    gap: 2.125rem;
  }
}

.splide__arrows {
  text-align: right;
  display: flex;
}

.splide__arrow {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 2.0625rem;
  height: 2.0625rem;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .splide__arrow {
    width: 2.5rem;
    height: 2.5rem;
    transition: background-color 0.3s;
    background-color: #FEF0E6;
    border:1px solid rgba(233, 85, 153, 0.3);
    color:rgba(233, 85, 153, 0.3)
  }
}

.splide__arrow:hover {
  background-color: #E95599;
  color: #fff;
}

.splide__arrow--prev {
  margin-right: 1.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.splide__arrow--next {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.splide__pagination {
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .splide__pagination {
    gap: 1.375rem;
  }
}

.splide__pagination__page {
  background-color: rgba(233, 85, 153, 0.3);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  border: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .splide__pagination__page {
    width: 11px;
    height: 11px;
  }
}

.splide__pagination__page.is-active {
  background-color: #E95599;
}

.step {
  counter-reset: step-counter;
  padding-top: 3.25rem;
  padding-bottom: 4.625rem;
}
@media screen and (min-width: 768px) {
  .step {
    padding-top: 7.25rem;
    padding-bottom: 7.875rem;
  }
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 3.0625rem;
  margin-top: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .steps-list {
    margin-top: 5.0625rem;
    gap: 3.1875rem;
  }
}

.steps-list__number::after {
  font-family: "Zen Old Mincho", serif;
  text-transform: capitalize;
  counter-increment: step-counter;
  content: counter(step-counter, decimal-leading-zero) ".";
}

.steps-list__item {
  background-color:  rgba(245, 165, 78, 0.15);
  padding: 1.5rem 1.125rem 1.875rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .steps-list__item {
    padding: 2.5rem 2.5625rem 2.25rem 2.5rem;
  }
}

.step-list--green {
  background-color: #fff;
}

.steps-list__title {
  position: absolute;
  font-size: 2rem;
  font-family: "Sorts Mill Goudy", serif;
  transform: translateY(-3.75rem);
  color: #E95599;
  font-weight: 300;
  left: 1.25rem;
  letter-spacing: 1.8px;
}
@media screen and (min-width: 768px) {
  .steps-list__title {
    left: initial;
    font-size: 3.125rem;
    transform: translateY(-5.5625rem);
  }
}

@media screen and (min-width: 768px) {
  .steps-list__content {
    display: flex;
    align-items: center;
    gap: 3.0625rem;
  }
}

.steps-list__image {
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .steps-list__image {
    width: 21.875rem;
  }
}

.steps-list__image img {
  aspect-ratio: 308/153;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .steps-list__image img {
    aspect-ratio: 345/216;
  }
}

.steps-list__text-title {
  font-size: 1.375rem;
  position: relative;
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 1.625rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .steps-list__text-title {
    font-size: 1.625rem;
    margin-top: 0;
  }
}

.steps-list__text-title::before {
  content: "";
  display: block;
  width: 4.5625rem;
  height: 1px;
  background-color: #654B4B;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .steps-list__text-title::before {
    width: 4.25rem;
  }
}

.steps-list__text-description {
  font-size: 0.9375rem;
  color: #333333;
  margin-top: 1.1875rem;
  line-height: 1.9333333333;
}
@media screen and (min-width: 768px) {
  .steps-list__text-description {
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}

.steps-list__text-description a {
  color: #48B4AC;
}

.steps__btn {
  margin-top: 2.875rem;
  text-align: center;
  margin-top: 3.8125rem;
}
.top-banner {
  padding: 2.5rem 0rem 12.0625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-banner {
    padding: 8.75rem 0;
  }
}

.top-banner::before {
  position: absolute;
  content: "";
  background-image: url(../images/top/top-bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.voice-list {
  display: grid;
  gap: 1.0625rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .voice-list {
    gap: 2.375rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 4.125rem;
  }
}

.voice-list__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 16.6875rem;
  background-color: #fff;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .voice-list__item {
    min-height: 25.125rem;
  }
}

.voice-list__item-img {
  width: 100%;
  max-width: 6.9375rem;
  margin-inline: auto;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .voice-list__item-img {
    max-width: 9.4375rem;
    margin-top: 0.9375rem;
  }
}

.voice-list__item-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice-list__item-content {
  padding: 0.9375rem 0.9375rem 1.25rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .voice-list__item-content {
    padding: 1.0625rem 2.25rem 1.875rem 2.25rem;
  }
}

.voice-list__item-title {
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 0.625rem 1.25rem 0.625rem 1.4375rem;
  line-height: 1.5;
  text-align: center;
  border: 1px solid #505E5C;
}
@media screen and (min-width: 768px) {
  .voice-list__item-title {
    font-size: 1.125rem;
    line-height: 1.3333333333;
    padding: 0.625rem 1.25rem 0.625rem 1.4375rem;
  }
}

.voice-list__item-text {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .voice-list__item-text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.voice-list__item-meta {
  margin-top: auto;
  padding: 0.9375rem 1.5625rem 0.9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .voice-list__item-meta {
    padding: 1.25rem 1.875rem 1.25rem;
  }
}

.voice-list__item-category {
  padding: 0.3125rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: #DE8430;
}
@media screen and (min-width: 768px) {
  .voice-list__item-category {
    font-size: 1rem;
  }
}

.voice-list__item-date {
  font-size: 0.875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .voice-list__item-date {
    font-size: 1rem;
  }
}

.voice {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .voice {
    padding-bottom: 3.9375rem;
  }
}

.voice__btn {
  margin-top: 2.1875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice__btn {
    margin-top: 3.125rem;
  }
}

.pagenavi {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .pagenavi {
    margin-top: 4.625rem;
  }
}

.pagenavi__inner {
  margin: auto;
  padding: 1.0625rem 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .pagenavi__inner {
    padding: 1.0625rem 1.5625rem;
    max-width: 75rem;
  }
}

.pagenavi .wp-pagenavi {
  clear: both;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagenavi .wp-pagenavi a,
.pagenavi .wp-pagenavi span {
  margin: 0 0.1875rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 1.125rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
  white-space: nowrap;
  background-color: #fff;
  transition: 0.3s;
}

.pagenavi .wp-pagenavi a:hover {
  color: #fff;
  background-color: #948383;
  opacity: 1;
}

.pagenavi .wp-pagenavi .current {
  color: #fff;
  background-color: #948383;
}

.pagenavi .wp-pagenavi .pages {
  display: none;
}

.pagenavi .nextpostslink {
  order: 999;
}

.pagenavi .previouspostslink {
  order: -1;
}

/* shoutto翻訳の上書き */
/* 言語選択ラッパー */
.stt-lang-select {
  position: relative;
  display: inline-block;
}
/* デフォルトのドロップダウンを非表示 */
.stt-lang-select.tr.on{
	background:#000;
	width:110px;
	border:none;
}
.stt-select {
  display: none; /* 初期状態で非表示 */
  position: absolute;
  top: 100%;
  left: 0;
  color: #fff;
  z-index: 1000;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 言語切り替えボタン */
.stt-lang-select .stt-text {
  cursor: pointer;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  font-size: 16px;
  color: #333;
	width:110px;
	text-align:center;
	display:flex;
	justify-content:center;
}
@media screen and (max-width: 768px) {
	.stt-lang-select .stt-text{
		display:none;
	}
}

.stt-lang-select .stt-text::after {
  content: '▼'; /* ドロップダウン矢印アイコン */
  margin-left: 5px;
  font-size: 12px;
}

/* メニュー項目のスタイル */
.stt-item {
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
	color:#fff;
}
.stt-lang-select .stt-select .stt-item{
	color:#fff;
	padding-left:26px!important;
	border-bottom:1px solid #777777;
}



/* ドロップダウンがアクティブな場合のスタイル */
.stt-lang-select.active .stt-select {
  display: block;
	width:110px;
}
.stt-lang-select.on .stt-select{
	padding:0;
}
.stt-lang-select.on .stt-text{
	display:block!important;
	background:#fff;
	padding-left:26px!important;
	justify-content:center;
}

.stt-text::before{
content: "";
  position: absolute;
  background-image: url(../images/common/icon03.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 15px;
	width:15px;
  top: 53%;
  left:8px;
transform: translateY(-50%);
}

/* 検索モーダル */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.search-modal.is-active {
  display: block;
}

.search-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}

.search-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.search-modal__title {
  font-size: 1rem;
  color: #333;
  font-family: "Zen Old Mincho", serif;
}

.search-modal__close {
  position: relative;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.search-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #333;
}

.search-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.search-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.search-modal__body {
  padding: 20px 0;
}
