:root {
  --color-bg: #faf6ef;
  --color-navy: #1c2b3a;
  --color-navy-light: #2a3d50;
  --color-gold: #b8935f;
  --color-text: #2a2a2a;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}
.pc-none {
display: none;
}
.sp-none {
display: block;
}
@media (max-width: 860px) {
.pc-none {
display: block;
}
.sp-none {
display: none;
}
}
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--color-text);
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 24px;
  margin: 0 auto;
}
.header-inner h1 {
  margin: 0;
}
.header-inner h1 img {
  width: 130px;
}
.header-inner .logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-family: "Shippori Mincho", serif;
  text-decoration: none;
}

.header-inner .logo-sub {
  margin-left: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
  font-size: 16px;
}

/* Desktop nav */

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #9d8f66;
}

.nav-cta a {
  display: inline-block;
  padding: 12px 22px;
  background: #0d5393;
  color: #fff!important;
  border-radius: 2px;
  letter-spacing: 0.1em;
}

/* Hide the checkbox input; it only holds toggle state */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Hamburger icon: hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 210;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-navy);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-overlay {
  display: none;
}

/* ---------- Mobile ---------- */

@media (max-width: 860px) {
.site-header {
  position: fixed;
  background: none;
}
  .header-inner {
    padding: 0 16px;
  }

  .logo {
    font-size: 15px;
  }

  .logo-sub {
    font-size: 11px;
    margin-left: 6px;
  }

  .hamburger {
    display: flex;
  }

  /* Slide-in panel */
  .global-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--color-navy);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding-top: calc(var(--header-height) + 16px);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-list li a {
    display: block;
    width: 100%;
    padding: 18px 28px;
    color: #fff;
  }

  .nav-cta {
    border-bottom: none !important;
    margin-top: 16px;
    padding: 0 28px;
  }

  .nav-cta a {
    width: 100%;
    text-align: center;
    background: var(--color-gold);
  }

  /* Overlay behind the panel, closes menu when tapped */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 190;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  /* Checkbox checked state drives everything below */
  .nav-toggle:checked ~ .global-nav {
    transform: translateX(0);
  }

  .nav-toggle:checked ~ .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Turn hamburger into an X when open */
  .nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #fff;
  }

  .nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #fff;
  }
}
.sp-sub-menu {
display: flex;
justify-content: center;
align-items: center;
display: none;
position: fixed;
bottom: 0;
width: 100%;
border-top: 2px solid #e1e0dc;
background: #fff;
}
.sp-sub-menu a {
width: 50%;
display: flex;
justify-content: center;
align-items: center;
height: 50px;
padding: 5px;
}
.sp-sub-menu a p {
margin: 0;
line-height: 1.3;
font-size: 14px;
}
.sp-sub-menu-soudan {

}
.sp-sub-menu-kengaku {
background: #9d8f66;
color: #fff;
}
.sp-sub-menu-kengaku img {
width: 30px;
margin-right: 5px;
}
.sp-sub-menu-soudan img {
width: 30px;
margin-right: 5px;
}
@media (max-width: 860px) {
.sp-sub-menu {
display: flex;
}
}
.mv-pc {
display: block;
}
.mv-sp {
display: none;
}
@media (max-width: 860px) {
.mv-pc {
display: none;
}
.mv-sp {
display: block;
}
}
.wedding-mv {
  position: relative;
}
.wedding-mv .uk-slideshow-items img {
width: 100%;
}
.mv-txt-block {
position: absolute;
width: 35%;
height: 100%;
background: #ffffffcc;
left: 0;
top: 0;
}
.mv-txt-box {
position: absolute;
left: 20%;
top: 13%;
}
.mv-txt-box img {
  position: absolute;
  left: -18%;
  top: 35%;
  width: 100%;
  z-index: 1;
}
.mv-txt-box h4 {
  font-weight: 400;
  color: #9d8f66;
  font-size: 12px;
  margin: 0;
  letter-spacing: 3px;
  font-weight: 700;
    z-index: 100;
    position: relative;
}
.mv-txt-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  color: #9d8f66;
  font-size: 45px;
  margin: 30px 0 0;
    z-index: 100;
    position: relative;
}
.mv-txt-box h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #22323a;
  font-size: 65px;
  margin: 0;
    z-index: 100;
    position: relative;
}
.mv-txt-box p {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #22323a;
  font-size: 18px;
    margin: 30px 0 0;
    line-height: 1.8;
    z-index: 100;
    position: relative;
}
.mv-txt-box a {
display: inline-block;
background: #0d5393;
color: #fff;
padding: 15px 50px;
margin: 20px 0 0;
}
.mv-txt-box a:hover {
text-decoration: none;
}
@media (max-width: 1600px) {
.mv-txt-box {
left: 15%;
top: 15%;
}
.mv-txt-box h4 {
  font-size: 10px;
}
.mv-txt-box h3 {
  font-size: 45px;
}
.mv-txt-box h2 {
  font-size: 45px;
}
.mv-txt-box p {
  font-size: 14px;
}
}
@media (max-width: 1300px) {
.mv-txt-box {
left: 15%;
top: 5%;
}
.mv-txt-box h4 {
  font-size: 8px;
}
.mv-txt-box h3 {
  font-size: 35px;
}
.mv-txt-box h2 {
  font-size: 35px;
}
.mv-txt-box p {
  font-size: 10px;
  margin: 10px 0 0;
}
.mv-txt-box a {
  padding: 10px 30px;
  margin: 10px 0 0;
}
}
@media (max-width: 860px) {
.mv-txt-block {
width: 100%;
height: 100%;
background: none;
}
.mv-txt-box {
left: 2%;
top: auto;
bottom: 25%;
background: #ffffffcc;
padding: 15px;
}
.mv-txt-box h3 {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0 0;
}
.mv-txt-box h2 {
  font-size: 40px;
}
.mv-txt-box img {
  left: -1%;
  top: 56%;
}
}
.style-section {
  padding: 75px 0;
  background: #fbfbfb;
}
.style-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #9d8f66;
  font-size: 45px;
  text-align: center;
}
.style-section h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #22323a;
  font-size: 45px;
  margin: 35px 0;
  text-align: center;
}
.style-section h2span {
  font-family: "Cormorant Garamond", serif;
}
.style-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
.style-box {
  width: 48%;
  border: 1px solid #ddd;
  opacity: 0.7;
  transition: opacity 0.4s ease-in-out;
}
.style-box:hover {
  text-decoration: none;
  opacity: 1;
}
.style-txt {
  padding: 10px;
  background: #fff;
}
.style-txt h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #9d8f66;
  font-size: 18px;
  margin: 0;
  text-align: center;
  line-height: 1;
}
.style-txt h5 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #9d8f66;
  font-size: 25px;
  margin: 0;
  text-align: center;
  line-height: 1;
}
@media (max-width: 860px) {
.style-flex {
  width: 96%;
}
.style-section h2 {
  font-size: 24px;
}
.style-txt h5 {
  font-size: 20px;
}
}
.plan-section {
  padding: 75px 0;
}
.plan-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: #9d8f66;
  font-style: italic;
  color: #9d8f66;
  font-size: 45px;
  text-align: center;
}
.plan-flex {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
.plan-box {
  width: 32%;
  background: #fff;
  position: relative;
  border: 1px solid #9d8f66;
}
.plan-box img {
  width: 100%;
}
.plan-box h4 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  background: #9d8f66;
  color: #fff;
  padding: 5px;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.plan-txt {
  padding: 10px 10px 30px;
}
.plan-box p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
}
.plan-box {
opacity: 0.7;
transition: opacity 0.4s ease-in-out;
}
.plan-box:hover {
opacity: 1;
}
.plan-box a:hover {
text-decoration: none;
}
.syousai-txt {
  text-align: right;
  color: #9d8f66;
  font-size: 85% !important;
  text-decoration: underline;
  position: absolute;
  bottom: 1%;
  right: 5%;
}
@media (max-width: 1000px) {
.plan-flex {
justify-content: space-around;
}
.plan-box {
  width: 48%;
  margin-bottom: 20px;
}
}
@media (max-width: 860px) {
.plan-box a {
opacity: 1;
}
.plan-flex {
justify-content: center;
}
.plan-box {
  width: 95%;
}
}
.appeal-section {
  padding: 75px 0;
  background: #fbfbfb;
}
.appeal-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #9d8f66;
  font-size: 45px;
  text-align: center;
}
.appeal-section h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #22323a;
  font-size: 40px;
  margin: 35px 0;
  text-align: center;
}
.appeal-section h5 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #9d8f66;
  font-size: 300px;
  margin: 0;
  line-height: 1;
  position: absolute;
  right: 50%;
  opacity: 0.2;
  top: 0;
}
.appeal-section h2 span {
  font-size: 80%;
}
.appeal-block {
display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto 50px;
}
.appeal-img {
  width: 40%;
  margin: 0 auto;
}
.appeal-txt {
  width: 60%;
  margin: 0 auto;
  padding: 30px;
  position: relative;
}
.appeal-section h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: #22323a;
  font-size: 30px;
  text-align: center;
  line-height: 1.5;
}
.appeal-section p {
  color: #22323a;
  font-size: 16px;
}
@media (max-width: 860px) {
.appeal-section h2 {
  font-size: 24px;
}
.appeal-img {
  width: 95%;
  order: 1;
}
.appeal-txt {
  width: 95%;
  order: 2;
}
.appeal-section h5 {
  font-size: 350px;
  right: 40%;
}
}
.concept-section {
  padding: 75px 0;
}
.concept-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #9d8f66;
  font-size: 45px;
  text-align: center;
}
.concept-section h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #22323a;
  font-size: 45px;
  text-align: center;
  margin: 35px 0;
}
.concept-section p {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #22323a;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 860px) {
.concept-section {
  padding: 50px 0;
}
.concept-section h2 {
  font-size: 24px;
}
.concept-section p {
  font-size: 16px;
}
}
.location-section {
  padding: 75px 0;
}
.location-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #9d8f66;
  font-size: 45px;
  text-align: center;
}
.location-section h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #9d8f66;
  font-size: 45px;
  margin: 35px 0;
  text-align: center;
}
.location-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}
.location-box {
  width: 23%;
  margin: 20px 0;
}
.location-box img {
  width: 100%;
}
@media (max-width: 860px) {
.location-section h2 {
  font-size: 24px;
}
.location-box {
  width: 47%;
  margin: 10px 0;
}
}
.party-section {
  padding: 75px 0;
  background: #fbfbfb;
}
.party-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #9d8f66;
  font-size: 45px;
  text-align: center;
  margin: 0 0 30px;
}
.party-section h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #9d8f66;
  font-size: 45px;
  margin: 35px 0;
  text-align: center;
}
.party-section h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #9d8f66;
  font-size: 20px;
  text-align: center;
}
.party-block {
display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto 50px;
}
.party-img {
  width: 50%;
  margin: 0 auto;
}
.party-txt {
  width: 50%;
  margin: 0 auto;
  padding: 30px;
}
@media (max-width: 860px) {
.party-section h2 {
  font-size: 24px;
}
.party-img {
  width: 95%;
  order: 1;
}
.party-txt {
  width: 95%;
  order: 2;
}
}


