@charset "UTF-8";
/*            ブレークポイント            */
/*            変数            */
/*            SETUP            */
img {
  vertical-align: bottom;
}

a {
  color: #251e1c;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.body {
  font-size: 15px;
  line-height: 26px;
  background-color: #fff;
  color: #251e1c;
  opacity: 1;
  max-width: 2000px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .body {
    font-size: 14px;
    line-height: 24px;
  }
}

.is-menu-open {
  overflow: auto;
}
@media (max-width: 767px) {
  .is-menu-open {
    overflow: hidden;
  }
}

header {
  position: relative;
  z-index: 10;
}

main {
  position: relative;
  z-index: 1;
}

footer {
  position: relative;
  z-index: 5;
}

.header__menu {
  z-index: 10;
}
.header__menu-sns {
  z-index: 1;
}
.header__logo-wrapper {
  z-index: 15;
}

/*            ELEMENT            */
.button {
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  display: block;
  width: 100px;
  margin: 0 auto;
  border: 1px solid #251e1c;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .button {
    font-size: 14px;
    line-height: 20px;
    width: 80px;
    border-radius: 8px;
  }
}

.pagenation {
  font-size: 18px;
  line-height: 18px;
}
@media (max-width: 767px) {
  .pagenation {
    font-size: 17px;
    line-height: 17px;
  }
}
.pagenation__new, .pagenation__past {
  padding: 10px;
  padding-top: 5px;
  display: inline-block;
}
@media (max-width: 767px) {
  .pagenation__new, .pagenation__past {
    padding: 5px;
    padding-top: 2px;
  }
}
.pagenation__past {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .pagenation__past {
    margin-left: 22px;
  }
}

.gallery-lists {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 24.5px;
}
@media (max-width: 767px) {
  .gallery-lists {
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
  }
}
.gallery-lists__list {
  width: calc((100% - 90px) / 4);
}
@media (max-width: 1024px) {
  .gallery-lists__list {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .gallery-lists__list {
    width: calc((100% - 15px) / 2);
  }
}
.gallery-lists__text {
  font-weight: 600;
  padding-top: 9.5px;
}
@media (max-width: 767px) {
  .gallery-lists__text {
    padding-top: 5px;
  }
}
.gallery-lists__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.line-lists {
  width: 100%;
  margin: 0 auto;
}
.line-lists__list {
  line-height: 36px;
  position: relative;
  border-top: none;
}
@media (max-width: 767px) {
  .line-lists__list {
    line-height: 28px;
  }
}
.line-lists__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #251e1c;
  transform: scaleY(0.5);
  transform-origin: top;
}
.line-lists__list:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #251e1c;
  transform: scaleY(0.5);
  transform-origin: bottom;
}
.line-lists__link {
  display: block;
}

.heading-01 {
  font-size: 21px;
  line-height: 36px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .heading-01 {
    font-size: 20px;
    line-height: 35px;
  }
}

.heading-02 {
  font-size: 18px;
  line-height: 31px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .heading-02 {
    font-size: 17px;
    line-height: 30px;
  }
}

.heading-03 {
  font-weight: 600;
}

