@charset "utf-8";
/* *************************************
hamburger
************************************* */
.hamburger {
  width: fit-content;
  text-align: center;
}
.hamburger__btn {
  padding: calc(5 * var(--rem)) calc(5 * var(--rem));
  @media (max-width: 767px) {
    padding: calc(5 * var(--rem));
  }
}

@media (any-hover: hover) {
  .hamburger__btn:hover {
    cursor: pointer;
  }
}

.hamburger__btn span {
  display: block;
  width: calc(26 * var(--rem));
  height: calc(2 * var(--rem));
  background-color: var(--black);
  transition: 0.3s ease;
}

.hamburger__btn span:nth-child(2) {
  margin: calc(6 * var(--rem)) 0;
}

/* is-active */
.hamburger.is-active .hamburger__btn span:nth-child(1) {
  transform: translateY(calc(8 * var(--rem))) rotate(45deg);
}
.hamburger.is-active .hamburger__btn span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__btn span:nth-child(3) {
  transform: translateY(calc(-8 * var(--rem))) rotate(-45deg);
}

.header__hamburger {
  background-color: var(--white);
  padding: 5px;
  @media (max-width: 767px) {
    position: static;
  }
}

.header.is-active .header__hamburger {
  @media (max-width: 767px) {
    display: block;
  }
}

.hamburger__menu,
.hamburger__close {
  text-transform: uppercase;
  font-size: calc(10 * var(--rem));
  font-weight: bold;
  line-height: 1;
}

.hamburger.is-active .hamburger__menu {
  display: none;
}

.hamburger__close {
  display: none;
}

.hamburger.is-active .hamburger__close {
  display: block;
}

/* *************************************
btn1
************************************* */
.btn1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: calc(10 * var(--rem));
  min-width: calc(200 * var(--rem));
  background-color: var(--blue);
  border-radius: 100vmax;
  font-size: calc(16 * var(--rem));
  color: var(--white);
  letter-spacing: 0.1em;
  padding: calc(10 * var(--rem));
}

.btn1::after {
  content: '';
  display: inline-block;
  width: calc(10 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/svg/arrow.svg) no-repeat center / contain;
}

.btn1.btn1--white {
  background-color: var(--white);
  color: var(--blue);
}

.btn1.btn1--white::after {
  background: url(../../library/images/svg/arrow-b.svg) no-repeat center / contain;
}

/* *************************************
btn2
************************************* */
.btn2 {
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-items: center;
  column-gap: calc(8 * var(--rem));
  min-width: calc(372 * var(--rem));
  padding: calc(20 * var(--rem)) calc(20 * var(--rem));
  font-size: calc(18 * var(--rem));
  letter-spacing: 0.12em;
  color: var(--blue);
  background-color: var(--white);
  border-radius: 16px;
  @media (max-width: 767px) {
    min-width: calc(200 * var(--rem));
    padding-inline: calc(10 * var(--rem));
  }
}

.btn2::before {
  content: '';
  display: inline-block;
  width: calc(38 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/svg/tel.svg) no-repeat center / contain;
  @media (max-width: 767px) {
    width: calc(28 * var(--rem));
  }
}

.btn2::after {
  content: '';
  display: inline-block;
  width: calc(10 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/svg/arrow-b.svg) no-repeat center / contain;
}

/* 縦線 */
.btn2 span {
  display: block;
  position: relative;
}

.btn2 span::before {
  content: '';
  display: inline-block;
  width: calc(2 * var(--rem));
  height: 130%;
  background-color: var(--blue);
  position: absolute;
  top: 50%;
  left: -29%;
  transform: translateX(-50%) translateY(-50%);
  @media (max-width: 767px) {
    display: none;
  }
}

/* お問い合わせ */
.btn2.btn2--contact::before {
  background: url(../../library/images/svg/web.svg) no-repeat center / contain;
}

.btn2.btn2--contact span {
  letter-spacing: 0em;
}

.btn2.btn2--contact span::before {
  left: -10%;
}

/* LINE */
.btn2.btn2--line::before {
  background: url(../../library/images/svg/fukidashi-b.svg) no-repeat center / contain;
  left: -5%;
}

.btn2.btn2--line span {
  letter-spacing: 0;
}

.btn2.btn2--line span::before {
  left: -8%;
}

