@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Zen+Maru+Gothic&display=swap");
/* ボックスサイズ初期化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* html / body 初期化 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* 各要素の余白をリセット */
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* テキスト要素のフォント系リセット */
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リストのデフォルトスタイルを削除 */
ul, ol {
  list-style: none;
}

/* テーブルの見た目を初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* フォーム要素をフラットに＆継承設定 */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* テキストエリアは縦リサイズ可 */
textarea {
  resize: vertical;
  display: block;
}

/* チェックボックスやラジオボタンはデザイン前提で非表示に */
input[type=checkbox],
input[type=radio] {
  display: none;
}

/* 操作可能な要素にカーソル */
button,
label,
select,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

/* select の三角形を非表示（モダンブラウザ） */
select::-ms-expand {
  display: none;
}

/* aタグの初期スタイルを削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* imgタグの余白・幅の制御 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* SVGもblockで扱いやすく */
svg {
  display: block;
}

/* mainタグをblockに（IE対応不要なら削除してOK） */
main {
  display: block;
}

/* なめらかなフォント表示（Mac用） */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

a[href^="tel:"] {
  pointer-events: auto;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px !important;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 100px !important;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #92C98F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 555;
}

.loader-image {
  width: 130px;
  animation: float 2.5s ease-in-out infinite, fadeIn 1s ease-out both;
}
.loader-image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .loader-image {
    width: 100px;
  }
}

.loader-text {
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  animation: fadeInUp 1s 0.8s ease-out both;
}
@media screen and (max-width: 767px) {
  .loader-text {
    font-size: 24px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 32px;
  margin-inline: auto;
  border-radius: 100px;
  z-index: 50;
}
.header.scrolled {
  background-color: transparent;
}
.header.scrolled .header-inner {
  height: 99px;
}
.header.scrolled .header-logo__link {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header.scrolled .header-logo__img {
  max-width: 64px;
}
.header.scrolled .header-nav__icon {
  position: absolute;
  top: -46px;
  transform: translateY(46px) scale(0.7);
}
@media (hover: hover) and (pointer: fine) {
  .header.scrolled .header-nav__link:hover .header-nav__icon {
    transform: translateY(0);
  }
  .header.scrolled .header-nav__link:hover .header-nav__title {
    color: #E88C3E;
  }
}
@media screen and (max-width: 1023px) {
  .header {
    background-color: transparent;
    position: static;
    height: 84px;
    padding-block: 0;
  }
}

.header-inner {
  max-width: 97.9%;
  width: inherit;
  height: auto;
  background-color: #ffffff;
  border-radius: 100px;
  display: grid;
  grid-template-columns: 22% 78%;
  align-items: center;
  transition: all 0.3s;
}
@media screen and (max-width: 1023px) {
  .header-inner {
    max-width: none;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
    border-radius: 0;
  }
}

.header-logo {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .header-logo {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.header-logo__link {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease;
}
@media screen and (max-width: 1023px) {
  .header-logo__link {
    position: static;
    transform: none;
    margin: 0 auto;
  }
}

.header-logo__img {
  max-width: 150px;
  aspect-ratio: 150/159;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1023px) {
  .header-logo__img {
    width: 66px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo__img {
    aspect-ratio: 57/59;
    max-width: 57px;
  }
}

.header-drawer {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header-drawer {
    display: grid;
    place-items: center;
    width: 100px;
    height: 100px;
    position: fixed;
    top: -16px;
    right: -16px;
    padding: 0;
    z-index: 61;
  }
  .header-drawer::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 9999px;
    background-color: #E88C3E;
    z-index: 0;
  }
  .header-drawer.is-checked::before {
    background-color: transparent;
  }
  .header-drawer.is-checked .header-drawer__icon-bar:nth-child(1), .header-drawer.is-checked .header-drawer__icon-bar:nth-child(3) {
    top: 11px;
  }
  .header-drawer.is-checked .header-drawer__icon-bar:nth-child(1) {
    width: 40px;
    transform: rotate(45deg);
  }
  .header-drawer.is-checked .header-drawer__icon-bar:nth-child(2) {
    opacity: 0;
  }
  .header-drawer.is-checked .header-drawer__icon-bar:nth-child(3) {
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 1023px) {
  .header-drawer__icon {
    display: block;
    width: 40px;
    height: 22px;
    position: relative;
    z-index: 10;
  }
}

@media screen and (max-width: 1023px) {
  .header-drawer__icon-bar {
    position: absolute;
    left: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s, transform 0.3s;
  }
  .header-drawer__icon-bar:nth-child(1) {
    top: 0;
    width: 20px;
  }
  .header-drawer__icon-bar:nth-child(2) {
    top: 11px;
    width: 30px;
  }
  .header-drawer__icon-bar:nth-child(3) {
    top: 22px;
    width: 40px;
  }
}

.header-nav {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  justify-items: start;
  gap: 66px;
  z-index: 60;
}
@media screen and (max-width: 1279px) {
  .header-nav {
    gap: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 338px;
    height: 100vh;
    background-color: #E88C3E;
    border-radius: 0 0 0 10px;
    padding-block: 73px;
    padding-inline: 40px;
    grid-auto-flow: row;
    grid-template-columns: auto;
    grid-auto-rows: min-content;
    place-items: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
  }
  .header-nav.is-checked {
    transform: translateX(0);
  }
}
@media screen and (max-width: 539px) {
  .header-nav {
    width: 100%;
  }
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1279px) {
  .header-nav__list {
    gap: 18px;
  }
}
@media screen and (max-width: 1023px) {
  .header-nav__list {
    flex-direction: column;
  }
}

.header-nav__item.is-only-sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header-nav__item.is-only-sp {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .header-nav__item.is-only-pc {
    display: none;
  }
}

.header-nav__visual, .header-nav__button-sp, .header-nav__link,
.header-nav__button-pc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1023px) {
  .header-nav__visual, .header-nav__button-sp, .header-nav__link,
  .header-nav__button-pc {
    min-width: 200px;
    width: 100%;
    min-height: 57px;
    padding-inline: 10px;
    padding-block: 8px;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 100px;
    color: #ffffff;
    justify-content: center;
    gap: 4px;
  }
}

.header-nav__link,
.header-nav__button-pc {
  position: relative;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav__link:hover .header-nav__icon,
  .header-nav__button-pc:hover .header-nav__icon {
    transform: translateY(-4px);
  }
  .header-nav__link:hover .header-nav__title,
  .header-nav__button-pc:hover .header-nav__title {
    color: #E88C3E;
  }
}

.header-nav__button-sp {
  position: relative;
}
.header-nav__button-sp::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
  width: 20px;
  height: 20px;
  background: url("../images/components/button/button-icon-arrow-white.svg") no-repeat center/contain;
  transition: transform 0.3s;
}
.header-nav__button-sp.is-rotate::after {
  transform: translateY(-50%) rotate(150deg);
}

.header-nav__icon {
  width: 36px;
  height: 46px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  transform: translateY(0) scale(1);
  opacity: 1;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1023px) {
  .header-nav__icon {
    display: none;
  }
}

.header-nav__title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding-block: 10px;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1023px) {
  .header-nav__title {
    background-color: transparent;
    padding: 0;
  }
}

.header-nav__title-jp {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 1279px) {
  .header-nav__title-jp {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 1023px) {
  .header-nav__title-jp {
    font-size: 1.25rem;
  }
}

.header-nav__title-en {
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  line-height: 1.2;
}

@media screen and (max-width: 1023px) {
  .header-button__wrapper {
    margin-top: 16px;
  }
}

.header-sns {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header-sns {
    display: block;
    margin-top: 40px;
  }
}

.header-dropdown-pc {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .header-dropdown-pc {
    display: none;
  }
}

.header-dropdown__content {
  position: absolute;
  top: 100%;
  left: -170px;
  width: 836px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 20px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
  visibility: hidden;
  opacity: 0;
}

.header-dropdown__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.header-dropdown__card {
  height: 115px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.header-dropdown__card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}
.header-dropdown__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: opacity 0.5s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header-dropdown__card:hover img {
    transform: scale(1.2);
  }
  .header-dropdown__card:hover::after {
    opacity: 0;
  }
}

.header-dropdown__card-title {
  position: absolute;
  bottom: 8px;
  right: 8px;
  height: 38px;
  padding-inline: 16px 4px;
  background-color: #ffffff;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: normal;
  z-index: 2;
}
.header-dropdown__card-title::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/components/button/button-icon-arrow-orange.svg");
}

@media (hover: hover) and (pointer: fine) {
  .header-nav__item:hover .header-dropdown__content {
    visibility: visible;
    opacity: 1;
  }
}
.header-dropdown-sp {
  display: none;
}
.header-dropdown-sp.is-open {
  display: block;
}

.header-dropdown__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 38px;
  padding-top: 16px;
  color: #ffffff;
}

