@charset "UTF-8";
/* CSS Document */

h1 {
  font-family: "garamond-premier-pro-display", serif;
  font-size: clamp(10px, 12vw, 60px);
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.1rem;
  padding-top: 8rem;
  align-items: center;
  color: #a18342;
}
h1 span {
  font-family: "Roboto", sans-serif;
  font-size: clamp(10px, 3.56vw, 14px);
  line-height: 2.3;
  letter-spacing: 0;
}

.top {
  padding: 0 3rem 6rem;
}
.top img {
  width: 100%;
  border-radius: 1rem;
  margin: 3rem 0;
}

h2 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(10px, 4vw, 17px);
  line-height: 1.5;
  font-weight: 600;
  align-items: flex-start;
  color: #343434;
  letter-spacing: 3px;
  padding: 2rem 0 3rem;
}
h2 span {
  font-size: clamp(10px, 4vw, 17px);
  letter-spacing: 3px;
  background-color: #e0cf09;
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.top_text {
  padding-top: 1rem;
}

.candle {
  background-color: rgba(224, 207, 9, 0.23);
  padding: 6rem 3rem;
}
h3 {
  font-family: "garamond-premier-pro-display", serif;
  text-align: center;
  font-size: 2rem;
  color: #273962;
  font-weight: 300;
  letter-spacing: 2px;
}
.candle_text p {
  padding-bottom: 2rem;
  font-size: 1.4rem;
}

.way {
  background-color: #fff;
  margin: 3rem 0;
  padding: 3rem;
  border-radius: 3rem;
  font-weight: 600;
}
.way_ttl {
  background-color: #bd3628;
  color: #fff;
  padding: 0 4rem;
  border-radius: 100px;
  margin: 0 auto;
  max-width: 140px;
  font-size: 1.5rem;
}
.way_text {
  border-left: #bd3628 2px solid;
  padding-left: 2rem;
  margin: 1.5rem 0;
  font-size: 1.5rem;
}
.way_sub {
  line-height: 1.2;
  margin-top: 1rem;
}

.accordion_wrapper {
  margin-top: 50px;
}
.accordion {
  font-size: 20px;
  margin: 0 auto;
}

/* --- アコーディオンヘッダー --- */
.accordion_header {
  cursor: pointer;
  background-color: #f4f4f4;
  color: #bd3628;
  font-weight: 600;
  font-size: 17px;
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 1000px;
  border: 1px solid #bd3628;
  margin-top: 20px;
}

/* --- 赤い丸の部分 --- */
.accordion_icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #bd3628;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* --- プラスの線（共通設定） --- */
.accordion_icon::before,
.accordion_icon::after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* 横線 */
.accordion_icon::before {
  width: 16px;
  height: 2px;
}

/* 縦線 */
.accordion_icon::after {
  width: 2px;
  height: 16px;
}

/* --- 開いた時の動き --- */
.accordion_header.open .accordion_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion_header.open .accordion_icon {
  transform: translateY(-50%) rotate(180deg);
}

.accordion_content {
  display: none;
  overflow: hidden;
  padding: 20px 10px;
}

.fragrance_img_wrap {
  display: flex;
  justify-content: center;
  gap: 2%;
}
.fragrance_img_wrap img {
  width: 26vw;
  height: 26vw;
  border-radius: 100%;
  max-width: 130px;
  max-height: 130px;
  object-fit: cover;
}

.fragrance_text_wrap {
  display: flex;
  color: #273962;
  font-family: "garamond-premier-pro-display", serif;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 2%;
  margin: 1rem 0;
}
.fragrance_text_wrap p {
  width: 26vw;
  max-width: 130px;
  font-size: 1.4rem;
  line-height: 1.2;
}