/* assets/css/style.css
 * 最小CSS。ハンバーガー（CSS+JS）と fadeInUp をサポート。
 */

/* リセット最小限 */


:root {
  --color-main: #947F4F;
  --color-dark: #333333;
  --margin-blank: 160px;
}

@media screen and (max-width: 896px) {
  :root {
    --margin-blank: 50px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: din-2014, 'yu-gothic-medium', system-ui, -apple-system, 'Yugothic', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  letter-spacing: 1.5px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  body {
    font-size: clamp(14px, 1.5vw, 16px);
    letter-spacing: 0.9px;
  }
}

@media screen and (max-width: 896px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 897px) {
  .sp {
    display: none !important;
  }
}

main {
  margin-top: 120px;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  main {
    margin-top: 80px;
  }
}

a {
  color: var(--color-dark);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* コンテンツ幅 */
.content {
  max-width: 1248px;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1200px) {
  .content {
    padding: 0 20px;
  }
}

.center {
  text-align: center;
}

/* fadeInUp */
.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fadeInUp.is_show {
  opacity: 1;
  transform: translateY(0);
}

/* sectionのmargin */
[class$="Sec"] {
  margin: var(--margin-blank) auto;
}

@media screen and (max-width: 896px) {
  [class$="Sec"] {
    margin: 50px 0;
  }
}

/* 見出し */
.headLine {
  font-size: 40px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.headLine span {
  font-size: 20px;
  font-weight: 100;
  color: var(--color-main);
}

@media screen and (max-width: 1200px) {
  .headLine {
    font-size: clamp(25px, 3.5vw, 40px);
  }

  .headLine span {
    font-size: clamp(14px, 2vw, 20px);
  }
}

@media screen and (max-width: 896px) {
  .headLine {
    margin-bottom: 30px;
  }
}

/* ------------------------------
   ヘッダー
------------------------------ */

header {
  height: 120px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: 0.3s;
  width: 100%;
}

header.scroll {
  height: 80px;
}

header .header_inner {
  display: flex;
  height: 100%;
  width: 100%;
}

header .header_logo {
  display: inline-flex;
  align-items: center;
  padding: 32px 48px;
}

header.scroll .header_logo {
  padding: 16px 48px;
  max-width: 300px;
}

header .header_logo img {
  height: 100%;
  object-fit: contain;
}

header nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 40px;
  transition: 0.3s;
}

header.scroll nav {
  margin-right: 20px;
}

header nav ul {
  display: flex;
  gap: 10px;
}

header nav ul li a {
  padding: 10px 15px;
}

header .header_trial {
  height: 100%;
}

header .header_trial a {
  height: 100%;
  color: #fff;
  background: var(--color-main);
  display: flex;
  align-items: center;
  padding: 0 30px;
  box-sizing: border-box;
  position: relative;
  padding-right: 66px;
  font-weight: bold;
}

header .header_trial a:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon/arrow-white.svg)no-repeat center / contain;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

header .header_trial a img {
  width: 32px;
  margin-right: 14px;
}

header .site_logo img {
  height: 36px;
  width: auto;
  display: block;
}

@media screen and (max-width: 1200px) {
  header {
    height: 80px;
  }

  header.scroll {
    height: 60px;
  }

  header .header_logo {
    padding: 16px 20px;
    width: 195px;

  }

  header.scroll .header_logo {
    padding: 16px 20px;
    width: 130px;
  }
}

.menu {
  width: 80px;
  margin-left: auto;
}

header.scroll .menu {
  width: 60px;
}

.menu .menu_btn {
  background: var(--color-dark);
  position: relative;
  height: 100%;
  aspect-ratio: 1;
  position: relative;
  z-index: 100;
}

.menu .menu_btn label {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.menu .menu_btn input {
  display: none;
}

.menu .menu_btn span {
  position: absolute;
  width: 50%;
  height: 2px;
  background: #fff;
  left: 50%;
  transform: translate(-50%, 0);
  top: 35%;
  transition: 0.3s;
  opacity: 1;
}

.menu .menu_btn span:nth-child(2) {
  top: 50%;
}

.menu .menu_btn span:nth-child(3) {
  top: 65%;
}

.menu:has(:checked) .menu_btn span:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.menu:has(:checked) .menu_btn span:nth-child(2) {
  opacity: 0;
  left: 60%;
}

.menu:has(:checked) .menu_btn span:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.menu ul {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  background: var(--color-dark);
  transition: 0.5s;
}

.menu:has(:checked) ul {
  transform: translateX(0);
}

.menu ul {
  width: 500px;
  height: 100vh;
  max-width: 100%;
  padding: 100px 40px 40px;
  box-sizing: border-box;
}

.menu ul li a {
  color: #fff;
  padding: 25px 10px;
  position: relative;
}

.menu ul li a:hover {
  padding-left: 20px;
}

.menu ul li a:before {
  position: absolute;
  content: "";
  width: 0px;
  height: 1px;
  background: #fff;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.menu ul li a:hover:before {
  width: 10px;
}

.menu ul li+li a {
  border-top: 1px solid #ccc;
}


@media screen and (max-width: 1200px) {

  header nav,
  .header_trial {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .menu {
    display: none;
  }
}


/* ------------------------------
   トップページ
------------------------------ */

/* FV */

.FV {
  margin: 0px 48px 0;
  position: relative;
  z-index: 1;
  height: calc(100vh - 120px);
}

.FV .FV_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  z-index: -1;
  border-radius: 40px 0 0 0;
}

.FV .content {
  height: 100%;
}

.FV .content .FV_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  letter-spacing: 1px;
  color: #fff;
}

.FV .content .FV_txt h2 {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.5;
}

.FV .content .FV_txt h3 {
  font-size: 28px;
  display: flex;
  align-items: center;
  margin: 30px 0 22px;
  font-weight: bold;
}

.FV .content .FV_txt h3 span {
  font-weight: 100;
  padding: 0 10px 4px;
}

.FV .content .FV_txt a {
  display: inline-flex;
  align-items: center;
  font-size: 19px;
  color: #fff;
  background: var(--color-main);
  width: 390px;
  height: 80px;
  margin-top: 60px;
  padding: 6px 24px;
  box-sizing: border-box;
  font-weight: bold;
}

.FV .content .FV_txt a .calender {
  width: 26px;
  margin-right: 24px;
}

.FV .content .FV_txt a span {
  display: inline-block;
  width: 1px;
  height: 100%;
  background: #fff;
  margin-right: 20px;
}

.FV .content .FV_txt a .arrow {
  width: 16px;
  margin-left: auto;
}

.FV .deco_txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1437 / 73;
  background: url(../img/FV_deco.png)no-repeat center / cover;
  mix-blend-mode: overlay;
}