.footer {
  padding-block: 194px 32px;
  color: #ffffff;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/footer/footer-background.webp") no-repeat center/100% 100%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 68px 30px;
  }
  .footer::before {
    background-image: url("../images/footer/footer-background-sp.webp");
  }
}

.footer-inner {
  max-width: 1300px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1279px) {
  .footer-inner {
    max-width: 1040px;
  }
}
@media screen and (max-width: 767px) {
  .footer-inner {
    max-width: 700px;
  }
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding-bottom: 32px;
  border-bottom: 1px dashed #ffffff;
}
@media screen and (max-width: 1023px) {
  .footer-top {
    flex-direction: column;
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 8px;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 539px) {
  .footer-top {
    gap: 20px;
  }
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-title img {
  width: 48px;
}
@media screen and (max-width: 1023px) {
  .footer-title img {
    width: 38px;
  }
}
@media screen and (max-width: 767px) {
  .footer-title img {
    width: 48px;
  }
}

.footer-title__text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 24px;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .footer-title__text {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .footer-title__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 539px) {
  .footer-title__text {
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }
}

.footer-top__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 56px;
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  .footer-top__info {
    margin-left: 44px;
  }
}
@media screen and (max-width: 767px) {
  .footer-top__info {
    gap: 4px;
    margin-left: 56px;
    font-size: 16px;
  }
}
@media screen and (max-width: 539px) {
  .footer-top__info {
    margin-left: 0;
  }
}

.footer-top__contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .footer-top__contact {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer-top__contact {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    padding-top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }
}

@media screen and (max-width: 767px) {
  .footer-bottom__left {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

.footer-nav-main__list {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 1279px) {
  .footer-nav-main__list {
    gap: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-nav-main__list {
    max-width: 470px;
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-main__list {
    padding-block: 24px;
    max-width: none;
    border-bottom: 1px dashed #ffffff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
    order: 1;
  }
}

.footer-nav-main__link {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 6px;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}
.footer-nav-main__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .footer-nav-main__link {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-main__link {
    font-size: 20px;
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-main__link:hover {
    opacity: 0.8;
  }
  .footer-nav-main__link:hover::after {
    width: 100%;
  }
}

.footer-nav-sub {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .footer-nav-sub {
    margin-top: 30px;
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-sub {
    margin-top: 24px;
    flex-direction: column;
    gap: 16px;
    order: 3;
  }
}

.footer-nav-sub__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .footer-nav-sub__list {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-sub__list {
    gap: 16px;
  }
}

.footer-nav-sub__link {
  display: inline-block;
  padding-bottom: 4px;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}
.footer-nav-sub__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-sub__link:hover {
    opacity: 0.8;
  }
  .footer-nav-sub__link:hover::after {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .footer-nav-sub__link {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-sub__link {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.footer-nav-sub__privacy {
  padding-left: 24px;
  border-left: 1px solid #ffffff;
}
@media screen and (max-width: 1023px) {
  .footer-nav-sub__privacy {
    padding-left: 12px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-sub__privacy {
    padding-left: 0;
    padding-top: 16px;
    border-left: none;
    border-top: 1px solid #ffffff;
  }
}

.footer-nav-sub__privacy-link {
  display: inline-block;
  padding-bottom: 4px;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}
.footer-nav-sub__privacy-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-sub__privacy-link:hover {
    opacity: 0.8;
  }
  .footer-nav-sub__privacy-link:hover::after {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-sub__privacy-link {
    padding-bottom: 0;
    border-bottom: none;
    font-size: 16px;
  }
}

.footer-button__wrapper {
  margin-top: 32px;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer-button__wrapper {
    margin-top: 24px;
    gap: 8px;
    order: 2;
  }
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  padding: 12px 15px 12px 12px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 100px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: normal;
  transition: all 0.3s ease;
}
.footer-button::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url("../images/footer/footer-button-icon.svg") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .footer-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
}
@media screen and (max-width: 539px) {
  .footer-button {
    gap: 24px;
  }
}

.footer-sns {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .footer-sns {
    margin-top: 24px;
  }
}

.footer-sister {
  padding: 16px 21px;
  border: 1px solid #ffffff;
  border-radius: 10px;
}
@media screen and (max-width: 1023px) {
  .footer-sister {
    padding: 16px 12px;
  }
}

.footer-sister__head {
  font-weight: 600;
  line-height: 1.2;
}
.footer-sister__head span {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .footer-sister__head span {
    font-size: 16px;
  }
}

.footer-sister__body {
  margin-top: 8px;
  display: flex;
  align-items: end;
  gap: 24px;
}
@media screen and (max-width: 1279px) {
  .footer-sister__body {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer-sister__body {
    flex-direction: row;
    align-items: end;
    gap: 19px;
  }
}
@media screen and (max-width: 539px) {
  .footer-sister__body {
    flex-direction: column;
    align-items: start;
  }
}

.footer-sister__address {
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 539px) {
  .footer-sister__address br {
    display: none;
  }
}

.footer-sister__tel {
  margin-top: 4px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-sister__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid #ffffff;
  border-radius: 100px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: normal;
  transition: all 0.3s ease;
}
.footer-sister__button::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url("../images/footer/footer-sister-button-icon.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .footer-sister__button {
    gap: 8px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-sister__button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
}

.footer-copyright {
  display: block;
  margin-top: 69px;
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    margin-top: 66px;
    font-size: 0.75rem;
  }
}

.inner {
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 20px;
  }
}

.button--white {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  width: -moz-fit-content;
  width: fit-content;
  height: 46px;
  padding-inline: 24px 12px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 100px;
  color: #000000;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: normal;
  transition: all 0.3s ease;
}
.button--white::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/components/button/button-icon-arrow-orange.svg") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .button--white:hover {
    color: #E88C3E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

.button--orange {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  width: -moz-fit-content;
  width: fit-content;
  height: 46px;
  padding-inline: 24px 12px;
  background: #E88C3E;
  border: 1px solid #E88C3E;
  border-radius: 100px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: normal;
  transition: all 0.3s;
}
.button--orange::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/components/button/button-icon-arrow-white.svg") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .button--orange:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

.button--outline-orange {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  width: -moz-fit-content;
  width: fit-content;
  height: 46px;
  padding-inline: 24px 12px;
  background: #ffffff;
  border: 1px solid #E88C3E;
  border-radius: 100px;
  color: #E88C3E;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: normal;
  transition: all 0.3s ease;
}
.button--outline-orange::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/components/button/button-icon-arrow-orange.svg") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .button--outline-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

.button-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  min-width: 259px;
  height: 66px;
  padding-inline: 10px;
  color: white;
  background-color: #00A469;
  border: 1px solid #00A469;
  border-radius: 100px;
  text-align: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .button-contact {
    min-width: 200px;
    height: 57px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button-contact:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
}

.button-contact__icon {
  width: 37px;
  height: 26px;
}
@media screen and (max-width: 1023px) {
  .button-contact__icon {
    display: none;
  }
}

.button-contact__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-contact__text-jp {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.button-contact__text-en {
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  line-height: 1.2;
}

.button-accent--green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
  width: 340px;
  height: 62px;
  background-color: #00A469;
  border-radius: 100px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  transition: transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .button-accent--green:hover {
    transform: translateX(20px);
  }
}
.button-accent--green::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  height: 52px;
  border: 1px dashed #ffffff;
  background-color: transparent;
  border-radius: 100px;
}
.button-accent--green::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url("../images/components/button/button-accent-icon-green.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .button-accent--green {
    width: 246px;
    height: 48px;
    font-size: 16px;
  }
  .button-accent--green::before {
    width: 228px;
    height: 38px;
  }
  .button-accent--green::after {
    right: 17px;
    width: 24px;
    height: 24px;
  }
}

.button-accent--orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
  width: 340px;
  height: 62px;
  background-color: #E88C3E;
  border-radius: 100px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  transition: transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .button-accent--orange:hover {
    transform: translateX(20px);
  }
}
.button-accent--orange::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  height: 52px;
  border: 1px dashed #ffffff;
  background-color: transparent;
  border-radius: 100px;
}
.button-accent--orange::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url("../images/components/button/button-accent-icon-orange.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .button-accent--orange {
    width: 246px;
    height: 48px;
    font-size: 1rem;
  }
  .button-accent--orange::before {
    width: 228px;
    height: 38px;
  }
  .button-accent--orange::after {
    right: 17px;
    width: 24px;
    height: 24px;
  }
}

.news-item {
  padding-block: 24px;
  border-top: 1px dashed #ffffff;
  display: flex;
  align-items: center;
  gap: 32px;
}
.news-item:last-of-type {
  border-bottom: 1px dashed #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .news-item:hover .news-item__title {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .news-item {
    padding-block: 16px;
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }
}

.news-item__head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.news-item__date {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.news-item__label {
  align-items: center;
  border-radius: 100px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 600;
  height: 29px;
  justify-content: center;
  min-width: 120px;
  padding-inline: 10px;
  width: auto;
}
.news-item__label.event {
  background-color: #1D634A;
}
.news-item__label.recruitment {
  background-color: #00A469;
}

.news-item__title {
  font-size: 1rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .news-item__title {
    font-size: 0.875rem;
  }
}
/* ページネーション全体 */
.news-pagination {
  margin-top: 40px;
}

.news-pagination ul {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 数字・矢印 共通 */
.news-pagination li a,
.news-pagination li span {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 4px;
}

/* 現在のページ */
.news-pagination .current {
  border-bottom: 1px solid #fff;
}

/* ホバー（任意） */
.news-pagination a:hover {
  opacity: 0.7;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-head__en {
  font-family: "Caveat", cursive;
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .section-head__en {
    font-size: 3.75rem;
  }
}

.section-head__jp {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .section-head__jp {
    font-size: 0.875rem;
  }
}

.sns-link {
  display: inline-block;
  border-radius: 9999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sns-link img {
  aspect-ratio: 1/1;
}
@media (hover: hover) and (pointer: fine) {
  .sns-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  }
}

.pagetop {
  position: fixed;
  bottom: 45px;
  right: 101px;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 40;
  transition: 0.3s;
}
.pagetop img {
  width: 24px;
  aspect-ratio: 1/1;
  transform: rotate(-90deg);
}
.pagetop.is-show {
  display: flex;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 38px;
    right: 24px;
  }
}

.pagetop-text {
  font-family: "Caveat", cursive;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .pagetop-text {
    font-size: 2rem;
  }
}

.fv-inner {
  padding-block: 125px 30px;
  padding-left: 38px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .fv-inner {
    padding-block: 24px 4px;
    padding-left: 20px;
  }
}

.top-fv-lead {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .top-fv-lead {
    gap: 6px;
  }
}

.top-fv-lead__text {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}
.top-fv-lead__text span {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 900;
}
@media screen and (max-width: 1279px) {
  .top-fv-lead__text {
    font-size: 1.5625rem;
  }
  .top-fv-lead__text span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .top-fv-lead__text {
    font-size: 1.125rem;
  }
  .top-fv-lead__text span {
    font-size: 1.5rem;
  }
}

.top-fv-slider {
  position: absolute;
  top: 0;
  right: 0;
  width: 76.6%;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .top-fv-slider {
    margin-top: 24px;
    margin-left: 0;
    position: static;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-fv-slider {
    margin-top: 12px;
  }
}

.top-fv-swiper {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .top-fv-swiper {
    padding-bottom: 29px;
  }
}

.swiper-wrapper {
  width: 100%;
}

.top-fv-slide {
  width: 845px !important;
}
.top-fv-slide img {
  aspect-ratio: 845/599;
  border-radius: 10px;
}
@media screen and (max-width: 1279px) {
  .top-fv-slide {
    width: 700px !important;
  }
  .top-fv-slide img {
    aspect-ratio: 700/525;
  }
}
@media screen and (max-width: 1023px) {
  .top-fv-slide {
    width: 400px !important;
  }
  .top-fv-slide img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .top-fv-slide {
    width: 300px !important;
  }
}

.top-fv-swiper-next,
.top-fv-swiper-prev {
  position: absolute;
  bottom: 36px;
  z-index: 20;
  width: 50px;
  height: 50px;
  background-color: #E88C3E;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.top-fv-swiper-next::before, .top-fv-swiper-next::after,
.top-fv-swiper-prev::before,
.top-fv-swiper-prev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.top-fv-swiper-next::before,
.top-fv-swiper-prev::before {
  content: "";
  width: 45px;
  height: 45px;
  background: transparent;
  border: 1px dashed #ffffff;
  border-radius: 9999px;
}
.top-fv-swiper-next::after,
.top-fv-swiper-prev::after {
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 1023px) {
  .top-fv-swiper-next,
  .top-fv-swiper-prev {
    bottom: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-fv-swiper-next:hover,
  .top-fv-swiper-prev:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
}

.top-fv-swiper-next {
  right: 41px;
}
.top-fv-swiper-next::after {
  background: url("../images/top/fv/button-next.svg") no-repeat center/contain;
}
@media screen and (max-width: 1023px) {
  .top-fv-swiper-next {
    right: 19px;
  }
}

.top-fv-swiper-prev {
  right: 121px;
}
.top-fv-swiper-prev::after {
  background: url("../images/top/fv/button-prev.svg") no-repeat center/contain;
}
@media screen and (max-width: 1023px) {
  .top-fv-swiper-prev {
    right: 76px;
  }
}

.top-fv-button__wrapper {
  position: absolute;
  left: -47px;
  top: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .top-fv-button__wrapper {
    bottom: 50px;
    top: auto;
    left: -34px;
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .top-fv-button__wrapper {
    bottom: 69px;
  }
}

.top-fv-sns {
  margin-top: 245px;
}
@media screen and (max-width: 1279px) {
  .top-fv-sns {
    margin-top: 260px;
  }
}
@media screen and (max-width: 1023px) {
  .top-fv-sns {
    margin-top: 84px;
    padding-right: 20px;
    text-align: right;
  }
}

.top-news {
  padding-block: 96px 60px;
  position: relative;
}
.top-news::before {
  content: "";
  position: absolute;
  top: -500px;
  left: 0;
  width: 100%;
  height: 1400px;
  background: url("../images/top/news/top-news-background.webp") no-repeat center/100% 1400px;
  z-index: 0;
}
@media screen and (max-width: 1535px) {
  .top-news::before {
    top: -330px;
    height: 1200px;
    background-size: 100% 1200px;
  }
}
@media screen and (max-width: 1023px) {
  .top-news::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-block: 26px 153px;
  }
}

@media screen and (max-width: 1023px) {
  .top-news-bg__sp {
    position: absolute;
    width: 100%;
    min-height: 560px;
    top: -173px;
    left: 0;
    background-color: #92C98F;
    z-index: 0;
  }
  .top-news-bg__sp::before, .top-news-bg__sp::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 0;
  }
  .top-news-bg__sp::before {
    height: 220px;
    top: -218px;
    background: url("../images//top/news/top-news-background-top-sp.webp") no-repeat center bottom/cover;
  }
  .top-news-bg__sp::after {
    height: 230px;
    bottom: -170px;
    background: url("../images/top/news/news-background-bottom-sp.webp") no-repeat center top/cover;
  }
}
@media screen and (max-width: 767px) {
  .top-news-bg__sp::after {
    height: 220px;
    bottom: -170px;
  }
}
@media screen and (max-width: 539px) {
  .top-news-bg__sp::before, .top-news-bg__sp::after {
    height: 160px;
    background-size: contain;
  }
  .top-news-bg__sp::before {
    top: -158px;
  }
  .top-news-bg__sp::after {
    bottom: -158px;
  }
}

.top-news-inner {
  max-width: 700px;
  min-height: 235px;
}

.top-news-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.top-news-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

@media screen and (max-width: 767px) {
  .top-news__button-wrapper {
    margin-top: 40px;
    text-align: right;
  }
}

.top-news-body {
  margin-top: 49px;
}
@media screen and (max-width: 767px) {
  .top-news-body {
    margin-top: 24px;
  }
}

.top-about {
  padding-top: 300px;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding-top: 20px;
  }
}

.top-about-inner {
  max-width: 1300px;
}

.top-about-head {
  color: #92C98F;
}

.top-about-boxes {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .top-about-boxes {
    margin-top: 32px;
    gap: 80px;
  }
}
@media (min-width: 1440px) {
  .top-about-boxes {
    max-width: 1440px;
    margin-inline: auto;
  }
}

.top-about-box {
  max-width: 1370px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.top-about-box:first-of-type {
  margin-right: auto;
  padding-right: 30px;
}
.top-about-box:nth-of-type(2) {
  margin-left: auto;
  flex-direction: row-reverse;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .top-about-box {
    flex-direction: column;
    gap: 24px;
  }
  .top-about-box:first-of-type {
    margin: 0;
    padding: 0;
  }
  .top-about-box:first-of-type .top-about-box__image {
    margin-right: auto;
  }
  .top-about-box:nth-of-type(2) {
    margin-left: 0;
    flex-direction: column;
    padding-left: 0;
  }
  .top-about-box:nth-of-type(2) .top-about-box__image {
    margin-left: auto;
  }
}

.top-about-box__image {
  border-radius: 16px;
  flex-shrink: 0;
  overflow: hidden;
  width: 48.5%;
}
.top-about-box__image img {
  aspect-ratio: 650/365;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 767px) {
  .top-about-box__image {
    width: 85.3%;
  }
  .top-about-box__image img {
    aspect-ratio: 320/179;
  }
}
@media (min-width: 1440px) {
  .top-about-box__image img {
    border-radius: 10px;
  }
}

.top-about-box__body {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .top-about-box__body {
    padding-inline: 20px;
  }
}

.top-about-box__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #00A469;
  font-weight: 600;
}

.top-about-box__title-sub {
  line-height: 1.2;
}

.top-about-box__title-main {
  font-size: 1.5rem;
}

.top-about-box__text {
  margin-top: 24px;
  font-weight: 600;
}

.top-about__button-wrapper {
  margin-top: 24px;
  text-align: right;
}

.top-attraction {
  padding-top: 96px;
}

.top-attraction-inner {
  max-width: 1300px;
}

.top-attraction-head {
  text-align: center;
  color: #92C98F;
}

.top-attraction-cards {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .top-attraction-cards {
    margin-top: 32px;
  }
}
@media screen and (max-width: 539px) {
  .top-attraction-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 9px;
  }
}

.top-attraction-card {
  position: relative;
  border-radius: 20px;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .top-attraction-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  }
}

.top-attraction-card__image img {
  border-radius: 20px;
}

.top-attraction-card__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: #E88C3E;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px 32px;
}
@media screen and (max-width: 1023px) {
  .top-attraction-card__number {
    width: 100px;
    height: 100px;
    font-size: 2rem;
    padding: 5px 14px;
  }
}

.top-attraction-card__title {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 23px 24px;
  background-color: #00A469;
  border-radius: 20px 0 20px 0;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
.top-attraction-card__title::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/components/button/button-icon-arrow-orange.svg") no-repeat center/contain;
}
@media screen and (max-width: 1023px) {
  .top-attraction-card__title {
    padding-block: 5px;
    font-size: 0.875rem;
  }
}

.top-info {
  padding-top: 96px;
  padding-bottom: 114px;
  position: relative;
}
.top-info::after {
  content: "";
  width: 100%;
  height: 1279px;
  background: url("../images/top/info/info-background.webp") no-repeat center/100% 1279px;
  position: absolute;
  left: 0;
  top: 152px;
  z-index: 0;
}
@media screen and (max-width: 1279px) {
  .top-info::after {
    top: 200px;
    height: 1110px;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .top-info::after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .top-info-bg__sp {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 360px);
    background: #92C98F;
  }
  .top-info-bg__sp::before, .top-info-bg__sp::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
  }
  .top-info-bg__sp::before {
    top: -168px;
    height: 170px;
    background: url("../images/top/info/top-info-background-top-sp.webp") no-repeat center bottom/cover;
  }
  .top-info-bg__sp::after {
    bottom: -158px;
    height: 160px;
    background: url("../images/top/info/top-info-background-bottom-sp.webp") no-repeat center top/cover;
  }
}
@media screen and (max-width: 539px) {
  .top-info-bg__sp {
    height: calc(100% - 400px);
  }
  .top-info-bg__sp::before, .top-info-bg__sp::after {
    background-size: contain;
  }
  .top-info-bg__sp::before {
    top: -158px;
    height: 160px;
  }
}

.top-info-top__inner {
  max-width: 1300px;
  position: relative;
  z-index: 1;
}

.top-info-head {
  color: #92C98F;
}

.top-info_text {
  margin-top: 40px;
  max-width: 800px;
}

.top-info-bottom__inner {
  padding-inline: 30px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-info-bottom__inner {
    padding-inline: 0;
  }
}

.top-info-content {
  margin-top: 40px;
  padding: 50px 51px 53px;
  background-color: #00A469;
  border-radius: 14px;
}
@media screen and (max-width: 1023px) {
  .top-info-content {
    padding: 20px 21px 23px;
  }
}
@media screen and (max-width: 767px) {
  .top-info-content {
    margin-top: 32px;
    padding: 27px 27px 60px;
  }
}

.top-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .top-info-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-info-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .top-info-card {
    aspect-ratio: 4/3;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-info-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  }
}

.top-info-card__image {
  width: 100%;
  height: 100%;
}
.top-info-card__image img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-info-card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 24px;
  background-color: #00A469;
  border-radius: 0 10px 0 10px;
  text-align: center;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .top-info-card__title {
    padding: 10px 12px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top-info-card__title {
    padding: 12px 24px;
    font-size: 1.125rem;
  }
}

.top-info-button-wrapper {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .top-info-button-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}

.top-photo {
  position: relative;
  z-index: 1;
}

.top-photo-head {
  color: #ffffff;
  position: absolute;
  top: -74px;
  right: 110px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .top-photo-head {
    top: -36px;
    right: 59px;
  }
}

.top-photo-slider {
  display: flex;
  gap: 8px;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .top-photo-slider:hover .top-photo-slider__list--left {
    animation-play-state: running;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.top-photo-slider__list {
  display: flex;
  gap: 8px;
}

.top-photo-slider__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.top-photo-slider__item {
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.top-photo-slider__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
}
.top-photo-slider__item img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .top-photo-slider__item {
    width: 240px;
  }
}

.top-photo-button__wrapper {
  margin-top: 40px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .top-photo-button__wrapper {
    margin-top: 28px;
  }
}

.top-recruit {
  padding-block: 126px 96px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-recruit {
    padding-block: 88px 471px;
  }
}

.top-recruit-inner {
  max-width: 1300px;
}

.top-recruit-head {
  color: #E88C3E;
}

.top-recruit-lead {
  margin-top: 56px;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-recruit-lead {
    margin-top: 32px;
  }
}

.top-recruit-text {
  margin-top: 23px;
}
@media screen and (max-width: 767px) {
  .top-recruit-text {
    margin-top: 24px;
  }
}

.top-recruit-button__wrapper {
  margin-top: 23px;
  display: flex;
  justify-content: start;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .top-recruit-button__wrapper {
    margin-top: 32px;
    max-width: 300px;
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
}

.top-recruit-image__top {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 24.3%;
  max-width: 350px;
  border-radius: 9999px;
  overflow: hidden;
}
.top-recruit-image__top img {
  aspect-ratio: 1/1;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .top-recruit-image__top {
    left: auto;
    right: 120px;
  }
}
@media screen and (max-width: 767px) {
  .top-recruit-image__top {
    width: 53.3%;
    min-width: 200px;
    max-width: 250px;
    top: auto;
    bottom: 193px;
    left: auto;
    right: 50%;
  }
}

.top-recruit-image__under {
  position: absolute;
  top: 214px;
  left: calc(50% + 231px);
  width: 27.7%;
  max-width: 400px;
  border-radius: 9999px;
  overflow: hidden;
}
.top-recruit-image__under img {
  aspect-ratio: 1/1;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1279px) {
  .top-recruit-image__under {
    left: calc(50% + 150px);
  }
}
@media screen and (max-width: 1023px) {
  .top-recruit-image__under {
    left: auto;
    right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .top-recruit-image__under {
    width: 66.6%;
    min-width: 250px;
    max-width: 300px;
    top: auto;
    bottom: 60px;
    left: calc(50% - 60px);
    right: auto;
  }
}

.page-fv .fv-inner {
  margin: 0 auto;
  max-width: 1535px;
}

.page-fv-img {
  border-radius: 16px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1535px) {
  .page-fv-img {
    border-radius: 16px 0 0 16px;
    width: 60%;
  }
  .page-fv-img img {
    max-width: none;
    width: auto;
  }
}
@media screen and (max-width: 1023px) {
  .page-fv-img {
    margin-top: 24px;
    position: relative;
    text-align: right;
    width: 100%;
  }
  .page-fv-img img {
    display: inline-block;
    max-width: 100%;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .page-fv-img img {
    display: block;
  }
}

.page-title {
  color: #92C98F;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 10;
}

.page-title__en {
  font-family: "Caveat", cursive;
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .page-title__en {
    font-size: 3.75rem;
  }
}

.page-title__jp {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .page-title__jp {
    font-size: 0.875rem;
  }
}

.page-content {
  margin: 200px auto 0;
  max-width: 840px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .page-content {
    margin: 50px auto 20px;
  }
}

.page-info {
  padding-top: 96px;
  padding-bottom: 114px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-info {
    padding-top: 20px;
  }
}

.about-lead {
  padding-block: 160px 60px;
  position: relative;
}
.about-lead::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 720px;
  background: url("../images/about/about-background.webp") no-repeat center/100% 720px;
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .about-lead::before {
    display: none;
  }
}
@media screen and (max-width: 1535px) {
  .about-lead::before {
    top: -30px;
  }
}
@media screen and (max-width: 1535px) and (max-width: 1023px) {
  .about-lead::before {
    top: -60px;
  }
}
@media screen and (max-width: 1023px) {
  .about-lead {
    padding-block: 80px 60px;
  }
}
@media screen and (max-width: 767px) {
  .about-lead {
    padding-block: 54px 153px;
  }
}

.about-lead-content {
  color: #fff;
  position: relative;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .about-lead-bg__sp {
    position: absolute;
    width: 100%;
    height: 364px;
    top: 0;
    left: 0;
    background-color: #92C98F;
    z-index: 0;
  }
  .about-lead-bg__sp::before, .about-lead-bg__sp::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 0;
  }
  .about-lead-bg__sp::before {
    height: 220px;
    top: -210px;
    background: url("../images//top/news/top-news-background-top-sp.webp") no-repeat center bottom/cover;
  }
  .about-lead-bg__sp::after {
    height: 230px;
    bottom: -156px;
    background: url("../images/top/news/news-background-bottom-sp.webp") no-repeat center top/cover;
  }
}
@media screen and (max-width: 767px) {
  .about-lead-bg__sp::after {
    height: 220px;
    bottom: -170px;
  }
}
@media screen and (max-width: 539px) {
  .about-lead-bg__sp {
    height: 500px;
  }
  .about-lead-bg__sp::before, .about-lead-bg__sp::after {
    height: 160px;
    background-size: contain;
  }
  .about-lead-bg__sp::before {
    top: -158px;
  }
  .about-lead-bg__sp::after {
    bottom: -158px;
  }
}

.about-lead-head {
  position: relative;
}
.about-lead-head h3 {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .about-lead-head h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1023px) {
  .about-lead-head h3 {
    font-size: 24px;
  }
}
.about-lead-head-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .about-lead-head-icon {
    max-width: 140px;
  }
}

.about-lead-body p {
  font-weight: 600;
  margin-top: 100px;
}
@media screen and (max-width: 1023px) {
  .about-lead-body p {
    margin-top: 64px;
  }
  .about-lead-body p br {
    display: none;
  }
}

.about-rule-box {
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .about-rule-box {
    padding: 0 20px;
  }
}

.about-rule-box-inner {
  border: 3px solid #00A469;
  border-radius: 14px;
  margin: 0 auto;
  max-width: 963px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .about-rule-box-inner {
    padding: 20px;
  }
}

.about-rule-box p {
  color: #00A469;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.about-rule-box ul li {
  padding-left: 36px;
  position: relative;
}
.about-rule-box ul li:not(:first-child) {
  margin-top: 10px;
}
.about-rule-box ul li::before {
  background-color: #E88C3E;
  border-radius: 50vh;
  color: #fff;
  font-weight: bold;
  line-height: 26px;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 26px;
}
.about-rule-box ul li:nth-child(1)::before {
  content: "1";
}
.about-rule-box ul li:nth-child(2)::before {
  content: "2";
}
.about-rule-box ul li:nth-child(3)::before {
  content: "3";
}
.about-rule-box ul li:nth-child(4)::before {
  content: "4";
}

.page-about-promise {
  padding-top: 89px;
}

.page-about-promise-inner {
  max-width: 1300px;
}
.page-about-promise-inner h2 {
  margin-bottom: 56px;
  text-align: center;
}
.page-about-promise-inner h2 span {
  background-color: #00A469;
  border-radius: 14px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .page-about-promise-inner h2 span {
    font-size: 28px;
  }
}

.page-about-promise-body {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
}
@media screen and (max-width: 1023px) {
  .page-about-promise-body {
    row-gap: 40px;
  }
}

.page-about-promise-item {
  width: calc((100% - 96px) / 3);
}
.page-about-promise-item:not(:nth-child(3n+1)) {
  margin-left: 48px;
}
@media screen and (max-width: 1023px) {
  .page-about-promise-item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}
@media screen and (max-width: 1023px) {
  .page-about-promise-item {
    width: calc((100% - 24px) / 2);
  }
  .page-about-promise-item:not(:nth-child(odd)) {
    margin-left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .page-about-promise-item {
    width: 100%;
  }
  .page-about-promise-item:not(:nth-child(odd)) {
    margin-left: 0;
  }
}
.page-about-promise-item h3 {
  align-items: center;
  color: #00A469;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  justify-content: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1279px) {
  .page-about-promise-item h3 {
    font-size: 16px;
  }
}
.page-about-promise-item h3::before, .page-about-promise-item h3::after {
  background-color: #00A469;
  border-radius: 5px;
  content: "";
  height: 3px;
  width: 40px;
}
@media screen and (max-width: 767px) {
  .page-about-promise-item h3::before, .page-about-promise-item h3::after {
    width: 30px;
  }
}
.page-about-promise-item h3::before {
  margin-right: 10px;
  transform: rotate(60deg);
}
.page-about-promise-item h3::after {
  margin-left: 10px;
  transform: rotate(-60deg);
}
.page-about-promise-item img {
  margin-bottom: 1rem;
}

.attraction-btn {
  margin-top: 80px;
  max-width: 1060px;
}
@media screen and (max-width: 767px) {
  .attraction-btn {
    margin-top: 40px;
  }
}

.attraction-btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .attraction-btn-list {
    gap: 10px;
  }
}
.attraction-btn-list li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .attraction-btn-list li {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 539px) {
  .attraction-btn-list li {
    width: 100%;
  }
}
.attraction-btn-list li a {
  background-color: #E88C3E;
  border-radius: 50vh;
  color: #fff;
  display: block;
  font-weight: 600;
  line-height: 46px;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .attraction-btn-list li a {
    font-size: 0.875rem;
    padding: 0 20px;
  }
}
.attraction-btn-list li a::before {
  background: #fff;
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 30px;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 0;
  width: 30px;
}
@media screen and (max-width: 1023px) {
  .attraction-btn-list li a::before {
    width: 25px;
    height: 25px;
  }
}
.attraction-btn-list li a::after {
  content: "";
  width: 12px;
  height: 8px;
  background: #E88C3E;
  position: absolute;
  right: 29px;
  top: 50%;
  transform: translateY(-30%);
  /* ↓ 丸みを帯びた三角形 */
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  border-radius: 2px;
}
@media screen and (max-width: 1023px) {
  .attraction-btn-list li a::after {
    right: 26.5px;
  }
}

.attraction-content {
  max-width: 1060px;
}
@media screen and (max-width: 539px) {
  .attraction-content {
    margin-bottom: 40px;
  }
}

.attraction-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px 4px #D9D9D9;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .attraction-item {
    margin-top: 40px;
  }
}
.attraction-item h3 {
  background-color: #00A469;
  border-radius: 10px 0 10px 0;
  color: #fff;
  display: inline-block;
  font-size: 1.625rem;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .attraction-item h3 {
    font-size: 1.25rem;
  }
}
.attraction-item-inner {
  padding: 0 30px 30px;
}
@media screen and (max-width: 767px) {
  .attraction-item-inner {
    padding: 0 15px 15px;
  }
}
.attraction-item-inner img {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .attraction-item-inner img {
    margin: 20px 0;
  }
}
.attraction-item-inner .img-flex {
  display: flex;
  gap: 20px;
}
.attraction-item-inner .img-flex img {
  width: calc(50% - 10px);
}

