@charset "UTF-8";

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

  /* --din-2014: "din-2014-narrow", sans-serif; */


  /* --din-Condensed: "din-condensed", sans-serif;
  --rodin: "fot-rodin-pron", sans-serif; */

  --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 .4s;
  display: block;
}

a:hover {
  opacity: .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;
}

.nav__top a {
  width: 38.2rem;
  margin: 0 auto;
}

.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 a {
    width: 38rem;
  }

  .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 .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 .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 .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 .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 0 0 10rem 0;
    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 {
    width: 55rem;
    margin: 5rem auto;
  }
}

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

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

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

}

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;
  }

}

/*================================================
 *  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 {
    gap: 0 15rem;
  }

  .mv__btn ul li {
    width: 22.3rem;
  }

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

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

  .mv_red {
    width: 20.6rem;
    right: 9%;
  }
}

/*================================================
* about
================================================*/
.about__inner {
  position: relative;
  background: url(../images/about_bg.webp) no-repeat center bottom/cover;
  color: var(--color-white);
  height: 100%;
  min-height: 91.5rem;
}

.about__inner h3 {
  font-size: 2rem;
  padding: 1rem 0;
}

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

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

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


@media screen and (max-width:767px) {
  #about h2 {
    display: none;
  }

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

  .about__inner h3 {
    background: transparent;
    font-size: 2.5rem;
  }

  .about__inner h3 span {
    font-size: 3.6rem;
  }

  .about__inner h4 {
    text-align: center;
    font-size: 3.8rem;
  }

  .about__txt {
    width: 60.8rem;
    margin: 0 auto;
  }

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

  .about__txt img {
    width: 47.2rem;
    margin: 0 auto;
  }
}

/*================================================
* features
================================================*/
.features__inner {
  position: relative;
  background: url(../images/features_bg.webp) no-repeat center top/cover;
  height: 100%;
  padding-bottom: 20rem;
}

.features__inner ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 45rem;
}

.features__inner ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: start;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: bold;
  gap: 2.5rem;
  margin-top: 7rem;
}

.features__inner ul li h5 {
  color: var(--color-red);
  font-size: 10rem;
  font-family: var(--din-Condensed);
  font-weight: 400;
}

.features__inner ul li h4 {
  font-size: 3.6rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 70rem;
  border-bottom: 0.2rem solid var(--color-black);
  line-height: 1;
  padding-left: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}

.features__inner ul li h4 img {
  width: 13.5rem;
}

.features__inner ul li:nth-child(4) h4 img {
  width: 9rem;
}

.features__inner ul li:nth-child(5) h4 img {
  width: 11.7rem;
}

.features__inner ul li p {
  font-size: 2.2rem;
  padding-left: 1rem;
}

.features__inner ul li p small {
  font-size: 1em;
}

.features__inner ul li p span,
.features__inner ul li p strong {
  font-size: 2.4rem;
  color: var(--color-red);
}

.features__inner ul li p strong {
  font-size: 3.2rem;
}

@media screen and (max-width:767px) {
  #features h2 {
    display: none;
  }

  .features__inner {
    background: url(../images/features_bg_sp.webp) no-repeat center top/cover;
    padding-bottom: 6rem;
  }

  .features__inner ul {
    margin: 0;
    width: 94%;
    margin: 0 auto;
  }

  .features__inner ul li {
    position: relative;
    margin-top: 9rem;
  }

  .features__inner ul li:nth-child(2) {
    margin-top: 40rem;
  }

  .features__inner ul li:nth-child(3) {
    margin-top: 11rem;
  }

  .features__inner ul li:nth-child(3) small {
    margin-top: 3rem;
  }

  .features__inner ul li:nth-child(4) {
    margin-top: 8rem;
  }

  .features__inner ul li:nth-child(4) p {
    padding-left: 34rem;
  }

  .features__inner ul li:nth-child(4) small {
    margin-top: 3rem;
    padding-left: 5rem
  }

  .features__inner ul li:nth-child(5) p {
    padding-left: 1rem;
  }

  .features__inner ul li:nth-child(5) small {
    padding-left: 35rem;
    padding-top: 17rem;

  }

  .features__inner ul li h5 {
    position: absolute;
    top: -6rem;
    left: 0;
  }

  .features__inner ul li:nth-child(4) h5,
  .features__inner ul li:nth-child(5) h5 {
    top: -2rem;
  }

  .features__inner ul li h4 {
    font-size: 3rem;
    padding-left: 10rem;
    margin-bottom: 2rem;
  }

  .features__inner ul li h4 img {
    width: 14rem;
  }

  .features__inner ul li:nth-child(4) h4 img {
    width: 8rem;
  }

  .features__inner ul li:nth-child(5) h4 img {
    width: 10.8rem;
  }

  .features__inner ul li p {
    font-size: 2.6rem;
    padding-left: 8rem;

  }

  .features__inner ul li p span,
  .features__inner ul li p strong {
    font-size: 2.6rem;
  }

  .features__inner ul li p small {
    font-size: 2.4rem;
    font-weight: 400;
    display: inline-block;
  }
}


/*================================================
* 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;
}

@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;
  }
}

/*================================================
* 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__inner {
  background: url(../images/facility_bg.webp) no-repeat center top/cover;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 130rem;
}

.facility__inner h4 {
  text-align: center;
  font-size: 4.2rem;
  font-weight: bold;
}

.facility__inner p {
  text-align: center;
  font-size: 2.4rem;
  margin: 3rem 0 0;
}

#facility p.ac {
  font-size: 3rem;
  padding: 2rem 0 0;
}

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

/*================================================
* free
================================================*/
.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 {
  border: 1px solid var(--color-black);
  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;
  }
}