@media screen and (max-width: 1200px) {
  .FV .content .FV_txt h2 {
    font-size: clamp(28px, 4.5vw, 50px);
  }

  .FV .content .FV_txt h3 {
    font-size: clamp(15px, 2.5vw, 28px);
  }
}

@media screen and (max-width: 896px) {
  .FV {
    height: auto;
    margin: 0 20px;
    padding-top: 70%;
    border-radius: 40px 0 40px 0;
    overflow: hidden;
    z-index: 1;
  }

  .FV .deco_txt {
    width: auto;
    height: 100%;
    aspect-ratio: 73 / 1437;
    background: url(../img/FV_deco_sp.png)no-repeat center / cover;
    top: 0;
    left: auto;
    right: 0;
    z-index: 0;
    mix-blend-mode: normal;
  }

  .FV .FV_img {
    height: 100%;
    object-position: 50% 10%;
  }

  .FV .content .FV_txt {
    position: relative;
  }

  .FV .content .FV_txt h3 {
    margin: 5px 0;
  }

  .FV .content .FV_txt h3 span {
    padding: 0 5px;
  }

  .FV .content .FV_txt a {
    width: 295px;
    height: 60px;
    margin: 20px 0 30px;
    font-size: 15px;
    z-index: 10;
  }
}

@media screen and (max-width: 500px) {
	.FV {
	  padding-top: 80%;
	}
}

/* concept */

.grad {
  padding: var(--margin-blank) 0;
  background: linear-gradient(transparent, color-mix(in srgb, var(--color-main) 12%, transparent));
}

@media screen and (max-width: 896px) {
  .grad {
    padding: 50px 0;
  }
}

.conceptSec {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.conceptSec:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  height: 130%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: url(../img/icon/logo_mark.svg)no-repeat center / contain;
  z-index: -1;
}

.conceptSec .headLine {
  margin-bottom: 40px;
}

.conceptSec h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.conceptSec h3 span {
  color: var(--color-main);
  font-weight: 100;
  display: inline-block;
  transform: translateY(-1.5px);
  margin: 0 5px;
}

.conceptSec p {
  line-height: 2.2;
}

@media screen and (max-width: 1200px) {
  .conceptSec h3 {
    font-size: clamp(16px, 2vw, 22px);
  }
}

@media screen and (max-width: 896px) {
  .conceptSec .headLine {
    margin-bottom: 30px;
    font-size: 28px;
  }

  .conceptSec:before {
    max-width: 95%;
    height: 110%;
  }
}

/* strengths */

.strengthsSec {
  margin-bottom: 0;
  overflow-x: hidden;
}

.strengthsSec .swiper {
  overflow: visible;
  padding-right: 100px;
}

.strengthsSec .swiper ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
}

.strengthsSec .swiper ul li {
  width: 430px !important;
  background: #fff;
  position: relative;
  border-radius: 18px;
  cursor: pointer;
  margin-top: 30px;
}

.strengthsSec .swiper ul li span {
  position: absolute;
  font-size: clamp(62px, 7vw, 80px);
  color: var(--color-main);
  font-weight: 500;
  line-height: 1;
  top: 0;
  left: 14px;
  transform: translateY(-50%);
}

.strengthsSec .swiper ul li img {
  border-radius: 18px 18px 0 0;
  transition: 0.3s;
  object-view-box: inset(0%);
  width: 100%;
  object-fit: cover;
}

.strengthsSec .swiper ul li:hover img {
  object-view-box: inset(5%);
}

.strengthsSec .swiper ul li h3 {
  padding: 20px 30px 40px;
  font-size: 20px;
}

.strengthsSec .swiper ul .slick-list {
  overflow: visible;
}


/* スクロールバー */
.swiper .swiper-scrollbar {
  position: static !important;
  background: #fff !important;
  height: 2px !important;
  margin-top: 8px !important;
  margin-top: 50px !important;
}

.swiper .swiper-scrollbar-drag {
  background: var(--color-main) !important;
}

.swiper_arrow {
  position: absolute;
  transform: translateY(-100%);
  top: -60px;
  right: 0;
  display: flex;
  gap: 0 18px;
}

/* 矢印共通スタイル */
.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: 80px !important;
  height: 80px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-image: url(../img/icon/arrow.svg) !important;
  background-size: 20px;
  margin: 0 !important;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: transparent;
  transition: 0.3s;
}

/* ← 左矢印（画像差し替え） */
.swiper-button-prev {
  transform: scale(-1, 1);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--color-main);
  background-image: url(../img/icon/arrow-white.svg) !important;
  border-color: var(--color-main);
}

