@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-navy: #344867;
  --color-blue: #004097;
  --color-gray: #dae2e9;
  --color-red: #c1272d;

  --noto-ckj: "noto-sans-cjk-jp", sans-serif;
  --noto-san: "Noto Sans JP", sans-serif;
  --ryumin: "a-otf-ryumin-pr6n", serif;
  --din-Condensed: "din-condensed", sans-serif;
  --jost: "Jost", sans-serif;
  --shuei-m: "dnp-shuei-mgothic-std", sans-serif;
  --source-han-sans: "source-han-sans-japanese", sans-serif;

  --header: 15rem;
  scroll-padding: var(--header);
}

@media screen and (max-width: 767px) {
  :root {
    --header: 10rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1920>> 10px */
  font-size: 0.5208333vw;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.7;
}

p {
  font-size: 1.8rem;
}

a {
  text-decoration: none;
  transition: all 0.4s;
  display: block;
}

a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  html {
    /* 750px>> 10px */
    font-size: 1.3333vw;
  }

  p {
    font-size: 2.4rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--color-white);
  height: 15.5rem;
}

.nav__top {
  background: #231815;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
}

.nav__top a {
  width: 38.2rem;
}

.nav__top .logo__images {
  display: flex;
  gap: 5rem;
}

.nav__top .logo__peony {
  width: 16.5rem;
}

.nav__top .logo__lapis {
  width: 14rem;
}

.nav__under {
  padding-top: 1.6rem;
}

.nav__under .nav__menu {
  gap: 3.5rem;
}

.nav__under .nav__menu li a {
  font-size: 1.6rem;
  color: #4d4d4d;
}

.nav__under .nav__menu li a span {
  display: none;
}

.nav__under .nav__menu li .nv_btn {
  background: #344867;
  color: var(--color-white);
  font-size: 1.7rem;
  width: 12.3rem;
  height: 3.2rem;
  display: grid;
  place-content: center;
  border-radius: 0.5rem;
}

.sp_logo,
.sp_btn {
  display: none;
}

@media screen and (max-width: 767px) {
  header {
    height: 10rem;
    background: #231815;
  }

  .nav__top {
    gap: 2rem;
    margin-right: 10rem;
  }

  .nav__top .logo__images {
    gap: 2rem;
  }

  .nav__top a {
    width: 25rem;
  }

  .nav__top .logo__peony {
    width: 15rem;
  }

  .nav__top .logo__lapis {
    width: 13rem;
  }

  .nav__under {
    padding: 0;
  }

  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 10rem;
    height: 10rem;
    background: var(--color-navy);
    cursor: pointer;
    z-index: 300;
    transition: all 0.1s ease-out;
  }

  .open_nav .hamburger {
    background: var(--color-white);
  }

  .hamburger::after {
    position: absolute;
    content: "MENU";
    color: var(--color-white);
    font-size: 1.8rem;
    font-family: var(--din-Condensed);
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
    text-align: center;
    width: 100%;
    opacity: 1;
    transition: all 0.2s ease-out;
  }

  .open_nav .hamburger::after {
    opacity: 0;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 40%;
    height: 0.2rem;
    background-color: var(--color-white);
    transition: all 0.4s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 30%;
  }

  .hamburger__line--2 {
    top: 40%;
  }

  .hamburger__line--3 {
    top: 50%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(35deg);
    top: 50%;
    background: var(--color-navy);
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-35deg);
    top: 50%;
    background: var(--color-navy);
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-navy);
    transition: all 0.3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  nav.gnav.global__nav ul {
    display: block;
    text-align: center;
  }

  nav.gnav.global__nav ul li.sp_logo {
    background: var(--color-white);
    padding: 4rem 0 3.4rem 4rem;
    display: block;
  }

  nav.gnav.global__nav ul li.sp_logo a {
    width: 49rem;
  }

  nav.gnav.global__nav ul li:not(.sp_logo):not(.sp_btn):not(.sp) {
    padding: 5rem 0 2rem;
    border-bottom: 1px solid #dbdcdc;
    width: 65rem;
    margin: 0 auto;
  }

  nav.gnav.global__nav ul li a {
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 2.4rem;
    font-weight: 400;
  }

  .nav__under .nav__menu li a span {
    display: block;
    margin-right: auto;
    font-family: var(--din-Condensed);
    font-size: 2.8rem;
    letter-spacing: 0.1em;
  }

  .nav__under .nav__menu li.sp_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    padding-top: 9rem;
  }

  .nav__under .nav__menu li.sp_btn a {
    font-size: 2.8rem;
    width: 40%;
    text-align: center;
    display: block;
    border: 1px solid #dbdcdc;
    padding: 1.7rem 0;
    font-weight: bold;
  }

  .nav__under .nav__menu li.sp_btn a:nth-of-type(2) {
    background: #dbdcdc;
    color: var(--color-navy);
  }

  .nav__under .nav__menu li.sp {
    margin-top: 5rem;
    width: 100%;
    padding: 5rem 0 10rem 0;
    background: var(--color-white);
    display: flex;
    justify-content: center;
  }

  .nav__logo img {
    width: 42rem;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
}

.--pt100 {
  padding-top: 10rem;
}

/* タイトル */
h2.hd {
  font-size: 5.8rem;
  text-align: center;
  color: var(--color-navy);
  font-family: var(--din-Condensed);
  letter-spacing: 0.1em;
  background: var(--color-gray);
}

h3.hd {
  text-align: center;
  background: var(--color-navy);
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-white);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2em;
  gap: 2rem;
}

h3.hd img {
  width: 31rem;
}

@media screen and (max-width: 767px) {
  .--pt100 {
    padding-top: 5rem;
  }

  h2.hd {
    font-size: 4.4rem;
    letter-spacing: 0.05em;
  }

  h3.hd {
    font-size: 2rem;
    letter-spacing: 0.1em;
    gap: 1rem;
  }
}

/*================================================
 *  banner
 ================================================*/
#banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  padding: 2rem 0;
}

#banner ul {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

#banner ul li a {
  color: var(--color-white);
  font-weight: bold;
  padding-top: clamp(0.1rem, 2rem, 20px);
  padding-bottom: clamp(0.1rem, 2rem, 20px);
  position: relative;
  font-size: 2rem;
}

#banner ul li a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/fix_arrow.svg);
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}

#banner ul li:nth-child(1) a {
  background: #2eafbf;
}

#banner ul li:nth-child(2) a {
  background: #b4945f;
}

#banner ul li:nth-child(3) a {
  background: #164097;
}

#banner ul li:nth-child(4) a {
  background: #06c755;
}

#banner .shoukai {
  width: 20rem;
  position: absolute;
  top: -15rem;
  right: 17rem;
}

@media screen and (max-width: 767px) {
  #banner {
    padding: 0;
  }

  #banner .shoukai {
    width: 23rem;
    top: -19rem;
    right: 0rem;
  }

  #banner ul {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  #banner ul li a {
    padding: 2rem 0;
    font-size: 2rem;
  }
}

/*================================================
 *  mv
 ================================================*/

#mv {
  margin-top: 15rem;
  background: url(../images/mv_btn_bg.webp) no-repeat center bottom/cover;
  height: 100%;
  padding-bottom: 5rem;
}

/* mv__btn */
.mv__btn {
  padding: 5rem 0 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.mv_red {
  position: absolute;
  width: 18rem;
  bottom: 1rem;
  right: -18.5rem;
}

.mv__btn h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  font-family: var(--source-han-sans);
  margin-bottom: 3rem;
}

.mv__btn h2 span {
  font-size: 2.3rem;
}

.mv__btn ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: start;
  gap: 15rem;
}

.mv__btn ul li {
  display: grid;
  place-content: center;
  width: 17.3rem;
  position: relative;
  min-height: 16.5rem;
}

.mv__btn ul li .lapi {
  padding-top: 1.2rem;
}

.mv__btn ul li .deep {
  padding-top: 2.4rem;
}