/* *************************************
title1
************************************* */
.title1 {
  font-size: calc(46 * var(--rem));
  color: var(--gold);
  letter-spacing: 0em;
  line-height: 1;
  @media (max-width: 767px) {
    font-size: calc(48 * var(--rem));
  }
}

.title1::first-letter {
  text-transform: uppercase;
}

.title1.title1--blue {
  color: var(--blue);
}

/* *************************************
title2
************************************* */
.title2 {
  display: grid;
  justify-items: center;
  row-gap: calc(16 * var(--rem));
}

.title2__en {
  font-size: calc(45 * var(--rem));
  line-height: 1;
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  column-gap: calc(32 * var(--rem));
  align-items: center;
  @media (max-width: 767px) {
    font-size: calc(28 * var(--rem));
    column-gap: calc(16 * var(--rem));
  }
}

.title2__en::before,
.title2__en::after {
  content: '';
  display: inline-block;
  width: calc(160 * var(--rem));
  height: calc(2 * var(--rem));
  background-color: var(--silver);
  @media (max-width: 767px) {
    width: calc(80 * var(--rem));
  }
}

.title2__jp {
  font-size: calc(20 * var(--rem));
  line-height: 1;
  @media (max-width: 767px) {
    font-size: calc(16 * var(--rem));
  }
}

/* *************************************
page-title
************************************* */
.page-title {
  font-size: calc(60 * var(--rem));
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding-inline: calc(16 * var(--rem));
  position: relative;
  text-align: center;
  @media (max-width: 767px) {
    font-size: calc(40 * var(--rem));
  }
}

.page-title.page-title--753 {
  font-weight: 900;
  font-size: calc(80 * var(--rem));
  letter-spacing: 0.3em;
  @media (width < 768px) {
   font-size: calc(40 * var(--rem));
  }
}

/* *************************************
post-list
************************************* */
.post-list {
  display: grid;
  row-gap: calc(14 * var(--rem));
}

.post-link {
  display: block;
}

.post-list__time {
  font-size: calc(10 * var(--rem));
  font-weight: bold;
  color: var(--gold);
  font-family: var(--sub);
}

.post-list__title {
  font-size: calc(18 * var(--rem));
  color: var(--blue);
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 1.5;
  margin-block-start: calc(-7 * var(--rem));
}

.post-list.post-list--l {
  row-gap: calc(24 * var(--rem));
}

.post-list__item.post-list__item--animation {
  transform: translateX(-20px);
  opacity: 0;
}

/* *************************************
post-list2
************************************* */
.post-list2 {
  display: grid;
  @media (max-width: 767px) {
    row-gap: calc(24 * var(--rem));
  }
}

.post-list2__item {
}

.post-link2 {
  display: grid;
  grid-template-columns: calc(200 * var(--rem)) 1fr;
  gap: calc(8 * var(--rem)) calc(24 * var(--rem));
  align-items: start;
  border-bottom: 1px solid var(--gold);
  padding-block: calc(16 * var(--rem));
  @media (max-width: 767px) {
    grid-template-columns: 1fr;
  }
}

.post-list2__img {
}

.post-list2__img img {
  aspect-ratio: 3 /2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.post-list2__time {
  font-size: calc(18 * var(--rem));
  font-weight: bold;
  color: var(--gold);
  margin-block-start: calc(8 * var(--rem));
  line-height: 1;
}

.post-list2__title {
  font-size: calc(20 * var(--rem));
}

/* *************************************
top-swiper
************************************* */
.top-swiper {
}

.top-swiper__container {
}

.top-swiper__container .swiper-slide {
  width: calc(226 * var(--rem));
}

.top-swiper__container .swiper-slide img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* *************************************
section-parts
************************************* */
.section-parts {
  background: url(../../library/images/top/top-bridal.webp) no-repeat 124% 34% / 78%;
  padding-block: calc(80 * var(--rem)) calc(137 * var(--rem));
  position: relative;
  @media (max-width: 767px) {
    background-size: cover;
    background-position: 68% 50%;
  }
}

.section-parts::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 55% 0, 37% 100%, 0% 100%);
}

