@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-origin: border-box;
}
:root {
  --main-primary: #efefef;
  --txt-primary: #343434;
  --main-cta: #c59330;
  --color-white: #fff;
  font-size: 10px;
}
html {
  scroll-behavior: smooth;
}
body {
  display: block;
  overflow-x: hidden;
  width: 100%;
  font-style: normal;
  font-family: "Noto Serif JP", serif;
  color: var(--txt-primary);
}
/*====================================*/
/* base contents */
/*====================================*/
h1 {
  font-weight: 400;
  line-height: 1.8;
}
h2 {
  font-weight: 400;
  line-height: 1.2;
}
h3,
h4 {
  font-weight: 700;
  line-height: 1.8;
}
p {
  font-size: 1.6rem;
  font-weight: 500;
  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;
}
.tb {
  display: block;
}
.pc_fl {
  display: flex !important;
}
.sp {
  display: none !important;
}
.sp_fl {
  display: none !important;
}
@media (max-width: 767.98px) {
  .pc {
    display: none !important;
  }
  .pc_fl {
    display: none !important;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block !important;
  }
  .sp_fl {
    display: flex !important;
  }
}
/*====================================*/
/* Header */
/*====================================*/
.main_mv {
  position: relative;
}
.main_mv .main_mv--title {
  position: absolute;
  min-width: 622px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main_mv .main_mv--title h1 {
  position: relative;
  color: var(--color-white);
  text-align: center;
  font-size: 12rem;
  letter-spacing: 12px;
}
.main_mv .main_mv--title h1 span:first-child,
.main_mv .main_mv--title h1 span:last-child {
  display: block;
  min-width: 622px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main_mv .main_mv--title h1 span:first-child {
  top: -20px;
  font-size: 4rem;
  letter-spacing: 4px;
}
.main_mv .main_mv--title h1 span:last-child {
  bottom: -60px;
  font-size: 2.4rem;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .main_mv--img img {
    max-height: 800px;
  }
  .main_mv .main_mv--title {
    min-width: fit-content;
  }
  .main_mv .main_mv--title h1 {
    font-size: 6.4rem;
    letter-spacing: 6.4px;
  }
  .main_mv .main_mv--title h1 span:first-child {
    font-size: 3.2rem;
    letter-spacing: 3.2px;
  }
  .main_mv .main_mv--title h1 span:last-child {
    font-size: 2rem;
  }
  .main_mv .main_mv--title h1 span:first-child,
  .main_mv .main_mv--title h1 span:last-child {
    min-width: max-content;
  }
}
/*====================================*/
/* Main */
/*====================================*/
body {
  background-color: var(--main-primary);
}
.head_content {
  /* padding-top: 120px; */
  position: relative;
}
.head_content.main-1 {
  margin-top: 120px;
}
.head_content.main-1:before {
  position: absolute;
  content: "";
  left: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  border-radius: 0px 40px 40px 0px;
  background-color: var(--color-white);
}
.head_content .content-1 {
  /* position: relative; */
  z-index: 2;
}
.main-1 .main_inner {
  /* max-width: 1080px;
  margin: 0 auto; */

  display: grid;
  grid-template-areas: "left right";
  grid-template-columns: 0.65fr 1fr;
  align-items: center;
  gap: 30px;
  padding-left: 24px;
}
.lp_main-pd {
  padding: 0 24px;
}
.head_content .content-2 {
  position: relative;
  z-index: 1;
  padding-right: 24px;
}
@media (max-width: 768px) {
  .main-1 .main_inner {
    grid-template-areas: none;
    grid-template-columns: 1fr;
    margin: 0;
    gap: 0;
  }
  .head_content.main-1:before {
    width: calc(100% - 24px);
    height: calc((100% - 130px));
  }
}
@media (min-width: 1080px) {
  .main-1 .main_inner {
    /* margin-left: calc((100% - 1080px) / 2); */
    margin-left: calc((100% - 1110px) / 2);
  }
  .lp_main-pd {
    padding: 0;
  }
}
@media (min-width: 1120px) {
  .main-1 .main_inner {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .main-1 .main_inner {
    margin-right: calc((100% - 1200px) / 6);
  }
  .head_content .content-2 {
    padding-right: 0;
  }
}
.main_content {
  padding-top: 120px;
  position: relative;
  display: grid;
  grid-template-areas: "left right";
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
}
.main_content .content-1 {
  grid-area: left;
  background-color: var(--color-white);
  border-radius: 0px 40px 40px 0px;
  max-width: 1080px;
  position: relative;
  z-index: 1;
}
.content_detail--1 .title {
  padding-top: 72px;
  font-size: 3.2rem;
}
.content_detail--1 .time {
  border-top: 1px solid var(--txt-primary);
  border-bottom: 1px solid var(--txt-primary);
  max-width: 276px;
  padding: 16px 0;
  margin: 32px 0;
}
.content_detail--1 .text {
  margin-bottom: 32px;
}
.content_detail--1 .note {
  padding-bottom: 96px;
  font-size: 1.4rem;
}
.content_decor {
  position: absolute;
  left: -4%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: #f0eee3;
  font-size: 6.6vw;
  font-weight: 700;
  line-height: 1.2;
  z-index: -1;
}
.main-2,
.main-2_custom,
.lp_main--title,
.toggle-item {
  max-width: 1080px;
  margin: 0 auto;
}
.main-2 {
  position: relative;
  padding-top: 80px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  align-items: stretch;
}
.main-2:nth-of-type(2)::before {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/svg/line_dot.svg) no-repeat;
  background-size: cover;
  width: 2px;
  height: 1085px;
  z-index: 1;
  left: 10px;
}
.main-2:first-of-type::after,
.main-2:nth-of-type(2):after {
  position: absolute;
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  max-height: 380px;
  top: 260px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.main-2:first-of-type::after {
  background: url(../img/main_bg-1.webp) no-repeat;
  background-size: cover;
}
.main-2:nth-of-type(2):after {
  background: url(../img/main_bg-2.webp) no-repeat;
  background-size: cover;
}
.lp_main--title {
  padding: 120px 0 0;
  font-size: 6.4rem;
  font-weight: 400;
  line-height: 1.2;
}
.lp_main--title span {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 16px;
}
.main-2 .content-1,
.main-2_custom .content-1 {
  border-radius: 0;
  padding: 36px 32px;
}
.main-2 .content-1 h4 {
  font-size: 2.4rem;
}
.main-2 .content-1 p {
  margin-top: 28px;
}
.main-2 .content-2,
.main-2_custom .content-2 {
  position: relative;
  left: 0;
  box-shadow: none;
  z-index: 1;
}
.main-2_custom {
  padding-top: 40px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  align-items: flex-start;
}
.main-2_custom .content-1 {
  padding-top: 24px;
}
.main-2_custom .content-2 {
  display: grid;
  grid-template-areas: "left right";
  grid-template-columns: 1fr 1fr;
  column-gap: 35px;
}
.main-2_custom .content-2 .content-2_img:first-child {
  margin-top: 129px;
}
.main-2_custom .content-1 {
  background: transparent;
}
.pt-48 {
  padding-top: 48px;
}
.btn {
  padding: 120px 0 80px;
  margin: 0 auto;
  max-width: 312px;
}
.btn a {
  position: relative;
  padding: 8px 68px 8px 36px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  background-color: var(--main-cta);
  border-radius: 24px;
  color: var(--color-white);
  transition: background-color 0.5s ease;
}
.btn a:hover {
  background-color: var(--color-white);
  color: var(--main-cta);
}
.btn a::after {
  position: absolute;
  content: "";
  background-image: url(../img/svg/arrow-top-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 16px;
  height: 10px;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
.btn a:hover::after {
  background-image: url(../img/svg/arrow-top-cta.svg);
}
.lp_gallery {
  margin-top: 80px;
}
.lp_gallery .gallery {
  max-width: 1080px;
  margin: 0 auto;
  /* display: grid;
  grid-template-areas:
    "top-left top-center top-right"
    "bottom-left bottom-center bottom-right";
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 0 66px;
}
.lp_gallery .btn_cta {
  max-width: 1080px;
  margin: 120px auto 80px;
  background: linear-gradient(90deg, #eef3f6 0%, rgba(238, 243, 246, 0) 100%), url(../img/btn_cta.webp) lightgray 0px -186.821px / 107.71% 243.709% no-repeat;
  border-radius: 8px;
}
.lp_gallery .btn_cta p {
  padding-top: 32px;
  padding-left: 32px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 180%;
}
.lp_gallery .btn_cta .btn {
  margin: 24px auto 0 36px;
  padding: 0;
  padding-bottom: 40px;
  max-width: 264px;
}
.btn_cta .btn a {
  display: block;
}
/* Items Toggle */
.toggle-item {
  margin: 40px auto 0;
  background-color: var(--color-white);
  border: 1px solid var(--txt-primary);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
}
.toggle-button {
  width: 100%;
  background-color: var(--main-primary);
  color: var(--txt-primary);
  border: none;
  padding: 16px 22px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: opacity 0.3s ease;
}
.toggle-button:hover {
  opacity: 0.7;
}
.toggle-button::after {
  content: "";
  position: absolute;
  background-image: url(../img/svg/arrow-top.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 10px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.toggle-button.active::after {
  transform: translateY(-50%) rotate(180deg);
  background-image: url(../img/svg/arrow-top.svg);
}
.main-2_btn {
  padding: 0 20px;
  background-color: var(--main-primary);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  display: block;
}
.main-2_btn.show {
  position: relative;
  max-height: max-content;
  padding: 16px 22px;
}
.main-2_btn.show::before {
  position: absolute;
  content: "";
  display: block;
  width: calc(100% - 44px);
  max-width: 852px;
  height: 1px;
  background-color: var(--txt-primary);
  top: 0;
}
.main-2_btn p:nth-child(1),
.main-2_btn p:nth-child(2) {
  margin-bottom: 24px;
}
.main-2_btn ul {
  margin-bottom: 24px;
  padding: 24px;
  background: var(--color-white);
  list-style-type: disc;
}
.main-2_btn ul li {
  color: var(--txt-primary);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  margin-left: 24px;
}
@media (max-width: 768px) {
  .head_content .content-2 {
    padding-right: 24px;
  }
  .main_content {
    grid-template-areas:
      "left"
      "right";
    grid-template-columns: 1fr;
  }
  .content_detail--1 {
    margin: 0;
    /* padding-right: 16px; */
    /* padding-left: 40px; */
    padding: 0 16px;
    padding-right: 40px;
  }
  .content_decor {
    display: none;
  }
  .content_detail--1 .note {
    padding-bottom: 40px;
  }
  .main_content .content-2 {
    position: relative;
    /* padding: 0 24px; */
    left: unset;
    box-shadow: none;
    margin-top: -40px;
  }
  .content_detail--1 .title {
    padding-top: 80px;
    font-size: 2.4rem;
  }
  .content_detail--1 .time {
    margin: 40px 0;
  }
  .lp_main--title {
    padding: 160px 24px 0;
    font-size: 4rem;
  }
  .lp_main--title span {
    font-size: 2rem;
  }
  .main-2 {
    gap: 16px;
  }
  .main-2 .content-1 {
    /* margin: 0 24px; */
    padding: 28px 24px;
  }
  .main-2 .content-1 h4 {
    font-size: 2rem;
  }
  .pt-48 .content-1 h4 {
    letter-spacing: -0.05px;
  }
  .main-2 .content-2 {
    margin-top: 0;
  }
  .main-2_custom {
    gap: 24px;
  }
  .toggle-item {
    margin: 40px auto 0;
  }
  .lp_gallery .gallery {
    grid-template-areas: "left right";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 0 24px;
    gap: 8px;
  }
  .lp_gallery .btn_cta {
    margin: 80px 24px;
  }
  .lp_gallery .btn_cta p {
    padding-top: 16px;
    padding-left: 16px;
    font-size: 2.4rem;
  }
  .lp_gallery .btn_cta .btn {
    margin-left: 16px;
    padding-bottom: 16px;
  }
  .main-2:nth-of-type(2)::before {
    content: none;
  }
}
@media (max-width: 1080px) {
  .lp_gallery .btn_cta {
    margin: 120px 24px 80px;
  }
}
/*====================================*/
/* Footer */
/*====================================*/
footer {
  background-color: var(--main-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.footer_access {
  padding-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.footer_access .footer_access--text p:first-child {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer_btn {
  margin-top: 64px;
}
.footer_btn a {
  display: block;
  color: var(--txt-primary);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  padding: 5px 36px;
  text-align: center;
  border-radius: 8px;
  border: 1.5px solid var(--txt-primary);
  min-width: 400px;
  transition: background-color 0.3s ease;
}
.footer_btn a:hover {
  background-color: var(--txt-primary);
  color: var(--color-white);
}
.footer_note {
  margin: 64px 0;
}
.footer_note li {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  padding-left: 10px;
}
.footer_note li::before {
  position: absolute;
  content: "※";
  left: -10px;
}
.footer_nav {
  display: flex;
  gap: 128px;
  margin-bottom: 65px;
}
.footer_nav li a {
  position: relative;
  color: var(--txt-primary);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  transition: opacity 0.3s ease;
}
.footer_nav li a::before,
.footer_nav li a::after {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.footer_nav li a:hover {
  opacity: 0.7;
}
.footer_nav li a::before {
  border-left: 1px solid var(--txt-primary);
  left: -64px;
}
.footer_nav li:last-child a::after {
  border-right: 1px solid var(--txt-primary);
  right: -64px;
}
@media (max-width: 768px) {
  footer {
    padding: 0 24px;
  }
  .footer_access {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .footer_access .footer_access--text p:first-child {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .footer_access .footer_access--text p:last-child {
    font-size: 1.4rem;
  }
  .footer_btn {
    margin-top: 80px;
  }
  .footer_btn a {
    margin: 0 24px;
    min-width: 311px;
  }
  .footer_note {
    margin-top: 80px;
  }
  .footer_note li {
    line-height: 1.8;
    padding-left: 16px;
  }
  .footer_note li::before {
    left: 0;
  }
  .footer_nav {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin: 12px 0 76px;
  }
  .footer_nav li a::before,
  .footer_nav li:last-child a::after {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    min-width: 294px;
    height: 0;
  }
  .footer_nav li a::before {
    border-left: unset;
    top: -12px;
    border-top: 1px solid var(--txt-primary);
  }
  .footer_nav li:last-child a::before {
    top: -15px;
  }
  .footer_nav li:last-child a::after {
    top: unset;
    right: unset;
    border-right: none;
    border-bottom: 1px solid var(--txt-primary);
    bottom: -12px;
  }
}
.copyright {
  background-color: var(--main-primary);
}
.copyright p {
  padding: 15px 0;
  font-size: 1.2rem;
  text-align: center;
}
/* pageTop */
.pageTop a {
  width: 80px;
  height: 80px;
  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(--color-primary);
}
.pageTop a:hover svg circle {
  stroke: var(--color-primary);
}
.pageTop a svg {
  width: 80px;
}