.mv__btn ul li:not(:last-child):before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/mv_cross.webp);
  width: 6.7rem;
  aspect-ratio: 1/1;
  top: 50%;
  right: -60%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  #mv {
    margin-top: 10rem;
  }

  .mv__btn h2 {
    margin-bottom: 0;
  }

  .mv__btn ul {
    margin-top: 3rem;
    translate: -10rem 0;
    gap: 0 10rem;
  }

  .mv__btn ul li {
    width: 20rem;
  }

  .mv__btn ul li:not(:last-child):before {
    right: -40%;
  }

  .mv__btn ul li:nth-child(2):before {
    content: none;
  }

  .mv_red {
    width: 18rem;
    right: -8%;
    bottom: 0;
  }
}

/*================================================
* movie
================================================*/
.movie {
  width: 100%;
  line-height: 0;
}

.movie video {
  width: 100%;
  display: block;
}

/*================================================
* peony
================================================*/

#peony {
  margin-top: 10rem;
  padding-bottom: 5rem;
  text-align: center;
  background: url(../images/peony_bg.webp) no-repeat center / 100% auto;
}

.peony__inner {
  width: 100rem;
  margin: 0 auto;
}

.pl__ttl {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  padding-top: 5rem;
  font-family: var(--ryumin);
}

#peony > picture {
  display: block;
  width: 100%;
}

#peony > picture img {
  width: 100%;
}

.pl__logo {
  width: 17rem;
  margin: 2rem auto 5rem;
}

.pl__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #c87e8a;
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 1000px;
  margin: 0 auto 4rem;
  letter-spacing: 0.1em;
  border: 2px solid var(--color-white);
}

.pl__btn span {
  font-size: 2.4rem;
}

.pl__desc {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  font-family: var(--shuei-m);
}

@media screen and (max-width: 767px) {
  #peony {
    background: url(../images/peony_bg_sp.webp) no-repeat center top / cover;
    padding-top: 3rem;
    padding-bottom: 5rem;
    margin-top: 0;
  }

  .peony__inner {
    width: 100%;
    margin: 0 auto;
  }

  .pl__ttl {
    font-size: 3.2rem;
    padding: 2rem;
    line-height: 1.7;
  }

  .pl__logo {
    margin: 0 auto 42rem;
  }

  .pl__btn {
    font-size: 2.6rem;
    padding: 2rem 5rem;
    margin-bottom: 3rem;
  }

  .pl__desc {
    font-size: 2.6rem;
  }
}

/*================================================
* about
================================================*/
.about__top {
  position: relative;
  background: url(../images/about_top_bg.webp) no-repeat center top / cover;
  min-height: 60rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40rem 5rem 10rem;
}

.about__top-inner {
  max-width: 100rem;
  margin: 0 auto;
  position: relative;
}

.about__top-txt {
  position: relative;
  z-index: 1;
  line-height: 2.8;
}

.about__top-txt span {
  display: inline;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0.5rem 2rem;
  line-height: 2.4;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.about__top-img {
  position: absolute;
  right: -15rem;
  top: 5rem;
  width: 35rem;
  z-index: 1;
  line-height: 0;
}

.about__top-parking {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about__top-parking-icon {
  width: 6rem;
}

.about__top-parking p {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0;
}

.about__top-parking p span {
  font-size: 2rem;
}

.about__inner {
  position: relative;
  background: url(../images/about_bg.webp) no-repeat center bottom/ cover;
  color: var(--color-white);
  height: 100%;
  padding-top: 10rem;
}

.about__txt {
  width: 90rem;
  margin-left: 42rem;
}

.about__txt h4 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}

.about__txt .about__price {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
}

.about__txt .about__price span {
  margin-left: 32.5rem;
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
}

.about__txt p {
  font-size: 2rem;
  line-height: 2.4;
  margin-bottom: 5rem;
}

.point__heading-ttl {
  font-size: 10rem;
  font-family: var(--din-Condensed);
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .about__top {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 40rem 4rem 10rem;
  }

  .about__top-inner {
    width: 100%;
    margin: 0 auto;
  }

  .about__top-txt {
    max-width: 100%;
  }

  .about__top-txt span {
    font-size: 2.4rem;
  }

  .about__top-img {
    position: absolute;
    right: 0;
    bottom: -9rem;
    top: auto;
    width: 24rem;
  }

  .about__top-parking {
    bottom: 3rem;
    left: 4rem;
  }

  .about__top-parking-icon {
    width: 7rem;
  }

  .about__top-parking p {
    font-size: 2.6rem;
  }

  .about__top-parking p span {
    font-size: 2rem;
  }

  .about__inner {
    background: url(../images/about_bg_sp.webp) no-repeat center bottom / cover;
    padding-bottom: 5rem;
  }

  .about__inner h4 {
    font-size: 3.2rem;
  }

  .about__price {
    font-size: 3.2rem;
  }

  .about__txt {
    width: 92%;
    margin: 0 auto;
  }

  .about__txt p {
    font-size: 2.4rem;
  }

  .point__heading-ttl {
    font-size: 8rem;
  }
}

/*================================================
* point
================================================*/
.point__item {
  padding: 8rem 0;
}

.point__num {
  text-align: center;
  line-height: 1;
  margin-bottom: 4rem;
}

.point__num span {
  display: block;
  font-size: 3.2rem;
  font-family: var(--din-Condensed);
  letter-spacing: 0.05em;
}

.point__num strong {
  display: block;
  font-size: 10rem;
  font-family: var(--din-Condensed);
  font-weight: 400;
  line-height: 0.85;
}

.point__head {
  font-size: 4.4rem;
  font-weight: bold;
  text-align: center;
}

.point__sub {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}

/* POINT 01 */
.point01 {
  margin-top: -2rem;
  background: url(../images/point_bg.webp) no-repeat center / cover;
}

.point01 .point__num span,
.point01 .point__num strong {
  color: var(--color-navy);
}

.point01__cards {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 0 10rem;
  margin-bottom: 4rem;
}

.point01__card {
  background: var(--color-white);
  text-align: center;
  flex: 1;
  max-width: 38rem;
  padding-bottom: 3rem;
  border: 5px solid var(--color-navy);
}

.card__desc {
  font-size: 2.4rem;
  font-weight: bold;
  padding: 2.5rem 1rem;
  line-height: 1.7;
}

.card__label {
  font-size: 2.8rem;
  font-weight: bold;
  padding: 1.2rem 1rem;
  background: url(../images/point_label_bg.webp) no-repeat center / cover;
}

.card__label span {
  font-size: 1.8rem;
}

.card__price {
  font-size: 4.4rem;
  font-family: var(--din-Condensed);
  margin: 2rem 0 0.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.card__price strong {
  font-size: 7rem;
}

.card__tax {
  font-size: 1.6rem;
  line-height: 1.5;
}

.point01__note {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 0 15rem;
  line-height: 1.8;
}

/* POINT 02 */
.point02 {
  background: url(../images/point_item_bg.webp) no-repeat center / cover;
  color: var(--color-white);
}

.point02 .point__num span,
.point02 .point__num strong {
  color: var(--color-white);
}

.point02 .point__head {
  color: var(--color-white);
}

.point02__logo {
  width: 30rem;
  margin: 5rem auto;
}

.point02__content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6rem;
  padding: 0 12rem;
}

.point02__img {
  width: 35rem;
  flex-shrink: 0;
}

.point02__txt {
  width: 50rem;
  margin-bottom: 5rem;
}

.point02__desc {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
}

.point02__catchcopy {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.9;
}

/* POINT 03 */
.point03 {
  background: url(../images/point_bg.webp) no-repeat center / cover;
  position: relative;
}

.point03::before {
  position: absolute;
  content: "";
  background: url(../images/point_item_img02.webp) no-repeat center / cover;
  width: 50rem;
  height: 40rem;
  top: 18rem;
  left: 18rem;
}

.point03::after {
  position: absolute;
  content: "";
  background: url(../images/point_item_img03.webp) no-repeat center / cover;
  width: 57rem;
  height: 50rem;
  top: 22rem;
  right: 5.5rem;
}

.point03 .point__num span,
.point03 .point__num strong {
  color: var(--color-navy);
}

.point03__logos {
  width: 58rem;
  margin: 0 auto 5rem;
  display: block;
}

.point03__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding: 0 10rem;
}

