@charset "UTF-8";
/* セクション共通ラベル
---------------------------------------------------------------------------- */
.c-sec-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.c-sec-label__num {
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
  min-width: 2.2rem;
}
.c-sec-label__line {
  display: block;
  width: 8.5rem;
  height: 1px;
  background: #955A64;
}
@media screen and (max-width: 767px) {
  .c-sec-label__line {
    width: 4.5rem;
  }
}
.c-sec-label__en {
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
}

#index .l-bg {
  background: url("../images/index/img_fv_01.png") no-repeat center center/cover;
  background-attachment: fixed;
}
#index {
  /* FV
  ---------------------------------------------------------------------------- */
}
#index .p-fv {
  position: relative;
  height: 100vh;
  min-height: 60rem;
  overflow: hidden;
}
#index .p-fv__inner {
  position: absolute;
  inset: 0;
  z-index: 3;
}
#index .p-fv {
  /* 拡大アニメーション用矩形（枠として残す） */
}
#index .p-fv__logo {
  position: absolute;
  top: 50%;
  left: 33%;
  transform: translate(-50%, -50%);
  width: 15rem;
  height: 7.8rem;
  border: 1rem solid;
  border-image: linear-gradient(-100deg, #955A64, #BFBDBD) 1;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: fvLogoExpand 4s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards, fvFadeIn 0.8s ease 0.8s forwards;
}
@media screen and (max-width: 767px) {
  #index .p-fv__logo {
    left: 50%;
    border: 0.6rem solid;
    border-image: linear-gradient(-100deg, #955A64, #BFBDBD) 1;
    animation: fvLogoExpandSP 4s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards, fvFadeIn 0.8s ease 0.8s forwards;
  }
}
#index .p-fv {
  /* Phase 1: キャッチコピー行（フェードイン→フェードアウト） */
}
#index .p-fv__first {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  z-index: 3;
  padding-left: 15rem;
  opacity: 0;
  animation: fvFadeIn 0.8s ease 0.8s forwards, fvFadeOut 0.6s ease 4s forwards;
}
@media screen and (max-width: 767px) {
  #index .p-fv__first {
    padding-top: 18rem;
    padding-left: 0;
    font-size: 2.4rem;
  }
}
#index .p-fv {
  /* Phase 2: テキスト中央（フェードイン） */
}
#index .p-fv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: center;
  z-index: 4;
  opacity: 0;
  animation: fvFadeIn 0.8s ease forwards 4.2s;
}
@media screen and (max-width: 767px) {
  #index .p-fv__content {
    flex-direction: column;
  }
}
#index .p-fv__mark {
  width: 15.7rem;
}
#index .p-fv__mark img {
  width: 100%;
}
#index .p-fv__catch {
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #index .p-fv__catch {
    font-size: 2.4rem;
  }
}
#index .p-fv__catch.-white {
  color: #fff;
}
#index .p-fv {
  /* サロン写真（枠の中に収める） */
}
#index .p-fv__img2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 6rem);
  height: calc(100vh - 6rem);
  z-index: 1;
  opacity: 0;
  animation: fvFadeIn 1.5s ease forwards 4.2s;
}
@media screen and (max-width: 767px) {
  #index .p-fv__img2 {
    width: calc(100vw - 1.6rem);
    height: calc(100vh - 1.6rem);
  }
}
#index .p-fv__img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#index .p-fv {
  /* ナビゲーション（フェードイン） */
}
#index .p-fv__nav {
  position: absolute;
  top: 8rem;
  right: 10rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  z-index: 4;
  opacity: 0;
  animation: fvFadeIn 0.8s ease forwards 4.4s;
}
#index .p-fv__nav_list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: right;
}
#index .p-fv__nav_item {
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #fff;
  text-align: right;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  #index .p-fv__nav_item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  #index .p-fv__nav_item a:hover {
    opacity: 0.7;
  }
}
#index .p-fv__nav_item:last-child {
  margin-top: 2rem;
}
#index {
  /* イントロ（ヘッダー後の第2FVエリア）
  ---------------------------------------------------------------------------- */
}
#index .p-intro {
  position: relative;
  padding-top: 34rem;
}
@media screen and (max-width: 767px) {
  #index .p-intro {
    padding-top: 24rem;
  }
}
#index .p-intro__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#index .p-intro__content {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
#index .p-intro__word-wrap {
  position: relative;
  width: 19.4rem;
  height: 9rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #index .p-intro__word-wrap {
    width: 14rem;
    height: 7rem;
  }
}
#index .p-intro__mark {
  position: absolute;
  inset: 0;
}
#index .p-intro__mark img {
  width: 100%;
  height: 100%;
}
#index .p-intro__word {
  position: absolute;
  top: -2.6rem;
  left: 0;
  width: 16rem;
  transform: rotate(7.32deg);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  #index .p-intro__word {
    width: 11rem;
    height: 11rem;
    top: -1.8rem;
  }
}
#index .p-intro__word img {
  position: absolute;
  right: -0.5rem;
  width: 16.1rem;
  height: 16rem;
  max-width: unset;
  opacity: 0;
  transition: opacity 1.5s ease;
}
@media screen and (max-width: 767px) {
  #index .p-intro__word img {
    width: 13rem;
    height: 13rem;
    right: -1rem;
  }
}
#index .p-intro__word img.p-intro__word--02 {
  width: 29rem;
  height: 12rem;
}
@media screen and (max-width: 767px) {
  #index .p-intro__word img.p-intro__word--02 {
    width: 17rem;
    height: 12rem;
    right: -2rem;
  }
}
#index .p-intro__word img.is-active {
  opacity: 1;
}
#index .p-intro__catch {
  font-size: 4.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: normal;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #index .p-intro__catch {
    font-size: 3rem;
  }
}
#index {
  /* 01 Think about yourself
  ---------------------------------------------------------------------------- */
}
#index .p-think {
  padding: 4rem 0 21rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #index .p-think {
    padding: 5rem 0 38rem;
  }
}
#index .p-think__txt {
  flex: 1;
}
@media screen and (min-width: 768px) {
  #index .p-think__txt {
    width: calc(50% - 2rem);
    flex: none;
  }
}
#index .p-think__ttl {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  color: #955A64;
  line-height: 1.6;
  margin-bottom: 4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #index .p-think__ttl {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
  }
}
#index .p-think__ttl span {
  display: inline-block;
  position: relative;
}
#index .p-think__ttl span::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}
#index .p-think__body p {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
}
#index .p-think__body p + p {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  #index .p-think__body p + p {
    margin-top: 2rem;
  }
}
#index .p-think__img_main {
  position: absolute;
  left: calc(50% + 50rem);
  transform: translateX(-50%);
  width: 45.3rem;
  top: 4rem;
}
@media screen and (max-width: 767px) {
  #index .p-think__img_main {
    left: auto;
    bottom: 4rem;
    top: auto;
    right: 2rem;
    transform: translate(0);
    width: 19rem;
  }
}
#index .p-think__img_sub {
  position: absolute;
  left: calc(50% + 30rem);
  transform: translateX(-50%);
  bottom: 0;
  width: 35.8rem;
}
@media screen and (max-width: 767px) {
  #index .p-think__img_sub {
    width: 19rem;
    left: 7rem;
    transform: translate(0);
  }
}
#index {
  /* 02 Want to be
  ---------------------------------------------------------------------------- */
}
#index .p-want {
  padding: 17rem 0 24rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #index .p-want {
    padding: 6.4rem 0 45rem;
  }
}
#index .p-want__img::before {
  content: "";
  position: absolute;
  top: 13rem;
  left: 10rem;
  width: 54.8rem;
  height: 25.2rem;
  background: url(../images/common/logo_mark.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  #index .p-want__img::before {
    width: 35rem;
    height: 16em;
    bottom: 25rem;
    left: 2rem;
    top: auto;
  }
}
#index .p-want__img_item {
  position: absolute;
}
#index .p-want__img_item--01 {
  left: 3.9rem;
  top: 25.8rem;
  width: 30.8rem;
  left: calc(50% - 16rem);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #index .p-want__img_item--01 {
    width: 17rem;
    right: 4.5rem;
    left: auto;
    transform: translate(0);
    bottom: 13.6rem;
    top: auto;
  }
}
#index .p-want__img_item--02 {
  top: 36rem;
  width: 25.9rem;
  left: calc(50% - 42rem);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #index .p-want__img_item--02 {
    top: auto;
    width: 14.4rem;
    left: 4.4rem;
    transform: translate(0);
    bottom: 20rem;
  }
}
#index .p-want__img_item--03 {
  bottom: 10rem;
  width: 31.4rem;
  left: calc(50% - 36rem);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #index .p-want__img_item--03 {
    width: 17.4rem;
    left: 6.2rem;
    bottom: 6.4rem;
    transform: translate(0);
  }
}
#index .p-want__txt {
  margin-left: auto;
  width: 60rem;
}
@media screen and (max-width: 767px) {
  #index .p-want__txt {
    width: 100%;
  }
}
#index .p-want__ttl {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #index .p-want__ttl {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
  }
}
#index .p-want__ttl span {
  display: inline-block;
  position: relative;
}
#index .p-want__ttl span::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}
#index .p-want__body p {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
}
#index .p-want__body p + p {
  margin-top: 1.6rem;
}
#index {
  /* 03 こだわり
  ---------------------------------------------------------------------------- */
}
#index .p-kodawari {
  padding: 10rem 0 0;
  position: relative;
  background: url(../images/common/bg_01.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari {
    padding: 4rem 0 0;
  }
}
#index .p-kodawari__top {
  position: relative;
}
#index .p-kodawari__top_img {
  width: 100%;
}
#index .p-kodawari__top_txt-box {
  margin-top: 8rem;
  position: relative;
}
#index .p-kodawari__top_txt-box::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 54.8rem;
  opacity: 0.1;
  height: 23.8rem;
  background: url(../images/common/logo_mark.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__top_txt-box::before {
    top: 70%;
    width: 30rem;
    height: 16rem;
  }
}
#index .p-kodawari__top_txt {
  text-align: center;
}
#index .p-kodawari__top_mark {
  width: 15.7rem;
  margin: 0 auto 4rem;
}
#index .p-kodawari__top_mark img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__top_mark {
    width: 10rem;
    margin-bottom: 2.4rem;
  }
}
#index .p-kodawari__top_ttl {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__top_ttl {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
  }
}
#index .p-kodawari__top_ttl span {
  display: inline-block;
  position: relative;
}
#index .p-kodawari__top_ttl span::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}
#index .p-kodawari__top_body {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
  text-align: center;
}
#index .p-kodawari__top_body + #index .p-kodawari__top_body {
  margin-top: 1.6rem;
}
#index .p-kodawari__inner {
  padding: 12rem 0 10rem;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__inner {
    padding: 5rem 0 6rem;
  }
}
#index .p-kodawari__ttl {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__ttl {
    font-size: 2.8rem;
    margin-bottom: 3.2rem;
  }
}
#index .p-kodawari__ttl span {
  display: inline-block;
  position: relative;
}
#index .p-kodawari__ttl span::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}
#index .p-kodawari__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem 4rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__list {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
  }
}
#index .p-kodawari__item_img {
  margin-bottom: 2.4rem;
}
#index .p-kodawari__item_img img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__item_img img {
    height: 22rem;
  }
}
#index .p-kodawari__item_ttl {
  font-size: 2.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__item_ttl {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
#index .p-kodawari__item p {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
}
#index .p-kodawari {
  /* 肌・体・心 サークル */
}
#index .p-kodawari__circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__circles {
    grid-template-columns: repeat(1, 1fr);
  }
}
#index .p-kodawari__circle {
  position: relative;
  flex: 1;
  max-width: 44rem;
  aspect-ratio: 1;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__circle {
    max-width: 35rem;
  }
}
#index .p-kodawari__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: calc(90% + 1rem);
  height: calc(90% + 1rem);
  background: #E2BBC1;
  border-radius: 50%;
  box-shadow: 0 0 2.5rem 2.5rem #E2BBC1;
  z-index: 1;
}
#index .p-kodawari__circle::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: calc(100% + 1rem);
  height: calc(100% + 1rem);
  border-radius: 50%;
  border: 1px solid #E2BBC1;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__circle {
    width: 35rem;
    flex: none;
  }
}
#index .p-kodawari__circle_content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 5.5rem 3rem;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__circle_content {
    padding: 3rem;
  }
}
#index .p-kodawari__circle_frame-wrap {
  position: relative;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__circle_frame-wrap {
    margin-bottom: 2rem;
  }
}
#index .p-kodawari__circle_en {
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  font-size: 2rem;
  font-family: "Sacramento", cursive;
  font-weight: 400;
  color: #c1717f;
  white-space: nowrap;
  transform: rotate(-9deg);
  transform-origin: right center;
  line-height: 1;
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__circle_en {
    right: -5rem;
  }
}
#index .p-kodawari__circle_frame {
  width: 14.7rem;
  height: 6.5rem;
  border: 1px solid #b1828a;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__circle_frame {
    width: 9.4rem;
    height: 3.8rem;
  }
}
#index .p-kodawari__circle_ja {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #69434a;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__circle_ja {
    font-size: 2.4rem;
  }
}
#index .p-kodawari__circle_ttl {
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #69434a;
  text-align: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  #index .p-kodawari__circle_ttl {
    margin-bottom: 1rem;
  }
}
#index .p-kodawari__circle_txt {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #69434a;
}
#index {
  /* 04 Our menu
  ---------------------------------------------------------------------------- */
}
#index .p-menu {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  #index .p-menu {
    padding: 5rem 0;
  }
}
#index .p-menu__ttl {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  #index .p-menu__ttl {
    font-size: 2.4rem;
    margin-bottom: 3.2rem;
  }
}
#index .p-menu__ttl span {
  display: inline-block;
  position: relative;
}
#index .p-menu__ttl span::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}
#index .p-menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  #index .p-menu__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
#index .p-menu__item_img {
  margin-bottom: 2.4rem;
}
#index .p-menu__item_img img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  #index .p-menu__item_img img {
    height: 24rem;
  }
}
#index .p-menu__item_name {
  font-size: 2.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  #index .p-menu__item_name {
    font-size: 2.2rem;
  }
}
#index .p-menu__item_price {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  margin-bottom: 2.4rem;
}
#index .p-menu__item_body {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
}
#index {
  /* 05 Message / ご挨拶
  ---------------------------------------------------------------------------- */
}
#index .p-greeting {
  position: relative;
  padding: 10rem 0;
  background: #F0F0F0;
}
@media screen and (max-width: 767px) {
  #index .p-greeting {
    padding: 5rem 0;
  }
}
#index .p-greeting__inner {
  position: relative;
}
#index .p-greeting__txt {
  width: 60rem;
}
@media screen and (max-width: 767px) {
  #index .p-greeting__txt {
    width: 100%;
  }
}
#index .p-greeting__ttl {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #index .p-greeting__ttl {
    font-size: 3rem;
    margin-bottom: 2.4rem;
  }
}
#index .p-greeting__ttl span {
  display: inline-block;
  position: relative;
}
#index .p-greeting__ttl span::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}
#index .p-greeting__body p {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
}
#index .p-greeting__body p + p {
  margin-top: 1.6rem;
}
#index .p-greeting__name {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
  margin-top: 2.4rem;
}
#index .p-greeting__book {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  margin-top: 5.2rem;
  padding: 2rem 2rem 2rem 17rem;
  background: #f6edea;
  position: relative;
}
@media screen and (max-width: 767px) {
  #index .p-greeting__book {
    gap: 1.2rem;
    align-items: center;
    padding: 1.6rem 1.6rem 2.4rem;
  }
}
#index .p-greeting__book_img {
  flex: none;
  width: 12.1rem;
  left: 2.8rem;
  top: -2rem;
  position: absolute;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  #index .p-greeting__book_img {
    width: 9.5rem;
    position: static;
  }
}
#index .p-greeting__book_img img {
  width: 100%;
  height: auto;
}
#index .p-greeting__book_ttl {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  #index .p-greeting__book_ttl {
    text-align: left;
  }
}
#index .p-greeting__book_body {
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
  margin-bottom: 1.2rem;
}
#index .p-greeting__book_link {
  text-align: right;
}
@media screen and (max-width: 767px) {
  #index .p-greeting__book_link {
    text-align: left;
  }
}
#index .p-greeting__book_link a {
  font-size: 1.3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media screen and (min-width: 768px) {
  #index .p-greeting__book_link a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  #index .p-greeting__book_link a:hover {
    opacity: 0.7;
  }
}
#index .p-greeting__book_link a::after {
  content: "↗";
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.4rem;
}
#index .p-greeting__img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #index .p-greeting__img {
    width: 100%;
  }
}
#index .p-greeting__img_bg {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 48.6rem;
  height: 64rem;
  position: absolute;
  background: url(../images/index/img_greeting_bg.png) no-repeat center center/cover;
}
#index .p-greeting__img_photo {
  position: relative;
  z-index: 1;
  width: 45.6rem;
  margin-right: 12rem;
}
@media screen and (max-width: 767px) {
  #index .p-greeting__img_photo {
    width: 100%;
    margin-bottom: 2.4rem;
    margin-right: 0;
  }
}
#index {
  /* 06 News
  ---------------------------------------------------------------------------- */
}
#index .p-news {
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  #index .p-news {
    padding: 5rem 0 6.4rem;
  }
}
#index .p-news__inner {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #index .p-news__inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}
#index .p-news__head {
  flex: 1;
}
@media screen and (max-width: 767px) {
  #index .p-news__head {
    width: 100%;
  }
}
#index .p-news__ttl {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #index .p-news__ttl {
    font-size: 2.8rem;
  }
}
#index .p-news__ttl span {
  display: inline-block;
  position: relative;
}
#index .p-news__ttl span::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}
#index .p-news__list {
  padding-top: 2.5rem;
  width: 64rem;
}
@media screen and (max-width: 767px) {
  #index .p-news__list {
    width: 100%;
    padding-top: 1rem;
  }
}
#index .p-news__item {
  padding: 3.2rem 0;
  border-bottom: 1px solid #b1828a;
}
#index .p-news__item_date {
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #955A64;
  margin-bottom: 1.2rem;
}
#index .p-news__item_ttl {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.5;
}
#index .p-news__item_ttl a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.6rem;
}
@media screen and (min-width: 768px) {
  #index .p-news__item_ttl a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  #index .p-news__item_ttl a:hover {
    opacity: 0.7;
  }
}
#index .p-news__item_ttl a::after {
  content: "↗";
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.4rem;
}
#index .p-news__more {
  text-align: center;
  margin-top: 4.2rem;
}
#index .p-news__more a {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media screen and (min-width: 768px) {
  #index .p-news__more a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  #index .p-news__more a:hover {
    opacity: 0.7;
  }
}

