@charset "UTF-8";
/*
Theme Name: Theme name
Author: Author
Author URI:
*/
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a:active, a:hover {
  color: #fff !important;
}
.p-news__post .c-cat-list__link:hover{
  color: #fff !important;
}

.l-header.scrolled .l-header__nav-list-link:hover{
  color: #4d463c !important;
}

.l-footer__nav-list a:hover{
  color: #4d463c !important;
}

.l-bottom-guide__nav-list-item a:hover{
  color: #4d463c !important;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@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;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding: 5.25rem;
  font-size: calc(100vw / 1680 * 16);
}
@media (1680px < width) {
  html {
    font-size: 16px;
    scroll-padding: 4.6875rem;
  }
}
@media (width <= 840px) {
  html {
    font-size: calc(100vw / 390 * 16);
  }
}

body {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #4d463c;
  letter-spacing: 0.08em;
  font-weight: 500;
  background: #f2f0ec;
}
body.is-menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.08em;
  font-weight: 500;
}

p {
  font-size: 1rem;
  line-height: 2.2;
}
@media (width <= 840px) {
  p {
    font-size: 0.875rem;
  }
}

a {
  text-decoration: none;
  color: #4d463c;
}
a:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

pre {
  white-space: pre;
}

/********************************************
* Layout
********************************************/
/* Header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.5s;
  z-index: 1000;
}
.l-header.scrolled {
  background-color: #f2f0ec;
}
.l-header.scrolled .l-header__nav-list-link {
  color: #4d463c;
}

.l-header .c-lang-nav__list {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
  font-size: 0.8rem;
}

.l-header .c-lang-nav__link,.l-header .c-lang-nav__link:hover {
  color: #4d463c !important;
}

@media (width <= 840px) {
  .l-header.scrolled .l-header__nav-list-link {
    color: #f2f0ec;
  }
}
.l-header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (width <= 840px) {
  .l-header ul {
    padding: 8.5625rem 2.5rem 0;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.390625rem 2.5rem 1.390625rem 2.5rem;
  position: relative;
  transition: 0.3s;
}
@media (width <= 840px) {
  .l-header__inner {
    padding: 1.1875rem 1rem;
  }
}
.l-header__logo {
  width: 8.875rem;
}
@media (width <= 840px) {
  .l-header__logo {
    position: relative;
    z-index: 10;
  }
}
.l-header__logo-img {
  width: 100%;
}
@media (width <= 840px) {
  .l-header__nav {
    transition: 0.3s;
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 100%;
    top: 0;
  }
  .is-menu-open .l-header__nav {
    left: 0;
  }
}
.l-header__nav-list {
  display: flex;
  gap: 1.875rem;
  font-size: 0.875rem;
}
@media (width <= 840px) {
  .l-header__nav-list {
    width: 100%;
    height: 100%;
    background: #b49531;
    left: 0;
    top: 0;
    position: relative;
    flex-direction: column;
    gap: 1rem;
    overflow-y: scroll;
  }
}
@media (width <= 840px) {
  .l-header__nav-list-item:last-of-type {
    margin-bottom: 2.5rem;
  }
}
.l-header__nav-list-item--border {
  border: 1px solid #fff;
}
.l-header__nav-list-item--border:nth-of-type(8) {
  margin-top: 2rem;
}
.l-header__nav-list-item--border .l-header__nav-list-link {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1;
}
.l-header__nav-list-item--border .l-header__nav-list-icon {
  width: 0.875rem;
}
@media (width <= 840px) {
  .l-header__nav-list-item--border .l-header__nav-list-icon {
    right: 13;
  }
}
.l-header__nav-list-link {
  color: #f2f0ec;
  transition: 0.5s;
}
@media (width <= 840px) {
  .l-header__nav-list-link {
    color: #f2f0ec;
    display: block;
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }
}

.l-trigger {
  display: none;
  right: 1rem;
  top: 1.5rem;
  width: 1.75rem;
  height: 1.6875rem;
  position: absolute;
  text-align: center;
  color: #fff;
  z-index: 10;
  cursor: pointer;
}
.scrolled .l-trigger {
  color: #4d463c;
}
.is-menu-open .l-trigger {
  color: #fff;
}
@media (width <= 840px) {
  .l-trigger {
    display: block;
  }
}
.l-trigger__bar {
  transition: 0.3s;
  width: 100%;
  height: 1px;
  background: #fff;
  display: block;
  touch-action: manipulation;
  position: absolute;
}
.scrolled .l-trigger__bar {
  background: #4d463c;
}
.is-menu-open .l-trigger__bar {
  background: #fff;
}
.l-trigger__bar:nth-of-type(2) {
  top: 0.5rem;
}
.l-trigger__bar:last-of-type {
  background: none;
  font-size: 0.6875rem;
  bottom: 0;
  height: auto;
  line-height: 1;
}
.is-menu-open .l-trigger__bar:nth-of-type(1) {
  top: 0.15625rem;
  transform: rotate(45deg);
}
.is-menu-open .l-trigger__bar:nth-of-type(2) {
  top: 0.15625rem;
  transform: rotate(-45deg);
}

.l-bottom-guide {
  padding: 10rem 0;
}
@media (width <= 840px) {
  .l-bottom-guide {
    padding: 6.5rem 0;
  }
}
.l-bottom-guide ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-bottom-guide__top-bnr {
  position: relative;
  height: 25rem;
  margin-bottom: 5rem;
  line-height: 1;
  transition: 0.3s;
}

.l-bottom-guide__top-bnr h2{
  color: #fff !important;
}

.l-bottom-guide__top-bnr a:hover{
  color: #fff !important;
}
@media (width <= 840px) {
  .l-bottom-guide__top-bnr {
    height: 8.625rem;
    margin-bottom: 2.5rem;
  }
}
.l-bottom-guide__top-bnr:hover {
  opacity: 0.9;
}
.l-bottom-guide__top-bnr-link {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  gap: 2.5rem;
}
@media (width <= 840px) {
  .l-bottom-guide__top-bnr-link {
    gap: 1rem;
  }
}
.l-bottom-guide__top-bnr-img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.l-bottom-guide__top-title {
  font-size: 1.75rem;
}
@media (width <= 840px) {
  .l-bottom-guide__top-title {
    font-size: 1.125rem;
  }
}
.l-bottom-guide__top-p {
  font-size: 0.875rem;
}
@media (width <= 840px) {
  .l-bottom-guide__top-p {
    font-size: 0.8125rem;
  }
}
.l-bottom-guide__top-p:after {
  content: "";
  width: 3rem;
  height: 1px;
  background: #fff;
  display: inline-block;
  transform: translateY(-0.25rem);
  margin-left: 0.75rem;
}
@media (width <= 840px) {
  .l-bottom-guide__top-p:after {
    width: 2rem;
    margin-left: 0.5rem;
  }
}
.l-bottom-guide__nav-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (width <= 840px) {
  .l-bottom-guide__nav-list {
    flex-wrap: wrap;
  }
}
.l-bottom-guide__nav-list-item {
  border-top: 1px solid #cecac3;
  border-bottom: 1px solid #cecac3;
  width: 40rem;
  transition: 0.3s;
}
@media (width <= 840px) {
  .l-bottom-guide__nav-list-item {
    width: 100%;
  }
  .l-bottom-guide__nav-list-item:nth-of-type(1) {
    border-bottom: none;
  }
}
.l-bottom-guide__nav-list-item:hover .c-link {
  opacity: 1;
}
.l-bottom-guide__nav-list-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  height: 7.5rem;
  padding: 0 2.5rem;
  font-size: 1.5rem;
}
@media (width <= 840px) {
  .l-bottom-guide__nav-list-link {
    font-size: 1rem;
    height: 5rem;
    padding: 0 1rem;
  }
}

.l-bottom-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 5;
}
.l-bottom-btn__nav-sub-list {
  margin: 0;
  padding: 0;
}
.l-bottom-btn__nav-sub-list {
  display: flex;
  justify-content: end;
  width: 100%;
  list-style: none;
}
.l-bottom-btn__nav-sub-list-item {
  background: #b49531;
  width: 15rem;
  height: 4rem;
}
@media (width <= 840px) {
  .l-bottom-btn__nav-sub-list-item {
    height: 3rem;
    width: 50%;
  }
}
.l-bottom-btn__nav-sub-list-item:first-of-type {
  border-right: 1px solid #fff;
}
.l-bottom-btn__nav-sub-list-link {
  color: #fff;
  font-size: 0.875rem;
  height: 100%;
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
@media (width <= 840px) {
  .l-bottom-btn__nav-sub-list-link {
    gap: 0.5rem;
    font-size: 0.75rem;
  }
}
.l-bottom-btn__nav-sub-list-icon {
  width: 0.875rem;
}
@media (width <= 840px) {
  .l-bottom-btn__nav-sub-list-icon {
    width: 0.8125rem;
  }
}

/* Footer */
.l-footer__top {
  height: 40rem;
}
@media (width <= 840px) {
  .l-footer__top {
    height: 17.5rem;
  }
}
.l-footer .c-inner {
  display: flex;
  justify-content: space-between;
  padding: 3.75rem 0 5rem;
}
@media (width <= 840px) {
  .l-footer .c-inner {
    padding: 3rem 0 5rem;
    text-align: center;
    display: block;
  }
}
.l-footer picture {
  width: 100%;
  height: 100%;
}
.l-footer__logo {
  /*width: 8.875rem;*/
    width: 130px;
  display: block;
  margin-bottom: 1.875rem;
}
@media (width <= 840px) {
  .l-footer__logo {
    margin: 0 auto 1.75rem;
  }
}
.l-footer__logo-img {
  /*width: 100%;*/
    width: 130px;
}
.l-footer .c-btn {
  margin-bottom: 3.5rem;
}
@media (width <= 840px) {
  .l-footer .c-btn {
    font-size: 0.8125rem;
    margin-bottom: 2.5rem;
  }
}
.l-footer__tel, .l-footer__address {
  font-size: 0.8125rem;
  font-style: normal;
  line-height: 1.9;
}
.l-footer__right {
  position: relative;
}
.l-footer__nav {
  margin-top: 1.875rem;
}
.l-footer__nav-list {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}
@media (width <= 840px) {
  .l-footer__nav-list {
    display: none;
  }
}
.l-footer__nav-link {
  font-size: 0.875rem;
}
.l-footer__copyrights {
  font-size: 0.75rem;
  font-weight: 600;
  color: #a78f45;
  position: absolute;
  right: 0;
  bottom: 0;
  letter-spacing: 0.04em;
}
@media (width <= 840px) {
  .l-footer__copyrights {
    position: static;
    font-size: 0.6875rem;
  }
}