.point03__img {
  width: 38rem;
  flex-shrink: 0;
}

.point03__txt {
  flex: 1;
  text-align: center;
}

.point03__txt p {
  font-size: 2.2rem;
  line-height: 2;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .point__item {
    padding: 6rem 0;
  }

  .point__num strong {
    font-size: 9rem;
  }

  .point__head {
    font-size: 4rem;
    padding: 0 3rem;
  }

  .point__sub {
    font-size: 2.2rem;
    padding: 0 3rem;
  }

  /* POINT 01 SP */
  .point01__cards {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 0 8rem;
  }

  .point01__card {
    width: 100%;
    max-width: none;
  }

  .card__desc {
    font-size: 3rem;
  }

  .card__label {
    font-size: 4rem;
    padding: 1.5rem 1rem;
  }

  .card__label span {
    font-size: 2.4rem;
  }

  .card__price {
    font-size: 4rem;
    display: inline-flex;
    align-items: flex-end;
    margin: 2rem 0 0.5rem;
  }

  .card__price strong {
    font-size: 8rem;
  }

  .card__tax {
    font-size: 2rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1rem;
    padding-top: 1rem;
    text-align: left;
  }

  .point01__card:has(.card__price) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .point01__card .card__desc,
  .point01__card .card__label {
    width: 100%;
  }

  .point01__note {
    padding: 0 8rem;
    font-size: 2rem;
    text-align: justify;
  }

  /* POINT 02 SP */
  .point02 {
    background-image: url(../images/point_item_bg_sp.webp);
  }

  .point02__logo {
    width: 30rem;
  }

  .point02__content {
    flex-direction: column;
    align-items: center;
    padding: 0 5rem;
    gap: 0;
  }

  .point02__img {
    width: 35rem;
  }

  .point02__desc {
    font-size: 3.2rem;
    text-align: center;
  }

  .point02__catchcopy {
    font-size: 2.4rem;
    text-align: center;
  }

  /* POINT 03 SP */
  .point03 {
    padding-bottom: 42rem;
  }

  .point03::before {
    width: 46rem;
    height: 36rem;
    top: 30rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .point03::after {
    width: 48rem;
    height: 42rem;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .point03__logos {
    width: 90%;
    margin-top: 38rem;
    margin-bottom: 4rem;
  }

  .point03__content {
    flex-direction: column;
    padding: 0 3rem;
    gap: 3rem;
  }

  .point03__img {
    width: 85%;
  }

  .point03__txt p {
    font-size: 2rem;
  }
}

/*================================================
* deep_campaign
================================================*/
.deep_join {
  width: 58.3rem;
  margin: 5rem auto 3rem;
}

#deep_campaign p {
  text-align: center;
  font-weight: bold;
  font-size: 2.8rem;
}

#deep_campaign p a {
  font-size: 3.4rem;
  border-bottom: 0.4rem solid var(--color-black);
  display: inline-block;
  margin-right: 0.3rem;
}

.deep__flow {
  background: #e6e6e6;
  margin: 5rem 0 0;
  padding: 3rem 0 4rem;
}

.deep__flow h3 {
  font-size: 2.2rem;
  text-align: center;
  font-weight: bold;
}

.deep__flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.5rem;
  width: 110rem;
  margin: 4rem auto 2rem;
}

.deep__flow ul li {
  position: relative;
  background: var(--color-white);
  border: 0.5rem solid var(--color-navy);
  padding: 3rem 0 2rem;
  width: 18.3%;
  display: grid;
  place-content: center;
}

.deep__flow ul li h4 {
  position: absolute;
  top: -17%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--din-Condensed);
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 2.8rem;
  width: 5.5rem;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  border-radius: 1000px;
}

.deep__flow ul li p {
  font-size: 2.4rem;
  text-align: center;
  font-feature-settings: "palt";
  line-height: 1.4;
}

.deep__flow ul li p span {
  color: var(--color-red);
}

.deep__flow ul li p img {
  width: 80%;
  margin: 0 auto;
}

.deep__flow img {
  width: 110rem;
  margin: 5rem auto 4rem;
}

.deep__flow .flex p {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-right: 5rem;
}

.deep__flow .flex p span {
  font-size: 1.6rem;
}

.deep__flow .flex img {
  width: 45.6rem;
  margin: 0;
}

.df_btn-wrap {
  position: relative;
}

.df_btn-wrap a {
  position: absolute;
  width: 17vw;
  left: 50%;
  transform: translateX(-50%);
  /* top: 80vw; */
  bottom: 4vw;
  margin: 0;
}

.df_scroll {
  position: relative;
  margin-top: -1px;
  margin-bottom: -1px;
  background: #000;
  /* background: url(../images/deep_scroll.webp) no-repeat center top/cover; */
  padding: 4rem 0 8rem;
}

.df_scroll-item img {
  width: 120rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .deep_join {
    width: 50rem;
  }

  .deep__flow ul {
    width: 57.6rem;
    justify-content: space-between;
    gap: 3rem 0;
  }

  .deep__flow ul li {
    width: 32%;
    min-height: 15rem;
  }

  .deep__flow ul li:nth-child(4),
  .deep__flow ul li:nth-child(5) {
    width: 48%;
  }

  #deep_campaign p {
    font-size: 2.4rem;
    margin: 0;
    text-align: center;
  }

  #deep_campaign p a {
    font-size: 2.8rem;
  }

  .deep__flow .flex img {
    width: 46.8rem;
    margin: 2rem auto;
  }

  .df_btn-wrap a {
    bottom: 8vw;
    width: 52vw;
  }

  .df_scroll-item {
    overflow: scroll;
    padding: 6rem 10rem;
  }

  .df_scroll-item img {
    max-width: unset;
  }

  .df_scroll {
    background: url(../images/deep_scroll_sp.webp) no-repeat center top/cover;
    padding: 4rem 0 4rem;
  }
}

/*================================================
* introduction
================================================*/
.introduction__cnt {
  background: url(../images/introduction_bg.webp) no-repeat center bottom/cover;
  height: 100%;
}

.intro__btn {
  font-size: 2.8rem;
  padding: 4rem 0;
  display: flex;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.intro__btn img {
  width: 5rem;
  margin-left: 1rem;
}

@media screen and (max-width: 767px) {
  .introduction__cnt {
    background: url(../images/introduction_bg_sp.webp) no-repeat center bottom/cover;
  }

  .intro__btn {
    font-size: 2.6rem;
    padding: 2rem 0;
    justify-content: center;
    /* margin-top: -4rem; */
  }

  .intro__btn img {
    width: 4rem;
  }
}

/*================================================
* facility
================================================*/
.facility__head {
  background: url(../images/facility_head_bg.webp) no-repeat center center/cover;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#facility h2.hd {
  background: transparent;
  color: var(--color-white);
  font-size: 12rem;
  line-height: 1.2;
  padding: 5rem 0 2rem;
}

#facility h3.hd {
  display: inline-block;
  padding: 1rem 5rem;
  margin-bottom: 4rem;
  background: var(--color-white);
  color: var(--color-black);
}

.facility__head h4 {
  text-align: center;
  font-size: 3.8rem;
  font-weight: bold;
  color: var(--color-white);
}

.facility__body {
  background: url(../images/facility_body_bg.webp) repeat center bottom/ 100% auto;
  padding: 5rem 0 10rem;
}

.facility__body-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.facility__body p {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}

.facility__body .facility__logos {
  width: 42rem;
  margin: 5rem auto;
}

.facility__body .facility__desc {
  font-size: 2.2rem;
  text-align: justify;
  line-height: 1.5;
  font-weight: 400;
}

.facility__body .facility__img {
  margin-top: 5rem;
}

