@charset "UTF-8";
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.delighter.fadeIn {
  transition: all 1s ease-in-out;
  opacity: 0;
}

.delighter.fadeIn.started {
  opacity: 1;
}

.delighter.fadeInUp {
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition: all 0.75s ease-out;
}

.delighter.fadeInUp.started {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

ï .delighter.slideR {
  transform: translate3d(20px, 0px, 0);
  opacity: 0;
  transition: all 0.75s ease-out;
}

.delighter.slideR.started {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.delighter.slideL {
  transform: translate3d(-20px, 0px, 0);
  opacity: 0;
  transition: all 0.75s ease-out;
}

.delighter.slideL.started {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

:root {
  --container-width: 1200px;
  --breakout-size: calc((100vw - var(--container-width)) / 2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
}

body {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  min-height: 100%;
  background-image: url(../img/common/bg_img_01.webp);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  body {
    font-size: 1rem;
  }
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 960px) {
  .wrap {
    padding: 0 1.25rem;
  }
}

.wrap-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 960px) {
  .wrap-narrow {
    padding: 0 1.25rem;
  }
}

.wrap-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 960px) {
  .wrap-wide {
    padding: 0 1.25rem;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.mt0 {
  margin-top: 0 !important;
}

/* Header
--------------------------------------------- */
.l-header {
  position: fixed !important;
  top: 0;
  z-index: 100;
  background-color: transparent;
  box-shadow: none !important;
}
.l-header__logo {
  margin: 0 !important;
  padding: 0 !important;
}
.l-header__logo .c-headLogo__link {
  display: inline-block;
  padding: 0 !important;
}
@media screen and (max-width: 600px) {
  .l-header__logo .c-headLogo__link {
    background-color: rgba(255, 255, 255, 0.75);
  }
}
.l-header__gnav {
  display: none !important;
}
.l-header__menuBtn {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(208, 169, 0, 0.75);
  color: #00152D;
}
.l-header__menuBtn .c-iconBtn__icon {
  font-size: 32px;
}
@media screen and (max-width: 600px) {
  .l-header__menuBtn .c-iconBtn__icon {
    font-size: 24px;
  }
}
.l-header__menuBtn .c-iconBtn__label {
  font-size: 12px;
}

/* sp Menu
--------------------------------------------- */
.p-spMenu {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@media (min-width: 960px) {
  .p-spMenu {
    display: block !important;
  }
}
.p-spMenu__inner {
  max-width: 480px;
  background-image: url(../img/common/bg_footer.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-spMenu__inner::before {
  background: transparent !important;
}
.p-spMenu__closeBtn .c-iconBtn__icon {
  color: #FFFFFF;
}
.p-spMenu__nav .menu-item a {
  padding: 1.25rem 0;
  color: #D0A900;
  font-size: 0.9325rem;
  font-family: "Shippori Mincho", serif;
  text-align: left;
}
.p-spMenu__nav .menu-item a::before {
  right: 0;
  left: auto;
}
.p-spMenu__foot {
  margin-top: 2.5rem;
}
@media screen and (max-width: 600px) {
  .p-spMenu__foot {
    display: none;
  }
}
.p-spMenu .spMenu-btn {
  display: block;
  width: 100%;
  height: 72px;
}
.p-spMenu .spMenu-btn__list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 0 0.5rem;
}
.p-spMenu .spMenu-btn__item {
  width: 100%;
  text-align: center;
}
.p-spMenu .spMenu-btn__item.line a {
  background-color: #06C755;
}
.p-spMenu .spMenu-btn__item a {
  display: block;
  width: 100%;
  height: 68px;
  margin: 2px auto;
  padding: 6px 0;
  border-radius: 6px;
  background-color: #479BB3;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 5%;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
}
.p-spMenu .spMenu-btn__item a:active {
  border-bottom: none;
  transform: translateY(2px);
}
.p-spMenu .spMenu-btn__item a:hover {
  opacity: 85%;
  filter: opacity(85%);
}
.p-spMenu .spMenu-btn__item a i {
  display: block;
  margin: 6px 0;
  color: #FFFFFF;
  font-size: 1.25rem;
}

/* Footer
--------------------------------------------- */
.site-footer {
  position: relative;
  padding: 5rem 0 1.875rem;
  background-image: url(../img/common/bg_footer.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #00152D;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 600px) {
  .site-footer {
    padding: 3.75rem 0 5rem;
  }
}
.site-footer-head {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 960px) {
  .site-footer-head {
    flex-direction: column;
  }
}
.site-footer-head__logo {
  width: 128px;
}
.site-footer-head__logo a {
  display: block;
  margin: 0 auto;
}
.site-footer-head__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer-head-menu {
  width: calc(100% - 210px);
}
@media screen and (max-width: 960px) {
  .site-footer-head-menu {
    width: 100%;
  }
}
.site-footer-navList {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 0.9325rem 1.25rem;
}
@media screen and (max-width: 960px) {
  .site-footer-navList {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .site-footer-navList {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 1.25rem;
  }
}
.site-footer-navList li {
  list-style-type: none;
}
.site-footer-navList li a {
  position: relative;
  color: #D0A900;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 5%;
  transition: all 0.5s ease-in-out;
}
.site-footer-navList li a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.site-footer-foot {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 3.75rem;
  padding-top: 1.875rem;
  border-top: 1px solid #D0A900;
}
@media screen and (max-width: 600px) {
  .site-footer-foot {
    flex-direction: column;
    gap: 0.625rem 1.25rem;
    margin-top: 1.875rem;
    padding-top: 1.25rem;
  }
}
.site-footer-foot__submenu {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
}
@media screen and (max-width: 600px) {
  .site-footer-foot__submenu {
    justify-content: center;
    gap: 0.25rem 1.25rem;
  }
}
.site-footer-foot__submenu li {
  list-style-type: none;
}
.site-footer-foot__submenu li a {
  position: relative;
  color: #D0A900;
  font-size: 0.9325rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 5%;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 600px) {
  .site-footer-foot__submenu li a {
    font-size: 0.875rem;
  }
}
.site-footer-foot__submenu li a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.site-footer-foot__copy {
  color: #D0A900;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  text-align: right;
  letter-spacing: 5%;
}

/* Fixed Bottom button
--------------------------------------------- */
.fixed-btn {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 100%;
  height: 60px;
}
@media screen and (max-width: 600px) {
  .fixed-btn {
    display: block;
  }
}
.fixed-btn__list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 0 0.5rem;
}
.fixed-btn__item {
  width: 100%;
  text-align: center;
}
.fixed-btn__item.line a {
  background-color: #06C755;
}
.fixed-btn__item a {
  display: block;
  width: 100%;
  height: 56px;
  margin: 2px auto;
  padding: 4px 0;
  border-radius: 6px;
  background: linear-gradient(134deg, rgb(178, 155, 105) 0%, rgb(221, 206, 158) 24%, rgb(226, 213, 166) 44%, rgb(252, 242, 218) 100%);
  color: #00152D;
  font-size: 0.9325rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 5%;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
}
.fixed-btn__item a:active {
  border-bottom: none;
  transform: translateY(2px);
}
.fixed-btn__item a:hover {
  opacity: 85%;
  filter: opacity(85%);
}
.fixed-btn__item a i {
  display: block;
  margin: 4px 0;
  color: #00152D;
  font-size: 1.125rem;
}

/* post title
--------------------------------------------- */
.c-pageTitle {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 5%;
}
@media screen and (max-width: 600px) {
  .c-pageTitle {
    top: -0.625rem;
    text-align: center;
  }
}
.c-pageTitle__subTitle {
  position: relative;
  font-size: 1.5rem;
  font-family: "Ballet", cursive;
  font-weight: 400;
  line-height: 0.2;
  letter-spacing: 10%;
}
@media screen and (max-width: 600px) {
  .c-pageTitle__subTitle {
    display: block;
    top: 0.5rem;
    font-size: 1.375rem;
  }
}

/* post content
--------------------------------------------- */
.post_content .headline-block {
  margin-bottom: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .post_content .headline-block {
    margin-bottom: 2.5rem;
  }
}
.post_content .headline-block.eng-wh p {
  color: #FFFFFF;
}
.post_content .headline-block.clr-mb h2 {
  color: #00152D;
}
.post_content .headline-block.clr-mb p {
  color: rgba(0, 21, 45, 0.1);
}
.post_content .headline-block.clr-pk h2 {
  color: #EB7494;
}
.post_content .headline-block.clr-pk p {
  color: rgba(235, 116, 148, 0.1);
}
.post_content .headline-block h2 {
  color: #D0A900;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 5%;
}
@media screen and (max-width: 960px) {
  .post_content .headline-block h2 {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 600px) {
  .post_content .headline-block h2 {
    font-size: 1.5rem;
  }
}
.post_content .headline-block p {
  color: rgba(192, 192, 192, 0.35);
  font-size: 60px;
  font-family: "Ballet", cursive;
  font-weight: 400;
  line-height: 0.2;
  letter-spacing: 10%;
}
@media screen and (max-width: 600px) {
  .post_content .headline-block p {
    font-size: 2.25rem;
  }
}
.post_content p {
  line-height: 1.8;
}
.post_content li,
.post_content dt,
.post_content dd {
  line-height: 1.8;
}
.post_content .wp-block-table tbody th,
.post_content .wp-block-table tbody td {
  padding: 1.25rem 0.9325rem;
  border: none;
}
@media screen and (max-width: 600px) {
  .post_content .wp-block-table tbody th,
  .post_content .wp-block-table tbody td {
    padding: 0.9325rem 0.625rem;
    border-bottom: none;
  }
}
.post_content .wp-block-table tbody th {
  border-bottom: 2px solid rgba(0, 21, 45, 0.35);
  background-color: transparent;
}
.post_content .wp-block-table tbody td {
  border-bottom: 1px solid rgba(0, 21, 45, 0.1);
}

/* post content
--------------------------------------------- */
.archive .l-content {
  justify-content: center;
  flex-direction: column;
  padding-top: 6.25rem;
}
@media screen and (max-width: 600px) {
  .archive .l-content {
    padding-top: 3.75rem;
  }
}
.archive .l-mainContent {
  position: relative;
  width: 100%;
  max-width: 832px;
  margin-inline: auto;
}
.archive .l-mainContent__title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  padding: 5rem 0 1.25rem;
}
.archive .l-mainContent__title .c-pageTitle {
  position: relative;
  color: #00152D;
  font-size: 1.625rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 960px) {
  .archive .l-mainContent__title .c-pageTitle {
    font-size: 1.375rem;
  }
}
.archive .l-mainContent__title .c-pageTitle::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -80px;
  width: 64px;
  height: 64px;
  background-image: url("../img/common/icon_onsen.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  visibility: visible;
}
@media screen and (max-width: 960px) {
  .archive .l-mainContent__title .c-pageTitle::after {
    top: -60px;
    width: 48px;
    height: 48px;
  }
}
.archive .l-mainContent .p-postList__link {
  align-items: center;
}
.archive .l-mainContent .p-postList__body {
  align-items: flex-start;
  flex-direction: column;
}

/* single content
--------------------------------------------- */
.single .l-content {
  justify-content: center;
  flex-direction: column;
  padding-top: 6.25rem;
}
@media screen and (max-width: 600px) {
  .single .l-content {
    padding-top: 3.75rem;
  }
}
.single .l-mainContent {
  position: relative;
  width: 100%;
  max-width: 832px;
  margin-inline: auto;
}
.single .l-mainContent__title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  padding: 5rem 0 1.25rem;
}
.single .l-mainContent__title .c-pageTitle {
  position: relative;
  color: #00152D;
  font-size: 1.625rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 960px) {
  .single .l-mainContent__title .c-pageTitle {
    font-size: 1.375rem;
  }
}
.single .l-mainContent__title .c-pageTitle::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -80px;
  width: 64px;
  height: 64px;
  background-image: url("../img/common/icon_onsen.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  visibility: visible;
}
@media screen and (max-width: 960px) {
  .single .l-mainContent__title .c-pageTitle::after {
    top: -60px;
    width: 48px;
    height: 48px;
  }
}
.single .l-mainContent .c-postTitle {
  margin-top: 3.75rem;
}
@media screen and (max-width: 600px) {
  .single .l-mainContent .c-postTitle {
    margin-top: 2.5rem;
  }
}
.single .l-mainContent .c-postTitle__ttl {
  color: #00152D;
  font-size: 1.625rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .single .l-mainContent .c-postTitle__ttl {
    font-size: 1.375rem;
  }
}
.single .l-mainContent .p-articleThumb {
  margin: 1.25rem 0 1.875rem 0;
}
@media screen and (max-width: 600px) {
  .single .l-mainContent .p-articleThumb {
    margin-bottom: 1.25rem;
  }
}
.single .l-mainContent .wp-block-image {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 600px) {
  .single .l-mainContent .wp-block-image {
    margin-bottom: 1.25rem;
  }
}
.single .l-mainContent .wp-block-image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.single .l-articleBottom__section {
  margin-top: 2.5rem;
}
.single .post_content {
  margin: 3.75rem 0;
}
.single .post_content h2 {
  position: relative;
  margin-top: 3.75rem;
  margin-bottom: 1.875rem;
  padding: 0.9325rem 1.25rem;
  background-color: #D0A900;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .single .post_content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
  }
}
.single .post_content h3 {
  position: relative;
  margin-top: 3.75rem;
  margin-bottom: 1.875rem;
  padding: 0.25rem 0.9325rem;
  border-left: 4px solid #D0A900;
  color: #00152D;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .single .post_content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
  }
}
.single .post_content h4 {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 1.875rem;
  color: #479BB3;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .single .post_content h4 {
    margin-top: 2.4rem;
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
  }
}
.single .post_content h4::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -0.625rem;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #479BB3;
}
.single .post_content p {
  color: #00152D;
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.8;
  letter-spacing: 2.5%;
}
@media screen and (max-width: 960px) {
  .single .post_content p {
    line-height: 1.6;
  }
}
.single .post_content a {
  color: #00152D;
  text-decoration: underline;
}
.single .post_content a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.single .post_content ul {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 600px) {
  .single .post_content ul {
    margin-bottom: 1.25rem;
  }
}
.single .post_content ul li {
  margin: 0 0.5rem 0.625rem;
  color: #00152D;
  font-size: 1rem;
  font-weight: 500;
}
.single .post_content ul li::marker {
  background-color: #479BB3;
  color: #479BB3;
}
.single .post_content ol {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 600px) {
  .single .post_content ol {
    margin-bottom: 1.25rem;
  }
}
.single .post_content ol li {
  position: relative;
  margin: 0 0.5rem 0.625rem;
  color: #00152D;
  font-size: 1rem;
  font-weight: 500;
}
.single .post_content ol li::marker {
  color: #479BB3;
}
.single .post_content table {
  width: 100%;
  margin: 0 auto 1.875rem;
  border-collapse: collapse;
}
@media screen and (max-width: 600px) {
  .single .post_content table {
    margin-bottom: 1.25rem;
  }
}
.single .post_content table thead {
  border: none;
}
.single .post_content table thead th {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(68, 68, 68, 0.35);
  background-color: #00152D;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .single .post_content table thead th {
    padding: 0.25rem 1rem;
  }
}
.single .post_content table tbody th {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(68, 68, 68, 0.35);
  background-color: #F8F7F7;
  color: #00152D;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .single .post_content table tbody th {
    padding: 0.25rem 1rem;
  }
}
.single .post_content table tbody td {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(68, 68, 68, 0.35);
  color: #00152D;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .single .post_content table tbody td {
    padding: 0.25rem 1rem;
  }
}
.single .post_content blockquote {
  width: 100%;
  margin-bottom: 1.875rem;
  padding: 2.5rem 1.25rem 2.5rem 2.5rem;
  border: none !important;
  background-color: #F8F7F7;
}
@media screen and (max-width: 600px) {
  .single .post_content blockquote {
    margin-bottom: 1.25rem;
    padding: 1.875rem 1.25rem 1.875rem 2.5rem;
  }
}
.single .post_content blockquote cite {
  color: #00152D;
}
.single .post_content .p-cast-content {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem 3.75rem;
}
@media screen and (max-width: 600px) {
  .single .post_content .p-cast-content {
    flex-direction: column;
  }
}
.single .post_content .p-cast-content__thumb {
  width: 400px;
}
@media screen and (max-width: 600px) {
  .single .post_content .p-cast-content__thumb {
    width: 100%;
  }
}
.single .post_content .p-cast-content__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 15px;
}
.single .post_content .p-cast-content__txt {
  width: calc(100% - 400px);
}
@media screen and (max-width: 600px) {
  .single .post_content .p-cast-content__txt {
    width: 100%;
  }
}
.single .post_content .p-cast-content__days table th,
.single .post_content .p-cast-content__days table td {
  text-align: center;
}
.single .post_content .p-cast-content h2 {
  position: relative;
  margin-top: 0;
  margin-bottom: 1.875rem;
  padding: 0 !important;
  background-color: transparent !important;
  color: #D0A900 !important;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .single .post_content .p-cast-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
  }
}
.single .post_content .p-cast-content h3 {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding: 0.25rem 0.9325rem;
  border-left: 4px solid #D0A900;
  color: #00152D;
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .single .post_content .p-cast-content h3 {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
}
.single .post_content .p-cast-content p {
  margin-top: 1.25rem;
  line-height: 1.6;
}
.single .post_content .p-cast-content p::first-of-type {
  margin-top: 0;
}
.single .post_content .p-cast-foot {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 1.875rem 3.75rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 600px) {
  .single .post_content .p-cast-foot {
    grid-template-columns: auto;
    grid-template-rows: repeat(2, 1fr);
    margin-top: 2.5rem;
  }
}
.single .post_content .p-cast-foot__item a {
  text-decoration: none;
}

/* sidebar
--------------------------------------------- */
.archive #sidebar,
.single #sidebar {
  width: 100% !important;
  max-width: 832px;
  margin-top: 3.75rem;
  margin-inline: auto;
}