/* デフォルトのSVGアイコンを消す */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}

@media screen and (max-width: 1200px) {

  .swiper-button-prev,
  .swiper-button-next {
    width: 60px !important;
    height: 60px !important;
  }
}

@media screen and (max-width: 896px) {
  .strengthsSec .swiper {
    padding-right: 100px;
  }

  .swiper_arrow {
    top: auto;
    right: auto;
    left: 0;
    bottom: -75px;
    gap: 8px;
  }

  .swiper .swiper-scrollbar {
    margin: 25px 0;
    margin-left: 118px;
    width: calc(100% - 18px);
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 50px !important;
    height: 50px !important;
  }
}

@media screen and (max-width: 650px) {
  .strengthsSec .swiper ul li {
    width: 280px !important;
  }

  .strengthsSec .swiper ul li h3 {
    font-size: 16px;
  }
}

/* ポップアップ */
.mfp-container {
  cursor: pointer;
}

.mfp-content {
  width: 600px !important;
  margin: 0 auto !important;
  max-width: 95% !important;
}

.modal_popUp {
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 18px;
}

.mfp-close-btn-in .mfp-close {
  content: "×";
  z-index: 10;
  background: var(--color-dark) url(../img/icon/close.png)no-repeat center / 17px;
  color: #fff !important;
  font-weight: 100;
  opacity: 1 !important;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  transform: translate(25%, -25%);
}

.modal_popUp span {
  position: absolute;
  font-size: clamp(62px, 7vw, 80px);
  color: var(--color-main);
  font-weight: 500;
  line-height: 1;
  top: 0;
  left: 14px;
  transform: translateY(-50%);
}

.modal_popUp img {
  border-radius: 18px 18px 0 0;
  object-fit: cover;
  width: 100%;
}

.modal_popUp_txt {
  padding: 40px;
}

.modal_popUp_txt h3 br {
  display: none;
}

.modal_popUp_txt h3 {
  font-size: 20px;
  position: relative;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.modal_popUp_txt h3:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: var(--color-main);
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 896px) {
  .modal_popUp_txt {
    padding: 18px 20px;
  }

  .modal_popUp_txt h3 {
    padding-bottom: 14px;
    margin-bottom: 18px;
  }
}

/* about */

.about_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 5%;
}

.about_wrap .about_txt {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_wrap .about_txt h3 {
  font-size: 24px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-main);
  font-weight: bold;
}

.about_wrap img {
  width: 55%;
  object-fit: cover;
  border-radius: 40px 0 40px 0;
}

@media screen and (max-width: 896px) {
  .about_wrap>* {
    width: 100% !important;
  }

  .about_wrap .about_txt h3 {
    font-size: 16px;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
}

/* recommend */
.recommendSec {
  background: url(../img/recommend_bg.png)repeat center / 300px;
  padding: var(--margin-blank) 0;
  margin-bottom: 0;
}

.recommendSec h2,
.recommendSec h2 span {
  color: #fff;
}

.recommendSec .recommend_box {
  background: #fff;
  border-radius: 40px 0 40px 0;
  padding: 60px 70px;
}

.recommendSec .recommend_box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 30px;
}

.recommendSec .recommend_box ul li {
  position: relative;
  padding: 30px 0;
  padding-left: 65px;
  font-size: 18px;
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
  font-weight: bold;
}

.recommendSec .recommend_box ul li:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  background: url(../img/icon/check.png)no-repeat center / cover;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.recommendSec .recommend_box ul li+li {
  border-top: 1px solid var(--color-main);
}

.recommendSec .recommend_box ul li:nth-child(2) {
  border-top: none;
}

@media screen and (max-width: 1000px) {
  .recommendSec .recommend_box {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 896px) {
  .recommendSec .recommend_box ul li {
    width: 100%;
    padding: 20px 0;
    padding-left: 40px;
    font-size: 15px;
  }

  .recommendSec .recommend_box ul li:nth-child(2) {
    border-top: 1px solid var(--color-main);
  }

  .recommendSec .recommend_box ul li:before {
    width: 30px;
    height: 30px;
  }
}

/* 料金プラン */

.planSec {
  background: #F4F4F4;
  margin: 0;
  padding: var(--margin-blank) 0;
}

.planSec dl {
  background: #fff;
  border-radius: 18px;
  padding: 50px 70px;
}

.planSec dl div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  line-height: 1;
  padding: 25px 0;
}

.planSec dl div dt {
  font-size: 28px;
}

.planSec dl div dd {
  width: 270px;
  color: #888;
  font-size: 20px;
  text-align: right;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}

.planSec dl.option div dd {
  color: var(--color-dark);
}

.planSec dl div dd span {
  font-size: 34px;
}

.planSec dl div dd strong {
  font-size: 42px;
  font-weight: bold;
  color: var(--color-main);
  margin-left: 10px;
}

.planSec dl div dd strong:before {
  content: "→ ";
  font-size: 20px;
  color: #888;
}

.planSec dl div+div {
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 896px) {
  .planSec dl {
    padding: 30px 23px;
  }

  .planSec dl div {
    justify-content: center;
    gap: 20px;
  }

  .planSec dl div dt {
    width: 100%;
    text-align: center;
    font-size: 18px;
  }

  .planSec dl div dd {
    justify-content: center;
    font-size: 14px;
  }

  .planSec dl div dd strong {
    font-size: 35px;
  }

  .planSec dl div dd span {
    font-size: 29px;
  }
}

/* プラン */

.plan_table {
  margin-top: 50px;
  background: #fff;
  padding: 50px 70px;
  border-radius: 18px;
}