.faq-section {
  padding: 75px 0;
}
.faq-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #9d8f66;
  font-size: 45px;
  text-align: center;
}
.faq-block {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.faq-box table {
width: 100%;
border-top: 1px solid #e1e0dc;
border-bottom: 1px solid #e1e0dc;
padding: 20px 10px;
margin: 0 0 20px;
}
.faq-box table th {
width: 5%;
}
.q-txt {
color: #204b83;
font-size: 20px;
vertical-align: top;
}
.a-txt {
color: #474747;
font-size: 20px;
vertical-align: top;
}
@media (max-width: 860px) {
.faq-block {
  max-width: 95%;
}
}
footer {
  padding: 75px 0 50px;
  background: #022545;
  text-align: center;
}
footer h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  font-size: 45px;
  text-align: center;
}
footer h4 {
margin: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #fff;
  padding: 5px;
  font-size: 35px;
  text-align: center;
}
footer a {
  display: inline-block;
  background: #0d5393;
  color: #fff;
  padding: 15px 50px;
  margin: 30px 0 0;
}
footer a:hover {
  text-decoration: none;
  color: #fff;
}
footer p {
color: #fff;
font-size: 12px;
}
footer .tel-txt {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  font-size: 40px;
  text-align: center;
}
footer .tel-txt span {
  font-style: normal;
  font-size: 30px;
}
.footer-logo {
  background: none;
  width: 250px;
  margin: 0;
} 
@media (max-width: 860px) {
footer h4 br {
display: none;
}
}