.l-sidebar {
  width: 100%;
  margin: 0;
  padding: 0;
}
.l-sidebar .widget_block {
  width: 100%;
  list-style-type: none;
}
.l-sidebar .widget_block .wp-block-heading {
  position: relative;
  padding: 0.25rem 0.9325rem;
  border-left: 4px solid #D0A900;
  color: #00152D;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .l-sidebar .widget_block .wp-block-heading {
    font-size: 1rem;
  }
}
.l-sidebar .widget_block .c-listMenu a {
  padding: 0.9325rem 1.25rem;
  color: #00152D;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.l-sidebar .widget_block .c-listMenu a:hover {
  background-color: transparent;
  color: #D0A900;
}
.l-sidebar .wp-block-latest-posts {
  width: 100%;
  border-top: none !important;
}
.l-sidebar .wp-block-latest-posts li a {
  padding: 0.9325rem 0.625rem;
  color: #00152D;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.l-sidebar .wp-block-latest-posts li a:hover {
  background-color: transparent;
  color: #479BB3;
}

/*
@use "notfound";
*/
/* Button
--------------------------------------------- */
.btn-primary .swell-block-button__link {
  padding: 0.9375rem 1.875rem;
  background: linear-gradient(134deg, rgb(178, 155, 105) 0%, rgb(221, 206, 158) 24%, rgb(226, 213, 166) 44%, rgb(252, 242, 218) 100%);
  color: #00152D;
  font-weight: 600;
}

