@charset "UTF-8";
/*
Theme Name: Hizuki_01
Theme URI:
Author:
Author URI:
Description:
Version: 1.0
*/
/* ------------------------------
  リセット
------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  appearance: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1rem 0;
}

[hidden] {
  display: none !important;
}

/* ------------------------------
  フォント
------------------------------ */
@font-face {
  font-family: "Shippori Mincho";
  src: url("../fonts/shippori-mincho/ShipporiMincho-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Shippori Mincho";
  src: url("../fonts/shippori-mincho/ShipporiMincho-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
/* ------------------------------
  共通スタイル
------------------------------ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Shippori Mincho", serif;
  background-color: #ffffff;
  color: #111111;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
  font-size: clamp(14px, 1.8vw, 16px);
}

/* ------------------------------
  ツール
------------------------------ */
.w-content-full {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}

.w-content {
  width: 100%;
  max-width: calc(1280px + clamp(20px, 3vw, 40px) * 2);
  margin-inline: auto;
  padding: 0 clamp(20px, 3vw, 40px);
}

.accent-border {
  position: relative;
}
.accent-border::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: #111111;
}

.spacer-sp-bottom {
  display: none;
}

@media screen and (max-width: 840px) {
  .spacer-sp-bottom {
    display: block;
    width: 1px;
    height: 80px;
  }
}
/* ------------------------------
  コンポーネント
------------------------------ */
.g-navi-pc {
  display: block;
  position: fixed;
  top: 32px;
  right: 48px;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
  z-index: 11;
  color: white;
  mix-blend-mode: difference;
}
.g-navi-pc li {
  margin-bottom: 0.75em;
}
.g-navi-pc li a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5em;
}
.g-navi-pc li a svg {
  width: 1em;
  height: 1em;
}

@media screen and (max-width: 840px) {
  .g-navi-pc {
    display: none;
  }
}
.cta-fix-pc {
  position: fixed;
  top: calc(50% - 150px);
  right: 0;
  width: 64px;
  height: 300px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-right: none;
  border-radius: 3px 0 0 3px;
  z-index: 12;
  writing-mode: vertical-rl;
  letter-spacing: 0.32em;
  font-weight: 700;
}
.cta-fix-pc a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
}
.cta-fix-pc a svg {
  width: 1.2em;
  height: auto;
  fill: #111111;
}

@media screen and (max-width: 1024px) {
  .cta-fix-pc {
    width: 54px;
    height: 220px;
  }
}
@media screen and (max-width: 840px) {
  .cta-fix-pc {
    display: none;
  }
}
.g-navi-sp {
  display: none;
  align-items: center;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #e5e5e5;
  width: calc(100% - 32px);
  max-width: 480px;
  z-index: 11;
  background-color: #ffffff;
  border-radius: 4px;
}
.g-navi-sp .item {
  width: 100%;
  height: 3.2em;
  line-height: 3.2em;
  text-align: center;
}
.g-navi-sp .item .item-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
  width: 100%;
  height: 100%;
}
.g-navi-sp .item .item-inner svg {
  width: 1.2em;
  height: auto;
  fill: #111111;
}
.g-navi-sp .g-navi-sp-separator {
  height: 1.4em;
  width: 1px;
  background-color: #e5e5e5;
}

#g-navi-sp-overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#g-navi-sp-overlay-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#g-navi-sp-overlay-menu .overlay-content {
  text-align: center;
}
#g-navi-sp-overlay-menu .overlay-content ul {
  padding: 0;
  margin: 40px 0 0;
}
#g-navi-sp-overlay-menu .overlay-content li {
  margin: 20px 0;
  font-size: 24px;
}
#g-navi-sp-overlay-menu .overlay-content #close-menu {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  background: none;
  border: none;
  color: #111111;
  cursor: pointer;
}