@media screen and (max-width: 767px) {
  .facility__head {
    background: url(../images/facility_head_bg_sp.webp) no-repeat center top/cover;
    padding-bottom: 4rem;
  }

  #facility h2.hd {
    font-size: 10rem;
    padding: 3rem 0 2rem;
  }

  #facility h3.hd {
    font-size: 2.4rem;
    padding: 0.5rem 4rem;
    margin-bottom: 3rem;
  }

  .facility__head h4 {
    font-size: 3.4rem;
    padding: 0 3rem;
  }

  .facility__body {
    background: url(../images/facility_bg_sp.webp) no-repeat center top/ cover;
  }

  .facility__body-inner {
    width: 92%;
    margin: 0 auto;
  }

  .facility__body .facility__logos {
    margin: 3rem auto 5rem;
  }
}

/*================================================
* free
================================================*/
.free__content {
  background: var(--color-black);
  padding-bottom: 5rem;
}

/*================================================
* strength
================================================*/
#strength picture {
  display: block;
  width: 100.5%;
  margin: 0 auto;
}

#strength picture img {
  position: relative;
  left: -1rem;
}

.strength__content {
  background: var(--color-gray);
  padding-bottom: 5rem;
}

#strength .gym__item li {
  color: var(--color-navy);
  border-color: var(--color-navy);
}

@media screen and (max-width: 767px) {
  #strength picture {
    width: 100.5%;
  }

  #strength picture img {
    left: -0.5rem;
    width: 102%;
  }
}

/*================================================
* cardio
================================================*/
.cardio__content {
  background: var(--color-gray);
  padding-bottom: 5rem;
}

.cardio__skillrun {
  margin-top: -10rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
}

.cardio__skillrun img {
  width: 45rem;
}

.cardio__skillrun-txt {
  margin-bottom: 8rem;
}

.cardio__skillrun-txt h4 {
  font-family: var(--din-Condensed);
  font-size: 5rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.cardio__skillrun-txt p {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
}

#cardio .gym__item li {
  color: var(--color-navy);
  border-color: var(--color-navy);
}

@media screen and (max-width: 767px) {
  .cardio__skillrun {
    margin-top: 2rem;
    padding: 0 2rem;
  }

  .cardio__skillrun img {
    width: 32rem;
  }

  .cardio__skillrun-txt {
    margin-bottom: 3rem;
  }

  .cardio__skillrun-txt p {
    text-align: justify;
  }
}

/*================================================
* gym slider
================================================*/
.gym__ttl {
  background: #f1e7d4;
  padding: 5rem 0;
  text-align: center;
}

.gym__ttl h2 {
  font-family: var(--din-Condensed);
  font-size: 6.6rem;
}

.gym__ttl h3 {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 1rem 0;
}

.gym__ttl p {
  font-size: 2rem;
}

.gym__logo {
  margin: 5rem 0;
}

.gym__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0 0;
}

.gym__cnt img {
  width: 19rem;
}

.gym__cnt p {
  font-size: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 60rem;
}

.loop_swiper .swiper-wrapper {
  transition-timing-function: linear;
  margin: 3rem 0;
}

/* 画像のサイズ調整 */
.loop_swiper .swiper-slide {
  width: 30rem;
  margin: 0 2rem;
  box-shadow: -0.4rem 0.4rem 0.4rem rgb(0 0 0 / 15%);
}

.loop_swiper .swiper-slide img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
  font-family: "object-fit: cover;";
  aspect-ratio: 300 / 263;
}

.gym__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 1rem;
  max-width: 110rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 0;
}

.gym__item li {
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 0.3rem 1rem;
  font-size: 1.8rem;
}

.gym__item li.etc {
  border: none;
}

@media screen and (max-width: 767px) {
  .gym__ttl h2 {
    font-family: var(--din-Condensed);
    font-size: 4.4rem;
  }

  .gym__ttl h3 {
    font-size: 3.2rem;
  }

  .gym__ttl p {
    font-size: 2.6rem;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .gym__logo {
    margin-bottom: 2rem;
  }

  .gym__cnt img {
    width: 29%;
  }

  .gym__cnt p {
    font-size: 2.5rem;
    max-width: 64%;
  }

  .loop_swiper .swiper-slide {
    width: 23rem;
    margin: 0 1rem;
  }

  .gym__item {
    gap: 1rem;
    width: 92%;
    margin: 4rem auto 0;
  }

  .gym__item li {
    font-size: 1.8rem;
  }
}

/*================================================
* studio
================================================*/
.studio__btn {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .studio__btn {
    margin-top: 5rem;
  }
}

/*================================================
* support
================================================*/
/* --- section head bar --- */
.support__section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--color-navy);
  padding: 1rem 0;
}

.support__head-icon {
  width: 3.6rem;
  height: auto;
}

.support__section-head p {
  font-family: var(--source-han-sans);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.15em;
}

/* --- main visual with overlay --- */
.support__main-visual {
  position: relative;
}

.support__main-visual picture img {
  width: 100%;
  display: block;
}

.support__visual-txt {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100rem;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 100%);
  padding: 3rem 2rem;
}

.support__visual-txt p {
  text-align: center;
  color: var(--color-white);
  font-size: 2.2rem;
  line-height: 2;
  font-weight: 500;
}

.support__visual-txt p span {
  font-weight: 700;
  text-decoration: underline;
}

/* --- beginner flow --- */
.support__beginner-flow {
  background: var(--color-gray);
  padding: 6rem 0 10rem;
}

.support__beginner-flow-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 100rem;
  margin: 0 auto;
}

.support__flow-start {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.support__flow-start img {
  width: 13rem;
}

.support__flow-circle {
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  padding: 2rem;
  border: 3px solid #2eafbf;
  background: var(--color-white);
}

.support__flow-circle h5 {
  font-size: 3rem;
  color: #2eafbf;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  position: relative;
}

.support__flow-circle h5::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24rem;
  height: 0.1rem;
  background: var(--color-black);
}

.support__flow-circle p {
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1.6;
}

.support__flow-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.support__flow-mid img {
  width: 10rem;
}

.support__flow-mid-txt {
  font-family: var(--din-Condensed);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-top: 0.5rem;
}

/* --- personal steps --- */
.support__block + .support__block {
  margin-top: 6rem;
}
.support__personal-steps {
  background: var(--color-gray);
  padding: 2rem;
}

.support__personal-steps-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  max-width: 100rem;
  margin: 0 auto 5rem;
}

.support__step-item {
  text-align: center;
  flex: 1;
  min-width: 0;
  max-width: 28rem;
}

.support__step-header {
  margin-bottom: 1rem;
}

.step-label {
  font-family: var(--din-Condensed);
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.step-num {
  font-family: var(--din-Condensed);
  font-size: 4.8rem;
  line-height: 1;
  margin-top: 0.2rem;
}

.support__step-circle {
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.support__step-circle h5 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2rem;
  position: relative;
}

.support__step-circle h5::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24rem;
  height: 0.1rem;
  background: var(--color-white);
}

