@charset "utf-8";

/**********************************************
	共通パーツ
***********************************************/


img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gold {
  color: #FFDA5E;
}

h1{
  text-transform:uppercase;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #301E3F;
  display: block;

}

h2{
  text-transform:uppercase;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #301E3F;
  display: block;
}

h3{
  text-transform:uppercase;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #301E3F;
  display: block;
}

a{
  text-transform:uppercase;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #301E3F;
  display: block;
}

p{
  text-transform:uppercase;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #301E3F;
  display: block;
}

li{
  text-transform:uppercase;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #301E3F;
  display: block;
}

/**********************************************
	container
***********************************************/
.container{
  order: 2;
  max-width: 480px;
  margin: 0 auto;
}

/**********************************************
	PCMV
***********************************************/
@media screen and (min-width:481px) {
  .container {
    min-width: 480px;
  }

  body {
    display: flex;
    position: relative;
  }

  .bg_left{
    order: 1;
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .bg_left::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/back1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
  }
  
  .bg_right{
    order: 3;
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    right: 0;

  }

  .bg_right::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/back2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
  }
}

  .bg_left_cc {
    display: none;
  }

  .sns_icon {
    display: none;
  }

  .bg_right_menu {
    display: none;
  }

  .bg_right_button_text {
    display: none;
  }

@media screen and (min-width:1200px) {
  .bg_left_cc {
  display: block;
  z-index: 1;
  }

  .bg_left_cc_1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(120px, 200 / 1920 * 100vw, 200px);
  letter-spacing: 1px;
  line-height: 1;
  color: #D3BBF0;
  display: block;
  text-align: left;
  margin-left: 5%;
  text-transform:capitalize;
  }
  
  .bg_left_cc_2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(120px, 200 / 1920 * 100vw, 200px);
  letter-spacing: 1px;
  line-height: 1;
  color: #D3BBF0;
  display: block;
  text-align: right;
  margin-right: 5%;
  text-transform:capitalize;
  }

  .bg_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .sns_icon{
    z-index: 1;
    width: auto;
    height: 30px;
    display: flex;
    gap: 15px;
    justify-content: right;
    margin-top: 5%;
    margin-right: 5%;
  }

  .sns_icon a{
    align-items: flex-end;
  }

  .bg_right_menu{
    z-index: 1;
    display: block;
    width: calc(250 / 335 * 100%);
    max-width: 335px;
    margin: 0 auto;
  }


  .bg_right_menu ul {
    display: flex;
    flex-direction: column;
    gap:15px;
  }

  .bg_right_menu ul li a {
    width: 100%;
    font-family: "Cormorant Garamond", serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 1px;
    color: #301E3F;
    display: block;
  }

  .bg_right_menu li.is-current a {
  /* text-decoration: underline;
  text-underline-offset: 4px; */
  width: 100%;
  border-bottom: 1px solid #8e73a3;
  border-radius: 1px;
  }

  .bg_right_button {
    z-index: 1;
    width: calc(250 / 335 * 100%);
    max-width: 335px;
    height: 90px;
    background-color: #301E3F;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px auto;
  }
  
  .bg_right_button_text{
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 1px;
    color: #FFDA5E;
    display: block;
  }
}

/**********************************************
	header
***********************************************/
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  z-index: 100; 
  height: 50px;
  background-color: rgba(48, 30, 63, 30%);
  backdrop-filter: blur(5px);
  max-width: 480px;
  margin: 0 auto;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;

}

.header_logo {
  width: 140px;
}

.header_logo img {
  height: auto;
  object-fit: contain;
}

.hamburger {
  position: relative;
  z-index: 120;
  width: 40px;
  height: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.hamburger_menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: 100%;
  height: 100vh;
  background-image: url(../img/menuback.webp);
  display: none;
  transition: transform 0.3s ease;
  max-width: 480px;
  margin: 0 auto;
}
.hamburger_menu.is-open {
  display: block;
}

.hamburger_menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  height: 100%;
  width: 100%;
}

.hamburger_menu a {
  color: #301E3F;
  letter-spacing: 2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
}

.hamburger_menu li.is-current a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

section[id] {
  scroll-margin-top: 50px;
}


/**********************************************
    $footer
***********************************************/
footer {
  background-color: #301E3F;
}

.footer_ttl {
  text-align: center;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 2px;
  padding-top: 60px;
}

footer ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}

footer li {
  text-align: center;
}

footer li a {
  color: #ffffff;
}

.copyright {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 20px;
}

.copyright small {
  text-align: center;
  color: #ffffff;
}

/**********************************************
    $link button
***********************************************/
.link_button {
  width: calc(200 / 375 * 100%);
  height: auto;
  background-color: #301E3F;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  border-radius: 2px;
  gap: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.link_button span {
  display: block;
}

.link_button .gold {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
  color: #FFDA5E;
}

.button_text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  color: #ffffff;
}

/**********************************************
    $section title
***********************************************/
.sec_ttl {
  width: 100%;
  height: auto;
  background-color: #301E3F;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.sec_ttl p {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: block;
  text-align: center;
}

.sec_ttl p::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #FFDA5E;
  margin: 10px auto 0;
}

.sec_ttl h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 1px;
  color: #ffffff;
  display: block;
}