.btn-blue .swell-block-button__link {
  padding: 0.9375rem 1.875rem;
  background: #00152D;
  color: #FFFFFF;
  font-weight: 600;
}

.btn-accent .swell-block-button__link {
  padding: 0.9375rem 1.875rem;
  background: #EB7494;
  color: #FFFFFF;
  font-weight: 600;
}

.btn-check .swell-block-button__link {
  padding: 1.25rem 1.875rem;
  font-size: 1.25rem;
  letter-spacing: 5%;
}

.link-txt {
  display: block;
  position: relative;
  color: #D0A900;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .link-txt {
    font-size: 1rem;
  }
}
.link-txt:hover {
  opacity: 0.7;
  filter: opacity(70%);
}
.link-txt::after {
  content: "\f35a";
  display: inline-block;
  margin-left: 0.5rem;
  color: #D0A900;
  font-size: 1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

/* cast
--------------------------------------------- */
.p-cast {
  position: relative;
  width: 100%;
  max-width: none !important;
}
.p-cast-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 2.5rem;
}
@media screen and (max-width: 960px) {
  .p-cast-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-cast-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* cast-item
--------------------------------------------- */
.cast-item {
  width: 100%;
}
.cast-item h3 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  text-align: center;
}
.cast-item h3 a {
  color: #D0A900;
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 5%;
}
.cast-item__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1/1;
}
.cast-item__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease-in-out;
}
.cast-item__thumb img:hover {
  transform: scale(1.05);
}
.cast-item__info {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cast-item__info dd {
  font-size: 1rem;
}
.cast-item__info dd::before {
  content: "/";
  display: inline-block;
  padding: 0 0.25rem;
}
.cast-item__info dd:first-of-type::before {
  content: "";
  display: none;
  padding: 0;
}
.cast-item__days {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cast-item__days dt {
  margin-right: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
}
.cast-item__days dd {
  font-size: 1rem;
}
.cast-item__days dd span {
  margin-left: 0.25rem;
  padding: 0.25rem;
  border: 1px solid #D0A900;
  border-radius: 5px;
  background-color: #F8F7F7;
  font-size: 0.9325rem;
}

/* contact
--------------------------------------------- */
.c-contact {
  position: relative;
  width: 100%;
}
.c-contact__inner {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 0;
}
@media screen and (max-width: 960px) {
  .c-contact__inner {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
}
.c-contact__item {
  width: 100%;
  background-color: rgba(36, 33, 42, 0.5);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.c-contact__item.reserve {
  background-image: url(../img/common/contact_img_01.webp);
}
.c-contact__item.contact {
  background-image: url(../img/common/contact_img_02.webp);
}
.c-contact__item h2 {
  position: relative;
  margin-top: 0.625rem;
  margin-bottom: 2.5rem;
  color: #FFFFFF;
  font-size: 1.625rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .c-contact__item h2 {
    font-size: 1.5rem;
  }
}
.c-contact__item h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 40px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 10px;
  transform: translateX(-50%);
}
.c-contact__item i {
  color: #FFFFFF;
  font-size: 2rem;
}
@media screen and (max-width: 960px) {
  .c-contact__item i {
    font-size: 1.625rem;
  }
}
.c-contact__itembox {
  padding: 5rem 2.5rem;
  background-color: rgba(36, 33, 42, 0.3);
  text-align: center;
}
@media screen and (max-width: 960px) {
  .c-contact__itembox {
    padding: 3.75rem 1.25rem;
  }
}
.c-contact__link {
  width: 100%;
  margin-top: 2.5rem;
}
.c-contact__link .link-btn {
  width: 100%;
  max-width: 348px;
}
.c-contact__link .m-top {
  margin-top: 1.25rem;
}
.c-contact-wrap {
  width: 100%;
  padding: 5rem 2.5rem;
  border-radius: 40px;
  background-color: #D8ECF4;
}
@media screen and (max-width: 600px) {
  .c-contact-wrap {
    padding: 3.75rem 0;
  }
}
@media screen and (max-width: 480px) {
  .c-contact-wrap {
    padding: 3.75rem 0;
  }
}
.c-contact-wrap__content {
  width: 100%;
  margin-top: 2.5rem;
}
.c-contact-wrap__content .request-list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.5rem 1rem;
}
@media screen and (max-width: 960px) {
  .c-contact-wrap__content .request-list {
    flex-wrap: wrap;
  }
}
.c-contact-wrap__content .request-list li {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  border: 1px solid #479BB3;
  border-radius: 8px;
  background-color: #D8ECF4;
  color: #479BB3;
  font-weight: 500;
  text-align: center;
  list-style: none;
}
@media screen and (max-width: 600px) {
  .c-contact-wrap__content .request-list li {
    width: 100%;
  }
}
.c-contact-wrap__content p {
  margin-top: 1.875rem;
  color: #00152D;
  font-size: 0.9375rem;
  font-weight: 400;
  text-align: center;
  line-height: 2;
}
.c-contact-wrap__content .line {
  width: 100%;
  max-width: 800px;
  margin: 1.875rem auto;
  border: none;
  border-top: 1px dotted #00152D;
}
.c-contact-wrap__links {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 1.5rem 50px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .c-contact-wrap__links {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .c-contact-wrap__links {
    width: 100%;
  }
}
.c-contact-wrap__link {
  width: 100%;
}
.c-contact-wrap__link .link-btn {
  width: 345px;
}
@media screen and (max-width: 480px) {
  .c-contact-wrap__link .link-btn {
    width: 100%;
    max-width: 345px;
  }
}
.c-contact-wrap__link p {
  margin-top: 0.5rem;
  color: #00152D;
  font-size: 0.9375rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .c-contact-wrap__link p {
    font-size: 0.875rem;
  }
}

/* snow monkery form
--------------------------------------------- */
.snow-monkey-form {
  width: 100%;
}
.snow-monkey-form .smf-item__col--label {
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .snow-monkey-form .smf-item__col--label {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.625rem;
  }
}
.snow-monkey-form .smf-item__label {
  padding-top: 0.25rem;
  color: #00152D;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .snow-monkey-form .smf-item__label {
    padding-top: 0;
  }
}
.snow-monkey-form .smf-item__description {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0 !important;
  color: #EB7494;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: 1px;
}
@media screen and (max-width: 960px) {
  .snow-monkey-form .smf-item__description {
    margin: 0 !important;
  }
}
.snow-monkey-form .smf-item__controls {
  color: #00152D;
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .snow-monkey-form .smf-item__controls {
    display: block;
    width: 100%;
    margin-top: 6px;
  }
}
.snow-monkey-form .smf-item__controls input[type=text],
.snow-monkey-form .smf-item__controls input[type=email],
.snow-monkey-form .smf-item__controls input[type=tel] {
  width: 100%;
  padding: 0.9325rem 1rem;
  border-radius: 4px;
  color: #00152D;
  font-size: 1rem;
}
.snow-monkey-form .smf-item__controls .smf-textarea-control__control {
  width: 100%;
  padding: 0.9325rem 1rem;
  border-radius: 4px;
  color: #00152D;
  font-size: 1rem;
}
.snow-monkey-form .smf-item__controls .smf-radio-button-control,
.snow-monkey-form .smf-item__controls .smf-checkbox-control {
  align-items: center !important;
}
.snow-monkey-form .smf-item__controls input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  margin-top: 0 !important;
  border-radius: 50%;
  vertical-align: -10px;
}
.snow-monkey-form .smf-item__controls input[type=radio]:checked {
  background: transparent;
}
.snow-monkey-form .smf-item__controls input[type=radio]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D0A900;
  transform: translate(-50%, -50%);
}
.snow-monkey-form .smf-item__controls input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  vertical-align: -6px;
}
.snow-monkey-form .smf-item__controls input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 8px;
  height: 12px;
  border-right: 2px solid #D0A900;
  border-bottom: 2px solid #D0A900;
  transform: rotate(40deg) skewY(10deg) translateY(-50%);
  transform-origin: center right;
}
.snow-monkey-form .smf-item__controls .smf-select-control__control {
  width: 100%;
  padding: 0.9325rem 1.5rem;
  border-radius: 4px;
  color: #00152D;
  font-size: 1rem;
}
.snow-monkey-form .smf-item__controls .wp-block-group {
  margin-bottom: 10px;
}
.snow-monkey-form .smf-item__controls .wp-block-group p {
  margin-top: 0 !important;
}

