@charset "UTF-8";
/* PCとSPの適用切り替え
--------------------------------- */
/* メディアクエリ調整関数
--------------------------------- */
/* 画面サイズ
--------------------------------- */
/* moreボタン
--------------------------------- */
/* カラー
--------------------------------- */
/* リセット
--------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: 400;
  background-color: #3E3A39;
  scroll-behavior: smooth;
}

body, div, section, h1, h2, h3, h4, h5, h6, p, ul, ol, li, span, figure {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.ff-dnp {
  font-family: dnp-shuei-gothic-gin-std;
}

ul, li {
  list-style: none;
}

img, figure {
  width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

a, a:visited {
  text-decoration: none;
  color: inherit;
}

/* ボタン
--------------------------------- */
.btn {
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover {
  opacity: 0.9;
}

/* 設定
--------------------------------- */
@media (min-width: 768px) {
  .link-disable-pc {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .link-disable-sp {
    pointer-events: none;
  }
}
html {
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%;
}

@media (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
html, body {
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.anchor {
  margin-top: -5rem;
  padding-top: 5rem;
}

@media (max-width: 767px) {
  .anchor {
    margin-top: max(-4rem, -56px);
    padding-top: min(4rem, 56px);
  }
}
/* pc sp
--------------------------------- */
.dp-pc {
  display: block;
}

.dp-sp {
  display: none;
}

.dp-pc-ib {
  display: inline-block;
}

.dp-pc-im {
  display: block !important;
}

.dp-sp-im {
  display: none !important;
}

@media (max-width: 767px) {
  .dp-pc {
    display: none;
  }
  .dp-pc-ib {
    display: none;
  }
  .dp-sp {
    display: block;
  }
  .dp-pc-im {
    display: none !important;
  }
  .dp-sp-im {
    display: block !important;
  }
}
.dp-n {
  display: none;
}

.dp-n-im {
  display: none !important;
}

/* font
--------------------------------- */
.ff-noto {
  font-family: "Noto Sans JP", sans-serif;
}

.ff-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* アニメーション
--------------------------------- */
.triger-by-scroll-in {
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 0.5s, transform 0.5s;
}
.triger-by-scroll-in.on {
  opacity: 1;
  transform: translateY(0);
}

/* header
--------------------------------- */
.header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 11.8rem;
  transition: all 0.3s;
}
.header.scrolled {
  height: 9.8rem;
  background-color: rgba(0, 0, 0, 0.8);
}
.header .header__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1146px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
}
.header .header__inner .header-login {
  display: none;
}
.header .header__inner .header__logo {
  z-index: 10;
  width: 18.3rem;
}
.header .header__inner .header-nav__display {
  z-index: 0;
  display: flex;
  align-items: center;
  column-gap: 3rem;
  margin-left: auto;
  margin-right: 7rem;
}
.header .header__inner .header-nav__display a {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  .header .header__inner .header-nav__display a:hover {
    opacity: 0.7;
  }
}
.header .header__inner .hamburger {
  z-index: 10;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
}
.header .header__inner .hamburger::before {
  position: absolute;
  content: "menu";
  bottom: 0;
  font-size: 1.4rem;
  font-weight: 400;
  transition: all 0.3s;
}
.header .header__inner .hamburger span {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.header .header__inner .hamburger span::before, .header .header__inner .hamburger span::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
  transition: all 0.3s;
}
.header .header__inner .hamburger span::before {
  top: 0;
}
.header .header__inner .hamburger span::after {
  top: 1rem;
}
.header .header__inner .hamburger.active::before {
  content: "close";
  bottom: -1rem;
}
.header .header__inner .hamburger.active span::before {
  top: 1rem;
  transform: translate(-50%, 0) rotate(30deg);
}
.header .header__inner .hamburger.active span::after {
  transform: translate(-50%, 0) rotate(-30deg);
}
.header .header__inner .hamburger.active ~ .header-nav {
  right: 0;
}
.header .header__inner .header-nav {
  z-index: 9;
  position: absolute;
  top: 0;
  right: -100%;
  display: flex;
  width: 100%;
  height: 100svh;
  background-color: #3E3A39;
  transition: all 0.3s;
}
.header .header__inner .header-nav .header-nav__container {
  width: 103rem;
  height: 32rem;
  margin: 0 auto;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list {
  position: relative;
  top: 23.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 5.5rem;
  height: 100%;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item {
  width: 22rem;
  flex-grow: 0;
  flex-shrink: 1;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item a {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item a span {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member {
  width: 32.4074074074%;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a {
  position: relative;
  line-height: 1.1;
  font-weight: 200;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a span, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a span {
  margin-top: 1rem;
  font-weight: 300;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a p, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a p {
  position: relative;
  display: block;
  width: 13.3rem;
  font-size: 1.7rem;
  position: absolute;
  right: 0;
  top: 3.2rem;
  width: 42%;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a p::before, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a p::before {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  left: 0;
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a p::after, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a p::after {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  right: 0;
  transform: rotate(45deg);
  transform-origin: right center;
  display: block;
  width: 1rem;
  height: 0.1rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial a p, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member a p {
    width: 10.5rem;
    line-height: 1;
  }
}
.header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.mb100 {
  margin-bottom: 10rem;
}
.header .header__inner .header-nav .header-nav__container > .btn-trial,
.header .header__inner .header-nav .header-nav__container > .btn-member {
  display: none;
}
.header .header__inner .header-nav .header-nav__container .header-nav__note {
  position: absolute;
  bottom: 3rem;
  left: 7.2rem;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

@media (max-width: 767px) {
  .header {
    height: auto;
  }
  .header .header__inner {
    padding: 3.3rem 2.5rem 2rem;
  }
  .header .header__inner .header-login {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
  }
  .header .header__inner .header__logo {
    width: 9.56rem;
  }
  .header .header__inner .header__logo a {
    display: flex;
  }
  .header .header__inner .header-nav__display {
    display: none;
  }
  .header .header__inner .hamburger {
    width: 3.1rem;
    height: 3.2rem;
  }
  .header .header__inner .hamburger::before {
    font-size: 1.1rem;
  }
  .header .header__inner .hamburger span::before, .header .header__inner .hamburger span::after {
    height: 0.1rem;
  }
  .header .header__inner .header-nav {
    padding: 0 3rem 0 5rem;
    box-sizing: border-box;
  }
  .header .header__inner .header-nav .header-nav__container {
    position: relative;
    top: 13.5rem;
    width: 100%;
    height: calc(100svh - 14.5rem);
    padding-bottom: 2rem;
    overflow-y: scroll;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__list {
    top: 0;
    height: 35rem;
    row-gap: 3.5rem;
    margin-bottom: 8rem;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item {
    width: 50%;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item a {
    font-size: 1.9rem;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item a span {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-trial, .header .header__inner .header-nav .header-nav__container .header-nav__list .header-nav__item.btn-member {
    display: none;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial,
  .header .header__inner .header-nav .header-nav__container > .btn-member {
    position: relative;
    display: block;
    width: 100%;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial a,
  .header .header__inner .header-nav .header-nav__container > .btn-member a {
    position: relative;
    font-size: 1.9rem;
    line-height: 1.1;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial a span,
  .header .header__inner .header-nav .header-nav__container > .btn-member a span {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial a p,
  .header .header__inner .header-nav .header-nav__container > .btn-member a p {
    position: relative;
    display: block;
    width: 13.3rem;
    font-size: 1.7rem;
    position: absolute;
    right: 0;
    top: 1.8rem;
    width: 13.5rem !important;
    font-size: 1.3rem;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial a p::before,
  .header .header__inner .header-nav .header-nav__container > .btn-member a p::before {
    position: absolute;
    content: "";
    bottom: -0.8rem;
    left: 0;
    display: block;
    width: 100%;
    height: 0.1rem;
    background-color: #fff;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-trial a p::after,
  .header .header__inner .header-nav .header-nav__container > .btn-member a p::after {
    position: absolute;
    content: "";
    bottom: -0.8rem;
    right: 0;
    transform: rotate(45deg);
    transform-origin: right center;
    display: block;
    width: 1rem;
    height: 0.1rem;
    background-color: #fff;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .header .header__inner .header-nav .header-nav__container > .btn-trial a p,
  .header .header__inner .header-nav .header-nav__container > .btn-member a p {
    width: 10.5rem;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .header .header__inner .header-nav .header-nav__container > .btn-trial {
    margin-bottom: 3rem;
  }
  .header .header__inner .header-nav .header-nav__container > .btn-member {
    margin-bottom: 8rem;
  }
  .header .header__inner .header-nav .header-nav__container .header-nav__note {
    position: relative;
    bottom: 0;
    left: 0;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
  }
}
.header-form .header-form__inner {
  display: flex;
  justify-content: space-between;
  max-width: 972px;
  margin: 0 auto 15.1rem;
  padding: 5rem 1.5rem 0;
}
.header-form .header-form__inner .header-form__logo {
  display: flex;
  justify-content: flex-start;
}
.header-form .header-form__inner .header-form__logo a {
  display: block;
  width: 18.2rem;
}
.header-form .header-form__inner .header-form__contact p {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.header-form .header-form__inner .header-form__contact a {
  position: relative;
  padding-left: 2rem;
  font-family: dnp-shuei-gothic-gin-std;
  font-size: 1.8rem;
}
.header-form .header-form__inner .header-form__contact a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/parts/icon-phone.png) no-repeat center/contain;
}

.error404 .header-form .header-form__inner {
  justify-content: center;
}
.error404 .header-form .header-form__inner .header-form__contact {
  display: none;
}

@media (max-width: 767px) {
  .header-form .header-form__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    margin: 0 auto 7.36rem;
    padding-top: 3.5rem;
  }
  .header-form .header-form__inner .header-form__logo a {
    width: 11.1rem;
  }
  .header-form .header-form__inner .header-form__contact {
    text-align: center;
  }
  .header-form .header-form__inner .header-form__contact p {
    font-size: 0.9rem;
  }
  .header-form .header-form__inner .header-form__contact a {
    padding-left: 1.4rem;
    font-size: 1.3rem;
  }
  .header-form .header-form__inner .header-form__contact a::before {
    width: 1.1rem;
    height: 1.1rem;
  }
}
/* footer-links
--------------------------------- */
section.footer-links {
  margin-bottom: 9rem;
}
section.footer-links .footer-links__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: 1002px;
  padding-top: 5rem;
}
section.footer-links .footer-links__inner > div:not(:last-of-type) {
  margin-bottom: 7rem;
}
section.footer-links .footer-links__inner > div a {
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  section.footer-links .footer-links__inner > div a:hover {
    opacity: 0.7;
  }
}
section.footer-links .footer-links__inner .esforta-prime a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.footer-links .footer-links__inner .esforta-prime a span {
  width: 33.9rem;
  margin-right: 5rem;
}
section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right {
  width: fit-content;
}
section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right p {
  font-size: 1.5rem;
  font-weight: 500;
}
section.footer-links .footer-links__inner .fitness-club {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 5rem;
}
section.footer-links .footer-links__inner .fitness-club h3 {
  width: 100%;
  margin-bottom: 2.4rem;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
section.footer-links .footer-links__inner .fitness-club .footer-links__left a {
  display: block;
  width: 16rem;
}
section.footer-links .footer-links__inner .fitness-club .footer-links__right {
  display: flex;
  align-items: center;
  column-gap: 3rem;
  width: 77.9342723005%;
}
section.footer-links .footer-links__inner .fitness-club .footer-links__right h4 {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
section.footer-links .footer-links__inner .personal {
  display: flex;
  column-gap: 5rem;
}
section.footer-links .footer-links__inner .personal > div {
  width: 16rem;
}
section.footer-links .footer-links__inner .personal > div h3 {
  margin-bottom: 2.4rem;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  text-align: center;
}
section.footer-links .footer-links__inner .indoor-golf {
  display: flex;
  align-items: center;
  column-gap: 5rem;
  flex-wrap: wrap;
}
section.footer-links .footer-links__inner .indoor-golf h3 {
  width: 100%;
  margin-bottom: 1.6rem;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
section.footer-links .footer-links__inner .indoor-golf .footer-links__left a {
  display: block;
  width: 16rem;
}
section.footer-links .footer-links__inner .indoor-golf .footer-links__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4.6rem;
  width: 62.9107981221%;
}
section.footer-links .footer-links__inner .indoor-golf .footer-links__right h4 {
  width: 19.8rem;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
section.footer-links .footer-links__inner .dance-studio {
  display: flex;
  align-items: center;
  column-gap: 5rem;
  flex-wrap: wrap;
}
section.footer-links .footer-links__inner .dance-studio h3 {
  width: 100%;
  margin-bottom: 2.4rem;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
section.footer-links .footer-links__inner .dance-studio .footer-links__left a {
  display: block;
  width: 16rem;
}
section.footer-links .footer-links__inner .dance-studio .footer-links__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4.6rem;
  width: 62.9107981221%;
}
section.footer-links .footer-links__inner .dance-studio .footer-links__right h4 {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

@media (max-width: 767px) {
  section.footer-links {
    margin-bottom: 5rem;
  }
  section.footer-links .footer-links__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 6.5rem 5rem 0 5rem;
    display: flex;
    flex-direction: column;
  }
  section.footer-links .footer-links__inner > div:not(:last-of-type) {
    margin-bottom: 5rem;
  }
  section.footer-links .footer-links__inner .esforta-prime a {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  section.footer-links .footer-links__inner .esforta-prime a span {
    width: 100%;
    height: 10rem;
    margin-right: 0;
    margin-bottom: 3rem;
  }
  section.footer-links .footer-links__inner .esforta-prime a span img {
    height: 100%;
  }
  section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right {
    width: 100%;
  }
  section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right h3 {
    font-size: 1.3rem;
  }
  section.footer-links .footer-links__inner .esforta-prime a div.footer-links__right p {
    font-size: 1.2rem;
    font-weight: 400;
  }
  section.footer-links .footer-links__inner .fitness-club {
    flex-wrap: wrap;
  }
  section.footer-links .footer-links__inner .fitness-club h3 {
    font-size: 1.1rem;
  }
  section.footer-links .footer-links__inner .fitness-club .footer-links__left {
    margin-bottom: 2.5rem;
  }
  section.footer-links .footer-links__inner .fitness-club .footer-links__left a {
    width: 14.5rem;
  }
  section.footer-links .footer-links__inner .fitness-club .footer-links__right {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }
  section.footer-links .footer-links__inner .fitness-club .footer-links__right h4 {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
  }
  section.footer-links .footer-links__inner .personal {
    flex-wrap: wrap;
    row-gap: 5rem;
  }
  section.footer-links .footer-links__inner .personal > div {
    width: 14.5rem;
  }
  section.footer-links .footer-links__inner .personal > div h3 {
    font-size: 1.1rem;
    text-align: left;
  }
  section.footer-links .footer-links__inner .indoor-golf h3 {
    font-size: 1.1rem;
  }
  section.footer-links .footer-links__inner .indoor-golf .footer-links__left {
    margin-bottom: 2.5rem;
  }
  section.footer-links .footer-links__inner .indoor-golf .footer-links__left a {
    width: 14.5rem;
  }
  section.footer-links .footer-links__inner .indoor-golf .footer-links__right {
    width: 100%;
    row-gap: 1.2rem;
  }
  section.footer-links .footer-links__inner .indoor-golf .footer-links__right h4 {
    width: 100%;
    font-size: 1.3rem;
  }
  section.footer-links .footer-links__inner .dance-studio h3 {
    font-size: 1.1rem;
  }
  section.footer-links .footer-links__inner .dance-studio .footer-links__left {
    margin-bottom: 2.5rem;
  }
  section.footer-links .footer-links__inner .dance-studio .footer-links__left a {
    width: 14.5rem;
  }
  section.footer-links .footer-links__inner .dance-studio .footer-links__right {
    column-gap: 4rem;
    row-gap: 1.2rem;
    width: 100%;
  }
  section.footer-links .footer-links__inner .dance-studio .footer-links__right h4 {
    width: 100%;
    font-size: 1.3rem;
  }
}
/* footer
--------------------------------- */
.footer {
  padding-bottom: 8.4rem;
}
.footer .container {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: 1002px;
}
.footer .container h2 {
  width: 16rem;
  margin-bottom: 3.5rem;
}
.footer .container ul.footer-contents {
  display: flex;
  align-items: flex-start;
  column-gap: 8rem;
  margin-bottom: 11rem;
}
.footer .container ul.footer-contents li h3 {
  margin-bottom: 2.6rem;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.footer .container ul.footer-contents li p {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.footer .container ul.footer-contents li a {
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  .footer .container ul.footer-contents li a:hover {
    opacity: 0.7;
  }
}
.footer .container ul.footer-contents li:nth-child(1) {
  width: 20.4761904762%;
}
.footer .container ul.footer-contents li:nth-child(1) a {
  display: flex;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.footer .container ul.footer-contents li:nth-child(1) a:not(:last-of-type) {
  margin-bottom: 0.8rem;
}
.footer .container ul.footer-contents li:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.5rem;
  width: 46.6666666667%;
}
.footer .container ul.footer-contents li:nth-child(2) h3 {
  width: 100%;
}
.footer .container ul.footer-contents li:nth-child(3) {
  width: 11.4285714286%;
}
.footer .container ul.footer-contents li:nth-child(3) a {
  text-decoration: underline;
}
.footer .container ul.footer-bottom-links {
  display: flex;
  column-gap: 2.6rem;
}
.footer .container ul.footer-bottom-links li {
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}
.footer .container ul.footer-bottom-links li a {
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  .footer .container ul.footer-bottom-links li a:hover {
    opacity: 0.7;
  }
}
.footer .container p.copyright {
  margin-top: 8rem;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4666666667);
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .footer {
    padding-bottom: 15rem;
  }
  .footer .container {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-left: 5rem;
    padding-right: 3rem;
  }
  .footer .container h2 {
    width: 14.5rem;
  }
  .footer .container ul.footer-contents {
    flex-wrap: wrap;
    row-gap: 3.2rem;
    margin-bottom: 5rem;
  }
  .footer .container ul.footer-contents li {
    display: flex;
    flex-direction: column;
    row-gap: 1.6rem;
  }
  .footer .container ul.footer-contents li h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1;
  }
  .footer .container ul.footer-contents li p {
    font-size: 1.4rem;
    line-height: 1;
  }
  .footer .container ul.footer-contents li a {
    line-height: 1;
  }
  .footer .container ul.footer-contents li:nth-child(1) {
    width: 100%;
    margin-bottom: 0;
  }
  .footer .container ul.footer-contents li:nth-child(1) a {
    font-size: 1.4rem;
  }
  .footer .container ul.footer-contents li:nth-child(1) a:not(:last-of-type) {
    margin-bottom: 0;
  }
  .footer .container ul.footer-contents li:nth-child(2) {
    width: 100%;
    margin-bottom: 0;
  }
  .footer .container ul.footer-contents li:nth-child(2) h3 {
    width: 100%;
  }
  .footer .container ul.footer-contents li:nth-child(2) p {
    width: 100%;
  }
  .footer .container ul.footer-contents li:nth-child(3) {
    width: 100%;
  }
  .footer .container ul.footer-bottom-links {
    flex-direction: column;
    row-gap: 1.6rem;
    margin-bottom: 5.3rem;
  }
  .footer .container ul.footer-bottom-links li {
    font-size: 1.2rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.4666666667);
  }
  .footer .container p.copyright {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4666666667);
    letter-spacing: 0.03em;
  }
}
/* フォーム用フッター
--------------------------------- */
.form-footer {
  padding-bottom: 20rem;
}
.form-footer .form-footer__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1002px;
}
.form-footer .form-footer__inner .form-footer__logo a {
  display: block;
  width: 16.6rem;
  margin-bottom: 7.8rem;
}
.form-footer .form-footer__inner .form-footer__bottom-links {
  display: flex;
  column-gap: 2rem;
  margin-bottom: 12.3rem;
}
.form-footer .form-footer__inner .form-footer__bottom-links li {
  font-size: 1.4rem;
}
.form-footer .form-footer__inner .copyright {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4666666667);
}

.error404 .form-footer .form-footer__inner .form-footer__logo {
  margin-bottom: 21.5rem;
}

@media (max-width: 767px) {
  .form-footer {
    padding-bottom: 11rem;
  }
  .form-footer .form-footer__inner {
    width: 100%;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .form-footer .form-footer__inner .form-footer__logo a {
    width: 14.5rem;
    margin-bottom: 2rem;
  }
  .form-footer .form-footer__inner .form-footer__bottom-links {
    flex-direction: column;
    margin-bottom: 3.7rem;
  }
  .form-footer .form-footer__inner .form-footer__bottom-links li {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4666666667);
  }
  .form-footer .form-footer__inner .copyright {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4666666667);
  }
  .error404 .form-footer .form-footer__inner .form-footer__logo {
    margin-bottom: 10rem;
  }
}
body.page-archive-golflounge-news,
body.page-single-golflounge-news {
  /*-----------------------------------
   MV
  -----------------------------------*/
  /*-----------------------------------
   フローティングボタン
  -----------------------------------*/
  /*-----------------------------------
   news-archive-list
  -----------------------------------*/
  /*-----------------------------------
   news-archive-list
  -----------------------------------*/
  /*-----------------------------------
   共通パーツ
  -----------------------------------*/
}
body.page-archive-golflounge-news .mv,
body.page-single-golflounge-news .mv {
  position: relative;
  width: 100%;
  height: 80rem;
  aspect-ratio: 1280/800;
  background: url(../img/news/news-archive-mv.jpg) no-repeat top center/100%;
}
body.page-archive-golflounge-news .mv .container,
body.page-single-golflounge-news .mv .container {
  z-index: 2;
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  max-width: calc(972px + 3rem);
}
body.page-archive-golflounge-news .mv .container .mv__text,
body.page-single-golflounge-news .mv .container .mv__text {
  position: absolute;
  top: 40.2rem;
}
body.page-archive-golflounge-news .mv .container .mv__text h1,
body.page-single-golflounge-news .mv .container .mv__text h1 {
  line-height: 1;
}
body.page-archive-golflounge-news .mv .container .mv__text h1,
body.page-single-golflounge-news .mv .container .mv__text h1 {
  font-size: 3.7rem;
}
body.page-archive-golflounge-news .mv .container .mv__text h1 span,
body.page-single-golflounge-news .mv .container .mv__text h1 span {
  display: block;
  margin-top: 1.8rem;
  font-size: 1.8rem;
  font-weight: 300;
}
body.page-archive-golflounge-news .mv .container .mv__arrow,
body.page-single-golflounge-news .mv .container .mv__arrow {
  position: absolute;
  bottom: 4rem;
}
body.page-archive-golflounge-news .mv .container .mv__arrow span,
body.page-single-golflounge-news .mv .container .mv__arrow span {
  display: block;
  width: 0.78rem;
  height: 15.5rem;
}
body.page-archive-golflounge-news .mv .container .mv__arrow span img,
body.page-single-golflounge-news .mv .container .mv__arrow span img {
  height: 100%;
}
@media (max-width: 767px) {
  body.page-archive-golflounge-news .mv,
  body.page-single-golflounge-news .mv {
    background: url(../img/news/news-archive-mv-sp.jpg) no-repeat top center/cover;
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 58rem;
  }
  body.page-archive-golflounge-news .mv .container,
  body.page-single-golflounge-news .mv .container {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-left: 5rem;
  }
  body.page-archive-golflounge-news .mv .container .mv__text,
  body.page-single-golflounge-news .mv .container .mv__text {
    top: unset;
    bottom: 26rem;
  }
  body.page-archive-golflounge-news .mv .container .mv__text h1,
  body.page-single-golflounge-news .mv .container .mv__text h1 {
    font-size: 2.7rem;
  }
  body.page-archive-golflounge-news .mv .container .mv__text h1 span,
  body.page-single-golflounge-news .mv .container .mv__text h1 span {
    font-size: 1.9rem;
  }
  body.page-archive-golflounge-news .mv .container .mv__arrow,
  body.page-single-golflounge-news .mv .container .mv__arrow {
    bottom: 2rem;
  }
  body.page-archive-golflounge-news .mv .container .mv__arrow span,
  body.page-single-golflounge-news .mv .container .mv__arrow span {
    height: 16rem;
  }
  body.page-archive-golflounge-news .mv .container .mv__arrow span::before,
  body.page-single-golflounge-news .mv .container .mv__arrow span::before {
    content: none;
  }
}
body.page-archive-golflounge-news .floating-btn,
body.page-single-golflounge-news .floating-btn {
  z-index: 5;
  position: fixed;
  bottom: 5rem;
  right: 0;
  width: 5.9rem;
}
body.page-archive-golflounge-news .floating-btn a,
body.page-single-golflounge-news .floating-btn a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 0;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  color: #3E3A39;
  letter-spacing: 0.3em;
  background-color: #FFF7DD;
  border: 0.1rem solid #3E3A39;
  transition: all 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-archive-golflounge-news .floating-btn a:hover,
  body.page-single-golflounge-news .floating-btn a:hover {
    color: #FFF7DD;
    background-color: #3E3A39;
  }
}
@media (max-width: 767px) {
  body.page-archive-golflounge-news .floating-btn,
  body.page-single-golflounge-news .floating-btn {
    bottom: 3rem;
    width: 5.5rem;
  }
  body.page-archive-golflounge-news .floating-btn a,
  body.page-single-golflounge-news .floating-btn a {
    font-size: 1.3rem;
  }
}
body.page-archive-golflounge-news section.news-list .news-list__inner,
body.page-single-golflounge-news section.news-list .news-list__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: calc(972px + 3rem);
  padding: 13.5rem 1.5rem 12rem !important;
}
body.page-archive-golflounge-news section.news-list .news-list__inner h2,
body.page-single-golflounge-news section.news-list .news-list__inner h2 {
  margin-bottom: 3.5rem;
  font-size: 3.7rem;
  font-weight: 400;
}
body.page-archive-golflounge-news section.news-list .news-list__inner ul.cat-tabs,
body.page-single-golflounge-news section.news-list .news-list__inner ul.cat-tabs {
  display: flex;
  align-items: center;
  column-gap: 1.3rem;
  margin-bottom: 11.7rem;
}
body.page-archive-golflounge-news section.news-list .news-list__inner ul.cat-tabs li,
body.page-single-golflounge-news section.news-list .news-list__inner ul.cat-tabs li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.1rem;
  padding: 0.5rem 1.7rem;
  font-size: 1.2rem;
  border-radius: 1.7rem;
  background-color: #2E5042;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-archive-golflounge-news section.news-list .news-list__inner ul.cat-tabs li:hover,
  body.page-single-golflounge-news section.news-list .news-list__inner ul.cat-tabs li:hover {
    opacity: 0.7;
  }
}
body.page-archive-golflounge-news section.news-list .news-list__inner ul.cat-tabs li.active,
body.page-single-golflounge-news section.news-list .news-list__inner ul.cat-tabs li.active {
  background-color: #1E664A;
}
body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list li:not(:last-child),
body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list li:not(:last-child) {
  margin-bottom: 8.2rem;
}
body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list li article a,
body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list li article a {
  transition: opacity 0.3s;
}
body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list li article a:hover,
body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list li article a:hover {
  opacity: 0.7;
}
body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list li article a date,
body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list li article a date {
  display: block;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #B2B1B0;
}
body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list li article a h3,
body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list li article a h3 {
  font-size: 1.8rem;
}
body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list#category-info, body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list#category-topics,
body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list#category-info,
body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article ul.category-list#category-topics {
  display: none;
}
@media (max-width: 767px) {
  body.page-archive-golflounge-news section.news-list .news-list__inner,
  body.page-single-golflounge-news section.news-list .news-list__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 6rem 5rem 9.5rem !important;
  }
  body.page-archive-golflounge-news section.news-list .news-list__inner h2,
  body.page-single-golflounge-news section.news-list .news-list__inner h2 {
    margin-bottom: 5rem;
    font-size: 2.4rem;
  }
  body.page-archive-golflounge-news section.news-list .news-list__inner ul.cat-tabs,
  body.page-single-golflounge-news section.news-list .news-list__inner ul.cat-tabs {
    column-gap: 0.8rem;
    margin-bottom: 5rem;
  }
  body.page-archive-golflounge-news section.news-list .news-list__inner ul.cat-tabs li,
  body.page-single-golflounge-news section.news-list .news-list__inner ul.cat-tabs li {
    height: 3.3rem;
    padding: 0.5rem 1.2rem;
    font-size: 1.1rem;
  }
  body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article article:not(:last-child),
  body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article article:not(:last-child) {
    margin-bottom: 4.6rem;
  }
  body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article article a,
  body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article article a {
    transition: opacity 0.3s;
  }
  body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article article a:hover,
  body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article article a:hover {
    opacity: 0.7;
  }
  body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article article a date,
  body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article article a date {
    margin-bottom: 1.7rem;
    font-size: 1.4rem;
  }
  body.page-archive-golflounge-news section.news-list .news-list__inner .news-list__article article a h3,
  body.page-single-golflounge-news section.news-list .news-list__inner .news-list__article article a h3 {
    font-size: 1.3rem;
  }
}
body.page-archive-golflounge-news section.year-archive,
body.page-single-golflounge-news section.year-archive {
  margin-bottom: 9rem;
  background: url(../img/news/news-archive-banner.jpg) no-repeat top center/cover;
}
body.page-archive-golflounge-news section.year-archive .year-archive__inner,
body.page-single-golflounge-news section.year-archive .year-archive__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  max-width: calc(972px + 3rem);
  padding: 6.3rem 1.5rem 7.5rem;
}
body.page-archive-golflounge-news section.year-archive .year-archive__inner h2,
body.page-single-golflounge-news section.year-archive .year-archive__inner h2 {
  margin-bottom: 1.9rem;
  font-size: 3.7rem;
}
body.page-archive-golflounge-news section.year-archive .year-archive__inner h3,
body.page-single-golflounge-news section.year-archive .year-archive__inner h3 {
  margin-bottom: 4.7rem;
  font-size: 1.8rem;
}
body.page-archive-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years,
body.page-single-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years {
  display: flex;
}
body.page-archive-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li,
body.page-single-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li {
  position: relative;
  margin-right: 0.8rem;
  padding-right: 0.8rem;
}
body.page-archive-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li::after,
body.page-single-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(20deg);
  height: 110%;
  width: 0.1rem;
  background-color: #B5B9AD;
}
body.page-archive-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li a,
body.page-single-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li a {
  font-size: 1.8rem;
  color: #B5B9AD;
  transition: opacity 0.3s;
}
body.page-archive-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li a:hover,
body.page-single-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  body.page-archive-golflounge-news section.year-archive,
  body.page-single-golflounge-news section.year-archive {
    margin-bottom: 6.5rem;
  }
  body.page-archive-golflounge-news section.year-archive .year-archive__inner,
  body.page-single-golflounge-news section.year-archive .year-archive__inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
    padding: 3.6rem 5rem 4.5rem;
  }
  body.page-archive-golflounge-news section.year-archive .year-archive__inner h2,
  body.page-single-golflounge-news section.year-archive .year-archive__inner h2 {
    margin-bottom: 3rem;
    font-size: 2.4rem;
  }
  body.page-archive-golflounge-news section.year-archive .year-archive__inner h3,
  body.page-single-golflounge-news section.year-archive .year-archive__inner h3 {
    margin-bottom: 4.7rem;
    font-size: 1.3rem;
  }
  body.page-archive-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li a,
  body.page-single-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li a {
    font-size: 1.3rem;
  }
  body.page-archive-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li a:hover,
  body.page-single-golflounge-news section.year-archive .year-archive__inner ul.year-archive__years li a:hover {
    opacity: 0.7;
  }
}
body.page-archive-golflounge-news section.reservation,
body.page-single-golflounge-news section.reservation {
  display: none;
  background-color: #1E664A;
}
body.page-archive-golflounge-news section.reservation .reservation__inner,
body.page-single-golflounge-news section.reservation .reservation__inner {
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  justify-content: center;
  flex-direction: column;
  max-width: calc(972px + 3rem);
  height: auto;
  padding: max(5.5vw, 50px) 1.5rem max(5.5vw, 50px) !important;
}
body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__heading,
body.page-single-golflounge-news section.reservation .reservation__inner .reservation__heading {
  margin-bottom: 8.5rem;
  font-size: 3rem;
  font-weight: 500;
}
body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns,
body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns {
  position: relative;
  top: unset;
  left: unset;
  transform: none;
  display: flex;
  column-gap: 6rem;
}
body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a,
body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a {
  position: relative;
  display: block;
  width: 45rem;
  transition: opacity 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a:hover,
  body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a:hover {
    opacity: 0.7;
  }
}
body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a:first-child,
body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a:first-child {
  margin-bottom: 0;
}
body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a h3,
body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a h3 {
  margin-bottom: 0.8rem;
  font-size: 3.6rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1;
}
body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a p,
body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a p {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a span,
body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a span {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 21.2rem;
  font-size: 1.7rem;
  text-align: right;
}
body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a span::after,
body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a span::after {
  position: absolute;
  content: "";
  bottom: -0.2rem;
  right: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  body.page-archive-golflounge-news section.reservation .reservation__inner,
  body.page-single-golflounge-news section.reservation .reservation__inner {
    width: 100%;
    max-width: 1146px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding: 5rem 2.5rem 7rem 5rem !important;
  }
  body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__heading,
  body.page-single-golflounge-news section.reservation .reservation__inner .reservation__heading {
    margin-bottom: 4.5rem;
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__heading span,
  body.page-single-golflounge-news section.reservation .reservation__inner .reservation__heading span {
    display: block;
    margin-top: 1.2rem;
    font-size: 1.3rem;
  }
  body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns,
  body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns {
    flex-direction: column;
  }
  body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a,
  body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a {
    width: 100%;
  }
  body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a:first-child,
  body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a:first-child {
    margin-bottom: 3rem;
  }
  body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a h3,
  body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a h3 {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
  }
  body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a p,
  body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a p {
    font-size: 1.4rem;
  }
  body.page-archive-golflounge-news section.reservation .reservation__inner .reservation__btns a span,
  body.page-single-golflounge-news section.reservation .reservation__inner .reservation__btns a span {
    top: 35%;
    width: 45%;
    font-size: 1.3rem;
  }
}

body.page-single-golflounge-news article.golflounge-news-single {
  width: 100%;
  max-width: calc(972px + 3rem);
  margin: 0 auto;
  padding: 18.8rem 1.5rem 7.7rem;
}
body.page-single-golflounge-news article.golflounge-news-single .news-single-side-info {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
body.page-single-golflounge-news article.golflounge-news-single .news-single-side-info date.news-single-date {
  margin-right: 3.4rem;
  font-size: 1.8rem;
}
body.page-single-golflounge-news article.golflounge-news-single .news-single-side-info ul.news-single-cats {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
body.page-single-golflounge-news article.golflounge-news-single .news-single-side-info ul.news-single-cats li {
  display: flex;
  justify-content: center;
  align-items: center;
}
body.page-single-golflounge-news article.golflounge-news-single .news-single-side-info ul.news-single-cats li a {
  display: flex;
  align-items: center;
  height: 4.1rem;
  padding: 0.5rem 1.8rem;
  font-size: 1.3rem;
  background-color: #2E5042;
  border-radius: 2rem;
}
body.page-single-golflounge-news article.golflounge-news-single h1.news-single-title {
  margin-bottom: 5rem;
  font-size: 2.4rem;
  font-weight: 700;
}
body.page-single-golflounge-news article.golflounge-news-single div.news-single-content {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.9444444444;
}
body.page-single-golflounge-news article.golflounge-news-single div.news-single-content * {
  overflow-wrap: break-word;
}
body.page-single-golflounge-news article.golflounge-news-single div.news-single-content ul {
  padding-left: 40px;
  list-style: initial;
}
body.page-single-golflounge-news article.golflounge-news-single div.news-single-content ul li {
  list-style: initial;
}
body.page-single-golflounge-news article.golflounge-news-single div.news-single-content ol {
  list-style: decimal;
}
body.page-single-golflounge-news article.golflounge-news-single div.news-single-content ol li {
  list-style: decimal;
}
body.page-single-golflounge-news article.golflounge-news-single div.news-single-content img {
  width: auto;
}
@media (max-width: 767px) {
  body.page-single-golflounge-news article.golflounge-news-single {
    width: 100%;
    padding: 13rem 3.5rem 4.3rem 5rem;
  }
  body.page-single-golflounge-news article.golflounge-news-single .news-single-side-info {
    margin-bottom: 2rem;
  }
  body.page-single-golflounge-news article.golflounge-news-single .news-single-side-info date.news-single-date {
    margin-right: 1.8rem;
    font-size: 1.4rem;
  }
  body.page-single-golflounge-news article.golflounge-news-single .news-single-side-info ul.news-single-cats {
    column-gap: 0.8rem;
  }
  body.page-single-golflounge-news article.golflounge-news-single .news-single-side-info ul.news-single-cats li a {
    padding: 0.5rem 1.6rem;
    font-size: 1.2rem;
    border-radius: 1.7rem;
  }
  body.page-single-golflounge-news article.golflounge-news-single h1.news-single-title {
    font-size: 2rem;
  }
  body.page-single-golflounge-news article.golflounge-news-single div.news-single-content img {
    width: 100%;
  }
}
body.page-single-golflounge-news div.news-single-pagenation {
  display: flex;
  justify-content: center;
  column-gap: 5rem;
  width: 100%;
  max-width: calc(972px + 3rem);
  margin: 0 auto 14.2rem;
  padding: 0 1.5rem;
}
body.page-single-golflounge-news div.news-single-pagenation .previous a,
body.page-single-golflounge-news div.news-single-pagenation .news-list-link a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16rem;
  height: 4.5rem;
  font-size: 1.4rem;
  border: 0.1rem solid #fff;
  transition: all 0.3s;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-single-golflounge-news div.news-single-pagenation .previous:hover a,
  body.page-single-golflounge-news div.news-single-pagenation .news-list-link:hover a {
    color: #3e3a39;
    background-color: #fff;
  }
}
body.page-single-golflounge-news div.news-single-pagenation .previous a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%) rotate(45deg);
  width: 1rem;
  height: 1rem;
  border-left: 0.1rem solid #fff;
  border-bottom: 0.1rem solid #fff;
}
@media (hover: hover) and (min-width: 768px) {
  body.page-single-golflounge-news div.news-single-pagenation .previous a:hover::before {
    border-color: #3e3a39;
  }
}
@media (max-width: 767px) {
  body.page-single-golflounge-news div.news-single-pagenation {
    column-gap: 3rem;
    margin: 0 auto 9rem;
  }
}