@media screen and (max-width: 840px) {
  .g-navi-sp {
    display: flex;
  }
}
/* ------------------------------
  hover
------------------------------ */
@media (hover: hover) and (pointer: fine) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
  }
}
.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.mv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.section-logo {
  width: 100%;
  padding: clamp(80px, 10vw, 120px) 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-logo img {
  width: clamp(192px, 40vw, 300px);
}

.section-news {
  display: flex;
  justify-content: center;
}
.section-news-inner {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 780px;
  padding: 24px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.section-news-inner h2 {
  width: 6em;
  font-size: 16px;
  font-weight: 700;
}
.section-news-inner .post-link {
  display: block;
}

@media screen and (max-width: 640px) {
  .section-news-inner {
    flex-direction: column;
    gap: 0.75em;
  }
  .section-news-inner h2 {
    width: 100%;
    text-align: center;
  }
}
.section-concept {
  padding-top: clamp(80px, 10vw, 120px);
}
.section-concept .items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.section-concept .items .item-01 {
  display: flex;
}
.section-concept .items .item-01 .img-01 {
  width: 62%;
  aspect-ratio: 16/9;
}
.section-concept .items .item-01 p {
  width: 38%;
  display: flex;
  align-items: center;
  padding-left: 4%;
}
.section-concept .items .item-02 {
  display: flex;
  justify-content: flex-end;
}
.section-concept .items .item-02 .img-01 {
  order: 2;
  width: 40%;
  position: relative;
  z-index: 1;
}
.section-concept .items .item-02 p {
  order: 1;
  width: 40%;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4%;
}
.section-concept .items .item-03 {
  display: flex;
  padding: 0 10%;
}
.section-concept .items .item-03 .img-01 {
  width: 60%;
}
.section-concept .items .item-03 p {
  width: 40%;
  display: flex;
  align-items: center;
  padding-left: 4%;
}
.section-concept .items .item-04 {
  text-align: center;
}
.section-concept .items .item-05 {
  display: flex;
  gap: 1px;
}

@media screen and (max-width: 720px) {
  .section-concept .items .item-01, .section-concept .items .item-02, .section-concept .items .item-03 {
    flex-direction: column;
  }
  .section-concept .items .item-01 .img-01 {
    width: 90%;
    margin-bottom: 1em;
  }
  .section-concept .items .item-01 p {
    width: 100%;
  }
  .section-concept .items .item-02 {
    align-items: flex-end;
  }
  .section-concept .items .item-02 .img-01 {
    width: 62%;
    order: 1;
    margin-bottom: 1em;
  }
  .section-concept .items .item-02 p {
    width: 100%;
    order: 2;
  }
  .section-concept .items .item-03 .img-01 {
    width: 100%;
    margin-bottom: 1em;
  }
  .section-concept .items .item-03 p {
    width: 100%;
    padding: 0;
  }
  .section-concept .items .item-05 > div:last-of-type {
    display: none;
  }
}
.section-room {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  padding: clamp(80px, 10vw, 120px) 0;
  gap: clamp(48px, 8vw, 80px);
}
.section-room .title-area {
  margin-bottom: 0;
}
.section-room .navi-room {
  width: 100%;
  max-width: 868px;
  padding: 0 24px;
  display: flex;
  gap: 48px;
}
.section-room .navi-room .navi-room-item {
  border-top: 1px solid #e5e5e5;
  width: 50%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}
.section-room .navi-room .navi-room-item h3 {
  font-size: 1.6em;
}
.section-room .navi-room .navi-room-item p {
  flex: 1;
}
.section-room .navi-room .navi-room-item span {
  font-size: 0.9em;
}
.section-room .room-main {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 80px);
}
.section-room .room-main.wa .room-tn-wrap .title {
  color: #b1bdb1;
}
.section-room .room-main.yo .room-tn-wrap .title {
  color: #f5b168;
}
.section-room .room-main .room-tn-wrap .title {
  font-size: 3.8em;
  font-size: clamp(2.4em, 8vw, 3.8em);
  text-align: center;
  line-height: 1;
  margin-bottom: -0.3em;
  position: relative;
  z-index: 2;
}
.section-room .room-main .room-tn-wrap .tn {
  width: 100%;
}
.section-room .room-main .text {
  width: auto;
}
.section-room .room-main .img-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
  gap: clamp(20px, 5vw, 48px);
}
.section-room .room-main .img-wrap .img {
  display: flex;
  gap: 1px;
}
.section-room .room-main .zoom-btn {
  margin-top: -1em;
}
.section-room .room-main .zoom-btn a {
  display: flex;
  gap: 0.5em;
  font-weight: 700;
  justify-content: center;
  align-items: center;
}
.section-room .room-main .zoom-btn a img {
  width: 20px;
  height: 20px;
}
.section-room #room-wa,
.section-room #room-yo {
  padding-top: 60px;
  margin-top: -60px;
}