/* #index ここまで */
/* FV アニメーション
---------------------------------------------------------------------------- */
@keyframes fvLogoExpand {
  0% {
    width: 15rem;
    height: 7.8rem;
    left: 33%;
  }
  15% {
    width: 15rem;
    height: 7.8rem;
    left: 33%;
  }
  65% {
    width: calc(100vw - 6rem);
    height: calc(100vh - 6rem);
    left: 50%;
  }
  100% {
    width: calc(100vw - 6rem);
    height: calc(100vh - 6rem);
    left: 50%;
  }
}
@keyframes fvLogoExpandSP {
  0% {
    width: 15rem;
    height: 7.8rem;
  }
  15% {
    width: 15rem;
    height: 7.8rem;
  }
  65% {
    width: calc(100vw - 1.6rem);
    height: calc(100vh - 1.6rem);
  }
  100% {
    width: calc(100vw - 1.6rem);
    height: calc(100vh - 1.6rem);
  }
}
@keyframes fvFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}
@keyframes fvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* FV初回アニメーション制御（24時間に1回のみ）
---------------------------------------------------------------------------- */
.no-fv-anim .p-fv__logo {
  animation: none !important;
  opacity: 1 !important;
  width: calc(100vw - 6rem) !important;
  height: calc(100vh - 6rem) !important;
  left: 50% !important;
}
@media screen and (max-width: 767px) {
  .no-fv-anim .p-fv__logo {
    width: calc(100vw - 1.6rem) !important;
    height: calc(100vh - 1.6rem) !important;
  }
}
.no-fv-anim .p-fv__first {
  display: none !important;
}
.no-fv-anim .p-fv__content,
.no-fv-anim .p-fv__img2,
.no-fv-anim .p-fv__nav {
  animation: none !important;
  opacity: 1 !important;
}/*# sourceMappingURL=index.css.map */