@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-origin: border-box;
}
@font-face {
  font-family: "Snell Roundhand";
  src: url("../font/SnellBT-Regular.otf") format("opentype");
  font-display: swap;
}
:root {
  --main-primary: #a07506;
  --txt-primary: #3c321e;
  --color-white: #fff;
  font-size: 10px;
}
html {
  scroll-behavior: smooth;
}
body {
  display: block;
  overflow-x: hidden;
  width: 100%;
  font-style: normal;
  font-family: "Shippori Mincho", serif;
  color: var(--color-white);
  background-color: #000;
}
/*====================================*/
/* base contents */
/*====================================*/
h1 {
  font-weight: 400;
  line-height: 1.8;
}
h2 {
  font-weight: 700;
  line-height: 1.7;
}
h3 {
  font-weight: 500;
  line-height: 1.8;
}
p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
ul li {
  color: currentColor;
}
img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  display: block;
}
.animate,
.animate-delay {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  position: relative;
}
.animate-delay {
  transition-delay: 0.5s;
}
.slide-up {
  transform: translateY(100px);
}
.slide-down {
  transform: translateY(-100px);
}
.slide-left {
  transform: translateX(100px);
}
.slide-right {
  transform: translateX(-100px);
}
.animate.active {
  opacity: 1;
  transform: translate(0, 0);
}
.gallery_img.animate {
  transition-delay: calc(var(--delay) * 0.1s);
}
/* ------------------------
    edit contents
------------------------- */
/* 指定フォント ここから */