.support__step-circle p {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

.support__step-arrow {
  display: flex;
  align-items: center;
  padding-top: 3rem;
  flex-shrink: 0;
}

.support__step-arrow img {
  width: 3rem;
}

/* --- price bar --- */
.support__price {
  width: fit-content;
  background: var(--color-navy);
  margin-inline: auto;
  padding: 0 4rem;
  text-align: center;
  margin-bottom: 3rem;
}

.support__price p {
  display: inline-flex;
  align-items: baseline;
  gap: 1.5rem;
  color: var(--color-white);
}

.support__price-label {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.support__price-sep {
  font-size: 2.4rem;
}

.support__price-val {
  font-size: 2rem;
}

.support__price-val strong {
  font-family: var(--din-Condensed);
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.support__price-val small {
  font-size: 2rem;
}

/* --- trainers intro --- */
.support__trainers-intro {
  color: var(--color-white);
  background: var(--color-navy);
  padding: 6rem 0 4rem;
}

.support__trainers-ttl {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
}

.support__trainers-line {
  display: block;
  width: 100rem;
  margin: 1.5rem auto 4rem;
}

.support__trainers-list {
  max-width: 95rem;
  margin: 0 auto;
}

.support__trainer-card {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.support__trainer-card + .support__trainer-card {
  margin-top: 4rem;
}

.support__trainer-img {
  width: 44rem;
  flex-shrink: 0;
}

.support__trainer-img img {
  width: 100%;
  height: auto;
  display: block;
}

.support__trainer-info {
  flex: 1;
}

.support__trainer-info h5 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.support__trainer-info p {
  font-size: 1.8rem;
  line-height: 1.9;
}

.support__trainers-note {
  background: var(--color-gray);
  text-align: center;
  font-size: 2rem;
  padding: 2rem;
}

/* --- support SP --- */
@media screen and (max-width: 767px) {
  .support__section-head {
    gap: 0.8rem;
    padding: 0.8rem 0;
  }

  .support__head-icon {
    width: 2.8rem;
  }

  .support__section-head p {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }

  .support__visual-txt {
    position: static;
    transform: translateX(0);
    width: 100%;
    background: var(--color-gray);
    padding: 3rem 2rem;
  }

  .support__visual-txt p {
    text-align: center;
    color: var(--color-black);
    font-size: 2.2rem;
    line-height: 2;
    font-weight: 500;
  }

  .support__visual-txt p {
    font-size: 2rem;
    line-height: 1.8;
  }

  /* beginner flow SP */
  .support__beginner-flow {
    padding: 4rem 2rem;
  }

  .support__beginner-flow-inner {
    align-items: center;
    gap: 2rem;
  }

  .support__flow-start img {
    width: 10rem;
  }

  .support__flow-circle {
    width: 24rem;
    height: 24rem;
    padding: 1.5rem;
  }

  .support__flow-circle h5 {
    font-size: 2.4rem;
  }

  .support__flow-circle h5::after {
    width: 18rem;
  }

  .support__flow-circle p {
    font-size: 1.6rem;
  }

  .support__flow-mid {
    padding-top: 0;
  }

  .support__flow-mid img {
    width: 6rem;
  }

  .support__flow-mid-txt {
    font-size: 2.2rem;
  }

  /* personal steps SP */
  .support__block + .support__block {
    margin-top: 4rem;
  }

  .support__personal-steps {
    padding: 4rem 2rem;
  }

  .support__personal-steps-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .support__step-item {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
  }

  .support__step-header {
    margin-bottom: 0;
    flex-shrink: 0;
    text-align: center;
    min-width: 6rem;
  }

  .step-label {
    font-size: 3.2rem;
  }

  .step-num {
    font-size: 7rem;
  }

  .support__step-circle {
    width: 37rem;
    height: 37rem;
    padding: 6rem 3rem 3rem;
  }

  .support__step-circle h5 {
    font-size: 3rem;
  }

  .support__step-circle h5::after {
    width: 30rem;
  }

  .support__step-circle p {
    font-size: 2rem;
  }

  .support__step-arrow {
    padding-top: 0;
    margin: 1.5rem 0;
    margin-left: 8rem;
  }

  .support__step-arrow img {
    width: 2.4rem;
    transform: rotate(90deg);
  }

  /* price SP */
  .support__price {
    padding: 2rem 5rem;
  }

  .support__price p {
    gap: 1rem;
  }

  .support__price-label {
    font-size: 2.4rem;
  }

  .support__price-val strong {
    font-size: 4.4rem;
  }

  /* trainers SP */
  .support__trainers-intro {
    padding: 4rem 2rem 3rem;
  }

  .support__trainers-ttl {
    font-size: 2.4rem;
  }

  .support__trainers-line {
    width: 100%;
    margin: 1rem auto 3rem;
  }

  .support__trainer-card:nth-of-type(2) {
    flex-direction: row-reverse;
  }

  .support__trainer-card {
    padding: 0;
    gap: 2rem;
  }

  .support__trainer-card:nth-of-type(2) {
    flex-direction: row-reverse;
  }

  .support__trainer-img {
    width: 28rem;
  }

  .support__trainer-info h5 {
    font-size: 3.2rem;
  }

  .support__trainer-info p {
    font-size: 2.2rem;
    line-height: 1.8;
  }

  .support__trainers-note {
    font-size: 2rem;
    line-height: 1.8;
  }
}

/*================================================
* peony_campaign
================================================*/
#peony_cam .pink__bg {
  background: rgb(205 35 111 / 77%);
  margin-top: 10rem;
  padding: 10rem 0;
}

#peony_cam .pink__bg img {
  width: 105rem;
  margin: 0 auto;
}

#peony_cam .pink__bg a {
  width: 28rem;
  margin: 5rem auto;
}

@media screen and (max-width: 767px) {
  #peony_cam .pink__bg {
    padding: 7rem 0;
  }

  #peony_cam .pink__bg picture:nth-of-type(1) img {
    width: 52.7rem;
  }

  #peony_cam .pink__bg picture:nth-of-type(2) img {
    width: 75rem;
  }

  #peony_cam .pink__bg a {
    width: 33rem;
  }
}

/*================================================
* peony_about
================================================*/
#peony_about .blue__bg {
  background: #ecf6fe;
  padding: 10rem 0;
  margin-top: 5rem;
}

.p_about__inner {
  position: relative;
  width: 76rem;
  margin-left: 78rem;
  z-index: 1;
}

.p_about__inner::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/p_about_bg.webp);
  width: 116rem;
  height: 77.3rem;
  top: -5rem;
  left: -54rem;
  z-index: -1;
}

.p_about__inner h2 {
  color: var(--color-white);
  background: #ce737b;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  padding: 0 3rem;
  border-radius: 1000px;
}

.p_about__inner h3 {
  font-size: 3rem;
  margin: 1rem 0 2rem;
}

.p_about__inner h4 {
  font-size: 3.4rem;
  color: #b26367;
}

.p_about__inner p {
  font-size: 2.1rem;
  line-height: 2.5;
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  #peony_about {
    overflow: hidden;
  }

  .p_about__inner {
    width: 100%;
    margin-left: 0;
  }

  .p_about__inner::before {
    width: 106rem;
    height: 70.8rem;
    top: -13rem;
    left: -15rem;
    z-index: -1;
  }

  .p_about__inner h2 {
    font-size: 2.2rem;
    margin: 0 auto 0 46%;
  }

  .p_about__inner h4 {
    font-size: 4.4rem;
    text-align: center;
    margin-left: 25%;
    margin-bottom: 16rem;
  }

  .p_about__inner h3 {
    line-height: 2.6;
    text-align: center;
    margin-left: 25%;
  }

  .p_about__inner p {
    font-size: 2.4rem;
    text-align: center;
  }
}

/*================================================
* p_benefit
================================================*/
#p_benefit {
  padding: 10rem 0;
  background: rgb(215 222 224 / 58%);
}

#p_benefit::before,
#p_benefit::after {
  position: absolute;
  content: "";
  width: 40rem;
  height: 1.6rem;
  background: #ce737b;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

#p_benefit::after {
  top: auto;
  bottom: -1.6rem;
}

.p_benefit__inner {
  width: 108rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.p_benefit__inner::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/p_benefit_bg.webp);
  width: 69.3rem;
  height: 47.8rem;
  top: -5rem;
  right: -8rem;
  z-index: -1;
}

.p_benefit__inner h2 {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  width: 50rem;
  margin-bottom: 3rem;
}

.p_benefit__inner p {
  width: 50rem;
  line-height: 2.4;
}

.p_benefit__inner h3 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-left: 1.5rem;
  margin-top: 10rem;
}