.attraction-item-inner-info {
  background-color: #EEF8F0;
  border-radius: 20px;
  padding: 20px;
}
.attraction-item-inner-info.mgt {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .attraction-item-inner-info.mgt {
    margin-top: 20px;
  }
}
.attraction-item-inner-info h4 {
  color: #00A469;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .attraction-item-inner-info h4 {
    font-size: 1.125rem;
  }
}
.attraction-item-inner-info h4::before {
  content: "";
  background: #E88C3E;
  border-radius: 50vh;
  height: 10px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}
.attraction-item-inner-info-flex {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .attraction-item-inner-info-flex {
    margin-top: 20px;
  }
}
@media screen and (max-width: 539px) {
  .attraction-item-inner-info-flex {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.attraction-item-inner-info-short {
  background-color: #EEF8F0;
  border-radius: 20px;
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 539px) {
  .attraction-item-inner-info-short {
    width: 100%;
  }
}
.attraction-item-inner-info-short p {
  color: #00A469;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
@media screen and (max-width: 539px) {
  .attraction-item-inner-info-short p {
    font-size: 1.125rem;
  }
}
.attraction-item-inner-info-short ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.attraction-item-inner-info-short ol li {
  font-weight: 600;
  padding-left: 30px;
  position: relative;
  width: calc(50% - 5px);
}
@media screen and (max-width: 1023px) {
  .attraction-item-inner-info-short ol li {
    width: 100%;
  }
}
@media screen and (max-width: 539px) {
  .attraction-item-inner-info-short ol li {
    font-size: 0.75rem;
    width: calc(50% - 5px);
  }
}
.attraction-item-inner-info-short ol li::before {
  background-color: #E88C3E;
  border-radius: 50vh;
  color: #fff;
  font-weight: bold;
  line-height: 26px;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 26px;
}
@media screen and (max-width: 539px) {
  .attraction-item-inner-info-short ol li::before {
    line-height: 20px;
    width: 20px;
  }
}
.attraction-item-inner-info-short ol li:nth-child(1)::before {
  content: "1";
}
.attraction-item-inner-info-short ol li:nth-child(2)::before {
  content: "2";
}
.attraction-item-inner-info-short ol li:nth-child(3)::before {
  content: "3";
}
.attraction-item-inner-info-short ol li:nth-child(4)::before {
  content: "4";
}
.attraction-item-inner-info-short ol li:nth-child(5)::before {
  content: "5";
}
.attraction-item-inner-info-short ol li:nth-child(6)::before {
  content: "6";
}
.attraction-item-inner-info-short ol li:nth-child(7)::before {
  content: "7";
}

.info-lead {
  padding-block: 160px 60px;
  position: relative;
}
.info-lead::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 640px;
  background: url("../images/about/about-background.webp") no-repeat center/100% 640px;
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .info-lead::before {
    display: none;
  }
}
@media screen and (max-width: 1535px) {
  .info-lead::before {
    top: -30px;
  }
}
@media screen and (max-width: 1535px) and (max-width: 1023px) {
  .info-lead::before {
    top: -60px;
  }
}
@media screen and (max-width: 1023px) {
  .info-lead {
    margin-top: 220px;
    padding-block: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .info-lead {
    margin-top: 230px;
    padding-block: 0 153px;
  }
}
@media screen and (max-width: 539px) {
  .info-lead {
    margin-top: 125px;
    padding-block: 0 153px;
  }
}

@media screen and (max-width: 1023px) {
  .info-lead-bg__sp {
    position: absolute;
    width: 100%;
    height: 364px;
    top: 0;
    left: 0;
    background-color: #92C98F;
    z-index: 0;
  }
  .info-lead-bg__sp::before, .info-lead-bg__sp::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 0;
  }
  .info-lead-bg__sp::before {
    height: 225px;
    top: -210px;
    background: url("../images//top/news/top-news-background-top-sp.webp") no-repeat center bottom/cover;
  }
  .info-lead-bg__sp::after {
    height: 230px;
    bottom: -156px;
    background: url("../images/top/news/news-background-bottom-sp.webp") no-repeat center top/cover;
  }
}
@media screen and (max-width: 767px) {
  .info-lead-bg__sp {
    height: 550px;
  }
  .info-lead-bg__sp::after {
    height: 220px;
    bottom: -170px;
  }
}
@media screen and (max-width: 539px) {
  .info-lead-bg__sp {
    height: 500px;
  }
  .info-lead-bg__sp::before, .info-lead-bg__sp::after {
    height: 160px;
    background-size: contain;
  }
  .info-lead-bg__sp::before {
    top: -158px;
  }
  .info-lead-bg__sp::after {
    bottom: -158px;
  }
}

@media screen and (max-width: 767px) {
  .info-lead-inner .top-recruit-image__top {
    bottom: -120px;
  }
  .info-lead-inner .top-recruit-image__under {
    bottom: -220px;
    min-width: 240px;
    width: 60.6%;
  }
}
@media screen and (max-width: 539px) {
  .info-lead-inner .top-recruit-image__top {
    bottom: -90px;
  }
  .info-lead-inner .top-recruit-image__under {
    bottom: -170px;
    min-width: 240px;
    width: 60.6%;
  }
}

.info-lead-text {
  color: #fff;
  position: relative;
  width: 45%;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .info-lead-text {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .info-lead-text {
    width: 100%;
  }
}
.info-lead-text h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .info-lead-text h3 {
    font-size: 1.5rem;
  }
}

.info-box-wrap {
  padding: 240px 30px 0;
}
@media screen and (max-width: 767px) {
  .info-box-wrap {
    padding: 450px 30px 0;
  }
  .info-box-wrap br {
    display: none;
  }
  .info-box-wrap br.u-hidden-pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .info-box-wrap {
    padding: 300px 20px 0;
  }
}

.info-box {
  background: #EEF8F0;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1000px;
  padding: 40px 40px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .info-box {
    padding: 40px 20px;
  }
}
.info-box h3 {
  background: #1D634A;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .info-box h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .info-box h3 {
    font-size: 1.25rem;
  }
}
.info-box:nth-child(2n) {
  margin-top: 40px;
}

.info-box-inner {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .info-box-inner {
    display: block;
  }
  .info-box-inner .info-btn-wrap img {
    margin: 0 auto;
    max-width: 120px;
    width: 120px;
  }
  .info-box-inner .info-btn-wrap:nth-child(2n) {
    margin-top: 20px;
  }
}
.info-box-inner .button--orange {
  margin-top: 10px;
}
@media screen and (max-width: 1023px) {
  .info-box-inner .button--orange {
    font-size: 0.875rem;
  }
}

.page-news-archive .fv-inner {
  margin: 0 auto 150px;
}

.page-news {
  background: #92C98F;
  margin-bottom: 200px;
  position: relative;
}
.page-news::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 640px;
  background: url("../images/news/page-news-background.webp") no-repeat center/100% 640px;
  z-index: 0;
}
.page-news::after {
  content: "";
  position: absolute;
  bottom: -270px;
  left: 0;
  width: 100%;
  height: 640px;
  background: url("../images/news/page-news-background.webp") no-repeat center/100% 640px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .page-news::after {
    bottom: -180px;
  }
}
@media screen and (max-width: 1535px) {
  .page-news::before {
    top: -140px;
  }
}
@media screen and (max-width: 1023px) {
  .page-news {
    margin-top: 220px;
    padding-block: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-news {
    margin-top: 230px;
    padding-block: 0 153px;
  }
}
@media screen and (max-width: 539px) {
  .page-news {
    margin-top: 125px;
    padding-block: 20px 70px;
  }
}

.news-inner {
  margin-top: 80px;
  max-width: 1040px;
}
.news-inner h2 {
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .news-inner h2 {
    font-size: 1.5rem;
  }
}

.single-news__category {
  border-radius: 50vh;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 0 30px;
}
.single-news__category.event {
  background: #00A469;
}
.single-news__category.recruitment {
  background: #1D634A;
}

.news-time {
  color: #00A469;
}

.news-content {
  margin-top: 2em;
}

.news-content p:not(:first-child) {
  margin-top: 1em;
}

.news-nav {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .news-nav {
    margin: 60px 0 40px;
  }
}

.news-nav__back a {
  transition: 0.3s;
}
.news-nav__back a:hover {
  opacity: 0.6;
}

.news-nav__prev,
.news-nav__next {
  position: relative;
  z-index: 20;
  width: 50px;
  height: 50px;
  background-color: #E88C3E;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.news-nav__prev::before, .news-nav__prev::after,
.news-nav__next::before,
.news-nav__next::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.news-nav__prev::before,
.news-nav__next::before {
  content: "";
  width: 45px;
  height: 45px;
  background: transparent;
  border: 1px dashed #ffffff;
  border-radius: 9999px;
}
.news-nav__prev::after,
.news-nav__next::after {
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 1023px) {
  .news-nav__prev,
  .news-nav__next {
    bottom: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-nav__prev:hover,
  .news-nav__next:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
}

.news-nav__next::after {
  background: url("../images/top/fv/button-next.svg") no-repeat center/contain;
}

.news-nav__prev::after {
  background: url("../images/top/fv/button-prev.svg") no-repeat center/contain;
}

.recruit-lead {
  padding-block: 160px 60px;
  position: relative;
}
.recruit-lead::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 640px;
  background: url("../images/about/about-background.webp") no-repeat center/100% 640px;
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .recruit-lead::before {
    display: none;
  }
}
@media screen and (max-width: 1535px) {
  .recruit-lead::before {
    top: -30px;
  }
}
@media screen and (max-width: 1535px) and (max-width: 1023px) {
  .recruit-lead::before {
    top: -60px;
  }
}
@media screen and (max-width: 1023px) {
  .recruit-lead {
    margin-top: 220px;
    padding-block: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-lead {
    margin-top: 230px;
    padding-block: 0 153px;
  }
}
@media screen and (max-width: 539px) {
  .recruit-lead {
    margin-top: 125px;
    padding-block: 0 153px;
  }
}

@media screen and (max-width: 1023px) {
  .recruit-lead-bg__sp {
    position: absolute;
    width: 100%;
    height: 364px;
    top: 0;
    left: 0;
    background-color: #92C98F;
    z-index: 0;
  }
  .recruit-lead-bg__sp::before, .recruit-lead-bg__sp::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 0;
  }
  .recruit-lead-bg__sp::before {
    height: 225px;
    top: -210px;
    background: url("../images//top/news/top-news-background-top-sp.webp") no-repeat center bottom/cover;
  }
  .recruit-lead-bg__sp::after {
    height: 230px;
    bottom: -156px;
    background: url("../images/top/news/news-background-bottom-sp.webp") no-repeat center top/cover;
  }
}
@media screen and (max-width: 767px) {
  .recruit-lead-bg__sp {
    height: 550px;
  }
  .recruit-lead-bg__sp::after {
    height: 220px;
    bottom: -170px;
  }
}
@media screen and (max-width: 539px) {
  .recruit-lead-bg__sp {
    height: 500px;
  }
  .recruit-lead-bg__sp::before, .recruit-lead-bg__sp::after {
    height: 160px;
    background-size: contain;
  }
  .recruit-lead-bg__sp::before {
    top: -158px;
  }
  .recruit-lead-bg__sp::after {
    bottom: -158px;
  }
}

.recruit-lead-inner {
  max-width: 1240px;
}
.recruit-lead-inner .top-recruit-image__top {
  left: 60%;
  top: 60px;
  width: 17.3%;
}
.recruit-lead-inner .top-recruit-image__under {
  left: calc(60% + 140px);
  width: 18.7%;
}
@media screen and (max-width: 1023px) {
  .recruit-lead-inner .top-recruit-image__top {
    width: 24%;
  }
  .recruit-lead-inner .top-recruit-image__under {
    left: calc(60% + 80px);
    width: 24%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-lead-inner .top-recruit-image__top {
    bottom: -120px;
    left: auto;
    top: auto;
  }
  .recruit-lead-inner .top-recruit-image__under {
    bottom: -220px;
    left: calc(50% - 60px);
    min-width: 240px;
    width: 60.6%;
  }
}
@media screen and (max-width: 539px) {
  .recruit-lead-inner .top-recruit-image__top {
    bottom: -90px;
  }
  .recruit-lead-inner .top-recruit-image__under {
    bottom: -170px;
    min-width: 240px;
    width: 60.6%;
  }
}

.recruit-lead-text {
  color: #fff;
  position: relative;
  width: 65%;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .recruit-lead-text {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-lead-text {
    width: 100%;
  }
}
.recruit-lead-text h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .recruit-lead-text h3 {
    font-size: 1.5rem;
  }
}

.recruit-box-wrap {
  padding: 240px 30px 0;
}
@media screen and (max-width: 767px) {
  .recruit-box-wrap {
    padding: 450px 30px 60px;
  }
}
@media screen and (max-width: 539px) {
  .recruit-box-wrap {
    padding: 240px 20px 60px;
  }
}

.recruit-box {
  background: #EEF8F0;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1000px;
  padding: 40px 40px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .recruit-box {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-box {
    padding: 20px 20px 40px;
  }
}
.recruit-box h3 {
  background: #1D634A;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .recruit-box h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-box h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}
.recruit-box:nth-child(2n) {
  margin-top: 40px;
}
.recruit-box .recruit-link {
  margin-top: 40px;
}
.recruit-box .recruit-link a {
  color: #00A469;
  text-decoration: underline;
  transition: 0.3s;
}
.recruit-box .recruit-link a:hover {
  opacity: 0.6;
}

.recruit-box-inner {
  display: flex;
  gap: 62px;
  justify-content: center;
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .recruit-box-inner {
    display: block;
  }
  .recruit-box-inner .recruit-btn-wrap img {
    margin: 0 auto;
    max-width: 120px;
    width: 120px;
  }
  .recruit-box-inner .recruit-btn-wrap:nth-child(2n) {
    margin-top: 20px;
  }
}

.recruit-info dt {
  color: #00A469;
  font-weight: 700;
}
.recruit-info dt:not(:first-child) {
  margin-top: 1em;
}
.recruit-info dd {
  border-bottom: 1px dashed #00A469;
}

.recruit-box-center {
  max-width: 600px;
}

.contact-text {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-text {
    margin-top: 40px;
  }
}
.contact-text .button--orange {
  margin-top: 20px;
}

.page-review {
  background: #92C98F;
  margin-bottom: 200px;
  margin-top: 80px;
  position: relative;
}
.page-review::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 640px;
  background: url("../images/news/page-news-background.webp") no-repeat center/100% 640px;
  z-index: 0;
}
.page-review::after {
  content: "";
  position: absolute;
  bottom: -270px;
  left: 0;
  width: 100%;
  height: 640px;
  background: url("../images/news/page-news-background.webp") no-repeat center/100% 640px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .page-review::after {
    bottom: -180px;
  }
}
@media screen and (max-width: 1023px) {
  .page-review {
    margin-top: 220px;
    padding-block: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-review {
    margin-top: 230px;
    padding-block: 0 153px;
  }
}
@media screen and (max-width: 539px) {
  .page-review {
    margin-top: 40px;
    padding-block: 20px 30px;
  }
}

.page-review-inner {
  max-width: 1200px;
}

.page-review-content {
  margin: 0 auto;
  max-width: 700px;
  position: relative;
  z-index: 10;
}
.page-review-content.review-archive-content {
  max-width: 1200px;
}
.page-review-content h3 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .page-review-content h3 {
    font-size: 24px;
  }
}

.page-review-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .page-review-body {
    gap: 30px;
  }
}
.page-review-body li {
  text-align: center;
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1023px) {
  .page-review-body li {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .page-review-body li {
    width: 100%;
  }
}
.page-review-body li:hover img {
  transform: scale(1.1);
}
.page-review-body li img {
  transition: 0.3s all;
}
.page-review-body li dt {
  color: #fff;
  font-weight: 600;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .page-review-body li dt {
    margin-top: 0.5em;
  }
}

.review-img {
  border-radius: 10px;
  max-height: 250px;
  overflow: hidden;
}
.review-img img {
  margin: 0 auto;
}

.review-item-img:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .review-item-img:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* ページネーション全体 */
.review-pagination {
  margin-top: 40px;
}

.review-pagination ul {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 数字・矢印 共通 */
.review-pagination li a,
.review-pagination li span {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 4px;
}

/* 現在のページ */
.review-pagination .current {
  border-bottom: 1px solid #fff;
}

/* ホバー（任意） */
.review-pagination a:hover {
  opacity: 0.7;
}

.review-nav {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 80px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .review-nav {
    margin: 60px 0 40px;
  }
}

.review-nav__back {
  color: #fff;
}
.review-nav__back a {
  transition: 0.3s;
}
.review-nav__back a:hover {
  opacity: 0.6;
}

.review-nav__prev,
.review-nav__next {
  position: relative;
  z-index: 20;
  width: 50px;
  height: 50px;
  background-color: #E88C3E;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.review-nav__prev::before, .review-nav__prev::after,
.review-nav__next::before,
.review-nav__next::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.review-nav__prev::before,
.review-nav__next::before {
  content: "";
  width: 45px;
  height: 45px;
  background: transparent;
  border: 1px dashed #ffffff;
  border-radius: 9999px;
}
.review-nav__prev::after,
.review-nav__next::after {
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 1023px) {
  .review-nav__prev,
  .review-nav__next {
    bottom: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .review-nav__prev:hover,
  .review-nav__next:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
}

.review-nav__next::after {
  background: url("../images/top/fv/button-next.svg") no-repeat center/contain;
}

.review-nav__prev::after {
  background: url("../images/top/fv/button-prev.svg") no-repeat center/contain;
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

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

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