.section-parts::after {
  @media (max-width: 767px) {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff50;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.section-parts__wrap {
  position: relative;
  z-index: 1;
}

.section-parts__text {
  margin-block-start: calc(10 * var(--rem));
  padding-inline-start: calc(8 * var(--rem));
}

.section-parts__text p {
  font-size: calc(18 * var(--rem));
  color: var(--blue);
  font-weight: bold;
  letter-spacing: 0.1em;
}

.section-parts__btn {
  padding-block-start: calc(58 * var(--rem));
}

/* 753 */
.section-parts.section-parts--753 {
  background: url(../../library/images/top/top-753.webp) no-repeat -97% 28% / 84%;
  padding-block-end: calc(72 * var(--rem));
  @media (max-width: 767px) {
    background-size: cover;
    background-position: 68% 50%;
  }
}

.section-parts.section-parts--753 .inner {
  width: min(100%, calc(990 * var(--rem)));
}

.section-parts.section-parts--753::before {
  clip-path: polygon(63% 0, 100% 0, 100% 100%, 46% 100%);
}

.section-parts.section-parts--753 .section-parts__wrap {
  width: fit-content;
  margin-inline-start: auto;
  margin-block-start: calc(67 * var(--rem));
}

/* *************************************
list1
************************************* */
.list1 {
  display: grid;
  row-gap: calc(8 * var(--rem));
}

.list1__item {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: calc(8 * var(--rem));
  font-size: calc(14 * var(--rem));
  line-height: 1.5;
}

.list1__item::before {
  content: '';
  display: inline-block;
  width: calc(4 * var(--rem));
  aspect-ratio: 1;
  border-radius: 100vmax;
  background-color: var(--black);
}

.list1.list1--font .list1__item {
  font-size: calc(18 * var(--rem));
  font-weight: bold;
}

/* *************************************
list2
************************************* */
.list2 {
  display: grid;
  row-gap: calc(8 * var(--rem));
}

.list2__item {
  font-size: calc(18 * var(--rem));
  @media (max-width: 767px) {
    font-size: calc(16 * var(--rem));
  }
}

/* *************************************
fee-list1
************************************* */
.fee-list1 {
  display: grid;
  row-gap: calc(16 * var(--rem));
}

.fee-list1__wrap {
  border-bottom: 1px solid var(--black);
  padding-block-end: calc(16 * var(--rem));
}

.fee-list1__item {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: calc(24 * var(--rem));
  @media (max-width: 767px) {
    column-gap: calc(16 * var(--rem));
    grid-template-columns: 1fr;
    row-gap: calc(16 * var(--rem));
  }
}

.fee-list1__item dt {
  font-size: calc(22 * var(--rem));
  font-weight: bold;
  @media (max-width: 767px) {
    font-size: calc(20 * var(--rem));
  }
}
.fee-list1__item dd {
  text-align: right;
  font-size: calc(22 * var(--rem));
  font-weight: bold;
  @media (max-width: 767px) {
    font-size: calc(20 * var(--rem));
  }
}

.fee-list1__item dd span {
  font-size: calc(16 * var(--rem));
  font-weight: 400;
}

.fee-list1__child-list {
  margin-block-start: calc(8 * var(--rem));
}

/* *************************************
table1
************************************* */
.table1 {
  @media (max-width: 767px) {
    display: grid;
    row-gap: calc(8 * var(--rem));
  }
}

.table1__item {
  display: grid;
  grid-template-columns: calc(200 * var(--rem)) 1fr;
  border-bottom: 1px solid var(--black);
  column-gap: calc(24 * var(--rem));
  @media (max-width: 767px) {
    grid-template-columns: 1fr;
  }
}

.table1__item dt,
.table1__item dd {
  font-size: calc(18 * var(--rem));
  padding: calc(16 * var(--rem));
  @media (max-width: 767px) {
    padding-block: calc(8 * var(--rem));
  }
}

.table1__item dt {
  display: grid;
  place-content: center;
  @media (max-width: 767px) {
    place-content: start;
  }
}

/* ----------------------------------------------------------------------------------------

アニメーション用スタイル

---------------------------------------------------------------------------------------- */
.animation-fade,
.animation-fade-p > p,
.animation-stagger > * {
  opacity: 0;
  visibility: hidden;
}

.animation-slide-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
}

*:has(> .animation-slide-right) {
  overflow: hidden;
}

.animation-slide-right {
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
}