.plan_table h3 {
  font-size: 28px;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 16px;
  font-weight: bold;
}

.plan_table h3 span {
  background: #a20000;
  color: #fff;
  padding: 0 14px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}

.plan_table h3 span small {
  font-weight: 400;
}

.plan_table h3:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: var(--color-main);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.plan_table h3+p {
  margin-bottom: 40px;
}

.plan_table table {
  border-spacing: 0;
  width: 100%;
}

.plan_table table tr:first-child th,
.plan_table table tr:first-child td {
  background: #F4F4F4;
  color: var(--color-dark);
  height: 70px;
  vertical-align: middle;
  text-align: center;
  font-size: 20px;
  border-top: none;
}

.plan_table table th {
  background: var(--color-main);
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.plan_table table th span {
  background: #fff;
  color: var(--color-main);
  display: inline-block;
  padding: 0 10px;
  font-size: 16px;
}

.plan_table table th,
.plan_table table td {
  height: 130px;
  vertical-align: middle;
  text-align: center;
  border-top: 1px solid #ccc;
}

.plan_table table td {
  border-left: 1px solid #ccc;
  font-size: 34px;
}

.plan_table table td small {
  font-size: 20px;
}

.plan_table table td:last-child {
  color: var(--color-main);
}

@media screen and (max-width: 896px) {
  .plan_table {
    padding: 30px 20px;
    margin-top: 30px;
  }

  .plan_table h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .plan_table table tr:first-child th,
  .plan_table table tr:first-child td {
    font-size: 14px;
    line-height: 1.5;
  }

  .plan_table table th {
    font-size: 14px;
  }

  .plan_table table th span {
    font-size: 10px;
  }

  .plan_table table td {
    font-size: 24px;
    line-height: 1;
  }

  .plan_table table td small {
    font-size: 11px;
  }

  .plan_table h3+p br {
    display: none;
  }

  .plan_table h3+p {
    text-align: left;
    margin-bottom: 30px;
  }

  .planSec dl h3+div {
    padding-top: 0;
  }

  .plan_table h3:before {
    width: 60px;
  }
}


/* サービス一覧 */

.service {
  background: #F8F8F8;
  margin-top: 40px;
  padding: 50px 40px;
  border-radius: 18px;
}

.service h3:before {
  content: none;
}

.service .service_box {
  display: inline-flex;
  flex-direction: column;
}

.service ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.service ul+ul {
  margin-top: 40px;
}

.service ul li.minute {
  background: #333;
  color: #fff;
  width: 140px;
  height: 140px;
  text-align: center;
  border-radius: 50%;
  margin: auto 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  margin-top: -12px;
}

.service ul li.minute span {
  font-size: 22px;
  margin-top: 12px;
}

.service ul li {
  width: 156px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}

.service ul li img {
  width: 100px;
  height: 70px;
  object-fit: contain;
  object-position: bottom;
  margin: 0 auto;
}

.service ul li p {
  color: var(--color-main);
  font-size: 18px;
  line-height: 1.4;
}

@media screen and (max-width: 1000px) {
  .service {
    padding: 30px 20px;
  }

  .service ul {
    justify-content: center;
    gap: 20px 28px;
  }

  .service ul li.minute {
    width: 100%;
    height: auto;
    border-radius: 0;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 24px;
  }

  .service ul li.minute span {
    font-size: 15px;
    margin-top: 5px;
  }

  .service ul li {
    width: 112px;
  }

  .service ul li p {
    font-size: 13px;
  }
}

/* features */

.feature_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 5%;
}

.feature_box:nth-child(2n) {
  flex-direction: row-reverse;
}

.feature_box+.feature_box {
  margin-top: 80px;
}

.feature_box img {
  width: 50%;
  border-radius: 40px 0 40px 0;
  object-fit: cover;
}

.feature_box .feature_txt {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 55px 0;
  align-items: flex-start;

}

.feature_box .feature_txt h4 {
  font-size: 18px;
  color: var(--color-main);
  position: relative;
  padding-left: 28px;
}

.feature_box .feature_txt h4:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background: var(--color-main);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.feature_box .feature_txt h3 {
  font-size: 24px;
  margin: 20px 0 40px;
}

.feature_box a {
  font-size: 16px;
  padding: 20px 0;
  padding-left: 100px;
  position: relative;
  opacity: 1;
}

.feature_box a:before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background: url(../img/icon/arrow.svg)no-repeat center / 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}

.feature_box a:hover:before {
  background: var(--color-main) url(../img/icon/arrow-white.svg)no-repeat center / 20px;
  border-color: var(--color-main);
}

.feature_popUp {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
}

.feature_popUp img {
  border-radius: 40px 0 40px 0;
}

.feature_popUp h4 {
  font-size: 18px;
  color: var(--color-main);
  position: relative;
  padding-left: 28px;
  margin: 30px 0 20px;
}

.feature_popUp h4:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background: var(--color-main);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.feature_popUp h3 {
  font-size: 26px;
  margin-bottom: 30px;
}

@media screen and (max-width: 896px) {
  .feature_box+.feature_box {
    margin-top: 40px;
  }

  .feature_box .feature_txt {
    margin: 0;
    width: 100%;
  }

  .feature_box img {
    width: 100%;
  }

  .feature_box .feature_txt h4 {
    font-size: 12px;
  }

  .feature_box .feature_txt h3 {
    margin: 15px 0 0;
    font-size: 18px;
  }

  .feature_box a {
    padding-left: 74px;
    margin-left: auto;
    font-size: 14px;
  }

  .feature_box a:before {
    width: 50px;
    height: 50px;
    background-size: 16px;
  }

  .feature_box a:hover:before {
    background-size: 16px;
  }

  .feature_popUp {
    padding: 18px 20px;
  }

  .mfp-close-btn-in .mfp-close {
    width: 44px;
    height: 44px;
    background-size: 10px;
  }

  .feature_popUp h4 {
    margin: 15px 0 10px;
    font-size: 12px;
  }

  .feature_popUp h3 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .feature_popUp p {
    font-size: 13px;
  }
}