/*================================================
* support
================================================*/
#support .bg {
  background: #E6E6E6;
  padding-bottom: 10rem;
}

#support h4 {
  font-family: var(--source-han-sans);
  text-align: center;
  font-size: 5.3rem;
  font-weight: 900;
  margin: 5rem 0;
}

.support__flow {
  gap: 2rem;
}

#support p {
  text-align: center;
  font-size: 2.4rem;
  line-height: 2;
  font-weight: 500;
  margin: 5rem 0;
}

.support__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}

/* .support__item img {
  width: auto;
  height: 10rem;
} */
.support__item h6 {
  font-size: 2.7rem;
  color: #004097;
  text-align: center;
  line-height: 1;
}

.support__item h6 span {
  font-family: var(--din-Condensed);
  font-size: 5.5rem;
  letter-spacing: 0.1em;
}

.support__item h6 img {
  width: 10.6rem;
  margin: 0 auto 1rem;
}


.support__item div {
  width: 31.2em;
  aspect-ratio: 1/1;
  text-align: center;
  background: var(--color-white);
  border: 0.7rem solid #004097;
  border-radius: 10000px;
  display: grid;
  place-content: center;
}

.support__item div h5 {
  font-size: 3rem;
  color: #004097;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #004097;
  line-height: 1.4;
  font-weight: bold;
}

#support .support__item div p {
  font-size: 2rem;
  margin: 0;
  line-height: 1.5;
}

@media screen and (max-width:767px) {
  #support h4 {
    margin: 5rem 0;
  }

  #support p {
    font-size: 2.5rem;
    font-feature-settings: "palt";
  }

  .support__flow {
    justify-content: space-between;
    align-items: end;
    padding: 0 1rem;
    position: relative;
  }

  .support__item {
    flex-direction: column;
    gap: 1rem;
  }

  .support__item div {
    width: 31rem;
  }

  .support__item:nth-of-type(2) h6 {
    margin-bottom: 2rem;
  }

  .support__item h6 img {
    position: absolute;
    width: 5.4rem;
    top: 25rem;
    left: 50%;
    transform: translateX(-50%);
  }

  #support .support__item div p {
    font-size: 2.2rem;
  }
}

/*================================================
* 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 .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 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;
  }

}

/*================================================
* peony_cam02
================================================*/
#peony_cam02 a.p__cam02 {
  width: 54rem;
  margin: 5rem 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 #B9506D;
}


.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;
}

@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;
  }
}

/*================================================
* access
================================================*/


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

/*================================================
* price
================================================*/

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

/*================================================
* 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>.flex {}

  .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;
}

@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%;
  }
}

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

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

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

/*================================================
* access
================================================*/
.acc__top {
  padding: 10rem 0 5rem;
}

.acc__top ul {
  width: 53rem;
  line-height: 1.4;
}

.acc__top ul li {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.acc__top ul li:nth-child(1) {
  margin-bottom: 0;
}

.acc__top ul li:nth-child(2) {
  font-size: 4rem;
  font-weight: bold;
  font-feature-settings: "palt";
}

.acc__top ul li:nth-child(3) {
  font-size: 2.4rem;
  margin-bottom: 4rem;
}

.acc__top ul li:nth-child(4) {
  color: #004097;
}

.acc__top ul li:nth-child(5) p {
  font-size: 2.3rem;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
}

.acc__top ul li:nth-child(5) p:nth-of-type(2) {
  border: 1px solid;
  border-radius: 0.7rem;
  padding: 0 2rem;
  margin-left: 2rem;
  font-weight: 500;
}

.acc__top ul li:nth-child(5) img {
  width: 5.5rem;
  margin-right: 2rem;
}

.acc__top .acc__img {
  width: 55rem;
}

#access h4 {
  width: 86rem;
  margin: 0 auto 5rem;
}

.acc__under {
  text-align: center;
  margin-bottom: 5rem;
}

.acc__under p {
  font-size: 2.2rem;
}

.acc__map {
  background: #F8F4E1;
}

.acc__map iframe {
  display: block;
  width: 132rem;
  height: 51.4rem;
  margin: 0 auto;
}

@media screen and (max-width:767px) {
  .acc__top {
    padding: 10rem 0 1rem;
  }

  .acc__top .acc__img {
    width: 69rem;
    margin-bottom: 3rem;
  }

  .acc__top ul {
    width: 100%;
  }

  .acc__top ul li {
    font-size: 2.4rem;
    text-align: center;
  }

  .acc__top ul li:nth-child(2) {
    font-size: 4.4rem;
  }

  .acc__top ul li:nth-child(3) {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .acc__top ul li:nth-child(4) {
    font-size: 2.9rem;
  }

  .acc__top ul li:nth-child(5) {
    justify-content: center;
    gap: 1rem;
  }

  .acc__top ul li:nth-child(5) img {
    width: 7rem;
  }

  .acc__top ul li:nth-child(5) p {
    font-size: 3.2rem;
  }

  .acc__top ul li:nth-child(6) {
    color: #004097;
    font-weight: bold;
    font-size: 5rem;
    font-family: var(--source-han-sans);
  }

  .acc__under p {
    font-size: 2.2rem;
  }

  #access h4 {
    width: 53rem;
    margin: 0 auto 5rem;
  }

  .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: 16rem;
    left: 8%;
  }

  #introduce .touroku {
    left: 54%;
  }

}