/* ----pc,sp/on_off---- */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
@media (max-width: 767.98px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/*====================================*/
/* Header */
/*====================================*/
.header_hero {
  position: relative;
  padding: 92px 0 93px;
  text-align: center;
  background: radial-gradient(50% 65.82% at 50% 65.82%, rgba(102, 102, 102, 0.82) 0%, rgba(0, 0, 0, 0.82) 100%), url(../img/hero_bg.webp) lightgray 50% / cover no-repeat;
}
.header_hero::before,
.header_hero::after {
  position: absolute;
  display: block;
  content: "";
  width: calc(100% - 40px);
  height: 8px;
  background-image: url(../img/svg/db_line.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 50%;
}
.header_hero::before {
  top: 53px;
  transform: translateX(-50%);
}
.header_hero::after {
  bottom: 53px;
  transform: translateX(-50%) rotate(180deg);
}
.header_hero h2 {
  position: relative;
  font-size: 2.4rem;
  line-height: normal;
  letter-spacing: 0.96px;
  margin-bottom: 62px;
}
.header_hero h2::after,
.section-1 h2::after,
.section-3 .title h3::after,
.section-4 .title h3::after {
  position: absolute;
  display: block;
  content: "";
  width: 80px;
  height: 2px;
  background-image: url(../img/svg/sg_line.svg);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -31px;
  left: 50%;
  transform: translateX(-50%);
}
.header_hero p {
  padding: 0 20px;
  font-size: 1.5rem;
  letter-spacing: -0.6px;
}
@media (min-width: 427.98px) {
  .header_hero p {
    letter-spacing: 0.64px;
    font-size: 1.6rem;
  }
}
@media (min-width: 767.98px) {
  .header_hero {
    padding: 151px 0;
  }
  .header_hero::before {
    top: 112px;
  }
  .header_hero::after {
    bottom: 112px;
  }
  .header_hero::before,
  .header_hero::after {
    max-width: 1080px;
    height: 12px;
  }
}
/*====================================*/
/* Main */
/*====================================*/
.section-1 {
  background: url(../img/sec1_bg.webp) #000 50% / cover repeat;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  padding: 66px 19px 182px;
}
.section-1 h2 {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  color: var(--main-primary);
  line-height: 1.2;
}
.section-1 h2::after {
  bottom: -16px;
}
.section-1 .section_detail {
  margin-top: 66px;
  background-color: var(--color-white);
  color: var(--txt-primary);
}
.section_detail .section_detail--text {
  padding: 32px 21px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section_detail--text li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section_detail--text li .text-left {
  position: relative;
  background-color: #1a1a1a;
  color: var(--color-white);
  width: fit-content;
  padding: 14px;
  line-height: 1;
  text-align: center;
}
.section_detail--text li .text-left::before {
  position: absolute;
  content: "";
  border: 1px solid #e9d275;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section_detail--text li .text-right,
.section_detail--text li .text-right-2 p {
  font-size: 1.8rem;
  line-height: 1.7;
}
.section_detail--text li .text-right span {
  font-size: 1.4rem;
}
.text-right-2 a {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--txt-primary);
  text-decoration-line: underline;
}
.text-right-2 a img {
  width: 6px;
  height: 8px;
  display: inline-block;
}
.section_detail--text li .text-right-3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-right-3 .text-top {
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--main-primary);
  padding: 6px 10px;
  border: 1px solid var(--main-primary);
}
.half ul li {
  position: relative;
  padding: 12px 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  justify-content: space-between;
}
.half ul li::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/svg/line_dot.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 1px;
  bottom: 0;
}
.half ul li:last-child {
  padding: 0;
}
.half ul li p:first-child {
  width: fit-content;
  padding: 0 8px;
  border-radius: 8px;
}
.half ul li p:last-child {
  line-height: 1.7;
}
.color-1 {
  background-color: #ffcece;
}
.color-2 {
  background-color: #fff2ce;
}
.color-3 {
  background-color: #cee3ff;
}
.btn {
  margin-top: 32px;
}
.btn a {
  position: relative;
  display: block;
  padding: 16px 0;
  background-color: var(--main-primary);
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 18px;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 40px;
  transition: all 0.5s ease;
  text-align: center;
}
.btn a:hover {
  background-color: #333;
  color: var(--color-white);
}
.btn a::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/svg/btn-circle.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.btn a:hover:after {
  background-image: url(../img/svg/btn-circle-2.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.btn .color-4 {
  background-color: #333;
}
.btn .color-4::after {
  background-image: url(../img/svg/btn-circle-2.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.btn .color-4:hover {
  background-color: var(--main-primary);
  color: var(--color-white);
}
.btn .color-4:hover::after {
  background-image: url(../img/svg/btn-circle.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.note {
  margin-top: 24px;
  color: #443b38;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.section-2 {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-2 h2 {
  color: var(--main-primary);
  font-family: "Snell Roundhand";
  font-size: 5.4rem;
  font-weight: 500;
  line-height: 1.7;
}
.section-2 .section_detail-2 {
  margin: 22px 0 38.5px;
}
.section-2 .section_detail-2 p {
  font-size: 2rem;
  line-height: 2.4;
  letter-spacing: 0.8px;
  margin-bottom: 49px;
  font-weight: 500;
}
.section-3 {
  background: linear-gradient(180deg, #1c1e54 -4.87%, #1c1e54 96.51%);
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 100%);
  padding: 90px 20px 0;
}
.section-3 .title h3,
.section-3 .title p,
.section-4 .title h3 {
  text-align: center;
  line-height: 1.7;
  color: var(--main-primary);
}
.section-3 .title h3,
.section-4 .title h3 {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
}
.section-3 .title h3::after {
  bottom: -16px;
}
.section-3 .title p {
  margin-top: 32px;
  font-weight: 500;
}
.section-3 .section_detail-3 {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section_detail-3 .inside {
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, #6f6f6f 0%, rgba(35, 35, 35, 0) 100%);
  gap: 32px;
  padding: 32px 24px;
  color: var(--main-primary);
}
.section_detail-3 .reverse_bg {
  background: linear-gradient(90deg, rgba(35, 35, 35, 0) 0%, #6f6f6f 100%);
}
.inside .inside_text {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.inside_text .detail .text-1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
}
.inside_text .detail .text-2 {
  margin: 16px 0;
}
.inside_text .detail .text-2,
.inside_text .detail .text-note {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
}
.inside_text .detail .text-note {
  position: relative;
  font-size: 1.4rem;
  margin-left: 15px;
}
.inside_text .detail .text-note::before {
  position: absolute;
  content: "※";
  left: -15px;
}
.inside .inside_text .check {
  display: flex;
  flex-direction: row-reverse;
  gap: 9px;
}
.inside .inside_text .check p {
  font-weight: 800;
  line-height: 1.63;
}
.inside .inside_text .check p:first-child {
  font-size: 2.4rem;
  writing-mode: vertical-lr;
  letter-spacing: 22px;
}
.inside .inside_text .check p:last-child {
  letter-spacing: 0.96px;
  writing-mode: vertical-rl;
  margin-top: 7px;
}
.section_detail-3 .inside:last-child {
  margin-bottom: 96px;
}
.section-4 {
  background: linear-gradient(180deg, #1c1e54 0%, #020914 100%);
  margin-top: -3px;
  padding-top: 3px;
}
.section-4 .title h3::after {
  bottom: -16px;
}
.section-4 .section_detail-text {
  margin-top: 64px;
  padding: 0 20px;
}
.section-4 .section_detail-text .img {
  margin-bottom: 58px;
}
.section_detail-text .text {
  border: 1px solid var(--main-primary);
  margin-bottom: 32px;
}
.section_detail-text .text:last-child {
  margin-bottom: 0;
}
.section_detail-text .text .list .p_title {
  padding: 10px 0;
  background-color: var(--main-primary);
  color: var(--color-white);
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 1.2px;
}
.section_detail-text .text .list .p_text {
  padding: 24px;
  background-color: #ffffffcc;
  color: var(--main-primary);
}
.section_detail-text .text .list .p_text p {
  font-weight: 600;
  line-height: 1.8;
  margin-top: 10px;
}
.section_detail-text .text .list .p_text p:first-child {
  margin-top: 0;
}
.section_detail-text .text-custom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
}
.section_detail-text .text-custom .list {
  border: 1px solid var(--main-primary);
}
.section_detail-text .text-custom .list .p_text {
  padding: 16px 0;
  text-align: center;
}
.section_detail-text .text:last-child .p_note {
  font-weight: 500;
  line-height: 2;
  color: #443b38;
}
.p_note a {
  color: #443b38;
  text-decoration: underline;
}
@media (min-width: 425px) {
  .section_detail .section_detail--img img {
    min-height: 270px;
  }
  .section_detail .section_detail--text {
    padding: 32px 24px;
  }
  .section-2 h2 {
    font-size: 6.4rem;
  }
}
@media (min-width: 767.98px) {
  .section-1 .section_detail {
    max-width: 1080px;
    margin: 85px auto 0;
  }
  .section_detail--text li {
    flex-direction: row;
    align-items: flex-start;
  }
  .section_detail--text li:last-child {
    gap: 8px;
    margin-right: -14px;
  }
  /* .section_detail--text li:last-child .text-left {
    min-width: 68px;
  } */
  .section_detail--text li .text-right-3 {
    flex-direction: row;
    align-items: end;
    gap: 18px;
  }
  .section_detail--text li .text-right-3 ul li {
    align-items: flex-start;
    margin: 0;
  }
  .half ul li:last-child {
    padding: 12px 0;
  }
  .text-right-3 .text-top {
    letter-spacing: -0.9px;
  }
  .text-right-2 {
    display: flex;
    align-items: center;
  }
  .section_detail--text li:nth-child(1),
  .section_detail--text li:nth-child(2) {
    align-items: center;
    gap: 24px;
  }
  .section-2 .section_detail-2 {
    margin-bottom: 0;
  }
  .section-2 .section_detail-2 p {
    margin-bottom: 32px;
  }
  .section-3 .title h3 {
    font-size: 4rem;
  }
  .section-3 .title p {
    font-size: 2.4rem;
  }
  .section_detail-3 .inside {
    max-width: 1080px;
    margin: 0 auto;
    flex-direction: row-reverse;
  }
  .section_detail-3 .reverse_fl {
    flex-direction: row;
  }
  .inside .inside_text {
    gap: 35px;
  }
  .inside .reverse_fl {
    flex-direction: row-reverse;
  }
  .inside .inside_text .check p:first-child {
    letter-spacing: 10px;
  }
  .section_detail-3 .inside:last-child {
    margin-bottom: 90px;
    width: 100%;
  }
  .inside .day-2 {
    flex-direction: row-reverse;
    width: 100%;
  }
  .inside .day-2 .check {
    flex-direction: column;
    gap: 0;
  }
  .inside .day-2 .check p:first-child {
    writing-mode: inherit;
  }
  .inside .day-2 .check p:last-child {
    writing-mode: inherit;
    margin-top: 0;
  }
  .section-3 .section_detail-3 {
    gap: 80px;
  }
  .section-4 .section_detail-text {
    max-width: 1080px;
    margin: 64px auto 0;
  }
  .section-4 .title h3 {
    font-size: 4rem;
  }
  .section_detail-text .text .list .p_text {
    padding-left: 64px;
  }
  .section_detail-text .text .list .p_title {
    font-size: 3.2rem;
  }
  .section_detail-text .text .list .p_text p {
    font-size: 2rem;
  }
  .section_detail-text .text-custom .list .p_text {
    padding-left: 0;
  }
  .section_detail-text .text-custom {
    flex-direction: row;
    margin-bottom: 116px;
  }
  .section_detail-text .text-custom .list {
    flex: 1;
  }
  .half {
    width: clamp(305px, 38vw, 418px);
  }
}
@media (min-width: 805.98px) {
  .section-1 h2 {
    font-size: 4rem;
  }
  .section_detail--text li:last-child {
    gap: 24px;
  }
  .text-right-3 .text-top {
    letter-spacing: normal;
  }
  .section_detail--text li .text-right-3 {
    gap: 24px;
  }
}
@media (min-width: 1023.98px) {
  /* .half {
    width: min(38vw, 418px);
  } */
  .section_detail--text li .text-left {
    font-size: 2rem;
    min-width: 148px;
  }
  .section_detail--text li .text-right,
  .section_detail--text li .text-right-2 p {
    font-size: 2rem;
  }
  .section_detail--text li .text-right span {
    font-size: 1.6rem;
  }
  .half ul li p:first-child,
  .half ul li p:last-child,
  .btn a,
  .note {
    font-size: 2rem;
  }
  .half ul li p:last-child {
    margin-right: 32px;
  }
  .inside_text .detail .text-2,
  .inside_text .detail .text-note {
    font-size: 2rem;
  }
  .inside_text .detail .text-note {
    font-size: 1.8rem;
  }
  .inside .day-2 .detail {
    margin-right: 123px;
  }
}
@media (min-width: 1079.98px) {
  .section-2 {
    padding: 0;
  }
  .inside .inside_text {
    min-width: 537px;
  }
  .inside_text .detail {
    min-width: 438px;
  }
  .section-4 .section_detail-text {
    padding: 0;
  }
}
/*====================================*/
/* Footer */
/*====================================*/
footer {
  background-color: #020914;
  padding: 32px 0 75px;
}
.ft_logo {
  padding-top: 63px;
  margin: 0 auto;
  max-width: 200px;
}
.ft_social {
  margin: 32px 0 44px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.ft_social img {
  max-width: 50px;
}
.ft_cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.ft_cta a {
  position: relative;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  font-family: "Noto Serif JP", serif;
}
.ft_cta a::before,
.ft_cta a::after {
  position: absolute;
  content: "";
  display: block;
  background-color: var(--color-white);
  width: 16px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
}
.ft_cta a:first-child::after {
  content: none;
}
.ft_cta a::before {
  top: -12px;
}
.ft_cta a::after {
  bottom: -12px;
}
@media (min-width: 767.98px) {
  .ft_social {
    margin: 115px 0 32px;
  }
  .ft_cta {
    flex-direction: row;
    justify-content: center;
  }
  .ft_cta a::before,
  .ft_cta a::after {
    width: 1px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .ft_cta a::before {
    left: -12px;
  }
  .ft_cta a::after {
    right: -12px;
    left: unset;
  }
}
.copyright {
  background-color: var(--color-white);
}
.copyright p {
  padding: 14px 0;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  line-height: 15.2px;
  letter-spacing: 0.36px;
  color: #000;
  font-family: "Noto Serif JP", serif;
}
/* pageTop */
.pageTop a {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  rotate: 180deg;
  background-color: var(--color-white);
  transition: all 0.3s ease, filter 0.3s ease;
  opacity: 0.5;
}
.pageTop a:hover {
  background-color: var(--main-primary);
  filter: drop-shadow(0px 8px 5px #3d260488);
  rotate: 270deg;
  opacity: 1;
}
.pageTop a:hover svg path,
.pageTop a:hover svg circle {
  stroke: white;
  fill: var(--main-primary);
}
.pageTop a:hover svg circle {
  stroke: var(--main-primary);
}
.pageTop a svg {
  width: 80px;
}




/*25.12.03 追加*/
.lyt-txt-sub{
	font-size: .8em;
}
.lyt-txt-cb{
	color: black;
}