/* trainers */

.trainerSec {
  background: url(../img/trainers_bg.jpg)no-repeat center / cover;
  padding: var(--margin-blank) 0;
  margin: 0 auto;
}

.trainerSec h2 {
  color: #fff;
}

.trainerSec .trainers_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 50px;
}

.trainerSec .trainers_wrap .trainer_box {
  width: 380px;
  padding-left: 20px;
  box-sizing: border-box;
}

.trainerSec .trainers_wrap .trainer_box figure {
  width: 100%;
  position: relative;
}

.trainerSec .trainers_wrap .trainer_box figure img {
  object-fit: cover;
  border-radius: 40px 0 40px 0;
}

.trainerSec .trainers_wrap .trainer_box figure figcaption {
  position: absolute;
  width: calc(100% + 20px);
  bottom: 40px;
  left: -20px;
  font-size: 18px;
  line-height: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trainerSec .trainers_wrap .trainer_box figure figcaption p {
  padding: 0 5px;
  background: #fff;
  font-weight: bold;
}

.trainerSec .trainers_wrap .trainer_box figure figcaption p+p {
  margin-top: 10px;
}

.trainerSec .trainers_wrap .trainer_box .trainer_txt {
  margin-top: -30px;
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-left: auto;
}

.trainerSec .trainers_wrap .trainer_box .trainer_txt h3 {
  font-size: 56px;
  color: #fff;
  line-height: 1.1;
}

.trainerSec .trainers_wrap .trainer_box .trainer_txt .license {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trainerSec .trainers_wrap .trainer_box .trainer_txt .license h4 {
  width: 96px;
  color: var(--color-main);
  border-top: 2px solid;
  padding-top: 20px;
  font-weight: 600;
}

.trainerSec .trainers_wrap .trainer_box .trainer_txt .license p {
  padding-top: 20px;
  color: #fff;
}


@media screen and (max-width: 896px) {
  .trainerSec .trainers_wrap .trainer_box figure figcaption {
    font-size: 16px;
  }

  .trainerSec .trainers_wrap .trainer_box .trainer_txt {
    margin: -30px auto 0;
  }

  .trainerSec .trainers_wrap .trainer_box .trainer_txt h3 {
    font-size: 46px;
  }
}


/* voices */

.voiceSec {
  margin: 0 auto;
  padding: var(--margin-blank) 0;
  background: linear-gradient(transparent, color-mix(in srgb, var(--color-main) 12%, transparent));
}

.voiceSec .voices_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  padding: 0 20px;
  max-width: 1330px;
  margin: 0 auto;
}

.voiceSec .voices_wrap .voice_box {
  width: 410px !important;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin: 0 10px;
}

.voiceSec .voices_wrap .voice_box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 100px);
  left: 0;
  bottom: 0;
  border: 1px solid var(--color-main);
  background: #fff;
  box-sizing: border-box;
  z-index: -1;
  border-radius: 18px;
}

.voiceSec .voices_wrap .voice_box img {
  width: calc(100% - 110px);
  margin: 0 auto 30px;
  border-radius: 18px 0 18px 0;
}

.voiceSec .voices_wrap .voice_box .voice_txt {
  padding: 0 30px 30px;
}

.voiceSec .voices_wrap .voice_box .voice_txt span {
  background: var(--color-main);
  color: #fff;
  font-size: 18px;
  display: inline-block;
  padding: 0 10px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.voiceSec .voices_wrap .voice_box .voice_txt h3 {
  font-size: 20px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-main);
}

.voiceSec .voices_wrap .slick-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 50px;
  background: var(--color-main) url(../img/icon/arrow-white.svg)no-repeat center / 16px;
  border-radius: 50%;
  z-index: 1;
  transition: 0.3s;
}

.voiceSec .voices_wrap .slick-arrow:hover {
  opacity: 0.7;
}

.voiceSec .voices_wrap .slick-arrow.slick-prev {
  transform: scale(-1, 1);
}

.voiceSec .voices_wrap .slick-arrow.slick-next {
  left: auto;
  right: 0;
}


@media screen and (max-width: 896px) {
  .voiceSec .voices_wrap .voice_box {
    width: 335px !important;
  }

  .voiceSec .voices_wrap .voice_box img {
    width: calc(100% - 40px);
    margin-bottom: 24px;
  }

  .voiceSec .voices_wrap .voice_box .voice_txt h3 {
    font-size: 16px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .voiceSec .voices_wrap .voice_box .voice_txt span {
    font-size: 12px;
  }

  .voiceSec .voices_wrap .slick-arrow {
    width: 40px;
    height: 40px;
  }
}


/* faq */

.faqSec {
  margin: 0;
  padding: var(--margin-blank) 0;
}

.faqSec .faq_content {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 5%;
}

.faqSec .faq_content h2 {
  font-size: 36px;
  width: 250px;
}

.faqSec .faq_content ul {
  flex: 1;
}

.faqSec .faq_content ul li {
  padding: 40px 20px;
}

.faqSec .faq_content ul li h3 {
  font-size: 20px;
}

.faqSec .faq_content ul li h3 span {
  color: var(--color-main);
  font-size: 26px;
  display: inline-block;
  margin-right: 12px;
}

.faqSec .faq_content ul li h3 input {
  display: none;
}

.faqSec .faq_content ul li {
  border-top: 1px solid #ccc;
}

.faqSec .faq_content ul li:last-child {
  border-bottom: 1px solid #ccc;
}

.faqSec .faq_content ul li .question {
  position: relative;
}

.faqSec .faq_content ul li .question label {
  display: inline-block;
  width: 100%;
  padding-right: 30px;
}

.faqSec .faq_content ul li .question:before,
.faqSec .faq_content ul li .question:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  top: 50%;
  right: 0px;
  background: var(--color-main);
  transform: translateY(-50%) rotate(0deg);
  transition: 0.3s;
  pointer-events: none;
}

