@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP:wght@200..900&display=swap');
:root{
  --text:#000;
  --muted:#666;
  --line:#d9d9d9;
  --wrap: 980px;
  --g: 22px;
  --serif: ui-serif, "Times New Roman", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Noto Sans JP", "Hiragino Sans", sans-serif;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  color:var(--text);
  background:#f5f5f5;
  font-family: "Noto Serif JP", serif;
  line-height: 2.0;
}
h1,h2,h3,h4,h5 {
  font-family: "Noto Serif JP", serif;
}
img{ display:block; max-width:100%; }
a{
  text-decoration: none;
  color: #000;
  border-bottom: solid 1px #d9d9d9;
}
a:hover{
  opacity: 0.5;
}
figure {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.wrap{
  position: relative;
  max-width: 1620px;
  width: 100%;
  margin-inline:auto;
}
.main{ padding-bottom: 30px; overflow: hidden;}
.wideimage{ padding: 46px 0; }
.normal-bg{ padding: 46px 24px; }

/* ===== HERO ===== */
.hero{
  position:relative;
  height: 380px;
  overflow:hidden;
  background:#f5f5f5;
  height: 100dvh;
}
.hero__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}
.is-layer-dot {
  &:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, .18);
  }
}
.hero__top {
  position:absolute;
  top: 14px;
  left: 16px;
  right: 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#fff;
  font-size: 16px;
  letter-spacing:.06em;
}
.hero__center{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  z-index:2;
}
.hero__logo{
  width: 320px;
  height:auto;
}
.top__logo {
  display: flex;
  margin: auto;
  padding: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.top__logo div {
  padding: 16px;
  margin: 16px;
  max-width: 460px;
  filter: drop-shadow(0px 0px 5px rgb(0, 0, 0, 0.3));
}
.top__logo p {
  color: #fff;
}
.top__title {
  width: 100%;
  max-width: 460px;
}
.top__entitle {
  margin-top: 16px;
}

/* ===== TOP スライダー ===== */
/* スライダー全体のスタイル */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 各スライド画像のスタイル */
.slideimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: fadeInOut 6s infinite;
  transition: opacity 1.5s ease-in-out;
}

/* 最初の画像だけ親要素の高さを確保させる */
.slideimg:nth-child(1) {
  position: relative;
  animation-delay: 0s;
}
.slideimg:nth-child(2) {
  animation-delay: 3s;
}
.slideimg:nth-child(3) {
  animation-delay: 6s;
}