@media screen and (max-width: 1124px) {
  .section-room .room-main .text {
    max-width: 820px;
  }
  .section-room .room-main .text p {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 868px) {
  .section-room .navi-room {
    flex-direction: column;
    max-width: 468px;
  }
  .section-room .navi-room .navi-room-item {
    width: 100%;
    padding: 16px 0;
  }
}
.section-stayinfo {
  max-width: 840px;
  margin-inline: auto;
  padding: clamp(80px, 10vw, 120px) 0;
}
.section-stayinfo .section-stayinfo-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(32px, 5vw, 48px);
}
.section-stayinfo .section-stayinfo-main .stayinfo-room {
  text-align: center;
}
.section-stayinfo .section-stayinfo-main .stayinfo-room .stayinfo-room-item-wrap {
  display: flex;
  margin-bottom: 2em;
}
.section-stayinfo .section-stayinfo-main .stayinfo-room .stayinfo-room-item-wrap .stayinfo-room-item {
  flex: 1;
}
.section-stayinfo .section-stayinfo-main .stayinfo-room .stayinfo-room-item-wrap .stayinfo-room-item .stayinfo-room-main {
  margin-bottom: 1em;
}
.section-stayinfo .section-stayinfo-main .stayinfo-room .stayinfo-room-item-wrap .stayinfo-room-item:first-child {
  border-right: 1px solid #e5e5e5;
}
.section-stayinfo .section-stayinfo-main .stayinfo-cancel {
  text-align: center;
}
.section-stayinfo .section-stayinfo-main .stayinfo-cancel h3 {
  font-size: 1.2em;
  margin-bottom: 2em;
}
.section-stayinfo .section-stayinfo-main .stayinfo-other {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-stayinfo .section-stayinfo-main .stayinfo-other h3 {
  font-size: 1.2em;
  margin-bottom: 2em;
}
.section-stayinfo .section-stayinfo-main .stayinfo-other ul {
  text-align: left;
  padding: 0 1.2em 0 2.4em;
}
.section-stayinfo .section-stayinfo-main .stayinfo-other li {
  list-style: disc;
}

@media screen and (max-width: 480px) {
  .section-stayinfo .section-stayinfo-main .stayinfo-room .stayinfo-room-item-wrap {
    flex-direction: column;
  }
  .section-stayinfo .section-stayinfo-main .stayinfo-room .stayinfo-room-item-wrap .stayinfo-room-item:first-child {
    border-right: none;
    position: relative;
    margin-bottom: 2em;
  }
  .section-stayinfo .section-stayinfo-main .stayinfo-room .stayinfo-room-item-wrap .stayinfo-room-item:first-child::after {
    display: block;
    content: "";
    position: relative;
    width: 108px;
    height: 1px;
    border-bottom: 1px solid #e5e5e5;
    margin-inline: auto;
    margin-top: 2em;
  }
}
.section-access {
  padding: clamp(80px, 10vw, 120px) 0;
}
.section-access .access-map {
  max-width: 1080px;
  margin-bottom: 80px;
}
.section-access .access-map .map {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* ← 16:9 = 9 ÷ 16 = 0.5625 = 56.25% */
  overflow: hidden;
  margin-bottom: 2em;
}
.section-access .access-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.section-access .access-map p {
  text-align: center;
}
.section-access .access-area .access-area-text {
  text-align: center;
  margin-bottom: 4em;
}
.section-access .access-area .area-01 {
  padding: 1.8em 0 4em;
  border-top: 1px solid #e5e5e5;
}
.section-access .access-area .area-01 .main {
  display: flex;
  gap: 1.4em;
  margin-bottom: 2em;
}
.section-access .access-area .area-01 .main .title {
  font-size: 1.2em;
  font-weight: 700;
}
.section-access .access-area .area-01 .images {
  display: flex;
  gap: 1px;
}
.section-access .access-area .area-01 .images .spacer {
  width: 20px;
  height: 20px;
  background: transparent;
  display: none;
}
.section-access .access-area .area-02 {
  display: flex;
  gap: 60px;
}
.section-access .access-area .area-02 .item {
  padding-top: 1.8em;
  border-top: 1px solid #e5e5e5;
}
.section-access .access-area .area-02 .item .title {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 1em;
}
.section-access .access-area .area-02 .item .content {
  display: flex;
  gap: 1.4em;
}
.section-access .access-area .area-02 .item .content .text {
  flex: 1;
}
.section-access .access-area .area-02 .item .content .tn {
  width: 24%;
  max-width: 148px;
}

@media screen and (max-width: 1200px) {
  .section-access .access-area .area-01 .main {
    flex-direction: column;
    gap: 0.75em;
  }
}
@media screen and (max-width: 980px) {
  .section-access .access-area .area-02 {
    flex-direction: column;
  }
}
@media screen and (max-width: 680px) {
  .section-access .access-area .area-01 .images {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -20px;
  }
  .section-access .access-area .area-01 .images .spacer {
    display: block;
  }
  .section-access .access-area .area-01 .images > div {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 75vw;
  }
  .section-access .access-area .area-01 .images > div > img {
    width: 100%;
    height: auto;
  }
  .section-access .access-area .area-01 .images::-webkit-scrollbar {
    display: none;
  }
}
.section-contact {
  text-align: center;
  padding: clamp(80px, 10vw, 120px) 0;
}
.section-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.section-contact li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
}
.section-contact li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
}

