@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

html {
  font-size: 62.5%;
}

body {
  background: #eeebe9;
  line-height: 1;
  margin: auto;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", YuGothic, "MS ゴシック", sans-serif;
  font-size: 1.6em;
}

/* 通常の投稿シングルと、投稿一覧(投稿ページ=home.php)だけ白背景 */
body.single-post,
body.blog {
  background: #fff;
}

/* （必要なら）カテゴリ/タグ/日付の投稿アーカイブも白にしたい場合 */
body.archive.category,
body.archive.tag,
body.archive.date,
body.archive.author,
body.page-id-95 {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 1239px) {
  .sp-only {
    display: block;
  }
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1239px) {
  .section-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.4rem;
  }
}

.section-title-en {
  text-transform: uppercase;
  font-size: 15rem;
  font-weight: 100;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .section-title-en {
    font-size: 5.6rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  border-radius: 4rem;
  display: inline-block;
  border: #8c8260 solid 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.4rem;
  }
}

.btn01 {
  background-color: #8c8260;
  color: #fff;
}
.btn01:hover {
  color: #8c8260;
  background-color: #fff;
}

.btn02 {
  background-color: transparent;
  color: #8c8260;
}
.btn02:hover {
  color: #fff;
  background-color: #8c8260;
}

/* ========== ヘッダー ========== */
.header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

.header__inner {
  max-width: 120rem;
  border-radius: 0 0 10px 10px;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
}
@media screen and (max-width: 1239px) {
  .header__inner {
    width: 92.5%;
  }
}

.header__logo a {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .header__logo a img {
    width: 6.4rem;
  }
}

.header__nav {
  margin-left: auto;
}

.header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__menu-item {
  position: relative;
  margin-right: 4.6rem;
}
.header__menu-item::after {
  position: absolute;
  content: "";
  display: block;
  top: 57%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -2.2rem;
  width: 100%;
  height: 1.6rem;
  width: 0.1rem;
  background: #333;
}
.header__menu-item:nth-child(n+3)::after {
  display: none;
}
.header__menu-item.header__menu-item--talent {
  margin-right: 1.4rem;
}
.header__menu-item:last-child {
  margin-right: 0;
}
.header__menu-item:nth-child(-n+3) a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#8c8260), to(#8c8260));
  background-image: -webkit-linear-gradient(#8c8260, #8c8260);
  background-image: linear-gradient(#8c8260, #8c8260);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}
.header__menu-item:nth-child(-n+3) a:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

.header__btn {
  width: 19.3rem;
  padding: 0.9rem;
  text-align: center;
  border: #8c8260 solid 1px;
}
@media screen and (max-width: 767px) {
  .header__btn {
    font-size: 1.6rem;
  }
}

/* ========== 1200px以下でハンバーガー化 ========== */
@media (max-width: 1200px) {
  .header {
    /* 既存：fixed/中央寄せは維持 */
    /* オーバーレイ */
  }
  .header::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
    z-index: 9; /* パネルの下、ヘッダーの上 */
  }
  .header.is-open::after {
    opacity: 1;
    pointer-events: auto;
  }
  /* ハンバーガーボタン */
  .hamburger {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    cursor: pointer;
    background: transparent;
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) inset, 0 2px 10px rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) inset, 0 2px 10px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 12;
  }
  .hamburger span {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #111;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: opacity 0.25s ease, -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.25s ease;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.25s ease, -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
  }
  .hamburger span:nth-child(1) {
    top: 14px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 26px;
  }
  .header.is-open .hamburger span:nth-child(1) {
    -webkit-transform: translateX(-50%) translateY(6px) rotate(45deg);
            transform: translateX(-50%) translateY(6px) rotate(45deg);
  }
  .header.is-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .header.is-open .hamburger span:nth-child(3) {
    -webkit-transform: translateX(-50%) translateY(-6px) rotate(-45deg);
            transform: translateX(-50%) translateY(-6px) rotate(-45deg);
  }
  /* 右スライドのオフキャンバス */
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 42rem);
    height: 100vh;
    padding: 8rem 2rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    -webkit-box-shadow: -12px 0 30px rgba(0, 0, 0, 0.08);
            box-shadow: -12px 0 30px rgba(0, 0, 0, 0.08);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: -webkit-transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 11;
    margin-left: 0; /* 既存の余白を打ち消し */
  }
  .header.is-open .header__nav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /* メニュー縦並び＋ステップアニメ */
  .header__menu {
    display: grid;
  }
  .header__menu-item {
    margin-right: 0 !important; /* 既存の左右マージンを無効化 */
    position: relative;
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
    opacity: 0;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.5s ease;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    /* 仕切り線はSPで不要 */
    margin-bottom: 3rem;
  }
  .header__menu-item::after {
    display: none !important;
  }
  .header__menu-item:nth-child(4) {
    margin-bottom: 1.4rem;
  }
  .header__menu-item:last-child {
    margin-bottom: 0;
  }
  .header.is-open .header__menu-item {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  /* 段階的な遅延で“豪華に” */
  .header.is-open .header__menu-item:nth-child(1) {
    -webkit-transition-delay: 0.06s;
            transition-delay: 0.06s;
  }
  .header.is-open .header__menu-item:nth-child(2) {
    -webkit-transition-delay: 0.12s;
            transition-delay: 0.12s;
  }
  .header.is-open .header__menu-item:nth-child(3) {
    -webkit-transition-delay: 0.18s;
            transition-delay: 0.18s;
  }
  .header.is-open .header__menu-item:nth-child(4) {
    -webkit-transition-delay: 0.24s;
            transition-delay: 0.24s;
  }
  .header.is-open .header__menu-item:nth-child(5) {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  /* リンクのリッチ感（任意） */
  .header__menu a {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
    transition: background 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  }
  .header__menu a.btn01 {
    background-color: #8c8260;
    color: #fff;
  }
  .header__menu a.btn02 {
    background: #fff;
  }
  .header__menu a:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
  }
}
/* 1200pxより上では、ハンバーガーは非表示 */
@media (min-width: 1201px) {
  .hamburger {
    display: none;
  }
}
/* ========== ファーストビュー ========== */
.fv {
  position: relative;
  height: 110rem;
  margin: 2rem;
  border-radius: 10px;
  overflow: hidden;
  /* 黒50%のオーバーレイ */
}
.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 70rem;
    margin: 1.5rem;
  }
}