.p_benefit__list {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.p_benefit__list h4 {
  background: #ce737b;
  color: var(--color-white);
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
  border-radius: 10000px;
  letter-spacing: 0.1em;
  padding: 0.8rem 0;
  position: relative;
  margin-bottom: 2rem;
}

.p_benefit__list h4::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/p_benefit_arrow.webp);
  width: 3.8rem;
  height: 2rem;
  bottom: -28%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.p_benefit__list p {
  font-size: 1.9rem;
  width: auto;
  line-height: 2;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .p_benefit__inner {
    width: 100%;
  }

  .p_benefit__inner::before {
    background-image: url(../images/p_benefit_bg_sp.webp);
    width: 73.7rem;
    height: 62.8rem;
    top: 10rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .p_benefit__inner h2 {
    font-size: 3.8rem;
    width: 100%;
    margin-bottom: 54rem;
  }

  .p_benefit__inner p {
    width: 65rem;
    margin: 0 auto;
  }

  .p_benefit__inner h3 {
    font-size: 3.2rem;
    text-align: center;
    margin-top: 5rem;
  }

  .p_benefit__list {
    width: 67rem;
    margin: 2rem auto 0;
    gap: 6rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .p_benefit__list h4 {
    font-size: 2.7rem;
    padding: 0.8rem 0;
    width: 40rem;
    margin: 0 auto 3rem;
  }

  .p_benefit__list p {
    font-size: 2.5rem;
    width: auto;
  }
}

/*================================================
* p_program
================================================*/
#p_program {
  padding-bottom: 10rem;
}

#p_program .p__bg {
  background: #f8f4e1;
  padding: 10rem 0 2rem;
}

.p_program__inner {
  width: 106rem;
  margin: 0 auto;
}

.p_program__inner h2 {
  text-align: center;
  font-size: 2rem;
  padding-bottom: 1rem;
  margin-bottom: 7rem;
  border-bottom: 1px solid;
}

.p_program__inner h2 span {
  font-size: 1.6rem;
  margin-left: 1em;
}

.p_program__list li {
  position: relative;
}

.p_program__list li .p_program__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: start;
  gap: 0 4rem;
}

.p_program__list li > p {
  position: absolute;
  top: 0;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p_program__list li .label {
  font-size: 2.6rem;
  width: 8.4rem;
  aspect-ratio: 1 / 1;
  background: #ce737b;
  display: grid;
  place-content: center;
  border-radius: 1000px;
  top: -0.4em;
  left: 3%;
  color: var(--color-white);
}

.p_program__list h3 {
  font-size: 2.6rem;
  width: 44.8rem;
  text-align: center;
  border: 0.4rem solid;
  border-radius: 1000px;
  margin-bottom: 2rem;
  margin-left: 13rem;
}

.p_program__list h3 span {
  font-size: 2.2rem;
  margin-left: 1em;
}

.p_program__list .p_program__txt div {
  width: 54rem;
}

.p_program__list .p_program__txt div p {
  line-height: 2.4;
  font-feature-settings: "palt";
}

.p_program__list .p_program__txt div p small {
  display: block;
  white-space: nowrap;
  margin-top: 4rem;
}

.p_program__list .p_program__txt div h3 {
  margin-left: 0;
  margin-right: auto;
  margin-top: 6rem;
}

.p_program__list .p_program__txt div strong + h3 {
  margin-top: 0;
}

.p_program__list .p_program__txt div strong {
  margin-top: 6rem;
  color: #cf000e;
  font-size: 3.5rem;
  text-align: center;
  display: block;
  width: 44.8rem;
}

.p_program__list .p_program__txt .p_program__img {
  width: 35rem;
}

.p_program__list .p_program__txt .p_program__img img {
  margin-bottom: 8rem;
}

.p__schedule {
  display: block;
  width: 50rem;
  margin: 6rem auto 0;
}

.p__kuwashiku {
  display: block;
  width: 48rem;
  margin: 6rem auto 0;
}

@media screen and (max-width: 767px) {
  #p_program .p__bg {
    padding: 10rem 0 5rem;
  }

  .p_program__inner h2 {
    font-size: 2.6rem;
    padding-bottom: 1rem;
    margin-bottom: 7rem;
  }

  .p_program__inner h2 span {
    font-size: 2.1rem;
  }

  .p_program__list li:not(:last-child) {
    margin-bottom: 10rem;
  }

  .p_program__list li .label {
    font-size: 2.8rem;
    width: 9.2rem;
  }

  .p_program__list li > p:not(.label) {
    position: static;
    text-align: center;
    margin: 0 auto;
    font-size: 2rem;
  }

  .p_program__inner {
    width: 69rem;
  }

  .p_program__list li .p_program__txt {
    justify-content: center;
  }

  .p_program__list .p_program__txt div {
    width: 60.3rem;
  }

  .p_program__list h3 {
    font-size: 2.8rem;
  }

  .p_program__list .p_program__txt div h3 {
    margin-left: auto;
    font-size: 2.8rem;
  }

  .p_program__list h3.sp__space {
    margin-bottom: 35rem;
  }

  .p_program__list .p_program__txt div h3 span {
    font-size: 2.4rem;
  }

  .p_program__list .p_program__txt div p small {
    white-space: pre-wrap;
    width: 80%;
    margin: 0 auto;
  }

  .p_program__list .p_program__txt div strong {
    margin: 0 auto;
  }

  .p_program__list img {
    position: absolute;
    margin: 0 !important;
    width: 46rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .p_program__list li:first-child img {
    top: 9rem;
  }

  .p_program__list li:nth-child(2) img {
    top: 9rem;
  }

  .p_program__list li:nth-child(2) picture:nth-of-type(2) img {
    top: 96rem;
  }

  .p_program__list li:nth-child(3) img {
    top: 9rem;
  }

  .p_program__list li:nth-child(3) picture:nth-of-type(2) img {
    top: 121rem;
  }
}

/*================================================
* peony_cam02
================================================*/
#peony_cam02 a.p__cam02 {
  width: 54rem;
  margin: 0 auto 3rem;
}

#peony_cam02 p.ac {
  text-align: center;
  font-size: 2.8rem;
  font-family: var(--shuei-m);
  font-weight: bold;
  letter-spacing: 0.1em;
}

#peony_cam02 p a {
  font-size: 3.3rem;
  display: inline-block;
  border-bottom: 0.4rem solid;
}

#peony_cam02 .cp_peony-btn {
  position: absolute;
  width: 16.5vw;
  left: 50%;
  top: 84.5vw;
  transform: translateX(-50%);
}

.peony__flow {
  background: rgb(206 115 123 / 25%);
  margin: 5rem 0 0;
  padding: 3rem 0 4rem;
}

.peony__flow h3 {
  font-family: var(--shuei-m);
  font-size: 2.2rem;
  text-align: center;
  font-weight: bold;
}

.peony__flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.5rem;
  width: 110rem;
  margin: 4rem auto 2rem;
}

.peony__flow ul li {
  position: relative;
  background: var(--color-white);
  border: 0.5rem solid #b9506d;
  padding: 3rem 0 2rem;
  width: 18.3%;
  display: grid;
  place-content: center;
  border-radius: 2rem;
}

.peony__flow ul li h4 {
  position: absolute;
  top: -17%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--din-Condensed);
  background: #b9506d;
  color: var(--color-white);
  font-size: 2.8rem;
  width: 5.5rem;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  border-radius: 1000px;
}

.peony__flow ul li p {
  font-size: 2.4rem;
  text-align: center;
  font-feature-settings: "palt";
  line-height: 1.4;
}

.peony__flow ul li p span {
  color: #b9506d;
  font-weight: bold;
}

.peony__flow ul li p img {
  width: 80%;
  margin: 0 auto;
}

.peony__flow img {
  width: 110rem;
  margin: 5rem auto 4rem;
}

.peony__flow .flex p {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-right: 5rem;
}

.peony__flow .flex p span {
  font-size: 1.6rem;
}

.peony__flow .flex img {
  width: 45.6rem;
  margin: 0;
}

.p_under {
  background: #c45770;
  color: var(--color-white);
  padding: 5rem 0;
  margin-top: -2px;
}