.faqSec .faq_content ul li .question:after {
  transform: translateY(-50%) rotate(-90deg);
}

.faqSec .faq_content ul li .question:has(:checked):after {
  transform: translateY(-50%) rotate(-180deg);
}


.faqSec .faq_content ul li .answer {
  block-size: 0;
  overflow: hidden;
  transition: 0.3s;
  background: #fff;
  padding: 0;
}

.faqSec .faq_content ul li .question:has(:checked)+.answer {
  block-size: auto;
  block-size: calc-size(auto, size);
  padding-top: 15px;
}

@media screen and (max-width: 896px) {
  .faqSec .faq_content h2 {
    width: 100%;
    font-size: 25px;
  }

  .faqSec .faq_content ul li {
    padding: 24px 0px;
  }

  .faqSec .faq_content ul li h3 {
    font-size: 16px;
  }

  .faqSec .faq_content ul li h3 span {
    font-size: 24px;
  }
}

/* access */
.accessSec {
  margin: 0 auto;
  padding: var(--margin-blank) 0;
  position: relative;
}

.accessSec:before {
  position: absolute;
  content: "";
  width: 90%;
}

.accessSec .access_content {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 5%;
  position: relative;
}

.accessSec .access_content:before {
  position: absolute;
  content: "";
  width: 90vw;
  height: calc(100%);
  background: #F8F8F8;
  top: -160px;
  left: 50%;
  transform: translateX(-50vw);
  z-index: -1;
}

.accessSec .access_content h2 {
  width: 250px;
  font-size: 36px;
}

.accessSec .access_content dl {
  flex: 1;
}

.accessSec .access_content dl div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
}

.accessSec .access_content dl dt,
.accessSec .access_content dl dd {
  padding: 40px 0;
}

.accessSec .access_content dl dt {
  width: 130px;
  color: var(--color-main);
  border-top: 1px solid var(--color-main);
  font-weight: 400;
  display: flex;
  align-items: center;
}

.accessSec .access_content dl div:last-child dt {
  border-bottom: 1px solid #ccc;
}

.accessSec .access_content dl dd {
  width: calc(100% - var(--margin-blank));
  border-top: 1px solid #ccc;
}

.accessSec .access_content dl div:last-child dd {
  border-bottom: 1px solid #ccc;
}

.accessSec .access_content .map {
  width: 100%;
  margin: 100px 0;
}

.accessSec .access_content .map iframe {
  width: 100%;
  height: 360px;
  filter: saturate(0);
}

@media screen and (max-width: 896px) {
  .accessSec .access_content:before {
    top: -50px;
  }

  .accessSec .access_content h2 {
    width: 100%;
    font-size: 25px;
  }

  .accessSec .access_content dl dt,
  .accessSec .access_content dl dd {
    width: 100%;
  }

  .accessSec .access_content dl dt {
    padding: 20px 0 10px;
  }

  .accessSec .access_content dl dd {
    border-top: none;
    padding: 0 0 20px;
  }

  .accessSec .access_content dl div:last-child dt {
    border-bottom: none;
  }

  .accessSec .access_content .map {
    margin-top: 50px;
  }
}

/* slider */

.sliderSec {
  margin: 0;
}

@media screen and (max-width: 896px) {
  .sliderSec {
    margin: 50px 0;
  }
}


.sliderSec .slick-track {
  display: flex;
}

.sliderSec .slick-slide {
  height: auto;
}

.sliderSec .slider img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

/* directions */

.directions h3 input {
  display: none;
}

.directions h3 label {
  display: block;
  font-size: 24px;
  border-bottom: 1px solid var(--color-main);
  padding: 24px;
  margin-bottom: 60px;
  position: relative;
  cursor: pointer;
}

.directions h3 label:before,
.directions h3 label:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  top: 50%;
  right: 0px;
  background: var(--color-main);
  transform: translateY(-50%) rotate(0deg);
  transition: 0.3s;
}

.directions h3:has(:checked) label:before {
  transform: translateY(-50%) rotate(0deg);
}

.directions h3:has(:checked) label:after {
  transform: translateY(-50%) rotate(90deg);
}

.directions .directions_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
  block-size: auto;
  block-size: calc-size(auto, size);
  transition: 0.5s;
}

.directions:has(:checked) .directions_wrap {
  block-size: 0;
  overflow: hidden;
}

.directions .directions_wrap .direction_box {
  width: calc(100% / 3 - 80px / 3);
}

.directions .directions_wrap .direction_box img {
  border-radius: 10px;
  margin-bottom: 15px;
}