.smf-action .smf-button-control__control {
  display: block;
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0.9325rem 0 1rem 0;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  letter-spacing: 5%;
  transition: all 0.3s ease-in-out;
}
.smf-action .smf-button-control__control[data-action=confirm], .smf-action .smf-button-control__control[data-action=complete] {
  border: 2px solid #D0A900;
  background: #D0A900;
  color: #FFFFFF;
}
.smf-action .smf-button-control__control[data-action=confirm]:hover, .smf-action .smf-button-control__control[data-action=complete]:hover {
  border: 2px solid #E1D256;
  background-color: #E1D256;
  color: #FFFFFF;
}

/* post list
--------------------------------------------- */
.p-postList {
  border-top: none !important;
}
.p-postList__link {
  padding: 0.9325rem 0.625rem !important;
}
.p-postList__body {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem 1.25rem;
}
.p-postList__meta {
  margin: 0 !important;
  font-size: 0.75rem;
}

/* home
--------------------------------------------- */
.top #content {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* visual
--------------------------------------------- */
.f-visual__txt {
  align-self: center;
  position: relative;
  opacity: 0;
  animation: fadeInLeft 1s ease 0.5s forwards;
  -webkit-animation: fadeInLeft 1s ease 0.5s forwards;
}
@media screen and (max-width: 960px) {
  .f-visual__txt {
    padding-top: 5rem;
  }
}
.f-visual__txt h2 {
  margin-bottom: 2rem;
  color: #00152D;
  font-size: 50px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  text-shadow: 2px 2px 6px rgba(0, 21, 45, 0.2);
  line-height: 1.6;
  letter-spacing: 5% !important;
}
@media screen and (max-width: 1280px) {
  .f-visual__txt h2 {
    font-size: 4vw;
  }
}
@media (max-width: 768px) {
  .f-visual__txt h2 {
    font-size: 9.6vw;
    text-align: center !important;
  }
}
.f-visual__txt p {
  font-size: 1.5rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 21, 45, 0.15);
  line-height: 2;
}
@media (max-width: 768px) {
  .f-visual__txt p {
    font-size: 5.4vw;
    text-align: center;
  }
}
.f-visual__image {
  opacity: 0;
  animation: fadeInUp 1s ease 0s forwards;
  -webkit-animation: fadeInUp 1s ease 0s forwards;
}