/* フェードイン・アウトのアニメーション */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.slideimg img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* ===== 3 THUMBS ===== */
.grid3 {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.thumb {
  margin:0;
}
.thumb img {
  width:100%;
  height: 70svh;
  object-fit:cover;
}

/* ===== INTRO (block1) ===== */
.block1{
  padding: 160px;
}
.block1__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.block1__inner_en {
  max-width: 920px;
}
.block1__top{
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 90px;
  align-items:start;
}
.block1__top_en {
  display: block;
}
.block1__jpTitle {
  margin: 0 0 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  padding-bottom: 16px;
}
.block1__enTitle {
  margin: 0 0 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding-bottom: 16px;
}
.block1__enLead{
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.5;
  color:#777;
}
.block1__enLead2{
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.5;
  color:#777;
  margin: 0 0 32px;
}
.main_title__jp {
  position: absolute;
  top: 43%;
  right: 20%;
  -ms-transform: translate(50%,-50%);
  -webkit-transform: translate(50%,-50%);
  transform: translate(50%,-50%);
  filter: drop-shadow(0px 0px 5px rgb(0, 0, 0, 0.4));
  margin:0;
  padding:0;
  width: 300px;
}
.main_title__en {
  position: absolute;
  top: 80px;
  left: 80px;
  filter: drop-shadow(0px 0px 5px rgb(0, 0, 0, 0.4));
  margin:0;
  padding:0;
  color: #fff;
  width: 47%;
  font-size: 40px;
  font-weight: 400;
  text-decoration: underline 1px rgb(255, 255, 255, 0.4);
}
.block1__jpBody{
  margin: 16px 0 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  padding-bottom: 16px;
  position: relative;
}
.block1__jpBody span {
  font-size: 0.8em;
}
.block1__jpBody a::after {
  font-family: "Material Symbols Outlined";
  content:'\f8ce';
  display: inline-block;
  width: 20px;
  font-weight: 200;
  height: auto;
  margin-left: 6px;
  position: relative;
  top:3px;
}
.block1__bottom{
  margin-top: 70px;
}
.block1__enBody{
  margin: 0;
  padding-top: 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color:#000;
  padding-bottom: 16px;
}
.block1__enBody span {
  font-size: 0.8em;
}
.block1__enBody a::after {
  font-family: "Material Symbols Outlined";
  content:'\f8ce';
  display: inline-block;
  width: 20px;
  font-weight: 200;
  height: auto;
  margin-left: 6px;
  position: relative;
  top:3px;
}
/* ===== Button ===== */
.button__area {
  max-width: 280px;
  margin: 2em 0 auto auto;
}
.button {
  display: inline-block;
  background: #e1e1de;
  border-radius: 100px;
  color: #000;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  text-decoration: none;
  position: relative;
  border-bottom: none;
  font-size: 0.94em;
}
.button::after {
  font-family: "Material Symbols Outlined";
  content:'\f8ce';
  display: inline-block;
  width: 20px;
  font-weight: 200;
  height: auto;
  margin-left: 6px;
  position: relative;
  top:3px;
}
.link__area {
  max-width: 200px;
  margin: 2em 0 auto auto;
}
.link {
  display: inline-block;
  color: #000;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  text-decoration: none;
  position: relative;
  border-bottom: 1px solid #333;
  font-size: 0.94em;
}
.link::after {
  font-family: "Material Symbols Outlined";
  content:'\f8ce';
  display: inline-block;
  width: 20px;
  font-weight: 200;
  height: auto;
  margin-left: 6px;
  position: relative;
  top:3px;
}
.ex__link {
  display: inline-block;
  text-decoration: none;
  font-size: 0.84em;
}
.ex__link::after {
  font-family: "Material Symbols Outlined";
  content:'\f8ce';
  display: inline-block;
  font-weight: 200;
  height: auto;
  margin-left: 6px;
  position: relative;
  top:3px;
}
.insta__link::before {
  content:url("https://privatehousecalm.com/img/icon/Instagram.svg");
  display: inline-block;
  height: auto;
  margin-right: 8px;
  position: relative;
  width: 14px;
  vertical-align: middle;
}

/* ===== WIDE IMAGES ===== */
.wide{
  margin:0;
}
.wide img {
  width:100%;
  height: 90svh;
  object-fit:cover;
}
.wide video {
  width: 100%;
  height: 90svh;
  object-fit: cover;
}
.title__bg img {
  object-position: top;
}

/* ===== 2 wide grid ===== */
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ===== RULES ===== */
.rules{
  padding: 160px;
}
.rules__inner{
  max-width: 960px;
  margin: 0 auto;
  display: block;
}
.rules__block{
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: 120px;
  margin-bottom: 96px;
}
.rules__title h2{
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .03em;
}
.rules__title span{
  font-family: var(--serif);
  font-size: 14px;
  color: var(--muted);
}
.rules__table{
  border-top: 1px solid var(--line);
}
.rules__table .row{
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.9;
}
.rules__table .key{
  color: initial;
}
.rules__note{
  margin: 0;
  font-size: 0.82em;
  padding-inline-start: 20px;
}
.rules__note2{
  margin: 0;
  font-size: 0.82em;
  padding-inline-start: 20px;
}
.announce {
  background-color: #e1e1de;
  padding: 8px 32px;
}
/* ===== ACCESS ===== */
.access-block {
  margin-bottom: 0;
}
.access {
  border-top: none;
  margin: 3em auto;
}
.access .row {
  grid-template-columns: 200px 1fr;
}
.access .val {
  text-align: right;
}
.access p {
  font-size: 12px;
  margin: 0.8em 0;
}
#map {
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto 2em;
}
#map .map__inner {
	position: relative;
	height: 0;
	padding-top: 70svh;
	overflow: hidden;
}
#map .map__inner iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* ===== Hamburger (details/summary) ===== */
/* クリックの重なり対策 */
.hero { position: relative; }

/* ロゴがクリックを邪魔しないように（必要なら） */
.hero__center{ pointer-events: none; }

/* hidden属性は念のため */
[hidden]{ display:none !important; }

/* ===== overlay ===== */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 4000;
  opacity: 0;
  transition: opacity .26s ease;
}