@media screen and (max-width: 896px) {
  .directions .directions_wrap .direction_box {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 500px) {
  .directions .directions_wrap .direction_box {
    width: 100%;
  }

  .directions h3 label {
    font-size: 16px;
    padding: 20px 0;
  }
}


/* reservation */

.reservationSec {
  background: #f7f7f7;
  margin: 0 auto;
  padding: var(--margin-blank) 0;
}

.line_btn {
  max-width: 1024px;
  margin: 60px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #2A9D59;
  color: #2A9D59;
  background: #fff;
  padding: 75px 100px;
  gap: 0 30px;
  font-size: 40px;
  position: relative;
  transition: 0.3s;
  font-weight: bold;
}

.line_btn:hover {
  border-radius: 10px;
}

.line_btn:before {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  top: 50%;
  right: 50px;
  background: url(../img/icon/arrow_line.svg)no-repeat center / cover;
  transform: translateY(-50%);
}

.line_btn img {
  width: 90px;
}

@media screen and (max-width: 896px) {
  .line_btn {
    padding: 20px 17px;
    font-size: 15px;
    width: 335px;
    gap: 0 10px;
  }

  .line_btn img {
    width: 40px;
    height: 40px;
  }

  .line_btn:before {
    width: 40px;
    height: 40px;
    right: 17px;
  }
}

/* movie */

.movieSec video {
  width: 100%;
  aspect-ratio: 16 / 9;
}


/* instagram */

.instagram {
  background: url(../img/insta_bg.jpg)no-repeat center / cover;
  padding: 80px 0;
  color: #fff;
}

.instagram .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instagram .logo img {
  width: 50px;
  margin-bottom: 8px;
}

.instagram .logo p {
  font-size: 22px;
}

.instagram h3 {
  font-size: 40px;
  margin: 30px 0;
}

.instagram a {
  width: 240px;
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  border: 1px solid #fff;
  padding: 18px;
  position: relative;
  text-align: left;
}

.instagram a:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/icon/arrow_link.svg)no-repeat center / contain;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

@media screen and (max-width: 896px) {
  .instagram .logo img {
    width: 35px;
  }

  .instagram .logo p {
    font-size: 14px;
  }

  .instagram h3 {
    font-size: 25px;
  }
}


/* 投稿一覧 */

.post_content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 5%;
}

.post_content .post_title {
  width: 250px;
}

.post_content .post_title h2 {
  font-size: 36px;
}

.post_content a.news_link {
  position: relative;
  padding: 20px 0;
  padding-left: 100px;
}

.post_content a.news_link:before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background: url(../img/icon/arrow.svg)no-repeat center / 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}

.post_content a.news_link:hover:before {
  background: var(--color-main) url(../img/icon/arrow-white.svg)no-repeat center / 20px;
  border-color: var(--color-main);
}

.post_content .post_list {
  flex: 1;
}

.post_content .post_list ul {
  border-bottom: 1px solid #ccc;
}

.post_content .post_list ul li a {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 30px 20px;
  border-top: 1px solid #ccc;
}

.post_content .post_list ul li a:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background: url(../img/icon/arrow.svg)no-repeat center / 16px;
  border: 1px solid #ccc;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}

.post_content .post_list ul li a .post_thumb {
  width: 200px;
  background: #c0c0c0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 0 10px 0;
  overflow: hidden;
}

.post_content .post_list ul li a .post_thumb.noimg img {
  filter: brightness(0) invert(1);
  width: 50%;
}

.post_content .post_list ul li a .post_txt {
  padding: 26px 40px;
  padding-right: 80px;
  flex: 1;
}

.post_content .post_list ul li a .post_txt time {
  display: inline-block;
  color: var(--color-main);
  font-size: 13px;
  margin-bottom: 12px;
}

.post_content .post_list ul li a .post_txt h3 {
  font-weight: bold;
}

.post_content .post_list ul li a .post_txt p {
  margin-top: 16px;
  font-size: 14px;
}

.post_content .post_list ul li a .post_thumb img {
  object-view-box: inset(0%);
  transition: 0.3s;
}

.post_content .post_list ul li a:hover .post_thumb.noimg img {
  width: 55%;
  object-view-box: inset(0%);
}

.post_content .post_list ul li a:hover .post_thumb img {
  object-view-box: inset(5%);
}

@media screen and (max-width: 896px) {
  .post_content .post_title h2 {
    margin-bottom: 0;
    font-size: 25px;
    width: 100%;
  }

  .post_content .post_list {
    flex: initial;
    width: 100%;
  }

  .post_content .post_list ul li a {
    padding: 20px;
  }

  .post_content .post_list ul li a .post_thumb {
    width: 110px;
    aspect-ratio: 1.2 / 1;
  }

  .post_content .post_list ul li a .post_txt {
    width: calc(100% - 130px);
    padding: 0;
    margin-left: 20px;
  }

  .post_content .post_list ul li a:before {
    content: none;
  }

  .post_content a.news_link {
    margin-left: auto;
    padding-left: 74px;
  }

  .post_content a.news_link:before {
    width: 50px;
    height: 50px;
  }
}


/* ------------------------------
   フッター
------------------------------ */

.footer_content {
  background: #2b2b2b;
  padding: 60px 45px 40px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 60px;
}

footer a {
  color: #fff;
}

footer .footer_lBox {
  display: flex;
  flex-direction: column;
}

footer .footer_lBox .logo {
  width: 160px;
}

footer a.insta_link {
  width: 190px;
  padding: 6px;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  position: relative;
  margin-top: auto;
}

footer a.insta_link:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon/arrow_link.svg)no-repeat center / cover;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

footer a.insta_link img {
  width: 18px;
  height: 18px;
  margin-right: 14px;
  padding: 8px;
  padding-right: 14px;
  box-sizing: content-box;
  border-right: 1px solid #fff;
}

footer .footer_rBox {
  display: flex;
  flex-direction: column;
}

footer .footer_rBox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

footer .footer_rBox ul li a {
  padding: 0 15px;
  display: inline-block;
}

footer .footer_rBox ul.page_link {
  margin-top: 24px;
  margin-bottom: 50px;
}