.hamburger {
  display: none;
  position: fixed;
  cursor: pointer;
  right: 15px;
  top: 22px;
  width: 20px;
  height: 30px;
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
  }
}
.hamburger__line {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.hamburger__line--01 {
  top: 0;
}
.is-menu-open .hamburger__line--01 {
  width: 0;
}
.hamburger__line--02 {
  top: 9px;
}
.is-menu-open .hamburger__line--02 {
  top: 14px;
  transform: rotate(45deg);
}
.hamburger__line--03 {
  top: 18px;
}
.is-menu-open .hamburger__line--03 {
  top: 14px;
  transform: rotate(-45deg);
}
.hamburger__line--04 {
  top: 27px;
}
.is-menu-open .hamburger__line--04 {
  width: 0;
}

/*            BLOCK            */
.header__menu-background {
  display: none;
}
@media (max-width: 767px) {
  .header__menu-background {
    position: fixed;
    display: block;
    pointer-events: none;
    opacity: 0;
    width: 100%;
    height: 200vh;
    min-height: 600px;
    transform: translateY(-25%);
    background-color: #fff;
    transition: opacity 0.2s;
  }
}
.is-menu-open .header__menu-background {
  pointer-events: auto;
  opacity: 0.7;
}
.header__logo-wrapper {
  position: fixed;
  left: 0;
  top: 25px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
}
@media (max-width: 767px) {
  .header__logo-wrapper {
    top: 15px;
  }
}
.header__logo {
  width: 600px;
  height: auto;
}
@media (max-width: 1024px) {
  .header__logo {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: 290px;
  }
}
.header__menu {
  position: absolute;
  top: 92px;
}
@media (min-width: 1025px) {
  .is-scrolled .header__menu {
    position: fixed;
    top: 26px;
  }
}
@media (max-width: 1024px) {
  .header__menu {
    position: fixed;
    top: 70px;
  }
}
@media (max-width: 767px) {
  .header__menu {
    text-align: center;
    top: 104px;
    padding-top: 0;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, filter 0.6s ease-out;
    pointer-events: none;
    transform: translateY(15px);
    filter: blur(10px);
    opacity: 0;
  }
}
.is-menu-open .header__menu {
  pointer-events: auto;
  transform: translateY(0);
  filter: blur(0);
  opacity: 1;
}
.header__menu li {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.2px;
}
@media (max-width: 767px) {
  .header__menu li {
    writing-mode: horizontal-tb;
    font-size: 17px;
  }
}
.header__menu li + li {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .header__menu li + li {
    margin-top: 15px;
  }
}
.header__menu a {
  display: inline-block;
  padding: 15px 10px;
  margin: -15px -10px;
}
@media (max-width: 767px) {
  .header__menu a {
    padding: 5px 20px;
    margin: -5px -20px;
  }
}
.header__menu--right {
  left: calc(100% - 52px);
}
@media (min-width: 2000px) {
  .header__menu--right {
    left: calc(50% + 1000px - 52px);
  }
}
@media (max-width: 767px) {
  .header__menu--right {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header__menu--left {
  left: 26px;
}
@media (min-width: 2000px) {
  .header__menu--left {
    left: calc(50% - 1000px + 26px);
  }
}
@media (max-width: 767px) {
  .header__menu--left {
    left: 0;
    right: 0;
    top: 304px;
    margin-left: auto;
    margin-right: auto;
  }
}
.header__menu-sns {
  position: absolute;
  left: 24px;
  top: 646px;
}
@media (min-width: 1025px) {
  .is-scrolled .header__menu-sns {
    position: fixed;
    top: 579px;
  }
}
@media (min-width: 2000px) {
  .header__menu-sns {
    left: calc(50% - 1000px + 24px);
  }
}
@media (max-width: 1024px) {
  .header__menu-sns {
    position: fixed;
    top: 624px;
  }
}
@media (max-width: 767px) {
  .header__menu-sns {
    top: 485px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, filter 0.6s ease-out;
    transform: translateY(15px);
    filter: blur(10px);
    pointer-events: none;
    opacity: 0;
  }
}
.is-menu-open .header__menu-sns {
  transform: translateY(0);
  pointer-events: auto;
  filter: blur(0);
  opacity: 1;
}
.header__menu-sns ul {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .header__menu-sns ul {
    flex-direction: row;
    justify-content: center;
    padding-bottom: 0;
  }
}
.header__menu-sns li + li {
  margin-top: 5px;
}
@media (max-width: 767px) {
  .header__menu-sns li + li {
    margin-top: 0;
    margin-left: 30px;
  }
}
.header__menu-sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}
.header__sns-logo {
  height: auto;
}
.header__sns-logo--x {
  width: 20px;
}
.header__sns-logo--instagram {
  width: 21px;
}
.header__sns-logo--youtube {
  width: 22px;
}
.header__bar {
  display: none;
}

.front-page {
  text-align: center;
  padding-left: 78px;
  padding-right: 78px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .front-page {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.front-page__top {
  width: 100%;
  padding: 92px 0 40px;
}
@media (max-width: 1024px) {
  .front-page__top {
    padding: 70px 0 40px;
  }
}
@media (max-width: 767px) {
  .front-page__top {
    padding: 47.33px 0 10px;
  }
}
.front-page__top-img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 933.33px;
}
@media (max-width: 767px) {
  .front-page__top-img {
    height: 500px;
  }
}
.front-page__next-stage {
  padding: 12.5px 0 54.5px;
}
@media (max-width: 767px) {
  .front-page__next-stage {
    padding: 2.5px 0 25px;
  }
}
.front-page__next-stage-link {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 22.5px auto 23.5px;
}
@media (max-width: 1024px) {
  .front-page__next-stage-link {
    max-width: 266px;
  }
}
@media (max-width: 767px) {
  .front-page__next-stage-link {
    max-width: 200px;
    margin: 12.5px auto 13.5px;
  }
}
.front-page__next-stage-link--wide {
  max-width: 600px;
}
@media (max-width: 1024px) {
  .front-page__next-stage-link--wide {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .front-page__next-stage-link--wide {
    max-width: 290px;
  }
}
.front-page__next-stage-img {
  width: 100%;
  height: auto;
}
.front-page__news {
  padding: 12.5px 0 60px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .front-page__news {
    padding: 2.5px 0 30px;
  }
}
.front-page__line-lists {
  padding: 22.5px 0 30px;
}
@media (max-width: 767px) {
  .front-page__line-lists {
    padding: 12.5px 0 20px;
  }
}
.front-page__archive {
  padding: 12.5px 0 60px;
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .front-page__archive {
    padding: 2.5px 0 30px;
    max-width: 340px;
  }
}
.front-page__gallery-lists {
  padding: 22.5px 0 24.5px;
}
@media (max-width: 767px) {
  .front-page__gallery-lists {
    padding: 12.5px 0 15px;
  }
}

.page {
  text-align: center;
  overflow: hidden;
  min-height: calc(100vh - 132px);
  padding-top: 216.9493px;
  padding-left: 78px;
  padding-right: 78px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .page {
    padding-top: 177.1328666667px;
  }
}
@media (max-width: 767px) {
  .page {
    min-height: calc(100vh - 101px);
    padding-top: 105.2338283333px;
    padding-right: 25px;
    padding-left: 25px;
    padding-bottom: 40px;
  }
}
.page__inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 72.5px 0 0;
}
@media (max-width: 1024px) {
  .page__inner {
    max-width: 868px;
  }
}
@media (max-width: 767px) {
  .page__inner {
    padding: 32.5px 0 0;
  }
}
.page__inner--single {
  padding: 60px 0 0;
}
@media (max-width: 767px) {
  .page__inner--single {
    padding: 20px 0 0;
  }
}
.page__inner--next {
  padding: 30px 0 0;
}
@media (max-width: 767px) {
  .page__inner--next {
    padding: 20px 0 0;
  }
}
.page__heading {
  width: 600px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page__heading {
    max-width: 868px;
    width: 100%;
  }
}
.page__single-heading {
  margin-bottom: 72.5px;
}
@media (max-width: 767px) {
  .page__single-heading {
    margin-bottom: 32.5px;
  }
}
.page__single-title-wrapper {
  max-width: 900px;
  line-height: 36px;
  margin: 0 auto;
  border-top: 0.5px solid #251e1c;
  border-bottom: 0.5px solid #251e1c;
  position: relative;
}
@media (max-width: 767px) {
  .page__single-title-wrapper {
    line-height: 28px;
    width: 100%;
  }
}
.page__single-time {
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .page__single-time {
    display: none;
  }
}
.page__single-title {
  font-size: 18px;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 1024px) {
  .page__single-title {
    font-weight: 400;
    max-width: 868px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .page__single-title {
    font-size: 14px;
    padding-left: 0;
    padding-right: 0;
  }
}
.page__next-img-wrapper {
  width: 600px;
  margin: 72.5px auto 0;
  position: relative;
}
@media (max-width: 1024px) {
  .page__next-img-wrapper {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .page__next-img-wrapper {
    max-width: 240px;
    width: 100%;
    margin: 32.5px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.page__next-img-wrapper--wide {
  width: 850px;
}
@media (max-width: 1024px) {
  .page__next-img-wrapper--wide {
    width: 566px;
  }
}
@media (max-width: 767px) {
  .page__next-img-wrapper--wide {
    max-width: 340px;
    width: 100%;
  }
}
.page__next-img {
  width: 100%;
  height: auto;
}
.page__next-circle-arrow {
  position: absolute;
  display: block;
  cursor: pointer;
  width: 80px;
  height: auto;
  padding: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 30px);
}
@media (max-width: 1024px) {
  .page__next-circle-arrow {
    left: calc(100% + 20px);
  }
}
@media (max-width: 767px) {
  .page__next-circle-arrow {
    position: relative;
    width: 70px;
    top: 0;
    left: auto;
    transform: none;
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .page__next-circle-arrow--wide {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    margin: 10px auto 0;
  }
}
@media (max-width: 767px) {
  .page__next-circle-arrow--wide {
    width: 70px;
    margin: 0 auto;
  }
}

.category-page__line-inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 72.5px 0 0;
}
@media (max-width: 767px) {
  .category-page__line-inner {
    padding: 32.5px 0 0;
  }
}
.category-page__gallery-inner {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  padding: 72.5px 0 0;
}
@media (max-width: 767px) {
  .category-page__gallery-inner {
    padding: 32.5px 0 0;
  }
}
.category-page__pagenation {
  padding-top: 40px;
  margin-bottom: -6px;
}
@media (max-width: 767px) {
  .category-page__pagenation {
    padding-top: 25px;
    margin-bottom: -2px;
  }
}
.category-page__pagenation--gallery {
  padding-top: 34.5px;
}
@media (max-width: 767px) {
  .category-page__pagenation--gallery {
    padding-top: 20px;
  }
}

.footer {
  text-align: center;
  clear: both;
  font-size: 12px;
  font-weight: 300;
  line-height: 12px;
  padding-top: 20px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .footer {
    font-size: 11px;
    line-height: 11px;
    padding-top: 10px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1025px) {
  .front-page__next-stage-link,
  .gallery-lists__link,
  .line-lists__link,
  .header__menu a,
  .button,
  .header__menu-sns a,
  .pagenation a,
  .page__next-circle-arrow {
    transition: opacity 0.1s;
  }
  .front-page__next-stage-link:hover,
  .gallery-lists__link:hover img {
    opacity: 0.8;
  }
  .line-lists__link:hover,
  .header__menu a:hover,
  .button:hover,
  .gallery-lists__link:hover .gallery-lists__text,
  .pagenation a:hover {
    color: rgba(37, 30, 28, 0.6);
  }
  .button:hover {
    color: rgba(37, 30, 28, 0.6);
    border-color: rgba(37, 30, 28, 0.6);
  }
  .page__next-circle-arrow:hover,
  .header__menu-sns a:hover img {
    opacity: 0.5;
  }
  .editor-cont p a:hover,
  .editor-cont li a:hover,
  .editor-cont dt a:hover,
  .editor-cont dd a:hover,
  .editor-cont td a:hover,
  .editor-cont th a:hover,
  .editor-cont figcaption a:hover {
    border: 3px solid rgba(255, 239, 0, 0.6);
    color: rgba(37, 30, 28, 0.6);
  }
  .editor-cont a.underline:hover,
  .editor-cont .underline a:hover {
    color: rgba(37, 30, 28, 0.6);
    text-decoration-color: rgba(255, 239, 0, 0.6);
  }
}
/* ==========================================================================
    編集領域のスタイル
   ========================================================================== */
.editor-cont {
  /* --- 1. 編集領域内のローカル変数（一箇所に集約） --- */
  /* --- 2. 基本テキスト設定 --- */
  width: 100%;
}
.editor-cont > * {
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .editor-cont > * {
    margin-bottom: 24px;
  }
}
.editor-cont > *:last-child {
  margin-bottom: 0 !important;
}
.editor-cont > *:last-child figcaption {
  margin-bottom: 0 !important;
}
.editor-cont p a,
.editor-cont li a,
.editor-cont dt a,
.editor-cont dd a,
.editor-cont td a,
.editor-cont th a,
.editor-cont figcaption a {
  border: 3px solid #ffef00;
  display: inline-block;
  line-height: 0.8;
  vertical-align: middle;
  padding: 0 2px;
  text-decoration: none;
}
.editor-cont a.underline,
.editor-cont .underline a {
  text-decoration: underline !important;
  text-decoration-color: #ffef00 !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 0px !important;
  -webkit-text-decoration-skip-ink: none !important;
          text-decoration-skip-ink: none !important;
  display: inline !important;
  border: none !important;
  padding: 0 !important;
  line-height: 26px !important;
}
@media (max-width: 767px) {
  .editor-cont a.underline,
  .editor-cont .underline a {
    line-height: 24px !important;
  }
}
.editor-cont p, .editor-cont li, .editor-cont dt, .editor-cont dd, .editor-cont td, .editor-cont th, .editor-cont figcaption {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .editor-cont p, .editor-cont li, .editor-cont dt, .editor-cont dd, .editor-cont td, .editor-cont th, .editor-cont figcaption {
    font-size: 14px;
    line-height: 24px;
  }
}
.editor-cont p, .editor-cont ul, .editor-cont ol {
  margin-top: -5.5px;
  margin-bottom: 20.5px;
}
@media (max-width: 767px) {
  .editor-cont p, .editor-cont ul, .editor-cont ol {
    margin-top: -5px;
    margin-bottom: 19px;
  }
}
.editor-cont {
  /* --- 3. 見出し設定 --- */
}
.editor-cont h2 {
  font-size: 18px;
  line-height: 31px;
  font-weight: 600;
  margin-top: -6.5px;
  margin-bottom: 10.8333333333px;
}
@media (max-width: 767px) {
  .editor-cont h2 {
    font-size: 17px;
    line-height: 30px;
    margin-top: -6.5px;
    margin-bottom: 9.5px;
  }
}
.editor-cont h3, .editor-cont h4, .editor-cont h5, .editor-cont h6 {
  font-size: 15px;
  line-height: 26px;
  font-weight: 600;
  margin-top: -5.5px;
  margin-bottom: 7.5px;
}
@media (max-width: 767px) {
  .editor-cont h3, .editor-cont h4, .editor-cont h5, .editor-cont h6 {
    font-size: 14px;
    line-height: 24px;
    margin-top: -5px;
    margin-bottom: 6px;
  }
}
.editor-cont strong {
  font-weight: 600;
}
.editor-cont .marked {
  display: inline;
  padding: 0 2px;
  margin-left: -2px;
  margin-right: -2px;
  background: linear-gradient(transparent 20%, #ffef00 20%, #ffef00 85%, transparent 85%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.editor-cont {
  /* --- 7. 特殊要素（リスト, 引用, テーブル, ボタン） --- */
}
.editor-cont ul, .editor-cont ol {
  padding-left: 1.5em;
}
.editor-cont ul li + li, .editor-cont ol li + li {
  margin-top: 0.5em;
}
.editor-cont ul ul, .editor-cont ul ol, .editor-cont ol ul, .editor-cont ol ol {
  margin: 0.5em 0;
}
.editor-cont blockquote {
  padding: 0 0 0 1.5em;
  border-left: 2px solid #251e1c;
  font-style: italic;
}
.editor-cont blockquote cite {
  display: block;
  font-size: 12px;
  margin-top: 1em;
  font-style: normal;
  color: rgba(37, 30, 28, 0.6);
}
.editor-cont table {
  width: 100%;
  border-collapse: collapse;
}
.editor-cont table th, .editor-cont table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}
.editor-cont table th {
  background-color: #f9f9f9;
  font-weight: 600;
}
.editor-cont figure img {
  display: block;
}
.editor-cont figure:has(figcaption) {
  margin-bottom: 21.5px;
}
@media (max-width: 767px) {
  .editor-cont figure:has(figcaption) {
    margin-bottom: 20px;
  }
}
.editor-cont figure figcaption {
  font-size: 12px;
  line-height: 21px;
  margin-top: 5.5px;
}
@media (max-width: 767px) {
  .editor-cont figure figcaption {
    font-size: 11px;
    line-height: 19px;
    margin-top: 1px;
  }
}
.editor-cont .wp-block-button__link {
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 6px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  text-decoration: none;
  text-align: center;
  border: 1px solid #251e1c;
  border-radius: 10px;
  background-color: transparent;
  color: #251e1c;
}
@media (max-width: 767px) {
  .editor-cont .wp-block-button__link {
    font-size: 14px;
    line-height: 20px;
    border-radius: 8px;
  }
}
.editor-cont .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
  background: #000;
}
.editor-cont .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.editor-cont figcaption {
  text-align: center;
}
.editor-cont .alignright figcaption {
  text-align: right;
}
.editor-cont .alignleft figcaption {
  text-align: left;
}
.editor-cont .wp-block-image.is-style-image-wide-custom {
  max-width: 100vw !important;
  width: 1006px !important;
  margin-left: 50% !important;
  transform: translateX(-50%) !important;
  padding: 0 78px !important;
}
@media (max-width: 767px) {
  .editor-cont .wp-block-image.is-style-image-wide-custom {
    width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    transform: none !important;
  }
}
.editor-cont .wp-block-image.is-style-image-wide-custom img {
  width: 100% !important;
  height: auto !important;
}
.editor-cont .is-layout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 4px;
  width: 1162px;
  max-width: 100vw;
  padding: 0 78px;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .editor-cont .is-layout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .editor-cont .is-layout-grid {
    padding: 0 25px !important;
    -moz-column-gap: 15px !important;
         column-gap: 15px !important;
    row-gap: -4px !important;
  }
}
.editor-cont .is-layout-grid img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}
.editor-cont hr {
  border: none;
  border-top: 1px solid #251e1c;
  margin: 40px 0;
}
@media (max-width: 767px) {
  .editor-cont hr {
    margin: 30px 0;
  }
}
.editor-cont hr.is-style-hr-short {
  width: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .editor-cont hr.is-style-hr-short {
    width: 30px;
  }
}
.editor-cont p + hr,
.editor-cont h3 + hr,
.editor-cont ul + hr,
.editor-cont ol + hr {
  margin-top: 34.5px;
}
@media (max-width: 767px) {
  .editor-cont p + hr,
  .editor-cont h3 + hr,
  .editor-cont ul + hr,
  .editor-cont ol + hr {
    margin-top: 25px;
  }
}
.editor-cont h2 + hr {
  margin-top: 33.5px;
}
@media (max-width: 767px) {
  .editor-cont h2 + hr {
    margin-top: 23.5px;
  }
}
.editor-cont figure:has(figcaption) + hr {
  margin-top: 35.5px;
}
@media (max-width: 767px) {
  .editor-cont figure:has(figcaption) + hr {
    margin-top: 26px;
  }
}
.editor-cont .inline-xl {
  font-size: 21px;
  line-height: 36px;
}
@media (max-width: 767px) {
  .editor-cont .inline-xl {
    font-size: 20px;
    line-height: 35px;
  }
}
.editor-cont .inline-l {
  font-size: 18px;
  line-height: 31px;
}
@media (max-width: 767px) {
  .editor-cont .inline-l {
    font-size: 17px;
    line-height: 30px;
  }
}
.editor-cont .inline-s {
  font-size: 12px;
  line-height: 21px;
}
@media (max-width: 767px) {
  .editor-cont .inline-s {
    font-size: 11px;
    line-height: 19px;
  }
}
.editor-cont .has-x-large-font-size {
  font-size: 21px !important;
  line-height: 36px !important;
  margin-top: -7.5px;
  margin-bottom: 18.5px;
}
@media (max-width: 767px) {
  .editor-cont .has-x-large-font-size {
    font-size: 20px !important;
    line-height: 35px !important;
    margin-top: -7.5px;
    margin-bottom: 16.5px;
  }
}
.editor-cont .has-large-font-size {
  font-size: 18px !important;
  line-height: 31px !important;
  margin-top: -6.5px;
  margin-bottom: 19.5px;
}
@media (max-width: 767px) {
  .editor-cont .has-large-font-size {
    font-size: 17px !important;
    line-height: 30px !important;
    margin-top: -6.5px;
    margin-bottom: 17.5px;
  }
}
.editor-cont .has-medium-font-size {
  font-size: 15px !important;
  line-height: 26px !important;
  margin-top: -5.5px;
  margin-bottom: 20.5px;
}
@media (max-width: 767px) {
  .editor-cont .has-medium-font-size {
    font-size: 14px !important;
    line-height: 24px !important;
    margin-top: -5px;
    margin-bottom: 19px;
  }
}
.editor-cont .has-small-font-size {
  font-size: 12px !important;
  line-height: 21px !important;
  margin-top: -4.5px;
  margin-bottom: 21.5px;
}
@media (max-width: 767px) {
  .editor-cont .has-small-font-size {
    font-size: 11px !important;
    line-height: 19px !important;
    margin-top: -4px;
    margin-bottom: 20px;
  }
}
.editor-cont .is-style-margin-xxl {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .editor-cont .is-style-margin-xxl {
    margin-bottom: 60px;
  }
}
.editor-cont .has-x-large-font-size.is-style-margin-xxl {
  margin-bottom: 72.5px;
}
@media (max-width: 767px) {
  .editor-cont .has-x-large-font-size.is-style-margin-xxl {
    margin-bottom: 52.5px;
  }
}
.editor-cont h2.is-style-margin-xl,
.editor-cont .has-large-font-size.is-style-margin-xl {
  margin-bottom: 73.5px;
}
@media (max-width: 767px) {
  .editor-cont h2.is-style-margin-xl,
  .editor-cont .has-large-font-size.is-style-margin-xl {
    margin-bottom: 53.5px;
  }
}
.editor-cont p.is-style-margin-xxl,
.editor-cont ul.is-style-margin-xxl,
.editor-cont ol.is-style-margin-xxl,
.editor-cont h3.is-style-margin-xxl,
.editor-cont .has-medium-font-size.is-style-margin-xxl {
  margin-bottom: 74.5px;
}
@media (max-width: 767px) {
  .editor-cont p.is-style-margin-xxl,
  .editor-cont ul.is-style-margin-xxl,
  .editor-cont ol.is-style-margin-xxl,
  .editor-cont h3.is-style-margin-xxl,
  .editor-cont .has-medium-font-size.is-style-margin-xxl {
    margin-bottom: 55px;
  }
}
.editor-cont figure:has(figcaption).is-style-margin-xxl,
.editor-cont .has-small-font-size.is-style-margin-xxl {
  margin-bottom: 75.5px;
}
@media (max-width: 767px) {
  .editor-cont figure:has(figcaption).is-style-margin-xxl,
  .editor-cont .has-small-font-size.is-style-margin-xxl {
    margin-bottom: 56px;
  }
}
.editor-cont .is-style-margin-xl {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .editor-cont .is-style-margin-xl {
    margin-bottom: 40px;
  }
}
.editor-cont .has-x-large-font-size.is-style-margin-xl {
  margin-bottom: 52.5px;
}
@media (max-width: 767px) {
  .editor-cont .has-x-large-font-size.is-style-margin-xl {
    margin-bottom: 32.5px;
  }
}
.editor-cont h2.is-style-margin-xl,
.editor-cont .has-large-font-size.is-style-margin-xl {
  margin-bottom: 53.5px;
}
@media (max-width: 767px) {
  .editor-cont h2.is-style-margin-xl,
  .editor-cont .has-large-font-size.is-style-margin-xl {
    margin-bottom: 33.5px;
  }
}
.editor-cont p.is-style-margin-xl,
.editor-cont ul.is-style-margin-xl,
.editor-cont ol.is-style-margin-xl,
.editor-cont h3.is-style-margin-xl,
.editor-cont .has-medium-font-size.is-style-margin-xl {
  margin-bottom: 54.5px;
}
@media (max-width: 767px) {
  .editor-cont p.is-style-margin-xl,
  .editor-cont ul.is-style-margin-xl,
  .editor-cont ol.is-style-margin-xl,
  .editor-cont h3.is-style-margin-xl,
  .editor-cont .has-medium-font-size.is-style-margin-xl {
    margin-bottom: 35px;
  }
}
.editor-cont figure:has(figcaption).is-style-margin-xl,
.editor-cont .has-small-font-size.is-style-margin-xl {
  margin-bottom: 55.5px;
}
@media (max-width: 767px) {
  .editor-cont figure:has(figcaption).is-style-margin-xl,
  .editor-cont .has-small-font-size.is-style-margin-xl {
    margin-bottom: 36px;
  }
}
.editor-cont .is-style-margin-l {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .editor-cont .is-style-margin-l {
    margin-bottom: 30px;
  }
}
.editor-cont h2.is-style-margin-l,
.editor-cont .has-x-large-font-size.is-style-margin-l {
  margin-bottom: 33.5px;
}
@media (max-width: 767px) {
  .editor-cont h2.is-style-margin-l,
  .editor-cont .has-x-large-font-size.is-style-margin-l {
    margin-bottom: 23.5px;
  }
}
.editor-cont p.is-style-margin-l,
.editor-cont ul.is-style-margin-l,
.editor-cont ol.is-style-margin-l,
.editor-cont h3.is-style-margin-l,
.editor-cont .has-medium-font-size.is-style-margin-l {
  margin-bottom: 34.5px;
}
@media (max-width: 767px) {
  .editor-cont p.is-style-margin-l,
  .editor-cont ul.is-style-margin-l,
  .editor-cont ol.is-style-margin-l,
  .editor-cont h3.is-style-margin-l,
  .editor-cont .has-medium-font-size.is-style-margin-l {
    margin-bottom: 25px;
  }
}
.editor-cont figure:has(figcaption).is-style-margin-l,
.editor-cont .has-small-font-size.is-style-margin-l {
  margin-bottom: 35.5px;
}
@media (max-width: 767px) {
  .editor-cont figure:has(figcaption).is-style-margin-l,
  .editor-cont .has-small-font-size.is-style-margin-l {
    margin-bottom: 26px;
  }
}
.editor-cont .is-style-margin-none {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .editor-cont .is-style-margin-none {
    margin-bottom: 0;
  }
}

/* ==========================================================================
    Smart Sliderの設定
   ========================================================================== */
.editor-cont .n2-ss-slider {
  max-width: 100vw !important;
  width: 1006px !important;
  padding: 0 78px;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .editor-cont .n2-ss-slider {
    width: 100% !important;
    padding: 0 0;
  }
}

/* ==========================================================================
    トップページ用スライダーの設定
   ========================================================================== */
.front-page .custom-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  max-height: 933.33px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 767px) {
  .front-page .custom-slider {
    height: 500px;
  }
}
.front-page .slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  /* フェードの速度：1.5秒かけてふわっと切り替わる */
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}
.front-page {
  /* 表示されている画像 */
}
.front-page .slider-item.is-active {
  opacity: 1;
  z-index: 1;
}

/* ==========================================================================
     トップページのカスタムフィールド「余白なし」を選択した場合の処理
   ========================================================================== */
@media (max-width: 767px) {
  .front-page__next-stage--no-padding {
    margin-left: -25px;
    margin-right: -25px;
  }
}

/* ==========================================================================
     自作ライトボックスの設定
   ========================================================================== */
.page__next-img {
  cursor: zoom-in;
}

.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

.custom-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.custom-lightbox__content {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

/* 親要素に .is-active がついたときに中身を等倍にする設定 */
.is-active .custom-lightbox__content {
  transform: scale(1);
}

.has-flyer-shadow img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
     デフォルトのライトボックスの改造
   ========================================================================== */
/* ライトボックスのアイコンボタンを非表示にする */
.wp-lightbox-container button {
  display: none !important;
}

/* 標準ライトボックス内の閉じるボタン（×）を非表示にする */
.wp-lightbox-overlay .close-button {
  display: none !important;
}

/* ==========================================================================
    ANIMATION SETTINGS
   ========================================================================== */
.header__logo-wrapper,
.header__bar,
.hamburger {
  opacity: 1;
  filter: none;
}
.body--front-page .header__logo-wrapper,
.body--front-page .header__bar,
.body--front-page .hamburger {
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.8s ease-out, filter 1s ease-out;
}
.is-loaded .header__logo-wrapper,
.is-loaded .header__bar,
.is-loaded .hamburger {
  opacity: 1;
  filter: blur(0);
}

@media (min-width: 1025px) {
  .header__menu,
  .header__menu-sns {
    opacity: 0;
    filter: none;
    transition: opacity 0.8s ease-out;
  }
  .body--front-page .header__menu,
  .body--front-page .header__menu-sns {
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.8s ease-out, filter 1s ease-out;
  }
  .is-loaded .header__menu,
  .is-loaded .header__menu-sns {
    opacity: 1;
    filter: blur(0);
  }
}
main,
.footer {
  opacity: 0;
  filter: none;
  transition: opacity 0.8s ease-out;
}
.body--front-page main,
.body--front-page .footer {
  filter: blur(20px);
  transition: opacity 0.8s ease-out, filter 1s ease-out;
}
.is-loaded main,
.is-loaded .footer {
  opacity: 1;
  filter: blur(0);
  transform: translateZ(0);
}/*# sourceMappingURL=styles.css.map */