/* Sidebar */
/********************************************
* Others
********************************************/
/********************************************
* Wordpress
********************************************/
/* Media */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

/* Contact Form */
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7-not-valid {
  background: pink;
}
.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}
.wpcf7 .wpcf7-mail-sent-ok {
  color: #3a87ad;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
}

/********************************************
* Component
********************************************/
.c-block {
  margin-bottom: 6.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 840px) {
  .c-block {
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }
}
.c-block__thumb {
  width: 39.25rem;
  order: 1;
}
@media (width <= 840px) {
  .c-block__thumb {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}
.c-block__text {
  width: 39.25rem;
  order: 2;
}
@media (width <= 840px) {
  .c-block__text {
    width: 100%;
  }
}
.c-block__title {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (width <= 840px) {
  .c-block__title {
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
  }
}
.c-block__row {
  display: flex;
  justify-content: start;
}
.c-block__row .c-block {
  flex-direction: column;
}
.c-block__row .c-block__thumb {
  margin-bottom: 2.5rem;
}

.c-btn {
  background: #b49531;
  color: #fff;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.875rem 2.1875rem;
}
.c-btn--brown {
  background: #4d463c;
}

.c-experience {
  margin-top: -5rem;
  max-width: 84rem;
  background: #f2f0ec;
  padding: 5rem 5rem 4rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media (width <= 840px) {
  .c-experience {
    margin-top: -2.4375rem;
    flex-wrap: wrap;
    padding: 1.625rem 1.5rem 3.5rem 1.5rem;
  }
}
.c-experience__p {
  width: 50.375rem;
  padding-right: 5.4375rem;
  border-right: 1px solid #cecac3;
}
@media (width <= 840px) {
  .c-experience__p {
    line-height: 2;
    width: 100%;
    padding: 0 0 1.625rem 0;
    border: none;
    border-bottom: 1px solid #cecac3;
  }
}
.c-experience__list {
  width: calc(100% - 50.375rem);
  padding-left: 5.4375rem;
}
@media (width <= 840px) {
  .c-experience__list {
    width: 100%;
    padding: 1.75rem 0 0;
    font-size: 0.875rem;
  }
}
.c-experience__title {
  font-size: 1.3125rem;
  color: #b49531;
  margin-bottom: 0.5rem;
}
@media (width <= 840px) {
  .c-experience__title {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

.c-faq-list__q {
  position: relative;
  font-size: 1.3125rem;
  padding-left: 4.375rem;
  margin-bottom: 1.75rem;
  line-height: 2;
}
@media (width <= 840px) {
  .c-faq-list__q {
    font-size: 1.125rem;
    padding-top: 0.625rem;
    padding-left: 2.5rem;
    margin-bottom: 0.625rem;
  }
}
.c-faq-list__q::before {
  content: "Q";
  font-size: 2.5rem;
  font-family: "cormorant", serif;
  position: absolute;
  left: 0;
  top: -0.625rem;
  line-height: 1;
}
@media (width <= 840px) {
  .c-faq-list__q::before {
    font-size: 1.75rem;
    top: 0.625rem;
  }
}
.c-faq-list__a {
  position: relative;
  padding-left: 4.375rem;
  margin-bottom: 2.75rem;
  padding-bottom: 2.6875rem;
  border-bottom: 1px solid #cecac3;
}
@media (width <= 840px) {
  .c-faq-list__a {
    padding-left: 2.5rem;
    padding-bottom: 2rem;
    margin-bottom: 0.9375rem;
  }
}
.c-faq-list__a::before {
  content: "A";
  font-size: 2.5rem;
  font-family: "cormorant", serif;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
}
@media (width <= 840px) {
  .c-faq-list__a::before {
    font-size: 1.75rem;
  }
}
.c-faq-list__a p {
  line-height: 2;
}

.c-google iframe {
  width: 100%;
  height: 100%;
}

.c-inner {
  max-width: 85rem;
  margin: 0 auto;
}
@media (width <= 840px) {
  .c-inner {
    width: 100%;
    padding: 0 1.75rem;
  }
}
.c-inner--narrow {
  max-width: 70rem;
}
.c-inner--wide {
  max-width: 95rem;
}
.c-inner--full {
  max-width: 105rem;
}
.c-inner--full.c-has-sidebar {
  display: flex;
}
.c-inner--extend {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media (width <= 840px) {
  .c-inner--type01 {
    padding: 0 1.75rem;
  }
}

.c-has-sidebar {
  padding-top: 7.5rem;
}
.c-has-sidebar__sidebar {
  width: 16rem;
  position: relative;
}
@media (width <= 840px) {
  .c-has-sidebar__sidebar {
    width: 100%;
  }
}
.c-has-sidebar__content {
  width: 89rem;
}
@media (width <= 840px) {
  .c-has-sidebar__content {
    width: 100%;
  }
}
.c-has-sidebar .c-side-nav {
  padding-left: 4rem;
}

.c-link {
  color: #b49531;
  font-size: 0.875rem;
  opacity: 0.5;
  float: right;
  transition: 0.3s;
}
@media (width <= 840px) {
  .c-link {
    font-size: 0.8125rem;
  }
}
.c-link:hover {
  opacity: 1;
}
.c-link:after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 1px;
  transform: translateY(-0.25rem);
  background: #b49531;
  margin-left: 0.78125rem;
}
@media (width <= 840px) {
  .c-link:after {
    margin-left: 0.5rem;
    width: 2rem;
  }
}

.c-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-list__item {
  position: relative;
  padding-left: 1.5rem;
  line-height: 2;
}
.c-list__item:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #b49531;
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: 0.7em;
}

.c-mv {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.c-mv:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
}
.c-mv__img {
  position: absolute;
  top: 0;
  left: 0;
}
.c-mv__title {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  color: #fff;
  transform: translateY(2.1875rem);
}
@media (width <= 840px) {
  .c-mv__title {
    font-size: 1.75rem;
  }
}
.c-mv__title-span {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  display: block;
}
@media (width <= 840px) {
  .c-mv__title-span {
    font-size: 1.3125rem;
  }
}
.c-mv__title-eng {
  font-size: 1.3125rem;
  display: block;
}

.c-news {
  margin: 0;
  padding: 0;
}
.c-news__item {
  border-bottom: 1px solid #cecac3;
  padding: 3.5rem 0;
  display: flex;
  gap: 4rem;
}
@media (width <= 840px) {
  .c-news__item {
    gap: 1.1875rem;
    flex-wrap: wrap;
  }
}
.c-news__item:first-of-type {
  padding-top: 0;
}
@media (width <= 840px) {
  .c-news__link {
    width: 100%;
  }
}
.c-news__thumb {
  width: 25rem;
}
@media (width <= 840px) {
  .c-news__thumb {
    width: 100%;
  }
}
.c-news__text {
  width: 40.625rem;
}
@media (width <= 840px) {
  .c-news__text {
    width: 100%;
  }
}
.c-news__info {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
@media (width <= 840px) {
  .c-news__info {
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
}
.c-news__date {
  font-size: 1.125rem;
  margin-right: 1.5rem;
}
@media (width <= 840px) {
  .c-news__date {
    line-height: 1;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.c-news__title {
  margin-bottom: 2rem;
}
@media (width <= 840px) {
  .c-news__title {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.c-cat-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}
.c-cat-list__link {
  background: #b49531;
  display: block;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.3125rem 0.4375rem 0.3125rem;
  line-height: 1;
}
@media (width <= 840px) {
  .c-cat-list__link {
    font-size: 0.75rem;
  }
}

.c-page-header {
  height: 28.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding-top: 5.25rem;
}
@media (width <= 840px) {
  .c-page-header {
    height: 16.5rem;
  }
}
.c-page-header__eng {
  font-size: 4rem;
  font-weight: 500;
}
@media (width <= 840px) {
  .c-page-header__eng {
    font-size: 2.5rem;
  }
}
.c-page-header .c-title__h1 {
  font-size: 1.125rem;
  color: #b49531;
}
@media (width <= 840px) {
  .c-page-header .c-title__h1 {
    font-size: 0.875rem;
  }
}

.c-page-nav {
  margin: 0 auto 5.1875rem;
}
@media (width <= 840px) {
  .c-page-nav {
    margin-bottom: 1.25rem;
  }
}
.c-page-nav__list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}
@media (width <= 840px) {
  .c-page-nav__list {
    position: absolute;
    width: calc(100% - 3.5rem);
    z-index: 1;
    display: none;
    background: #fff;
    border: 1px solid #cecac3;
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
  }
}
.c-page-nav__link {
  font-size: 1.125rem;
}
@media (width <= 840px) {
  .c-page-nav__link {
    font-size: 0.875rem;
    padding: 0.625rem 0;
    display: block;
  }
}
.c-page-nav__select {
  display: none;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #cecac3;
  position: relative;
}
@media (width <= 840px) {
  .c-page-nav__select {
    display: block;
  }
}
.c-page-nav__select:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #4d463c;
  border-right: 1px solid #4d463c;
  transform: rotate(135deg);
  position: absolute;
  right: 1.5rem;
  top: calc(50% - 0.375rem);
}

.c-pager {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
}
@media (width <= 840px) {
  .c-pager {
    font-size: 1.125rem;
  }
}
.c-pager__list {
  display: flex;
  list-style: none;
  margin: 0 1.5rem;
  padding: 0;
  gap: 1.5rem;
}

.c-section-img {
  position: relative;
  left: calc(50% - 42.5rem);
  width: 95rem;
  margin-bottom: 4.875rem;
}
@media (width <= 840px) {
  .c-section-img {
    width: 22.625rem;
    left: 1.75rem;
    margin-bottom: 2.5rem;
  }
}

@media (width <= 840px) {
  .c-side-nav {
    display: none;
  }
}
.c-side-nav__inner {
  position: sticky;
  top: 5.625rem;
}
.c-side-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-side-nav__item {
  font-size: 0.875rem;
}
.c-side-nav__item:not(:last-of-type) {
  margin-bottom: 1.125rem;
}
.c-side-nav__item:hover, .c-side-nav__item--current {
  list-style: disc;
  color: #b49531;
}
.c-side-nav__item:hover .c-side-nav__link, .c-side-nav__item--current .c-side-nav__link {
  color: #b49531 !important;
  opacity: 1;
}
.c-side-nav__link {
  transition: 0.3s;
  opacity: 0.5;
}

.c-title__h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
@media (width <= 840px) {
  .c-title__h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.c-title__h2-span {
  color: #b49531;
  font-size: 1.125rem;
  font-weight: 600;
  display: block;
}
@media (width <= 840px) {
  .c-title__h2-span {
    font-size: 1rem;
  }
}
.c-title__h2-top {
  font-size: 2rem;
  margin-bottom: 4rem;
}
@media (width <= 840px) {
  .c-title__h2-top {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }
}
.c-title__h2-page {
  font-size: 1.5rem;
  border-bottom: 1px solid #cecac3;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 3.75rem;
  line-height: 1;
}
@media (width <= 840px) {
  .c-title__h2-page {
    font-size: 1.125rem;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
  }
}
.c-title__h2-page:not(:first-of-type) {
  margin-top: 7.5rem;
}
@media (width <= 840px) {
  .c-title__h2-page:not(:first-of-type) {
    margin-top: 5rem;
  }
}
.c-title__h2-page-span {
  border-bottom: 1px solid #b49531;
  padding-bottom: 1.25rem;
  display: inline-block;
  position: relative;
  bottom: -1.625rem;
}
@media (width <= 840px) {
  .c-title__h2-page-span {
    padding-bottom: 1rem;
    bottom: -1.0625rem;
  }
}
.c-title__h4--bar {
  display: block;
  font-size: 1.125rem;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #cecac3 50%, #cecac3 calc(50% + 1px), transparent calc(50% + 2px), transparent 100%);
  margin-bottom: 2rem;
}
.c-title__h4--bar:not(:first-of-type) {
  margin-top: 2.5rem;
}
.c-title__h4-span {
  background: #f2f0ec;
  padding-right: 1rem;
  display: inline-block;
}

.c-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/********************************************
* Project
********************************************/
.p-home .c-mv {
  display: block;
}
.p-home .c-mv .c-inner {
  position: relative;
  height: 100%;
}
.p-home .c-mv__title {
  position: absolute;
  left: 1.25rem;
  bottom: 6.25rem;
  line-height: 1.1;
  font-size: 5rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-align: left;
}
@media (width <= 840px) {
  .p-home .c-mv__title {
    left: 1.5rem;
    bottom: min(8.375rem, 160px);
    font-size: min(3.5rem, 56px);
  }
}
.p-home .c-mv__title-span {
  margin-top: 2.5rem;
  display: block;
}
@media (width <= 840px) {
  .p-home .c-mv__title-span {
    font-size: min(1rem, 18px);
    font-weight: 600;
    margin-top: min(2rem, 30px);
  }
}
@media (width <= 840px) {
  .p-home .c-mv__img {
    object-position: calc(50% - 3.75rem * 1.2);
  }
}
.p-home__about {
  overflow: hidden;
  position: relative;
  height: 72.5rem;
}
@media (width <= 840px) {
  .p-home__about {
    height: 62.9375rem;
  }
}
.p-home__about:before {
  font-family: "cormorant", serif;
  font-size: 6rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  content: "FACILITY";
  position: absolute;
  left: -2.5rem;
  top: 12.5rem;
  color: rgba(180, 149, 49, 0.2);
}
@media (width <= 840px) {
  .p-home__about:before {
    font-size: 4rem;
    left: -1.75rem;
    top: 13rem;
  }
}
.p-home__about:after {
  content: "";
  display: block;
  width: 77.5rem;
  height: 38.5625rem;
  background: #ede9e1;
  left: calc(50% - 25rem);
  top: 18.125rem;
  position: absolute;
  z-index: 1;
}
@media (width <= 840px) {
  .p-home__about:after {
    width: 17.875rem;
    height: 33.1875rem;
    left: inherit;
    right: 0;
    top: 4rem;
  }
}
.p-home__about__inner {
  padding: 25rem 0 7.5rem;
  position: relative;
  margin-left: 2.5rem;
  z-index: 3;
  width: 26.25rem;
}
@media (width <= 840px) {
  .p-home__about__inner {
    padding: 8.75rem 0 0 2.5rem;
    width: 100%;
    margin-left: 0;
  }
}
.p-home__about__bg {
  position: absolute;
  width: 51.25rem;
  left: calc(50% - 3.75rem);
  top: 10rem;
  z-index: 2;
}
@media (width <= 840px) {
  .p-home__about__bg {
    width: 100%;
    top: 32.6875rem;
    left: 0;
  }
}
.p-home__about__title {
  margin-bottom: 2.8125rem;
}
@media (width <= 840px) {
  .p-home__about__title {
    line-height: 2.4rem;
    margin-bottom: 0.9375rem;
  }
}
.p-home__about__p {
  line-height: 2.2;
}
.p-home__about .c-link {
  margin-top: 2.5rem;
}
@media (width <= 840px) {
  .p-home__about .c-link {
    margin-top: 1.25rem;
  }
  .p-home__about .c-link:after {
    width: 3rem;
  }
}
.p-home__slider {
  margin-bottom: 10rem;
}
@media (width <= 840px) {
  .p-home__slider {
    margin-bottom: 6.5625rem;
  }
}
.p-home__slider .swiper-wrapper {
  transition-timing-function: linear;
}
.p-home__slider .swiper-slide {
  width: 28.25rem;
}
@media (width <= 840px) {
  .p-home__slider .swiper-slide {
    width: 17.6875rem;
  }
}
.p-home__activity__list {
  display: flex;
  padding: 0;
  margin: 0;
}
@media (width <= 840px) {
  .p-home__activity__list {
    flex-wrap: wrap;
    gap: 0.125rem;
  }
}
.p-home__activity__item {
  width: 50%;
  height: 27.5rem;
  display: flex;
  text-align: center;
  position: relative;
}
@media (width <= 840px) {
  .p-home__activity__item {
    width: 100%;
    height: 9.375rem;
  }
}
.p-home__activity__item:hover {
  opacity: 0.9;
}
.p-home__activity__img {
  position: absolute;
  left: 0;
  top: 0;
}
.p-home__activity__link {
  color: #fff;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 11.25rem;
}
@media (width <= 840px) {
  .p-home__activity__link {
    padding-top: 3.125rem;
  }
}
.p-home__activity__title {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 2.5rem;
  line-height: 1;
}
@media (width <= 840px) {
  .p-home__activity__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}
.p-home__activity .c-link {
  color: #fff;
  opacity: 1;
  float: none;
}
.p-home__activity .c-link:after {
  background: #fff;
}
.p-home__feature {
  height: 92.375rem;
  position: relative;
}
@media (width <= 840px) {
  .p-home__feature {
    height: auto;
    overflow: hidden;
  }
}
.p-home__feature__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 105rem !important;
  height: 70.3125rem !important;
}
@media (width <= 840px) {
  .p-home__feature__bg {
    max-width: inherit;
    width: 68.5rem !important;
    height: 42.4375rem !important;
    left: -0.625rem;
    top: -5.3125rem;
  }
}
.p-home__feature .c-inner {
  position: relative;
  z-index: 1;
  text-align: right;
}
.p-home__feature .c-title__h2-top {
  margin-bottom: 1rem;
}
.p-home__feature__inner {
  margin: 15.625rem 5rem 10.625rem 0;
  width: 28.75rem;
  position: relative;
  display: inline-block;
  text-align: left;
}
@media (width <= 840px) {
  .p-home__feature__inner {
    width: 100%;
    margin: 8.75rem 0 3.75rem;
  }
}
.p-home__feature__yomi {
  color: #b49531;
  margin-bottom: 0.625rem;
}
@media (width <= 840px) {
  .p-home__feature__yomi {
    margin-bottom: 0;
  }
}
.p-home__feature__p {
  margin-bottom: 1.875rem;
}
@media (width <= 840px) {
  .p-home__feature__p {
    margin-bottom: 1.25rem;
  }
}
@media (width <= 840px) {
  .p-home__feature .c-linkafter {
    width: 3rem;
  }
}
.p-home__feature__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
  gap: 3rem;
}
@media (width <= 840px) {
  .p-home__feature__list {
    flex-wrap: wrap;
    gap: 3.4375rem;
    margin-bottom: 6.5rem;
  }
}
.p-home__feature__item {
  width: 26.3125rem;
}
.p-home__feature__thumb {
  margin-bottom: 2.5rem;
}
@media (width <= 840px) {
  .p-home__feature__thumb {
    margin-bottom: 1.75rem;
  }
}
.p-home__feature__sub-title {
  font-size: 1.3125rem;
  margin-bottom: 1.125rem;
  line-height: 1;
}
@media (width <= 840px) {
  .p-home__feature__sub-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.p-home__feature__sub-p {
  font-size: 0.875rem;
  margin-bottom: 1.125rem;
}
@media (width <= 840px) {
  .p-home__feature__sub-p {
    margin-bottom: 0;
  }
}
.p-home__bg {
  width: 100%;
}
.p-home__history {
  overflow: hidden;
  height: 67.625rem;
  position: relative;
}
@media (width <= 840px) {
  .p-home__history {
    height: 63.125rem;
  }
}
.p-home__history:before {
  font-family: "cormorant", serif;
  font-size: 6rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  content: "HISTORY";
  position: absolute;
  left: -2.5rem;
  top: 12.5rem;
  color: rgba(180, 149, 49, 0.2);
}
@media (width <= 840px) {
  .p-home__history:before {
    font-size: 4rem;
    left: -1.75rem;
    top: 15.5rem;
  }
}
.p-home__history:after {
  content: "";
  width: 77.5rem;
  height: 35.625rem;
  position: absolute;
  top: 16rem;
  left: calc(50% - 25rem);
  background: #ede9e1;
}
@media (width <= 840px) {
  .p-home__history:after {
    width: 17.5rem;
    height: 40.5625rem;
    top: 6.5rem;
    left: inherit;
    right: 0;
  }
}
.p-home__history .c-inner {
  padding-left: 2.5rem;
}
.p-home__history__bg {
  z-index: 2;
  position: absolute;
  left: calc(50% - 3.75rem);
  top: 12.5rem;
  width: 25rem;
}
@media (width <= 840px) {
  .p-home__history__bg {
    width: 11.8125rem;
    height: 16.6875rem;
    left: 0;
    top: 39.6875rem;
  }
}
.p-home__history__bg2 {
  z-index: 2;
  position: absolute;
  left: calc(50% + 22.5rem);
  top: 20rem;
  width: 25rem;
}
@media (width <= 840px) {
  .p-home__history__bg2 {
    width: 11.8125rem;
    height: 16.75rem;
    left: inherit;
    right: 0;
    top: 34.6875rem;
  }
}
.p-home__history__inner {
  padding-top: 22.125rem;
  width: 26.25rem;
  z-index: 3;
  position: relative;
}
@media (width <= 840px) {
  .p-home__history__inner {
    width: 18.375rem;
    padding-top: 11.25rem;
    margin-left: 1.875rem;
  }
}
.p-home__history__title {
  margin-bottom: 2.1875rem;
}
@media (width <= 840px) {
  .p-home__history__title {
    margin-bottom: 1rem;
  }
}
@media (width <= 840px) {
  .p-home__history__p {
    margin-bottom: 1.25rem;
  }
}
.p-home__news {
  background: #ede9e1;
  padding: 7.5rem 0 5.5rem;
}
@media (width <= 840px) {
  .p-home__news {
    padding: 3.3125rem 0 4rem;
  }
}
.p-home__news__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.5rem;
}
@media (width <= 840px) {
  .p-home__news__header {
    margin-bottom: 0.5rem;
  }
}
.p-home__news__title {
  color: #b49531;
  font-size: 1rem;
}
@media (width <= 840px) {
  .p-home__news__title {
    font-size: 0.875rem;
  }
}
.p-home__news__title-eng {
  font-size: 4rem;
  line-height: 1;
}
@media (width <= 840px) {
  .p-home__news__title-eng {
    font-size: 2.5rem;
  }
}
.p-home__news__inner {
  display: flex;
  gap: 5rem;
}
.p-home__news .c-news__item {
  gap: 2.5rem;
}
@media (width <= 840px) {
  .p-home__news .c-news__item {
    gap: 1.5rem;
  }
}
.p-home__news .c-news__item:nth-of-type(1) {
  float: left;
  width: 40rem;
  display: block;
  padding: 2.5rem 0;
  border: none;
}
@media (width <= 840px) {
  .p-home__news .c-news__item:nth-of-type(1) {
    width: 100%;
    padding: 2rem 0 1.5rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cecac3;
  }
}
@media (width <= 840px) {
  .p-home__news .c-news__item:nth-of-type(1) .c-news__link {
    width: 7rem;
  }
}
.p-home__news .c-news__item:nth-of-type(1) .c-news__thumb {
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (width <= 840px) {
  .p-home__news .c-news__item:nth-of-type(1) .c-news__thumb {
    width: 7rem;
  }
}
.p-home__news .c-news__item:nth-of-type(1) .c-news__text {
  width: 100%;
}
@media (width <= 840px) {
  .p-home__news .c-news__item:nth-of-type(1) .c-news__text {
    width: 12.3125rem;
  }
}
.p-home__news .c-news__item:nth-of-type(n + 2) {
  float: right;
  width: 40rem;
  padding: 2.5rem 0;
}
@media (width <= 840px) {
  .p-home__news .c-news__item:nth-of-type(n + 2) {
    padding: 2rem 0 1.5rem;
  }
}
@media (width <= 840px) {
  .p-home__news .c-news__item:nth-of-type(n + 2) {
    width: 100%;
  }
}
@media (width <= 840px) {
  .p-home__news .c-news__item:nth-of-type(n + 2) .c-news__link {
    width: 7rem;
  }
}
.p-home__news .c-news__item:nth-of-type(n + 2) .c-news__thumb {
  width: 12.5rem;
}
@media (width <= 840px) {
  .p-home__news .c-news__item:nth-of-type(n + 2) .c-news__thumb {
    width: 7rem;
  }
}
.p-home__news .c-news__item:nth-of-type(n + 2) .c-news__text {
  width: 25rem;
}
@media (width <= 840px) {
  .p-home__news .c-news__item:nth-of-type(n + 2) .c-news__text {
    width: 12.3125rem;
  }
}
@media (width <= 840px) {
  .p-home__news .c-news__item:nth-of-type(4) {
    display: none;
  }
}
@media (width <= 840px) {
  .p-home__news .c-news__title {
    margin-bottom: 0;
    font-size: 0.875rem;
  }
}
.p-home__news .c-cat-list__link {
  font-size: 0.6875rem;
}

.p-access__map {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.p-access__map .c-google {
  position: relative;
  height: 35rem;
  left: calc(50% - 42.5rem);
  margin-bottom: 4.375rem;
}
@media (width <= 840px) {
  .p-access__map .c-google {
    left: 0;
    height: 25rem;
    margin-bottom: 1.5rem;
  }
}
.p-access__map__address {
  font-size: 1.3125rem;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 8.75rem;
}
@media (width <= 840px) {
  .p-access__map__address {
    display: block;
    font-size: 1rem;
    text-align: left;
    padding: 0 1.75rem;
    margin-bottom: 3.75rem;
  }
}
.p-access__map__span {
  border: 1px solid #4d463c;
  line-height: 1;
  padding: 0.375rem 0.8125rem;
}
@media (width <= 840px) {
  .p-access__map__span {
    display: inline-block;
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}
.p-access__map__img {
  width: 0.789375rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.p-access__way .c-title__h2-page {
  margin-bottom: 1.875rem;
}
.p-access__way__list {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 5.625rem;
  flex-direction: column;
}
@media (width <= 840px) {
  .p-access__way__list {
    gap: 3.125rem;
  }
}

.p-faq .l-article .c-inner {
  max-width: 70rem;
}

.p-reservation__price {
  margin-bottom: 7.5rem;
}
@media (width <= 840px) {
  .p-reservation__price {
    margin-bottom: 3.125rem;
  }
}
.p-reservation__price__table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  margin-bottom: 4rem;
  border-bottom: 1px solid #cecac3;
}
@media (width <= 840px) {
  .p-reservation__price__table {
    margin-bottom: 2.1875rem;
  }
}
.p-reservation__price__table th {
  width: 50%;
  background: #e6e4df;
  font-size: 1.3125rem;
  height: 7.5rem;
  border: 1px solid #cecac3;
  vertical-align: middle;
  font-weight: 500;
}
@media (width <= 840px) {
  .p-reservation__price__table th {
    display: block;
    width: 100%;
    font-size: 1rem;
    height: auto;
    padding: 0.3125rem;
    border-bottom: inherit;
  }
}
.p-reservation__price__table td {
  width: 50%;
  font-size: 1.125rem;
  height: 7.5rem;
  border: 1px solid #cecac3;
  vertical-align: middle;
}
@media (width <= 840px) {
  .p-reservation__price__table td {
    display: block;
    width: 100%;
    font-size: 0.875rem;
    height: auto;
    border-bottom: inherit;
  }
}
.p-reservation__price__table .p-reservation__price__price {
  font-size: 4rem;
  font-weight: 300;
  margin: 0 0.75rem 0 1.75rem;
}
@media (width <= 840px) {
  .p-reservation__price__table .p-reservation__price__price {
    font-size: 2.5rem;
  }
}
.p-reservation__price__p {
  line-height: 2;
}
.p-reservation__flow__list {
  margin: 0 0 4.375rem;
  padding: 0;
  list-style: none;
  counter-reset: cnt 0;
}
@media (width <= 840px) {
  .p-reservation__flow__list {
    margin-bottom: 2.375rem;
  }
}
.p-reservation__flow__item {
  position: relative;
  padding: 1.625rem 0 3.125rem 8.75rem;
}
@media (width <= 840px) {
  .p-reservation__flow__item {
    padding: 1rem 0 1rem 5.5rem;
  }
}
.p-reservation__flow__item:not(:last-child) {
  background: linear-gradient(to right, transparent 0%, transparent 2.5rem, #cecac3 2.5rem, #cecac3 2.5625rem, transparent 2.5625rem, transparent 100%);
}
@media (width <= 840px) {
  .p-reservation__flow__item:not(:last-child) {
    background: linear-gradient(to right, transparent 0%, transparent 2rem, #cecac3 2rem, #cecac3 2.0625rem, transparent 2.0625rem, transparent 100%);
  }
}
.p-reservation__flow__item::before {
  counter-increment: cnt 1;
  content: counter(cnt);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 300;
  font-family: "cormorant", serif;
  width: 5rem;
  height: 5rem;
  background: #e6e4df;
  border: 1px solid #cecac3;
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: 0;
  padding-bottom: 0.625rem;
}
@media (width <= 840px) {
  .p-reservation__flow__item::before {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}
.p-reservation__flow__title {
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
}
@media (width <= 840px) {
  .p-reservation__flow__title {
    font-size: 1rem;
  }
}
.p-reservation__flow__p {
  line-height: 2;
}
.p-reservation__btns .c-inner {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media (width <= 840px) {
  .p-reservation__btns .c-inner {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.p-reservation__btns .c-btn {
  font-size: 1.3125rem;
  width: 32.5rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 840px) {
  .p-reservation__btns .c-btn {
    font-size: 1rem;
    width: 100%;
    height: 4rem;
  }
}

.p-news__post .c-inner {
  display: flex;
}
@media (width <= 840px) {
  .p-news__post .c-inner {
    flex-direction: column;
  }
}
.p-news__post__content {
  order: 2;
  width: 69.6875rem;
}
@media (width <= 840px) {
  .p-news__post__content {
    width: 100%;
  }
}
.p-news__post .c-news {
  margin-bottom: 3.125rem;
}
@media (width <= 840px) {
  .p-news__post .c-news {
    margin-bottom: 1.875rem;
  }
}
.p-news__post .c-news__date {
  font-size: 1.3125rem;
}
@media (width <= 840px) {
  .p-news__post .c-news__date {
    font-size: 1.125rem;
  }
}
.p-news__post .c-news__title {
  font-size: 1.3125rem;
  margin-bottom: 1.25rem;
}
@media (width <= 840px) {
  .p-news__post .c-news__title {
    font-size: 1.125rem;
  }
}
.p-news__post .c-news__p {
  line-height: 2;
}
.p-news__post .c-cat-list__link {
  font-size: 0.875rem;
}
@media (width <= 840px) {
  .p-news__post .c-cat-list__link {
    font-size: 0.75rem;
  }
}
.p-news .c-side-nav__inner {
  top: 80px;
}
.p-news .c-side-nav {
  order: 1;
  width: 15.3125rem;
  margin-top: 0.625rem;
}
.p-news .c-side-nav__link {
  font-size: 1.125rem;
}
@media (width <= 840px) {
  .p-news .c-side-nav {
    height: auto;
    width: 100%;
    display: block;
    margin-bottom: 3.375rem;
    padding-top: 0;
    margin: 0 0 1.25rem;
  }
  .p-news .c-side-nav__list {
    width: 100%;
    display: flex;
    gap: 1.375rem;
    flex-wrap: wrap;
  }
  .p-news .c-side-nav__item {
    position: relative;
    margin-bottom: 0;
  }
  .p-news .c-side-nav__item:not(:last-of-type) {
    margin-bottom: 1.75rem;
  }
  .p-news .c-side-nav__item:hover, .p-news .c-side-nav__item--current {
    list-style: none;
    position: relative;
  }
  .p-news .c-side-nav__item:hover:after, .p-news .c-side-nav__item--current:after {
    content: "";
    width: 0.375rem;
    height: 0.375rem;
    background: #4d463c;
    border-radius: 999px;
    position: absolute;
    bottom: -0.625rem;
    left: calc(50% - 0.1875rem);
  }
  .p-news .c-side-nav__link {
    font-size: 0.875rem;
  }
}

.p-history__section {
  margin-top: 7.625rem;
  position: relative;
  padding-bottom: 6.25rem;
}
@media (width <= 840px) {
  .p-history__section {
    margin-top: 5rem;
    padding-bottom: 6.5rem;
  }
}
.p-history__section .c-inner {
  position: relative;
  z-index: 1;
}
.p-history__section:nth-of-type(2):before {
  content: "";
  position: absolute;
  width: 77.5rem;
  height: 104.375rem;
  background: #ede9e1;
  left: 0;
  top: 17.5rem;
}
@media (width <= 840px) {
  .p-history__section:nth-of-type(2):before {
    width: 17.875rem;
    height: 138.125rem;
    top: 6.5rem;
  }
}
.p-history__section:nth-of-type(3) {
  padding-bottom: 2.5rem;
  margin-top: 0;
}
@media (width <= 840px) {
  .p-history__section:nth-of-type(3) {
    padding-bottom: 0;
  }
}
.p-history__section:nth-of-type(3):before {
  content: "";
  position: absolute;
  width: 77.5rem;
  height: 99.5625rem;
  background: #ede9e1;
  right: 0;
  top: 16.875rem;
}
@media (width <= 840px) {
  .p-history__section:nth-of-type(3):before {
    width: 17.875rem;
    height: 101.25rem;
  }
}
.p-history__section__top-img {
  position: relative;
  left: calc(50% - 42.5rem);
  width: 95rem;
  margin-bottom: 4.875rem;
}
@media (width <= 840px) {
  .p-history__section__top-img {
    width: 22.625rem;
    left: 1.75rem;
    margin-bottom: 2.5rem;
  }
}
.p-history__section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}
@media (width <= 840px) {
  .p-history__section__header {
    flex-wrap: wrap;
    margin-bottom: 3.375rem;
  }
}
.p-history__section__title {
  padding-left: 5rem;
  font-size: 2rem;
}
@media (width <= 840px) {
  .p-history__section__title {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    padding-left: 0;
  }
}
.p-history__section__title-span {
  font-size: 1.125rem;
  color: #b49531;
  display: block;
  margin-bottom: 1.125rem;
}
@media (width <= 840px) {
  .p-history__section__title-span {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}
.p-history__section__p {
  width: 52.5rem;
}
.p-history__block {
  margin-bottom: 6.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 840px) {
  .p-history__block {
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }
}
.p-history__block:nth-of-type(2n) .p-history__block__thumb {
  order: 1;
}
.p-history__block:nth-of-type(2n) .p-history__block__text {
  order: 2;
}
@media (width <= 840px) {
  .p-history__block:nth-of-type(2n + 1) .p-history__block__thumb {
    order: 1;
  }
}
@media (width <= 840px) {
  .p-history__block:nth-of-type(2n + 1) .p-history__block__text {
    order: 2;
  }
}
.p-history__block__thumb {
  width: 39.25rem;
}
@media (width <= 840px) {
  .p-history__block__thumb {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}
.p-history__block__text {
  width: 39.25rem;
}
@media (width <= 840px) {
  .p-history__block__text {
    width: 100%;
  }
}
.p-history__block__title {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (width <= 840px) {
  .p-history__block__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

.p-fukuyama .c-inner--full {
  background: url(../images/fukuyama/about-bg.png) no-repeat;
  background-size: 125.625rem 59.375rem;
  background-position: left top;
}
@media (width <= 840px) {
  .p-fukuyama .c-inner--full {
    background: url(../images/fukuyama/about-bg-sp.png) no-repeat;
    background-size: 68.5rem 42.4375rem;
    background-position: -11.375rem -1rem;
    padding: 0;
  }
}
.p-fukuyama__about {
  text-align: right;
  margin-bottom: 9.1875rem;
}
@media (width <= 840px) {
  .p-fukuyama__about {
    margin-bottom: 6.25rem;
  }
}
.p-fukuyama__about__inner {
  width: 34.5rem;
  display: inline-block;
  margin: 5.625rem 10rem 7.1875rem 0;
  text-align: left;
}
@media (width <= 840px) {
  .p-fukuyama__about__inner {
    width: 100%;
    margin: 0;
    margin: 9.25rem 0 0 0;
  }
}
.p-fukuyama__about__bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-right: 5rem;
}
@media (width <= 840px) {
  .p-fukuyama__about__bottom {
    flex-wrap: wrap;
    padding-right: 0;
    margin-top: 2.5rem;
  }
}
.p-fukuyama__about__bottom-p {
  text-align: left;
  width: 36.125rem;
  margin-top: 7.875rem;
  padding-right: 2.5rem;
}
@media (width <= 840px) {
  .p-fukuyama__about__bottom-p {
    width: 100%;
    padding-right: 0;
    order: 2;
    padding-top: 5rem;
  }
}
.p-fukuyama__about__bottom-img1 {
  width: 19rem;
  margin-top: 2.875rem;
}
@media (width <= 840px) {
  .p-fukuyama__about__bottom-img1 {
    width: 11.6875rem;
    order: 1;
    position: absolute;
    left: 0;
  }
}
.p-fukuyama__about__bottom-img2 {
  width: 19rem;
}
@media (width <= 840px) {
  .p-fukuyama__about__bottom-img2 {
    width: 11.6875rem;
    position: absolute;
    right: 0;
  }
}
.p-fukuyama__meal {
  margin-bottom: 11.5rem;
  padding-bottom: 7.5rem;
  position: relative;
}
@media (width <= 840px) {
  .p-fukuyama__meal {
    margin-bottom: 6.5rem;
    padding-bottom: 5rem;
  }
}
.p-fukuyama__meal:after {
  content: "";
  position: absolute;
  width: 77.5rem;
  height: 17.5rem;
  bottom: 0;
  right: 0;
  background: #ede9e1;
}
@media (width <= 840px) {
  .p-fukuyama__meal:after {
    width: 100%;
    height: 13.25rem;
  }
}
.p-fukuyama__meal__img {
  margin-bottom: 5rem;
}
@media (width <= 840px) {
  .p-fukuyama__meal__img {
    margin-bottom: 2.5rem;
  }
}
.p-fukuyama__meal__header {
  display: flex;
  margin-bottom: 5rem;
  padding-right: 10rem;
}
@media (width <= 840px) {
  .p-fukuyama__meal__header {
    flex-wrap: wrap;
    padding-right: 0;
  }
}
.p-fukuyama__meal .c-title__h2 {
  width: 20.375rem;
  font-size: 2.5rem;
  padding: 2.5rem 0 0 5rem;
}
@media (width <= 840px) {
  .p-fukuyama__meal .c-title__h2 {
    width: 100%;
    font-size: 1.5rem;
    padding: 0;
    margin-bottom: 1.75rem;
  }
}
.p-fukuyama__meal__span {
  letter-spacing: 0.1em;
  color: #b49531;
  font-size: 1.125rem;
  display: block;
  font-weight: 600;
}
@media (width <= 840px) {
  .p-fukuyama__meal__span {
    font-size: 1rem;
  }
}
.p-fukuyama__meal__p {
  width: calc(100% - 20.375rem);
}
@media (width <= 840px) {
  .p-fukuyama__meal__p {
    width: 100%;
  }
}
@media (width <= 840px) {
  .p-fukuyama .swiper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
.p-fukuyama .swiper-wrapper {
  margin-bottom: 3.75rem;
}
@media (width <= 840px) {
  .p-fukuyama .swiper-wrapper {
    margin-bottom: 2.5rem;
  }
}
.p-fukuyama .swiper-pagination-bullet-active {
  background: #b49531;
}
.p-fukuyama .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-fukuyama .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
}
@media (width <= 840px) {
  .p-fukuyama .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .p-fukuyama .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.5rem;
  }
}
.p-fukuyama .swiper-slide {
  width: 28.25rem;
  height: 20rem;
}
@media (width <= 840px) {
  .p-fukuyama .swiper-slide {
    width: 17.625rem;
    height: auto;
  }
}
.p-fukuyama__activity {
  margin-bottom: 11.5rem;
  padding-bottom: 7.5rem;
  position: relative;
}
@media (width <= 840px) {
  .p-fukuyama__activity {
    padding-bottom: 5rem;
    margin-bottom: 6.5rem;
  }
}
.p-fukuyama__activity:after {
  content: "";
  position: absolute;
  width: 77.5rem;
  height: 17.5rem;
  bottom: 0;
  right: 0;
  background: #ede9e1;
}
@media (width <= 840px) {
  .p-fukuyama__activity:after {
    width: 100%;
  }
}
.p-fukuyama__activity .c-block {
  width: 84rem;
}
@media (width <= 840px) {
  .p-fukuyama__activity .c-block {
    width: 100%;
  }
}
@media (width <= 840px) {
  .p-fukuyama__activity .c-block__thumb {
    margin-bottom: 1.75rem;
  }
}
.p-fukuyama__activity .c-block__row {
  gap: 5rem;
}
@media (width <= 840px) {
  .p-fukuyama__activity .c-block__row {
    flex-wrap: wrap;
    gap: 0;
  }
}
.p-fukuyama__activity .c-block__row .c-block {
  width: 39.25rem;
}
@media (width <= 840px) {
  .p-fukuyama__activity .c-block__row .c-block {
    width: 100%;
  }
}
.p-fukuyama__activity__sub-title {
  display: block;
  font-size: 1.3125rem;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #cecac3 50%, #cecac3 calc(50% + 1px), transparent calc(50% + 2px), transparent 100%);
  margin-bottom: 4rem;
}
@media (width <= 840px) {
  .p-fukuyama__activity__sub-title {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.p-fukuyama__activity__sub-title-span {
  background: #f2f0ec;
  padding-right: 1rem;
  display: inline-block;
}
.p-fukuyama__tourism .c-block {
  width: 84rem;
  border-bottom: 1px solid #cecac3;
  padding-bottom: 5rem;
  margin-bottom: 0;
}
@media (width <= 840px) {
  .p-fukuyama__tourism .c-block {
    padding-bottom: 3.75rem;
    width: 100%;
  }
}
.p-fukuyama__tourism .c-block:not(:last-child) {
  margin-bottom: 5rem;
}
@media (width <= 840px) {
  .p-fukuyama__tourism .c-block:not(:last-child) {
    margin-bottom: 3.75rem;
  }
}
@media (width <= 840px) {
  .p-fukuyama__tourism .c-block__thumb {
    margin-bottom: 1.75rem;
  }
}

.p-experience .c-has-sidebar {
  position: relative;
}
.p-experience .c-has-sidebar:after {
  content: "";
  width: 77.5rem;
  height: 113.1875rem;
  background: #ede9e1;
  position: absolute;
  top: 0;
  right: 0;
}
@media (width <= 840px) {
  .p-experience .c-has-sidebar:after {
    width: 17.875rem;
    height: 113.75rem;
  }
}
.p-experience .c-has-sidebar__content {
  position: relative;
  z-index: 1;
}
.p-experience .c-title__h2-top {
  margin-bottom: 3rem;
}
@media (width <= 840px) {
  .p-experience .c-title__h2-top {
    margin-bottom: 0.625rem;
  }
}
.p-experience .c-title__h2-span {
  margin-bottom: 1.5625rem;
  position: relative;
}
@media (width <= 840px) {
  .p-experience .c-title__h2-span {
    margin-bottom: 0.625rem;
  }
}
.p-experience .c-link {
  margin-top: 2.5rem;
}
@media (width <= 840px) {
  .p-experience .c-link {
    margin-top: 1.25rem;
  }
  .p-experience .c-link:after {
    width: 3rem;
  }
}
@media (width <= 840px) {
  .p-experience .c-inner--full {
    padding-top: 5rem;
  }
}
@media (width <= 840px) {
  .p-experience .c-inner--type01 {
    padding: 0;
  }
}
.p-experience .c-has-sidebar__sidebar {
  position: relative;
  z-index: 100;
}
.p-experience__stay {
  position: relative;
  height: 41.75rem;
  margin-bottom: 10rem;
}
@media (width <= 840px) {
  .p-experience__stay {
    height: 56.875rem;
    margin-bottom: 4rem;
  }
}
.p-experience__stay__text {
  width: 25.8125rem;
  margin: 10.3125rem 0 0 5rem;
  clear: both;
}
@media (width <= 840px) {
  .p-experience__stay__text {
    width: 100%;
    margin: 0;
  }
}
.p-experience__stay__img {
  position: absolute;
}
.p-experience__stay__img1 {
  width: 41.0625rem;
  top: -10.3125rem;
  right: 0;
}
@media (width <= 840px) {
  .p-experience__stay__img1 {
    top: 30rem;
    right: -1.75rem;
    width: 21.375rem;
  }
}
.p-experience__stay__img2 {
  width: 20.8125rem;
  right: 29.875rem;
  bottom: 3.5rem;
}
@media (width <= 840px) {
  .p-experience__stay__img2 {
    width: 11rem;
    right: inherit;
    bottom: 1.875rem;
    left: -1.75rem;
  }
}
.p-experience__stay__img3 {
  width: 19.875rem;
  right: 5rem;
  bottom: 0;
}
@media (width <= 840px) {
  .p-experience__stay__img3 {
    width: 11.25rem;
    right: -1.75rem;
  }
}

.movie{
  width: fit-content;
  margin: 100px auto;
}

@media (width <= 840px) {
  .movie{
    width: 80%;
    margin: 40px auto;
  }
  .movie iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto !important;
  }
}

.p-experience__map {
  padding-bottom: 10rem;
  margin-bottom: 11.5rem;
}

@media (width <= 840px) {
  .p-experience__map {
    padding-bottom: 5rem;
    margin-bottom: 7.5rem;
  }
}
.p-experience__map .c-inner--type01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 840px) {
  .p-experience__map .c-inner--type01 {
    flex-wrap: wrap;
  }
}
@media (width <= 840px) {
  .p-experience__map .c-title__h2-top {
    letter-spacing: 0.04em;
  }
}
.p-experience__map__thumb {
  width: 44.5rem;
}
@media (width <= 840px) {
  .p-experience__map__thumb {
    width: 100%;
    order: 2;
  }
}
.p-experience__map__text {
  width: 27rem;
  margin-right: 10rem;
}
@media (width <= 840px) {
  .p-experience__map__text {
    width: 100%;
    margin-right: 0;
    order: 1;
    margin-bottom: 2.5rem;
  }
}
@media (width <= 840px) {
  .p-experience__img {
    width: 100vw;
    margin-left: -1.75rem;
    max-width: inherit;
  }
}
.p-experience__bath, .p-experience__house, .p-experience__tower, .p-experience__gate, .p-experience__castel {
  margin-bottom: 10rem;
}
@media (width <= 840px) {
  .p-experience__bath, .p-experience__house, .p-experience__tower, .p-experience__gate, .p-experience__castel {
    margin-bottom: 4.375rem;
  }
}
.p-experience__bath .swiper, .p-experience__house .swiper, .p-experience__tower .swiper, .p-experience__gate .swiper, .p-experience__castel .swiper {
  margin-right: 5rem;
}
.p-experience__bath .c-title__h2, .p-experience__house .c-title__h2, .p-experience__tower .c-title__h2, .p-experience__gate .c-title__h2, .p-experience__castel .c-title__h2 {
  margin-bottom: 1.5rem;
}
@media (width <= 840px) {
  .p-experience .swiper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
.p-experience .swiper-wrapper {
  margin-bottom: 1rem;
}
@media (width <= 840px) {
  .p-experience .swiper-wrapper {
    margin-bottom: 2.5rem;
  }
}
.p-experience .swiper-pagination-bullet-active {
  background: #b49531;
}
.p-experience .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-experience .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.5rem;
}
@media (width <= 840px) {
  .p-experience .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .p-experience .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.5rem;
  }
}
.p-experience .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
}
.p-experience .swiper-slide {
  width: 28.25rem;
  height: 20rem;
}
@media (width <= 840px) {
  .p-experience .swiper-slide {
    width: 17.625rem;
    height: auto;
  }
}
@media (width <= 840px) {
  .p-experience__bath {
    margin-bottom: 5.625rem;
  }
}
.p-experience__schedule {
  background: #ede9e1;
  margin-left: -16rem;
  padding: 6.5625rem 0 7.5rem 16rem;
}
@media (width <= 840px) {
  .p-experience__schedule {
    width: 100vw;
    padding: 5rem 0 5rem 1.75rem;
    margin-left: -1.75rem;
  }
}
.p-experience__schedule .c-title__h2-top {
  font-size: 2.5rem;
}
@media (width <= 840px) {
  .p-experience__schedule .c-title__h2-top {
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
  }
}
@media (width <= 840px) {
  .p-experience__schedule .c-title__h2-span {
    margin-bottom: 1.875rem;
  }
}
.p-experience__schedule__thumb {
  position: relative;
  margin-bottom: 2.5rem;
}
@media (width <= 840px) {
  .p-experience__schedule__thumb {
    margin-bottom: 1.5rem;
  }
}
.p-experience__schedule__title {
  font-size: 1.3125rem;
  margin-bottom: 0.625rem;
  padding: 0 1.5rem;
}
@media (width <= 840px) {
  .p-experience__schedule__title {
    margin-bottom: 0.375rem;
    font-size: 1.125rem;
    padding: 0 1rem;
  }
}
.p-experience__schedule__p {
  font-size: 0.875rem;
  padding: 0 1.5rem;
}
@media (width <= 840px) {
  .p-experience__schedule__p {
    padding: 0 1rem;
    line-height: 1.6;
  }
}
.p-experience__schedule__p:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
@media (width <= 840px) {
  .p-experience__schedule__p:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
}
.p-experience__schedule__date {
  padding: 1.75rem 1.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  font-style: italic;
}
@media (width <= 840px) {
  .p-experience__schedule__date {
    padding: 1rem 1rem;
  }
}
.p-experience__schedule__day {
  line-height: 1;
  font-size: 1.3125rem;
  transform: translateY(1rem);
}
@media (width <= 840px) {
  .p-experience__schedule__day {
    font-size: 1rem;
  }
}
.p-experience__schedule__time {
  line-height: 1;
  font-size: 2.5rem;
  position: relative;
  left: 3.75rem;
}
@media (width <= 840px) {
  .p-experience__schedule__time {
    font-size: 2rem;
  }
}
.p-experience__schedule__num {
  font-size: 2rem;
}
@media (width <= 840px) {
  .p-experience__schedule__num {
    font-size: 1.5rem;
  }
}
.p-experience__schedule__slush {
  font-size: 2rem;
  transform: translateY(1rem) rotate(20deg);
  display: inline-block;
}
.p-experience__schedule .swiper {
  padding-top: 5.625rem;
  position: relative;
  margin-top: -6.25rem;
}
@media (width <= 840px) {
  .p-experience__schedule .swiper {
    margin-left: calc(-50vw + 0.875rem);
    width: calc(100vw - 1.75rem);
    margin-top: -6.25rem;
  }
}
.p-experience__schedule .swiper-slide {
  width: 29.7875rem;
}
.p-experience__schedule .swiper-arrows {
  position: absolute;
  top: 1.0625rem;
  right: 4.375rem;
  width: 7.75rem;
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
}
@media (width <= 840px) {
  .p-experience__schedule .swiper-arrows {
    right: 1.25rem;
    top: 0;
    width: 6.5rem;
  }
}
.p-experience__schedule .swiper-button-prev {
  left: 0;
}
.p-experience__schedule .swiper-button-next {
  right: 0;
}
.p-experience__schedule .swiper-button-next,
.p-experience__schedule .swiper-button-prev {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
}
@media (width <= 840px) {
  .p-experience__schedule .swiper-button-next,
  .p-experience__schedule .swiper-button-prev {
    width: 3rem;
    height: 3rem;
  }
  .p-experience__schedule .swiper-button-next img,
  .p-experience__schedule .swiper-button-prev img {
    width: 100%;
    height: 100%;
  }
}
.p-experience__schedule .swiper-button-next img {
  transform: rotate(180deg);
}
.p-experience__schedule .swiper-arrow {
  width: 3.5rem;
  height: 3.5rem;
}
.p-experience__schedule .swiper-arrow img {
  width: 100%;
}

/* Utilities */
.u-mt0 {
  margin-top: 0px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-pc {
  display: block;
}
@media (width <= 840px) {
  .u-pc {
    display: none;
  }
}
.u-pc--inline {
  display: inline;
}
@media (width <= 840px) {
  .u-pc--inline {
    display: none;
  }
}
.u-pc--iblock {
  display: inline-block;
}
@media (width <= 840px) {
  .u-pc--iblock {
    display: none;
  }
}
.u-pc--table {
  display: table;
}
@media (width <= 840px) {
  .u-pc--table {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (width <= 840px) {
  .u-sp {
    display: block;
  }
}
.u-sp--inline {
  display: none;
}
@media (width <= 840px) {
  .u-sp--inline {
    display: inline;
  }
}
.u-sp--iblock {
  display: none;
}
@media (width <= 840px) {
  .u-sp--iblock {
    display: inline-block;
  }
}
.u-sp--table {
  display: none;
}
@media (width <= 840px) {
  .u-sp--table {
    display: table;
  }
}

.u-ofit {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.u-pos--absolute {
  position: absolute;
}
.u-pos--fixed {
  position: fixed;
}
.u-pos--relative {
  position: relative;
}

.u-text--default {
  font-family: "メイリオ", Meiryo, Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
}
.u-text--mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.u-text--cormorant {
  font-family: "Cormorant", serif;
}
.u-text--center {
  text-align: center;
}
.u-text--left {
  text-align: left;
}
.u-text--right {
  text-align: right;
}
.u-text--thin {
  font-weight: 100;
}
.u-text--extra-light {
  font-weight: 200;
}
.u-text--light {
  font-weight: 300;
}
.u-text--regular {
  font-weight: 400;
}
.u-text--medium {
  font-weight: 500;
}
.u-text--semi-bold {
  font-weight: 600;
}
.u-text--bold {
  font-weight: 700;
}
.u-text--extra-bold {
  font-weight: 800;
}
.u-text--black {
  font-weight: 900;
}
.u-text--big {
  font-size: 1.4em;
}
.u-text--regular {
  font-size: 1em;
}
.u-text--small {
  font-size: 0.8em;
}

.u-text_ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #ccc;
  line-height: 1.5;
}
.u-text_ellipsis--multiline {
  white-space: normal;
  max-height: 3em;
  position: relative;
}
.u-text_ellipsis--multiline::after {
  content: "…";
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  background-color: #ccc;
}
.u-text_ellipsis--line2 {
  max-height: 3em;
}
.u-text_ellipsis--line3 {
  max-height: 4.5em;
}
.u-text_ellipsis--line4 {
  max-height: 6em;
}
.u-text_ellipsis--line5 {
  max-height: 7.5em;
}

.u-color__yellow {
  color: yellow;
}

.c-news__thumb{
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

/********************************************
* 20251024
********************************************/
@media (width <= 840px) {
	.l-header .l-header__inner .l-header__left .c-lang-nav .c-lang-nav__list {
		padding: 0;
	}
}