@media screen and (max-width: 767px) {
  .peony__flow ul {
    width: 57.6rem;
    justify-content: space-between;
    gap: 3rem 0;
  }

  .peony__flow ul li {
    width: 32%;
    min-height: 15rem;
  }

  .peony__flow ul li:nth-child(4),
  .peony__flow ul li:nth-child(5) {
    width: 48%;
  }

  .peony__flow .flex img {
    width: 46.8rem;
    margin: 2rem auto;
  }

  .peony__flow .flex p {
    text-align: center;
    margin: 0;
    font-size: 2.5rem;
  }

  .peony__flow .flex p span {
    font-size: 2rem;
  }

  #peony_cam02 a.p__cam02 {
    width: 50rem;
  }

  #peony_cam02 .cp_peony-btn {
    top: 275vw;
    width: 47.5vw;
  }
}

/*================================================
* yogastudio
================================================*/
.yoga__arrow {
  width: 8rem;
  margin: 5rem auto 2rem;
}

#yogastudio h2 {
  font-family: var(--shuei-m);
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  color: #534741;
}

.yogastudio__inner {
  width: 106rem;
  margin: 3rem auto;
}

.yoga__list {
  width: 56rem;
  margin-right: 3rem;
}

.yoga__list li {
  font-family: var(--shuei-m);
  font-size: 2.2rem;
  padding: 0.5rem;
  background: #736357;
  text-align: center;
  color: var(--color-white);
  font-weight: bold;
  border-radius: 1000px;
  margin-top: 1rem;
}

.yogastudio__inner img {
  width: 38rem;
}

.yoga__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: start;
  margin: 5rem 0 8rem;
}

.yoga__point h3 {
  font-family: var(--shuei-m);
  font-feature-settings: "palt";
  font-weight: bold;
  color: #f08000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.yoga__point h3 span {
  font-size: 2.6rem;
  color: var(--color-white);
  width: 5.2rem;
  aspect-ratio: 1 / 1;
  display: grid;
  place-content: center;
  background: rgb(247, 179, 73);
  background: radial-gradient(circle, rgba(247, 179, 73, 1) 0%, rgba(240, 131, 0, 1) 100%);
  border-radius: 1000px;
}

.yoga__point p {
  text-align: center;
  font-size: 2rem;
  font-family: var(--shuei-m);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #yogastudio h2 {
    font-size: 3rem;
  }

  .yogastudio__inner {
    width: 100%;
    margin: 3rem auto;
  }

  .yogastudio__inner img {
    margin: 2rem auto 4rem;
  }

  .yoga__list {
    width: 61rem;
    margin: 0 auto 5rem;
  }

  .yoga__list li {
    font-size: 2.4rem;
  }

  .yoga__point {
    margin: 0 auto;
    justify-content: center;
    gap: 3rem 1rem;
  }

  .yoga__point li {
    width: 33rem;
  }

  .yoga__point h3 {
    margin-bottom: 2rem;
  }

  .yoga__point p {
    font-size: 2.5rem;
  }
}

/*================================================
* price
================================================*/
.yoga__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  background: url(../images/yoga_ttl_bg.webp) no-repeat center/cover;
  height: 100%;
  padding: 3rem 0;
}

.yoga__ttl p {
  font-family: var(--shuei-m);
  font-weight: bold;
  color: var(--color-white);
  font-size: 2.6rem;
  width: 12rem;
  aspect-ratio: 1 / 1;
  display: grid;
  place-content: center;
  border-radius: 1000px;
  margin-right: 4rem;
  background: url(../images/yoga_point.webp) no-repeat center/cover;
}

.yoga__ttl h2 {
  font-weight: bold;
  color: var(--color-white);
  font-size: 2.5rem;
  line-height: 1.4;
}

.yoga__ttl h2 span {
  font-family: var(--shuei-m);
  font-weight: bold;
  color: var(--color-white);
  font-size: 4rem;
  display: block;
}

.yoga_schedule {
  width: 42.6rem;
  margin: 0 auto;
}

.yoga_program__list {
  width: 144rem;
  margin: 0 auto 5rem;
}

.yoga_program__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  background: #f1f0de;
  margin-top: 4rem;
}

.yoga_program__list li:nth-child(even) {
  background: rgb(103 166 107 / 10%);
}

.yoga_program__list li img {
  width: 69rem;
}

.yoga_program__list li div {
  width: 51rem;
}

.yoga_program__list li h4 {
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--shuei-m);
}

.yoga_program__list li h3 {
  font-size: 3.2rem;
  font-weight: bold;
  font-family: var(--shuei-m);
  margin-bottom: 1rem;
}

.yoga_program__list li h3 span {
  color: #c7aa00;
  font-size: 3rem;
}

.yoga_program__list li p {
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .yoga__ttl h2 {
    font-size: 2.3rem;
  }

  .yoga__ttl h2 span {
    font-size: 4.7rem;
  }

  .yoga_program__list {
    width: 100%;
    margin-bottom: 0;
  }

  .yoga_program__list li {
    padding-bottom: 4rem;
  }

  .yoga_program__list li:first-child {
    margin-top: 0;
  }

  .yoga_program__list li img {
    width: 100%;
  }

  .yoga_program__list li div {
    width: 68rem;
    margin: 0 auto;
  }

  .yoga_program__list li h3 {
    text-align: center;
    font-size: 3.8rem;
  }

  .yoga_program__list li h4 {
    font-size: 3rem;
    text-align: center;
  }
}

/*================================================
* yoga_merit
================================================*/

.yoga_merit--bg {
  background: #f8f4e1;
  padding: 10rem 0 0;
}

.yoga_merit--bg h2 {
  width: 85.4rem;
  margin: 0 auto;
}

.yoga_merit__circle {
  width: 114.3rem;
  margin: 5rem auto 10rem;
}

.yoga_merit__circle ul {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  width: 56.2rem;
}

.yoga_merit__circle li {
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  background: url(../images/yoga_circle.svg) no-repeat center/cover;
  height: 100%;
  border-radius: 1000px;
  text-align: center;
}

.yoga_merit__circle li p {
  font-family: var(--shuei-m);
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0;
  font-feature-settings: "palt";
  line-height: 1.43;
}

.yoga_merit__circle li p span {
  display: block;
  font-size: 2rem;
}

.yoga_merit__square {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
  width: 110rem;
  margin: 0 auto;
}

.yoga_merit__square li {
  position: relative;
  border: 1rem solid;
  text-align: center;
  padding: 5rem 0 2rem;
}

.yoga_merit__square li div {
  position: absolute;
  padding: 1rem 2rem;
  background: #f8f4e1;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
}

.yoga_merit__square li img {
  width: 7rem;
  margin: 0 auto;
}

.yoga_merit__square li p {
  font-size: 3.2rem;
  line-height: 1.4;
}

.yoga_merit__square li p small {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

.yoga_merit--bg h3 {
  width: 101.4rem;
  margin: 6rem auto 0;
}

@media screen and (max-width: 767px) {
  .yoga_merit--bg {
    background: var(--color-white);
    padding-top: 1rem;
  }

  .yoga_merit--bg h2 {
    width: 69rem;
  }

  .yoga_merit__circle {
    width: 65rem;
    margin: 5rem auto 10rem;
  }

  .yoga_merit__circle ul {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    width: 32rem;
  }

  .yoga_merit__circle li p {
    font-size: 3.2rem;
  }

  .yoga_merit__circle li p span {
    font-size: 2.3rem;
  }

  .yoga_merit__square {
    width: 96%;
  }

  .yoga_merit--bg h3 {
    width: 68rem;
  }

  .yoga_merit__square {
    gap: 1rem;
    padding-top: 11rem;
  }

  .yoga_merit__square li div {
    background: #fff;
  }

  .yoga_merit__square li img {
    width: 5rem;
  }

  .yoga_merit__square li p {
    font-size: 2.5rem;
  }
}

/*================================================
* lapis_cam
================================================*/
#lapis_cam .yoga__bg p {
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  color: var(--color-white);
  font-family: var(--shuei-m);
  font-weight: bold;
  margin-top: 1rem;
}