footer .footer_rBox ul.page_link a {
  font-size: 12px;
  color: #ccc;
}

footer .footer_rBox small {
  text-align: right;
  color: #888;
}

@media screen and (max-width: 896px) {
  .footer_content {
    padding: 50px 20px 180px;
  }

  footer .footer_rBox ul {
    justify-content: flex-start;
    gap: 22px 20px;
  }

  footer .footer_rBox ul li a {
    padding: 0;
  }

  footer .footer_rBox ul.page_link {
    margin-bottom: 30px;
  }

  footer .footer_rBox small {
    text-align: left;
    margin-top: 20px;
  }
}

/* フローティングメニュー */
.floating {
  position: fixed;
  bottom: 40px;
  right: 0px;
  transform: translateX(-40px);
  display: inline-block;
  background: url(../img/floating_bg.jpg)no-repeat center / cover;
  padding: 20px 25px;
  z-index: 1;
}

.floating input[type=checkbox] {
  display: none !important;
}

.floating label {
  position: absolute;
  content: "×";
  z-index: 10;
  background: var(--color-dark) url(../img/icon/close.png) no-repeat center / 20px;
  color: #fff !important;
  font-weight: 100;
  opacity: 1 !important;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
}

.floating:has(#close:checked) {
  display: none !important;
}

.floating h3 {
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.floating .floating_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.floating .floating_btn a {
  padding: 6px 14px;
  padding-right: 44px;
  background: var(--color-main);
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}

.floating .floating_btn a:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon/arrow-white.svg)no-repeat center / contain;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.floating .floating_btn a:nth-child(2) {
  background: #2A9D59;
}

.floating .floating_btn a img {
  width: 20px;
  padding: 10px 0;
  box-sizing: content-box;
  padding-right: 14px;
  margin-right: 14px;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 896px) {
  .floating {
    width: 345px;
    padding: 12px 22px;
    right: 50%;
    transform: translateX(50%);
  }

  .floating .floating_btn a {
    padding: 6px 10px;
    font-size: 13px;
  }

  .floating .floating_btn a:before {
    content: none;
  }

  .floating .floating_btn a img {
    padding-right: 10px;
    margin-right: 10px;
    width: 20px;
  }

  .floating h3 {
    font-size: 16px;
  }

  .floating label {
    width: 32px;
    height: 32px;
    background-size: 13px;
  }
}

/* ブログ下部無料体験予約 */

.reservation-blog {
  background: url(../img/recommend_bg.jpg)no-repeat center / cover;
  padding: 80px 0 100px;
  color: #fff;
  position: relative;
}

.reservation-blog:before {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 1828 / 93;
  background: url(../img/FV_deco.png)no-repeat center / contain;
  bottom: 0px;
  left: 0;
  opacity: 0.5;
}

.reservation_txt {
  position: relative;
}

.reservation_txt a {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  background: url(../img/icon/arrow-white.svg)no-repeat center / 20px;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.reservation_txt a:hover {
  opacity: 0.3;
}

.reservation-blog h2,
.reservation-blog h2 span {
  color: #fff;
}

.reservation-blog h2 {
  margin-bottom: 30px !important;
  padding-bottom: 0 !important;
}

@media screen and (max-width: 896px) {
  .reservation-blog {
    padding: 50px 0;
  }

  .reservation_txt a {
    width: 50px;
    height: 50px;
    background-size: 16px;
    top: 60px;
  }

  .reservation_txt a:hover:before {
    background-size: 16px;
  }

  .reservation-blog:before {
    content: none;
  }
}


.privacy_bg {
  padding: 80px 0 160px;
  background: linear-gradient(to bottom,
      color-mix(in srgb, var(--color-main) 12%, transparent) 0%,
      transparent 50%,
      color-mix(in srgb, var(--color-main) 12%, transparent) 100%);
}

@media screen and (max-width: 896px) {
  .privacy_bg {
    padding: 40px 0;
  }
}

.privacy_content {
  background: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  width: calc(100% - 40px);
}

.privacyPage h1 {
  margin-bottom: 30px;
}

.privacyPage h1+p {
  margin-bottom: 60px;
}

@media screen and (max-width: 896px) {
  .privacyPage h1+p {
    margin-bottom: 30px;
  }
}

.privacy_txt {
  line-height: 1.65;
  letter-spacing: 0.05em;
  font-size: 14px;
}

.privacy_txt+.privacy_txt {
  margin-top: 40px;
}



.company_bg {
  padding: 80px 0 160px;
  background: linear-gradient(to bottom,
      color-mix(in srgb, var(--color-main) 12%, transparent) 0%,
      transparent 50%,
      color-mix(in srgb, var(--color-main) 12%, transparent) 100%);
}

@media screen and (max-width: 896px) {
  .company_bg {
    padding: 40px 0;
  }
}

.company_content {
  background: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  width: calc(100% - 40px);
}

.companyPage table {
  width: 1000px;
  max-width: calc(100% - 40px);
  border-spacing: 0px;
  margin: 0 auto;
}

.companyPage table th,
.companyPage table td {
  padding: 20px 25px;
  border-top: 1px solid var(--color-main);
}

.companyPage table tr:last-child th,
.companyPage table tr:last-child td {
  border-bottom: 1px solid var(--color-main);
}

.companyPage table th {
  width: 200px;
  border-left: 1px solid var(--color-main);
}

.companyPage table td {
  border-right: 1px solid var(--color-main);
  border-left: 1px solid var(--color-main);
}

@media screen and (max-width: 896px) {

  .companyPage table th,
  .companyPage table td {
    padding: 10px;
  }

  .companyPage table th {
    width: 145px;
  }
}