/* about
--------------------------------------------- */
.f-about-wrap {
  width: 100%;
  padding: 7.5rem 3.75rem 6.25rem;
  border-radius: 25px;
  background-image: url(../img/front/about_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 960px) {
  .f-about-wrap {
    padding: 6.25rem 2.5rem 5rem;
  }
}
@media screen and (max-width: 600px) {
  .f-about-wrap {
    padding: 5rem 1.25rem 3.75rem;
  }
}
.f-about-wrap figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  border-radius: 25px;
}
.f-about-wrap__txt p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .f-about-wrap__txt p {
    font-size: 1rem;
    text-align: left;
  }
}

/* promise
--------------------------------------------- */
.f-promise {
  position: relative;
}
.f-promise .wp-block-columns {
  gap: 1.25rem 2.5rem !important;
  width: 100%;
  margin-top: 3.75rem;
}
.f-promise__item {
  padding: 1.25rem;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.7);
}
.f-promise__item:nth-child(2) {
  transition-delay: 0.2s;
}
@media screen and (max-width: 600px) {
  .f-promise__item:nth-child(2) {
    transition-delay: 0;
  }
}
.f-promise__item:nth-child(3) {
  transition-delay: 0.4s;
}
@media screen and (max-width: 600px) {
  .f-promise__item:nth-child(3) {
    transition-delay: 0;
  }
}
.f-promise__item .wp-block-image {
  position: relative;
}
.f-promise__item .wp-block-image::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -10px;
  left: -10px;
  width: 45%;
  height: 45%;
  border-top: 1px solid #D0A900;
  border-left: 1px solid #D0A900;
  pointer-events: none;
}
.f-promise__item .wp-block-image::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 45%;
  height: 45%;
  border-right: 1px solid #D0A900;
  border-bottom: 1px solid #D0A900;
  pointer-events: none;
  visibility: visible;
}
.f-promise__item .wp-block-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
.f-promise__item h3 {
  color: #EB7494;
  text-align: center;
}