.section-reservation {
  background: url(img/bg_reservation.jpg) center center/cover no-repeat;
  text-align: center;
  height: clamp(360px, 50vw, 600px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-reservation .text {
  font-size: clamp(1.3em, 3vw, 1.6em);
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1em;
  text-shadow: 0 0 10px #000;
}
.section-reservation a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
  background-color: #ffffff;
  width: 240px;
  height: 52px;
  border-radius: 4px;
  margin-inline: auto;
  font-weight: 700;
}
.section-reservation a svg {
  width: 1.2em;
  height: auto;
  fill: #111111;
}

/*
    Parts
*/
.title-area {
  text-align: center;
  margin-bottom: clamp(60px, 10vw, 80px);
}
.title-area .main {
  font-size: 2.2em;
  color: #e5e5e5;
  margin-bottom: -0.75em;
}
.title-area .sub {
  font-size: 0.9em;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.title-area-sub {
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}

.separator {
  border-top: 1px solid #e5e5e5;
  margin-inline: auto;
  width: 100%;
}

/*
    Animations
*/
.char {
  opacity: 0;
  display: inline-block;
  transform: translateY(6px);
}

/* アニメーション */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
  Plug in
*/
.glightbox-container .gslide {
  transform: none !important;
}
.glightbox-container .goverlay {
  background: rgb(255, 255, 255) !important;
}
.glightbox-container .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.glightbox-clean .gclose path,
.glightbox-clean .gnext path,
.glightbox-clean .gprev path {
  fill: #111111 !important;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: none !important;
}

/* ------------------------------
  記事ページ全体のレイアウト
------------------------------ */
.single-post {
  max-width: 860px;
  margin-inline: auto;
}
.single-post .post-content {
  margin-bottom: 4em;
}

/* ------------------------------
  タイトルとメタ情報
------------------------------ */
.single-post h1 {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.4;
  border-top: 1px solid #e5e5e5;
  padding-top: 1.6em;
}

.post-meta {
  margin-bottom: 3em;
}

/* ------------------------------
  本文（content）
------------------------------ */
.single-post .post-content p,
.wp-block-paragraph {
  margin-top: 0;
  margin-bottom: 1.6em;
}

.single-post .post-content p a,
.wp-block-paragraph a {
  color: #598cdf;
  text-decoration: underline;
}

.single-post .post-content h2 {
  font-size: 1.3em;
  margin-top: 2em;
  margin-bottom: 1em;
}

.single-post .post-content h3 {
  font-size: 1.2em;
  margin-top: 1.8em;
  margin-bottom: 1em;
}

.single-post .post-content h4 {
  font-size: 1em;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}

.single-post .post-content img {
  max-width: 100%;
  height: auto;
  margin: 2em 0;
  display: block;
}

ul.wp-block-list,
ol.wp-block-list {
  margin: 1em 0 1em 1.5em;
  padding-left: 1em;
}

ul.wp-block-list {
  list-style: disc;
}

ol.wp-block-list {
  list-style: decimal;
}

.single-post .post-content blockquote,
.wp-block-quote {
  margin: 2em 0;
  padding: 1.5em 1.5em 0.1em 1.5em;
  border-left: 4px solid #e5e5e5;
  background: #f9f9f9;
  color: #666;
  font-style: italic;
}

.single-post .post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.single-post .post-content table th,
.single-post .post-content table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.wp-block-separator {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 2em 0;
  width: 100% !important;
}

.post-footer-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}
.post-footer-nav .nav-previous {
  position: absolute;
  top: 0;
  left: 0;
  height: 3em;
  line-height: 3em;
}
.post-footer-nav .nav-next {
  position: absolute;
  top: 0;
  right: 0;
  height: 3em;
  line-height: 3em;
}
.post-footer-nav .nav-list {
  width: 100%;
  text-align: center;
  height: 3em;
  line-height: 3em;
}

.archive-main {
  max-width: 860px;
  margin-inline: auto;
}
.archive-main .archive-title {
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
  padding-bottom: 1em;
}
.archive-main .entries {
  padding: 2.4em 0;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.archive-main .entries article .entry-title {
  font-size: 1em;
}
.archive-main .entries article time {
  font-size: 0.9em;
  color: #111111;
  opacity: 0.5;
}
.archive-main nav.pagination {
  border-bottom: 1px solid #e5e5e5;
  height: 3em;
  line-height: 3em;
}
.archive-main nav.pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.archive-main nav.pagination .nav-links {
  margin-top: -1px;
}
.archive-main nav.pagination .nav-links .page-numbers {
  display: inline-block;
  width: 2em;
  text-align: center;
}
.archive-main nav.pagination .nav-links .page-numbers.current {
  border-top: 1px solid #111111;
}/*# sourceMappingURL=style.css.map */