/* 開いたらoverlay表示 */
body.menu-open .menu-backdrop{
  opacity: 1;
}

/* ===== Hamburger menu ===== */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  cursor: pointer;
  z-index: 10; /* メニューより前に表示 */
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
  mix-blend-mode: difference;
}
.js-header span {
  background-color: #fff;
  transition: color 0.4s ease-out;
}
/* スクロールしたらヘッダーメニューのフォントカラー変更 */
.headerColorScroll {
  background-color: #111 !important;
}

/* メニューのスタイル */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  padding: 24px;
  box-sizing: border-box;
  z-index: 5;
}

/* メニューが開いたとき */
.menu.open {
  opacity: 1; /* 不透明にする */
  pointer-events: auto; /* クリック可能にする */
  display: grid;
  place-content: center;
  z-index: 9;
}

/* バツ印に変わるハンバーガーボタン */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #111;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: #111;
}
.menu__area {
  display: block;
  flex-wrap: wrap;
  margin: auto;
  padding: 32px;
  width: min(920px, 80vw);
}
.menu__block {
  display: flex;
  flex-wrap: wrap;
}
.menu__logo {
  width: 50%;
  padding: 32px;
  margin: auto;
}
.menu__logo img {
  max-width: 280px;
  width: 100%;
  margin: auto;
}
.menu__list {
  width: 50%;
  padding: 32px;
  color: #000;
}
.menu__list p {
  line-height: 1.8;
  margin: 0.5em 0;
}
.menu__list .button__area {
  margin: 2em 0;
}