.fv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.fv__inner {
  position: relative;
  z-index: 3;
}

.fv__content {
  position: absolute;
  top: 13rem;
  left: 0;
  z-index: 2;
  color: #fff;
  max-width: 48rem;
}
@media screen and (max-width: 1239px) {
  .fv__content {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__content {
    top: 7rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
}

.fv__catch {
  font-size: 6rem;
  font-weight: 100;
  line-height: 1.333;
  margin-bottom: 2rem;
  font-family: "Noto Serif", serif;
}
@media screen and (max-width: 767px) {
  .fv__catch {
    font-size: 3rem;
  }
}

.fv__text {
  line-height: 1.875;
}
.fv__text:nth-of-type(n + 2) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .fv__text {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.fv__btn-cont {
  margin-top: 2rem;
}

.fv__btn {
  display: inline-block;
  padding: 2.7rem 1.5rem;
  background: #8c8260;
  color: #fff;
  width: 100%;
  max-width: 47rem;
  text-align: center;
  position: relative;
}
.fv__btn:hover {
  background: #fff;
  color: #8c8260;
}
.fv__btn:hover::after {
  background-image: url(../img/icon/mail-icon.svg);
}
@media screen and (max-width: 767px) {
  .fv__btn {
    font-size: 1.4rem;
    padding: 1.2rem;
    line-height: 1.2;
  }
}
.fv__btn::after {
  position: absolute;
  background-image: url(../img/icon/mail-icon-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width: 1.6rem;
  height: 1.26rem;
  right: 6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .fv__btn::after {
    right: 2rem;
  }
}

.fixed-btn {
  position: fixed;
  bottom: 5rem;
  right: 5rem;
  z-index: 100;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.25;
  background: -webkit-gradient(linear, left top, left bottom, from(#cdbf8f), to(#8c8260));
  background: -webkit-linear-gradient(top, #cdbf8f, #8c8260);
  background: linear-gradient(to bottom, #cdbf8f, #8c8260);
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .fixed-btn {
    display: none;
  }
}
.fixed-btn .fixed-btn-cont {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.fixed-btn:hover {
  opacity: 0.8;
}
.fixed-btn::after {
  content: "";
  width: 16rem;
  height: 16rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #fff;
}
.fixed-btn img {
  width: 3.7rem;
  height: 2.9rem;
  display: block;
  margin: 0 auto 1.2rem;
}

/* ========== 写真一覧 ========== */
.photo .photo__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .photo .photo__inner {
    max-width: 35.5rem;
  }
}
.photo .photo__img {
  width: 100%;
  border-radius: 10px;
  position: absolute;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .photo .photo__img {
    border-radius: 5px;
  }
}
.photo .photo__img:nth-child(1) {
  max-width: 21rem;
  z-index: 3;
  top: 0;
  left: 100px;
}
@media screen and (max-width: 767px) {
  .photo .photo__img:nth-child(1) {
    top: 100px;
    left: 0;
    max-width: 9rem;
  }
}
.photo .photo__img:nth-child(2) {
  max-width: 31rem;
  z-index: 2;
  top: -200px;
  left: 270px;
}
@media screen and (max-width: 767px) {
  .photo .photo__img:nth-child(2) {
    top: 0;
    left: 50px;
    max-width: 13.3rem;
  }
}
.photo .photo__img:nth-child(3) {
  max-width: 35.5rem;
  z-index: 2;
  top: 100px;
  right: 305px;
}
@media screen and (max-width: 767px) {
  .photo .photo__img:nth-child(3) {
    top: 200px;
    right: 100px;
    max-width: 15.3rem;
  }
}
.photo .photo__img:nth-child(4) {
  max-width: 22rem;
  z-index: 3;
  top: -200px;
  right: 60px;
}
@media screen and (max-width: 767px) {
  .photo .photo__img:nth-child(4) {
    top: 50px;
    right: 0;
    max-width: 9.5rem;
  }
}

.photo__img {
  opacity: 0;
  --ty: 0px;
  --reveal: 24px;
  -webkit-transform: translateY(calc(var(--ty) + var(--reveal)));
          transform: translateY(calc(var(--ty) + var(--reveal)));
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.6s ease, -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity;
}

.photo__img.is-visible {
  opacity: 1;
  --reveal: 0px;
}

/* ========== タレント一覧 ========== */
.talent {
  padding-top: 18rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .talent {
    padding-bottom: 3rem;
  }
}

.talent__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-talent__more-cont {
  text-align: center;
  margin-top: 5rem;
}

.page-talent__more {
  margin-top: 0;
  max-width: 55rem;
  width: 100%;
  padding: 1.7rem;
}

.talent-head {
  position: relative;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .talent-head {
    margin-bottom: 1.8rem;
  }
}
.talent-head::after {
  width: 100%;
  height: 0.1rem;
  background: #d9d9d9;
  content: "";
  position: absolute;
  bottom: 24px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .talent-head::after {
    bottom: 7px;
  }
}

.talent__title-en {
  color: #e5e1dc;
}

.talent__title {
  position: absolute;
  right: 0;
  bottom: 40px;
}
@media screen and (max-width: 767px) {
  .talent__title {
    bottom: 15px;
  }
}

.talent__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 6px;
}
@media screen and (max-width: 1239px) {
  .talent__list {
    max-width: 81rem;
    margin: 0 auto;
    gap: 2rem 0.6rem;
  }
}
.talent__item {
  max-width: 19.5rem;
}
@media screen and (max-width: 767px) {
  .talent__item {
    max-width: 100%;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 1.2rem) / 3);
        -ms-flex: 0 0 calc((100% - 1.2rem) / 3);
            flex: 0 0 calc((100% - 1.2rem) / 3);
  }
}

.talent__item__link {
  /* 画像を重ねるためにグリッド化 */
  display: grid;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 画像フェード切替（hover/focus時） */
}
.talent__item__link:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.talent__item__link:hover .talent__photo.is-hover, .talent__item__link:focus-within .talent__photo.is-hover {
  opacity: 1;
}

.talent__photo {
  width: 100%;
  height: 19.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 10px;
  aspect-ratio: 1/1;
  /* 重ね合わせ（同じグリッドに配置） */
  grid-area: 1/1;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* 通常とホバーの2枚を切替 */
}
@media screen and (max-width: 767px) {
  .talent__photo {
    height: auto;
  }
}
.talent__photo.is-normal {
  /* 下地。特別な指定は不要だが grid-area は継承 */
}
.talent__photo.is-hover {
  /* 上に重ねて最初は非表示 */
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.talent__name {
  display: block;
  margin-top: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 1239px) {
  .talent__name {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .talent__name {
    font-size: 1.4rem;
  }
}

.talent__more-cont {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .talent__more-cont {
    margin-top: 2.6rem;
  }
}

.talent__more {
  padding: 1.7rem;
  width: 100%;
  max-width: 55rem;
  text-align: center;
  font-weight: bold;
  color: #8c8260;
}
@media screen and (max-width: 767px) {
  .talent__more {
    padding: 1.4rem;
  }
}

/* ========== 更新情報 ========== */
.updates {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.updates__inner {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 3rem;
  padding: 3rem 4rem;
}
@media screen and (max-width: 767px) {
  .updates__inner {
    padding: 1.4rem 2rem;
  }
}

.updates__text {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .updates__text {
    line-height: 1.5;
    font-size: 1.4rem;
  }
}

.updates__item:nth-child(n+2) {
  border-top: 1px solid #d9d9d9;
}

.updates__link {
  display: block;
  padding: 2rem 0;
}
.updates__link:hover {
  opacity: 0.7;
}

/* ========== イベント紹介 ========== */
.event {
  margin-top: -2rem;
}

.event__inner {
  gap: 30px;
  color: #fff;
  line-height: 1.5;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.event__inner a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
  border-radius: 10px;
}

.event__content {
  position: relative;
  z-index: 5;
}
.event__ritmo {
  background: url(../img/event-ritmo.png) center center/cover no-repeat;
  margin-bottom: 3rem;
}

.event__item {
  padding: 3rem;
  border-radius: 10px;
  position: relative;
  display: block;
}
.event__item:hover .event__link, .event__item:focus .event__link {
  background: #fff;
  color: #333;
}

.event__ritmo__content {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .event__ritmo__content {
    padding-top: 4rem;
  }
}

.event__ritoderi {
  background: url(../img/event-ritoderi.jpg) center center/cover no-repeat;
  background-position: 50% 35%;
}
@media screen and (max-width: 767px) {
  .event__ritoderi {
    background-position: center;
  }
}

.ritmo__logo {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .ritmo__logo img {
    width: 13rem;
  }
}

.event__ritmo__title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .event__ritmo__title {
    font-size: 1.8rem;
  }
}

.event__ritoderi__title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .event__ritoderi__title {
    font-size: 2rem;
  }
}

.event__text {
  max-width: 63rem;
}
@media screen and (max-width: 767px) {
  .event__text {
    font-size: 1.4rem;
  }
}

.event__link {
  position: absolute;
  right: 4rem;
  bottom: 0;
  padding: 1.4rem 4rem;
  line-height: 1;
  border: 1px solid #fff;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1239px) {
  .event__link {
    position: static;
    display: inline-block;
    margin-top: 2rem;
  }
}

/* ========== お知らせ ========== */
.news {
  background: #fff;
}

.news__inner {
  max-width: 113rem;
  padding-top: 9.5rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .news__inner {
    padding-top: 5rem;
    padding-bottom: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news-list__inner {
  max-width: 1200px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news-list__inner .news__list {
  max-width: 100%;
}

.news__title {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .news__title {
    margin-bottom: 2rem;
  }
}

.news__list {
  max-width: 80rem;
  width: 100%;
}

.news__item {
  padding-bottom: 2.3rem;
  margin-bottom: 2.3rem;
  border-bottom: 1px solid #d9d9d9;
}
.news__item:last-child {
  margin-bottom: 0;
}
.news__item a {
  display: block;
}
@media screen and (max-width: 767px) {
  .news__item {
    font-size: 1.4rem;
  }
}

.news__item__date {
  display: inline-block;
  margin-right: 1rem;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .news__item__date {
    display: block;
    margin-bottom: 0.6rem;
  }
}

.news__item__link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news__item__link:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news__more {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .news__more {
    margin-top: 3rem;
  }
}

/* ========== フッター問い合わせ ========== */
.footer-contact {
  background: #8c8260;
  color: #fff;
}

.footer-contact__inner {
  padding-top: 6rem;
  padding-bottom: 6rem;
  line-height: 1.5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1239px) {
  .footer-contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.footer-contact__title {
  font-size: 3rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .footer-contact__title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.footer-contact__text-container {
  max-width: 69.4rem;
  width: 100%;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .footer-contact__text-container {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.footer-contact__btn {
  max-width: 48.4rem;
  width: 100%;
}

.btn-num {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  margin: 0 0.4rem;
}
@media screen and (max-width: 767px) {
  .btn-num {
    font-size: 1.6rem;
  }
}

.btn-text-s {
  font-size: 1.2rem;
}

.footer-contact__btn {
  padding: 1.8rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-contact__btn {
    padding: 1.2rem;
  }
}

.footer-contact__btn-tel {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  margin-bottom: 2rem;
}
.footer-contact__btn-tel:hover {
  background: #fff;
  color: #8c8260;
}

.footer-contact__btn-mail {
  position: relative;
  border: 1px solid #fff;
  background: #fff;
  color: #8c8260;
}
.footer-contact__btn-mail:hover {
  background: #8c8260;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-contact__btn-mail:hover:after {
  background-image: url(../img/icon/mail-icon-white.svg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-contact__btn-mail:after {
  position: absolute;
  background: url(../img/icon/mail-icon.svg) center center/contain no-repeat;
  content: "";
  width: 1.6rem;
  height: 1.32rem;
  right: 6.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .footer-contact__btn-mail:after {
    right: 2rem;
  }
}

/* ========== フッター ========== */
.footer {
  padding: 3rem 0;
  background: #eeebe9;
}

.footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.footer__copy {
  font-size: 1.2rem;
}

.footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.footer__sns__link:hover {
  opacity: 0.7;
}

/* ========== 下層ページ ========== */
.page-fv {
  margin: 2rem;
  height: 30rem;
  position: relative;
  border-radius: 10px;
  /* 黒50%のオーバーレイ */
}
.page-fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .page-fv {
    height: 17rem;
    margin: 2rem 1.5rem;
  }
}

.page-fv__inner {
  position: relative;
  height: 100%;
  border-radius: 10px;
}
.page-fv__inner .section-title {
  bottom: 48px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .page-fv__inner .section-title {
    bottom: 69px;
    left: 0;
  }
}

.page-fv__video {
  height: inherit;
  border-radius: 10px;
}

.page-fv__img {
  height: inherit;
  border-radius: 10px;
}
.page-fv__img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: inherit;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 1rem;
  font-size: 1.4rem;
}

.breadcrumb-list__link {
  text-decoration: underline;
}

.page-fv__talent-head {
  position: absolute;
  top: 56%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
}
@media screen and (max-width: 1239px) {
  .page-fv__talent-head {
    width: 94%;
  }
}
@media screen and (max-width: 767px) {
  .page-fv__talent-head {
    top: 65%;
  }
}

/* ===== ページネーション ===== */
.pagination {
  margin-top: 3.2rem;
  text-align: center;
}

.pagination .page-numbers {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination .page-numbers li {
  display: inline;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
  display: inline-block;
  min-width: 3.2rem;
  padding: 1.4rem 1.2rem;
  border: 1px solid #8c8260;
  color: #8c8260;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

/* 現在ページ */
.pagination .page-numbers .current {
  background: #8c8260; /* テーマに合わせて変更OK */
  color: #fff;
  border-color: #8c8260;
}

/* ホバー/フォーカス */
.pagination .page-numbers a:hover {
  opacity: 0.75;
}

/* 省略記号 … */
.pagination .page-numbers .dots {
  border: none;
  padding: 0.8rem 0.4rem;
  min-width: auto;
}

/* 前へ・次へ（« »）は幅をタイトに */
.pagination .page-numbers .prev,
.pagination .page-numbers .next {
  min-width: auto;
}