#lapis_cam .yoga__bg p a {
  display: inline-block;
  font-size: 3.5rem;
  border-bottom: 0.4rem solid;
}

.lapis__flow {
  background: rgb(240 128 0 / 25%);
  margin: 5rem 0 0;
  padding: 3rem 0 4rem;
}

.lapis__flow h3 {
  font-size: 2.2rem;
  text-align: center;
  font-weight: bold;
}

.lapis__flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.5rem;
  width: 110rem;
  margin: 4rem auto 2rem;
}

.lapis__flow ul li {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2.5rem;
  width: 18.3%;
  display: grid;
  place-content: center;
  border-radius: 2rem;
  background: var(--color-white);
  z-index: 1;
}

.lapis__flow ul li::before,
.lapis__flow ul li::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2rem;
  z-index: -1;
}

.lapis__flow ul li::before {
  background: rgb(242, 150, 0);
  background: linear-gradient(90deg, rgba(242, 150, 0, 1) 0%, rgba(234, 97, 0, 1) 100%);
}

.lapis__flow ul li::after {
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  background: var(--color-white);
  border-radius: 1.8rem;
}

.lapis__flow ul li h4 {
  position: absolute;
  top: -17%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--din-Condensed);
  background: rgb(242, 150, 0);
  background: linear-gradient(90deg, rgba(242, 150, 0, 1) 0%, rgba(234, 97, 0, 1) 100%);
  color: var(--color-white);
  font-size: 2.8rem;
  width: 5.5rem;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  border-radius: 1000px;
}

.lapis__flow ul li p {
  font-size: 2.4rem;
  text-align: center;
  font-feature-settings: "palt";
  line-height: 1.4;
}

.lapis__flow ul li p span {
  color: #e25d09;
}

.lapis__flow ul li p img {
  width: 80%;
  margin: 0 auto;
}

.lapis__flow img {
  width: 110rem;
  margin: 5rem auto 4rem;
}

.lapis__flow .flex p {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-right: 5rem;
}

.lapis__flow .flex p span {
  font-size: 1.6rem;
}

.lapis__flow .flex img {
  width: 45.6rem;
  margin: 0;
}

.l_btn-wrap {
  position: relative;
}

.l_btn-wrap a {
  position: absolute;
  width: 17vw;
  left: 50%;
  transform: translateX(-50%);
  top: 89vw;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .lapis__flow ul {
    width: 57.6rem;
    justify-content: space-between;
    gap: 3rem 0;
  }

  .lapis__flow ul li {
    width: 32%;
    min-height: 15rem;
  }

  .lapis__flow ul li:nth-child(4),
  .lapis__flow ul li:nth-child(5) {
    width: 48%;
  }

  .l_btn-wrap a {
    top: 235vw;
    width: 47.5vw;
  }
}

/*================================================
* faq
================================================*/

.faq__list {
  padding-top: 8rem;
  width: 100rem;
  margin: 0 auto;
}

.faq__item {
  background: var(--color-white);
  margin-bottom: 3rem;
  overflow: hidden;
}

.faq__q {
  display: flex;
  gap: 2rem;
  padding: 2rem 3rem;
  background: var(--color-gray);
}

.faq__q span {
  font-family: var(--din-Condensed);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--color-navy);
}

.faq__q p {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-navy);
  line-height: 1.6;
}

.faq__a {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 3rem 3rem 7rem;
}

.faq__a span {
  font-family: var(--din-Condensed);
  font-size: 4.4rem;
  line-height: 1;
}

.faq__a p {
  font-size: 2rem;
  line-height: 1.8;
}

.faq__a div p {
  font-size: 2rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  #faq {
    padding-bottom: 5rem;
  }

  .faq__list {
    width: 92%;
  }

  .faq__q {
    padding: 2rem;
  }

  .faq__a {
    padding: 2rem;
  }
}

/*================================================
* plan
================================================*/

#plan .hd__txt {
  text-align: center;
  font-size: 1.6rem;
  padding: 3rem 0;
  background: rgb(241 231 212 / 20%);
}

.plan__bg {
  background: rgb(241 231 212 / 20%);
}

#plan picture {
  padding: 5rem 0;
  display: block;
  max-width: 100rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #plan .hd__txt {
    font-size: 2rem;
  }

  #plan picture {
    max-width: 92%;
    margin: 0 auto;
  }
}

/*================================================
* access
================================================*/
.acc__inner {
  max-width: 100rem;
  margin: 0 auto;
}

.acc__top {
  padding: 10rem 0 5rem;
}

.acc__logo {
  width: 75rem;
  margin: 0 auto 5rem;
}

.acc__info {
  display: flex;
  justify-content: center;
  gap: 6rem;
}

.acc__name-wrap {
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
}

.acc__txt {
  font-size: 2.2rem;
  font-weight: 500;
}

.acc__name {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
}

.acc__address-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.acc__address {
  font-size: 2.4rem;
  line-height: 1.4;
}

.acc__parking {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
}

.acc__access {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  font-size: 2rem;
  line-height: 1.4;
}

.acc__access div {
  display: flex;
  gap: 10rem;
}

.acc__access div dt {
  flex-shrink: 0;
}

.acc__access div dd {
  font-size: 2rem;
  line-height: 1.8;
  text-align: justify;
  flex-grow: 1;
}

.acc__under {
  width: 90rem;
  margin: 5rem auto;
  display: flex;
}

.acc__label {
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--color-black);
}

.acc__desc {
  flex-grow: 1;
  padding: 3rem;
  border: 1px solid var(--color-black);
  border-left: none;
}

.acc__map {
  background: #f8f4e1;
}

.acc__map iframe {
  display: block;
  width: 100%;
  height: 45rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .acc__inner {
    max-width: 92%;
    margin: 0 auto;
  }

  .acc__logo {
    width: 60rem;
  }

  .acc__info {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .acc__name-wrap {
    padding-left: 0;
  }

  .acc__access {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    font-size: 2rem;
    line-height: 1.4;
  }

  .acc__access div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .acc__access div dt {
    flex-shrink: 0;
    font-size: 2.4rem;
  }

  .acc__access div dd {
    font-size: 2.2rem;
    line-height: 1.8;
    text-align: justify;
    flex-grow: 1;
  }

  .acc__under {
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid var(--color-black);
  }

  .acc__label {
    padding: 0;
    text-align: center;
    font-size: 2rem;

    border: none;
  }

  .acc__label .sp {
    display: inline;
  }

  .acc__desc {
    flex-grow: 1;
    padding: 0;
    border: none;
    font-size: 2rem;
    line-height: 1.5;
  }
  .acc__map iframe {
    width: 100%;
    height: 42rem;
    margin-bottom: 3rem;
  }
}

/*================================================
 *  footer
 ================================================*/
footer p {
  padding: 3rem 0;
}

footer div {
  background: #004097;
  color: var(--color-white);
  text-align: center;
  padding: 4rem 0;
  margin-bottom: 10rem;
}

footer a {
  display: inline-block;
  margin: 0 1rem;
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  footer p {
    font-size: 2rem;
  }

  footer div {
    margin-bottom: 15rem;
  }
}

/*================================================
 *  introduce
 ================================================*/

#introduce {
  /* background: url(../../assets/images/introduce/introduce_bg.jpg) no-repeat center/cover; */
  height: 100%;
  padding-bottom: 10rem;
}

#introduce img {
  margin: 0 auto;
}

.introduce__btn {
  position: relative;
}

#introduce .shoukai,
#introduce .touroku {
  width: 40rem;
  position: absolute;
  bottom: 26rem;
  left: 29%;
}

#introduce .touroku {
  left: 56%;
}

#introduce .shoukai img,
#introduce .touroku img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  #introduce {
    margin-top: 5rem;
  }

  #introduce .shoukai,
  #introduce .touroku {
    width: 31rem;
    bottom: 14rem;
    left: 5%;
  }

  #introduce .touroku {
    left: 54%;
  }
}