/* ===== image ===== */
.corners1 {
  border-top-left-radius: 80px;
}
.corners2 {
  border-top-right-radius: 80px;
}
.corners3 {
  border-bottom-right-radius: 80px;
}
.corners4 {
  border-bottom-left-radius: 80px;
}
.logo__size {
  max-width: 280px;
}
/* ===== image slider ===== */
.slider-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
}
.slider {
  animation: scroll-left 14s infinite linear .5s both;
  display: flex;
  padding-inline-start: 0;
  list-style: none;
}
.slide {
  width: calc(100vw / 3);
  margin: auto 8px;
}
.slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ===== FOOTER ===== */
.footer{
  background:#e1e1de; /* スクショの薄いグレー */
  padding: 88px 0 64px;
  margin-top: 24px;
}
.footer__inner{
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  padding: 0 24px;
}
/* left */
.footer__left{
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer__logo img{
  width: 220px; /* ロゴの見た目サイズ忠実 */
  height: auto;
}
.lang-switch-area {
  max-width: 1080px;
  margin: 72px auto 0;
  letter-spacing: 0.02em;
  padding: 0 24px;
  text-align: center;
  border-top: 1px solid #cecccc;
}
.footer__copyright{
  max-width: 1080px;
  margin: 24px auto 0;
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 0 24px;
  text-align: center;
}
/* right */
.footer__right{
  display: grid;
  grid-template-columns: repeat(3, auto);
  column-gap: 90px;
  justify-content: end;
}
.footer__col{
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.footer__label{
  font-size: 14px;
  font-weight: 600;
}
.footer__text{
  font-size: 16px;
  letter-spacing: 0.04em;
}
/* ===== responsive tablet ===== */
@media screen and (min-width:600px) and ( max-width:1024px) {
  .thumb img {
    height: 32vh;
  }
  .block1 {
    padding: 120px 40px;
  }
  .block1__top {
    column-gap: 40px;
  }
  .main_title__en {
    width: 64%;
  }
  .rules {
    padding: 120px 40px;
  }
  .rules__block {
    column-gap: 48px;
  }
  .rules__table .row {
    grid-template-columns: 120px 1fr;
  }
  .access .row {
    grid-template-columns: 50% 1fr;
  }
}

/* ===== responsive ===== */
@media (max-width: 599px){
  .menu__area {
    padding: 8px;
  }
  .menu__block {
    display: block;
  }
  .menu__logo {
    width: 100%;
    max-width: 260px;
  }
  .menu__list {
    width: 100%;
  }
  .menu__area .lang-switch-area {
    margin: 32px auto 0;
  }
  .menu__list .button__area {
    margin: 2em 0;
  }
  .hero__logo {
    width: 240px;
  }
  .top__logo div {
    padding: 0em;
    margin: 1em;
  }
  .top__img {
    position: absolute;
    top: 30%;
  }
  .top__title {
    position: absolute;
    bottom: 8%;
    max-width: 340px !important;
  }  
  .intro {
    padding: 120px 56px 120px;
  }
  .block1 {
    padding: 24px 24px 88px 24px;
  }
  .block1__inner {
    padding: 0 24px;
  }
  .block1__top {
    display: block;
  }
  .main_title__jp {
    width: 224px;
    right: 50%;
    top: 40%;
  }
  .main_title__en {
    top: 56px;
    left: 32px;
    width: 300px;
    font-size: 28px !important;
  }
  .wide img {
    height: 680px;
  }
  .wide video {
    height: 680px;
  }
  .block1__jpTitle {
    margin: 0 0 16px;
    font-size: 32px;
  }
  .block1__enTitle {
    font-size: 24px;
  }
  .block1__enLead {
    margin: 0 0 80px;
  }
  .block2 {
    padding: 40px;
  }
  .block2__top {
    display: block;
  }
  .normal-bg{ 
    padding: 46px 0; 
  }
  .logo__size {
    max-width: 240px;
    margin: auto;
  }
  .thumb img{
    height: auto;
  }
  .grid2 {
    display: block;
  }
  .grid3 {
    display: block;
  }
  .gap0 {
    padding: 1em 0;
  }
  .gap1 {
    padding: 1em 2em;
  }
  .gap2 {
    padding: 1em 3em 1em 0;
  }
  .gap3 {
    padding: 1em 0 1em 3em;
  }
  .gap4 {
    padding: 40px;
    margin: 40px;
  }
  .button__area {
    margin: 2em auto 0;
  }
  .link__area {
    margin: 2em auto 0;
  }
  .link {
    font-size: 0.96em;
  }
  .rules {
    padding: 32px;
  }
  .rules__content {
    margin-top: 40px;
  }
  .rules__block {
    display: block;
  }
  .rules__table .row {
    padding: 8px 0;
    grid-template-columns: 132px 1fr;
  }
  .access-block {
    margin-bottom: 0;
  }
  .access-block .block1__inner {
    padding: 0;
  }
  .access .row {
    grid-template-columns: 55% 1fr;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  #map .map__inner {
    padding-top: 480px;
  }
  .slide {
    width: calc(100vw / 1.2);
  }
  .footer {
    padding: 64px 0 24px;
  }
  .footer__inner {
    display: block;
  }
  .footer__left {
    display: block;
    margin: 16px auto 40px;
  }
  .footer__right {
    display: block;
  }
  .footer__col {
    display: block;
    margin-bottom: 24px;
  }
  .footer__copyright {
    margin: 40px auto 0;
  }
}

/* ===== language modal ===== */
.lang-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: grid;
  place-items: center;
  z-index: 9999;
  padding: 18px;
}
body.lang-modal-open{
  overflow: hidden;
}
.lang-modal__panel{
  width: min(600px, 70vw);
  background: rgb(255 255 255 / 90%);
  text-align: center;
  padding: 88px 26px 88px;
}
.lang-modal__tag{
  display: block;
  background: #606060;
  color: #fff;
  padding: 0;
  font-size: 12px;
  letter-spacing: .04em;
  margin: 8px auto 16px;
  max-width: 120px;
  border-radius: 100px;
}
.lang-modal__choices{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.lang-modal__choice{
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  padding: 6px 8px;
  color: #111;
  text-decoration: underline 1px #111;
}
.lang-modal__slash{
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 1;
}
.lang-modal__choice:hover{
  opacity: .7;
}
.lang-switch {
  margin: 16px auto;
  padding: 0 16px;
}
.lang-switch__btn {
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  color: #000;
  font-size: 0.9em;
  background: none;
}
.lang-switch__btn:hover {
  opacity: 0.5;
}

/* モバイル調整（添付の縦長に寄せる） */
@media (max-width: 599px){
  .lang-modal{
    padding: 14px;
    background: rgba(0,0,0,.40);
  }
  .lang-modal__panel{
    width: min(520px, 80vw);
    padding: 88px 16px 32px;
    height: 280px;
  }
  .lang-modal__choice{ font-size: 24px; }
  .lang-modal__slash{ font-size: 24px; }
  .lang-modal__tag{ 
    margin: 8px auto 16px;
  }
}