/* feeling
--------------------------------------------- */
.f-feeling__before {
  width: 75%;
  max-width: 480px;
  margin-inline: auto;
}
.f-feeling-wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 3.75rem 10rem 3.75rem;
  border-radius: 25px;
  background-image: url(../img/front/about_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 960px) {
  .f-feeling-wrap {
    padding: 3.75rem 5rem 3.75rem;
  }
}
@media screen and (max-width: 600px) {
  .f-feeling-wrap {
    width: 100%;
    padding: 2.5rem 2.5rem 2.5rem;
  }
}
.f-feeling-wrap::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 45%;
  height: 45%;
  border-top: 1px solid #D0A900;
  border-left: 1px solid #D0A900;
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  .f-feeling-wrap::before {
    top: 1.25rem;
    left: 1.25rem;
  }
}
.f-feeling-wrap::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  width: 45%;
  height: 45%;
  border-right: 1px solid #D0A900;
  border-bottom: 1px solid #D0A900;
  pointer-events: none;
  visibility: visible;
}
@media screen and (max-width: 600px) {
  .f-feeling-wrap::after {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}
.f-feeling-list {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.f-feeling-list.is-style-index li::before {
  top: 50%;
  background-color: #EB7494;
  transform: translateY(-50%);
}
.f-feeling-list li {
  margin-bottom: 0.375rem;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .f-feeling-list li {
    font-size: 1rem;
    text-align: left;
  }
}

/* cast
--------------------------------------------- */
.f-cast {
  position: relative;
  overflow: hidden;
}
.f-cast-slider .cast-item {
  margin: 0 0.625rem;
}

/* news
--------------------------------------------- */
.f-news .headline-block h2 {
  text-align: left;
}
@media screen and (max-width: 600px) {
  .f-news .headline-block h2 {
    text-align: center;
  }
}
.f-news .headline-block p {
  text-align: left;
}
@media screen and (max-width: 600px) {
  .f-news .headline-block p {
    text-align: center;
  }
}
.f-news .btn-primary {
  width: -moz-fit-content;
  width: fit-content;
  margin: 2.5rem 0 0 auto;
}
@media screen and (max-width: 600px) {
  .f-news .btn-primary {
    margin: 2.5rem auto 0;
  }
}

/* home
--------------------------------------------- */
.page-id-12 #content,
.page-id-22 #content {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}

/* lower
--------------------------------------------- */
.post_content {
  /* concept */
}
.post_content .l-concept-last .headline-block {
  text-align: left;
}
.post_content .l-concept-last figure img {
  border-radius: 25px 0 0 25px;
}
.post_content .l-concept-joy__txt p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .post_content .l-concept-joy__txt p {
    font-size: 1rem;
  }
}
.post_content .l-concept-feeling .headline-block {
  text-align: left;
}
@media screen and (max-width: 600px) {
  .post_content .l-concept-feeling .headline-block {
    text-align: center;
  }
}
.post_content .l-concept-feeling figure img {
  border-radius: 0 25px 25px 0;
}
@media screen and (max-width: 600px) {
  .post_content .l-concept-same .wp-block-columns {
    flex-direction: column-reverse;
  }
}
.post_content .l-concept-same figure img {
  border-radius: 25px 0 0 25px;
}
.post_content .l-concept-place h2 {
  color: #FFFFFF;
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .post_content .l-concept-place h2 {
    font-size: 1.625rem;
    line-height: 1.6;
  }
}
.post_content {
  /* slow sex */
}
.post_content .l-slowsex-know__txt {
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .post_content .l-slowsex-know__txt {
    font-size: 1rem;
  }
}
.post_content .l-slowsex-know figure img {
  border-radius: 25px;
}
@media screen and (max-width: 600px) {
  .post_content .l-slowsex-know figure img {
    border-radius: 15px;
  }
}
.post_content .l-slowsex-feature__item {
  margin-bottom: 5rem;
}
@media screen and (max-width: 600px) {
  .post_content .l-slowsex-feature__item {
    margin-bottom: 3.75rem;
  }
}
.post_content .l-slowsex-feature__item:last-child {
  margin-bottom: 0 !important;
}
.post_content .l-slowsex-feature__item h3 {
  color: #D0A900;
  font-size: 1.625rem !important;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .post_content .l-slowsex-feature__item h3 {
    font-size: 1.5rem !important;
  }
}
.post_content .l-slowsex-philosophy__txt {
  position: relative;
  margin-inline: auto;
  padding: 5rem 1.25rem;
}
@media screen and (max-width: 600px) {
  .post_content .l-slowsex-philosophy__txt {
    padding: 2.5rem 1.25rem;
  }
}
.post_content .l-slowsex-philosophy__txt::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 45%;
  height: 45%;
  border-top: 1px solid #D0A900;
  border-left: 1px solid #D0A900;
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  .post_content .l-slowsex-philosophy__txt::before {
    top: 0;
    left: 0;
  }
}
.post_content .l-slowsex-philosophy__txt::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  width: 45%;
  height: 45%;
  border-right: 1px solid #D0A900;
  border-bottom: 1px solid #D0A900;
  pointer-events: none;
  visibility: visible;
}
@media screen and (max-width: 600px) {
  .post_content .l-slowsex-philosophy__txt::after {
    right: 0;
    bottom: 0;
  }
}
.post_content .l-slowsex-philosophy__txt p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .post_content .l-slowsex-philosophy__txt p {
    font-size: 1rem;
  }
}
.post_content {
  /* session */
}
.post_content .l-session-txt p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .post_content .l-session-txt p {
    font-size: 1rem;
    text-align: left;
  }
}
.post_content .l-session-after__wrap {
  width: 100%;
  padding: 5rem 3.75rem;
  border-radius: 25px;
  background-image: url(../img/front/about_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 960px) {
  .post_content .l-session-after__wrap {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .post_content .l-session-after__wrap {
    padding: 2.5rem 1.25rem;
  }
}
.post_content .l-session-after__wrap .headline-block p {
  text-align: center;
}
.post_content .l-session-after__txt ul {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.post_content .l-session-after__txt p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .post_content .l-session-after__txt p {
    font-size: 1rem;
    text-align: left;
  }
}
.post_content {
  /* price */
}
.post_content .l-price-txt h3 {
  color: #00152D;
  font-size: 1.625rem !important;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-txt h3 {
    font-size: 1.5rem !important;
  }
}
.post_content .l-price-txt p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-txt p {
    font-size: 1rem;
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .post_content .l-price-txt p.payment {
    text-align: center;
  }
}
.post_content .l-price-txt .swell-block-capbox .cap_box_ttl {
  padding: 1.25rem 0;
  background-color: #00152D;
  color: #D0A900;
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-txt .swell-block-capbox .cap_box_ttl {
    font-size: 1rem;
  }
}
.post_content .l-price-txt .swell-block-capbox .cap_box_content ul {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.post_content .l-price-txt .swell-block-capbox .cap_box_content ul li {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-txt .swell-block-capbox .cap_box_content ul li {
    font-size: 1.125rem;
  }
}
.post_content .l-price-txt figure {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}
.post_content .l-price-txt figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.post_content .l-price-course__wrap {
  width: 100%;
  padding: 5rem 3.75rem;
  border-radius: 25px;
  background-image: url(../img/front/about_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 960px) {
  .post_content .l-price-course__wrap {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .post_content .l-price-course__wrap {
    padding: 2.5rem 1.25rem;
  }
}
.post_content .l-price-course__wrap .headline-block p {
  text-align: center;
}
.post_content .l-price-course-list__item {
  width: 100%;
  padding: 3.75rem 1.25rem;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-course-list__item {
    padding: 2.5rem 0.9325rem;
  }
}
.post_content .l-price-course-list__item.premium {
  background-color: #00152D;
}
.post_content .l-price-course-list__item.no-item {
  padding: 0 !important;
}
.post_content .l-price-course-list__item .course-name h3 {
  color: #D0A900;
  font-size: 1.625rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 5%;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-course-list__item .course-name h3 {
    font-size: 1.5rem;
  }
}
.post_content .l-price-course-list__item .course-name p {
  color: #FFFFFF;
  font-size: 1.625rem;
  font-family: "Ballet", cursive;
  font-weight: 400;
  line-height: 0.2;
  letter-spacing: 10%;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-course-list__item .course-name p {
    font-size: 1.5rem;
  }
}
.post_content .l-price-course-list__item .course-time {
  width: 180px;
  margin-inline: auto;
  border-radius: 25px;
  background-color: #D0A900;
  color: #00152D;
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 5%;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-course-list__item .course-time {
    font-size: 1rem;
  }
}
.post_content .l-price-course-list__item .course-price {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #D0A900;
  color: #D0A900;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 5%;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-course-list__item .course-price {
    font-size: 1.375rem;
  }
}
.post_content .l-price-course-list__item p {
  color: #FFFFFF;
  font-size: 1rem;
  text-align: center;
  line-height: 1.8;
}
.post_content .l-price-cancel__wrap {
  width: 100%;
  padding: 5rem 3.75rem;
  border-radius: 25px;
  background-image: url(../img/front/about_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 960px) {
  .post_content .l-price-cancel__wrap {
    padding: 3.75rem 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .post_content .l-price-cancel__wrap {
    padding: 2.5rem 1.25rem;
  }
}
.post_content .l-price-cancel__wrap .headline-block p {
  text-align: center;
}
.post_content .l-price-cancel__txt ul {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.post_content .l-price-cancel__txt ul li {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-cancel__txt ul li {
    font-size: 1rem;
  }
}
.post_content .l-price-cancel__txt p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-cancel__txt p {
    font-size: 1rem;
    text-align: left;
  }
}
.post_content .l-price-cancel__txt p.memo {
  color: rgba(68, 68, 68, 0.75);
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .post_content .l-price-cancel__txt p.memo {
    font-size: 0.9325rem;
  }
}
.post_content {
  /* first */
}
.post_content .l-first-greeting__txt {
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .post_content .l-first-greeting__txt {
    font-size: 1rem;
  }
}
.post_content .l-first-greeting figure img {
  border-radius: 25px;
}
@media screen and (max-width: 600px) {
  .post_content .l-first-greeting figure img {
    border-radius: 15px;
  }
}
.post_content .l-first-offer .swell-block-dl {
  width: 100%;
  margin-top: 3.75rem;
}
.post_content .l-first-offer .swell-block-dl dt {
  padding: 1.25rem 2.5rem 0.25rem;
  border-bottom: 1px solid #D0A900;
  background-color: #00152D;
  color: #D0A900;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 5%;
}
@media screen and (max-width: 600px) {
  .post_content .l-first-offer .swell-block-dl dt {
    padding: 0.9325rem 0.9325rem 0.25rem;
    font-size: 1.375rem;
  }
}
.post_content .l-first-offer .swell-block-dl dd {
  margin-bottom: 2.5rem;
  margin-left: 0;
  padding: 1.875rem 2.5rem;
  background-color: #00152D;
  color: #D0A900;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .post_content .l-first-offer .swell-block-dl dd {
    padding: 1.25rem 0.9325rem;
    text-align: left;
  }
}
.post_content .l-first-preparation-list__item {
  width: 100%;
  padding: 2.5rem 1.8755rem;
  border-radius: 25px;
  background-image: url(../img/front/about_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .post_content .l-first-preparation-list__item {
    padding: 1.875rem 1.25rem;
  }
}
.post_content .l-first-preparation-list__item h3 {
  color: #00152D;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 5%;
}
@media screen and (max-width: 600px) {
  .post_content .l-first-preparation-list__item h3 {
    font-size: 1.375rem;
  }
}
.post_content .l-first-preparation-list__item ul li {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 600px) {
  .post_content .l-first-preparation-list__item ul li {
    font-size: 1rem;
  }
}
.post_content .l-first-preparation-list__item ul li::marker {
  color: #D0A900;
}
.post_content {
  /* privacy */
}
.post_content .l-privacy-hl3 {
  position: relative;
  color: #D0A900;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .post_content .l-privacy-hl3 {
    font-size: 1.375rem;
  }
}
.post_content .l-privacy-hl3::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #D0A900;
}

/* other
--------------------------------------------- */
.loop-slider {
  overflow: hidden;
  width: 100%;
}
.loop-slider__track {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  animation: loopScroll 30s linear infinite;
}
.loop-slider__track img {
  flex-shrink: 0;
  width: auto;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media screen and (max-width: 960px) {
  .loop-slider__track img {
    height: 160px;
  }
}
@keyframes loopScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 600px) {
  .pc-only {
    display: none;
  }
}

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

.xl {
  display: none;
}
@media screen and (max-width: 1280px) {
  .xl {
    display: block;
  }
}

.lg {
  display: none;
}
@media screen and (max-width: 960px) {
  .lg {
    display: block;
  }
}

.md {
  display: none;
}
@media screen and (max-width: 600px) {
  .md {
    display: block;
  }
}

.sm {
  display: none;
}
@media screen and (max-width: 480px) {
  .sm {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */