@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;

  --noto: "Noto Sans JP", sans-serif;
  --din: "Oswald", sans-serif;

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



/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1440>> 10px */
  font-size: 0.6944444vw;

  font-size: clamp(6px, 0.52vw, 10px);
  scroll-behavior: smooth;
}

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

.wrap {
  width: 110rem;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: all .4s;
}

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

  .wrap {
    width: 69rem;

  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 5rem;
}


.section {
  padding-top: 3rem;
}

.dot_bg {
  display: block;
  width: 47rem;
  position: absolute;
  left: 1rem;
  top: 1rem;
}

.dot_bg.under {
  left: auto;
  top: auto;
  right: 1rem;
  bottom: 1rem;
}

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



.nav_left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.nav_left .nav_logo {
  width: 78rem;
  display: block;
}

.nav_left .nav_web {
  width: 23rem;
  display: block;
}

.nav_right ul li {
  width: 23rem;
}


.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  width: 10rem;
  height: 10rem;
  cursor: pointer;
  z-index: 300;
  transition: all .1s ease-out;
  background: #C1272D;
}

.hamburger::after {
  position: absolute;
  content: "MENU";
  color: var(--color-white);
  font-size: 2rem;
  font-family: var(--din);
  left: 50%;
  transform: translateX(-50%);
  top: 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.15rem;
  background-color: var(--color-white);
  transition: all .4s ease-out;
  transform: translateX(-50%);
}

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

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

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

/* line close */
.open_nav .hamburger__line--1 {
  transform: translateX(-50%) rotate(45deg);
  top: 50%;
}

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

.open_nav .hamburger__line--3 {
  transform: translateX(-50%) rotate(-45deg);
  top: 50%;
}

/* ハンバーガーメニュー内 */
nav.global__nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-black);
  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;
  position: relative;
}


nav.gnav.global__nav ul li {
  width: 100%;
}

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

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

.nav_right ul li a span {
  display: block;
  margin-right: auto;
  font-family: var(--din);
  font-size: 4rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  font-weight: 100;
  font-weight: 400;
}


nav.gnav.global__nav ul li.sp_logo {
  width: 100%;
  background: var(--color-white);
  height: 10rem;
  padding: 1rem 0 0 10rem;
}

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

nav.gnav.global__nav ul li.sp_contact {
  border: none;
  padding-top: 2rem;
}

nav.gnav.global__nav ul li.sp_web {
  border: none;
  padding-top: 6rem;
}

.nav_right ul .sp_contact a {
  width: 60%;
  margin: 0rem auto;
}


nav.gnav.global__nav ul li.sp_tel a {
  justify-content: center;
  text-align: center;
  font-size: 7rem;
  font-family: var(--din);
  width: 100%;
  justify-items: center;
}


nav.gnav.global__nav .sp_btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  margin: 0 auto;
}

nav.gnav.global__nav .sp_btn li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  border: none;
  padding: 0;
  margin: 0;
}

nav.gnav.global__nav .sp_btn li a {
  padding: 1rem 1.4rem;
  border-radius: 1000px;
  border: 1px solid var(--color-white);
}

nav.gnav.global__nav .sp_btn li:last-child {
  width: 100%;
  text-align: center;
  color: var(--color-white);
  margin-top: 4rem;
}



@media screen and (max-width:767px) {
  header {
    padding: 1rem 0 0 10rem;
    background: var(--color-white);
    height: 10rem;
  }

  .nav_inner {
    justify-content: start;
  }

  .nav_left .nav_logo {
    width: 48rem;
  }

  .nav_left .nav_web {
    display: none;
  }

}

/*================================================
 *  banner
 ================================================*/
#fix_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--color-black);
  padding: 2rem 0 2rem;

  display: none;
}

#fix_btn a {
  width: 30rem;
}

@media screen and (max-width:767px) {
  #fix_btn {
    display: flex;
  }

  #fix_btn a {
    width: 30rem;
  }
}


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

main {
  margin-top: -4rem;
  overflow: hidden;
}

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

  }
}


/*================================================
* mv
================================================*/
#mv {
  z-index: 4;
}

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

/*================================================
* cp
================================================*/
.cpArea {
  padding: 20rem 0 15rem;

}

.cpArea::before {
  position: absolute;
  content: "";
  background: url(../images/cp_bg.png) no-repeat center top/cover;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
}

.cpArea::after {
  position: absolute;
  content: "";
  background: url(../images/cp_bg-r.png) no-repeat center top/cover;
  width: 100%;
  height: 100%;
  z-index: 6;
  top: 0;
  left: 0;
}

#cp {
  margin-top: -33rem;
}

.cpArea .wrap {
  position: relative;
  z-index: 7;
}

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

  .cpArea::before {
    background: url(../images/cp_bg_sp.png) no-repeat center top/cover;
  }

  .cpArea::after {
    background: url(../images/cp_bg-r_sp.png) no-repeat center top/cover;
  }

  .cpArea .wrap {
    width: 100%;
  }

  #cp {
    margin-top: -15rem;
  }
}

/*================================================
* renewal
================================================*/

.renewal_list.pc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.renewal_list li {
  width: 20.4rem;
  position: relative;
}

.renewal_list li p {
  position: absolute;
  text-align: center;
  font-size: 2rem;
  line-height: 1.2;
  top: 13rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #1A1A1A;
}

#renewal h3 {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  margin: 6rem 0 10rem;
}

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

  .renewal_list.sp {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
  }

  .renewal_list li {
    width: 21rem;
  }
}

/*================================================
*  machine
================================================*/
.koko_hd h2 {
  font-size: 6.8rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}

.koko_hd h2 span {
  font-size: 5.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--color-white);
  padding: 0.3rem 4rem;
  margin: 3rem auto 0;
  display: block;
  font-family: var(--din);
}


#machine h2 {
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}

#machine h2 span {
  display: block;
  font-family: var(--din);
  z-index: 1;
  position: relative;
}



.machine_intro {
  padding: 10rem 0 0;
  background: var(--color-black);
}


.machine_ttl {
  background: var(--color-black);
}

.machine_ttl h2 {
  font-size: 1.8rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1rem;
  width: 100%;
}

.machine_ttl h2 span {
  font-size: 5.2rem;
  border: none;
  margin: 0 auto 0;
}


.machine_inner {
  padding: 6rem 0 0;
}

.machine_inner h3 {
  text-align: center;
  margin-bottom: 3rem;
}

.machine_inner h3 small.pc {
  display: inline-block;
}

.machine_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.machine_list.pc {
  display: flex;
}

.machine_list.sp {
  display: none;
}

.machine_list li {
  width: 16rem;
}

.machine_list li p {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 1rem;
  font-feature-settings: "palt";
  letter-spacing: -0.1em;
}


.machine_inner .fit {
  max-width: 96rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
  font-size: 1.8rem;
  line-height: 2;

}

.machine_inner .bg_txt {
  color: var(--color-white);
  background: #D61518;
  background: linear-gradient(90deg, rgba(214, 21, 24, 1) 0%, rgba(145, 29, 34, 1) 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  font-size: 2.6rem;
  margin: 2rem auto;
}

.machine_inner .bg_txt.l {
  font-size: 4.4rem;
}

.machine_inner h4 {
  text-align: center;
  font-size: 2.8rem;
  margin: 4rem 0;
  line-height: 1.6;
}

/* free */
.free .machine_ttl h2 {
  position: static;
  transform: translateX(0);
}

.free .machine_ttl img {
  margin-top: 2rem;
}

/* beginner */
.beginner .machine_inner {
  padding-top: 0;
  margin-top: -4rem;
  z-index: 1;
  position: relative;
}

.beginner .beginner_ill {
  width: 8rem;
  position: absolute;
  top: 10rem;
  right: 8rem;
}

/* cardio */
.cardio .bg_txt-wrap {
  padding-top: 0;
  z-index: 1;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -14rem auto 0;
}

.cardio .machine_inner .bg_txt {
  font-size: 3.6rem;
  margin-left: 0;
  margin-right: 0;
}

.cardio .machine_inner .bg_txt.l {
  font-size: 5.8rem;
}

.cardio .machine_list li:last-child p {
  white-space: nowrap;
}

.cardio .disc {
  margin-top: 10rem;
}

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

  .koko_hd h2 span {
    padding: 1rem 3rem;
  }

  .free .machine_ttl img {
    margin-top: -14rem;
  }

  .machine_inner {
    width: 74rem;
    padding: 3rem 0 0;
  }

  .machine_list {
    flex-wrap: wrap;
    gap: 0;
  }

  .machine_list.sp {
    display: flex;
  }

  .machine_list.pc {
    display: none;
  }

  .machine_list li {
    width: 18rem;
  }

  .machine_list li p {
    font-size: 1.6rem;
  }

  .machine_inner h3 {
    text-align: left;
    font-size: 2.2rem;
    padding-left: 5rem;
  }

  .machine_inner h3 small.pc {
    display: none;
  }

  .machine_inner small.sp {
    margin-top: 3rem;
  }

  .machine_inner .fit {
    width: 56rem;
    font-size: 2.4rem;
  }


  .beginner .bg_txt {
    margin: 0.5rem 0;
  }

  .beginner .bg_txt.l {
    margin: 0.5rem 0;
  }

  .beginner .bg_txt-wrap {
    margin-left: 4rem;
  }

  .beginner .machine_inner .fit {
    margin-left: 4rem;
  }

  .cardio .machine_inner .fit {
    width: 66rem;
  }
}

/*================================================
* tanita
================================================*/
#tanita {
  background: var(--color-black);
  padding-bottom: 10rem;
  z-index: 1;
}


.tanita_txt_bg {
  width: 81.8rem;
  position: absolute;
  right: -31rem;
  top: -25rem;
  z-index: -1;
}

.tanita_txt-top {
  width: 65rem;
  margin: 10rem auto 23rem;
  position: relative;
}

.tanita_txt-under {
  background: var(--color-white);
  padding: 6rem 3rem 6rem;
  border-radius: 2rem;
  position: relative;
}

.tanita_circle {
  position: absolute;
  top: 0;
  left: 1rem;
  width: 28rem;
  top: -24rem;
}

.tanita_txt-under h3 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
}

.tanita_img_under {
  width: 26rem;
  margin: 5rem auto 2rem;
}

.tanita_txt-under h4 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 6rem;
}

.tanita_txt-under h4 img {
  display: block;
  width: 6rem;
  margin: 0 auto 1rem;
}

.tanita_txt-under h5 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  width: 80rem;
  margin: 0 auto;
  position: relative;
  font-feature-settings: "palt";
  padding-bottom: 8rem;
}

.tanita_txt-under h5::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/tanita_under-fuki.png);
  width: 100%;
  height: 6rem;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.tanita_under-txt {
  width: 77rem;
  margin: -3rem auto 0;
}

@media screen and (max-width:767px) {
  .tanita_txt-top {
    width: 45rem;
    margin: 6rem auto 26rem 2rem;
  }

  .tanita_txt_bg {
    width: 53rem;
    right: -1rem;
    top: -12rem;
  }

  .tanita_txt-under h4 {
    font-size: 2.5rem;
  }

  .tanita_txt-under h4 img {
    display: inline-block;
    word-wrap: 6rem;
    margin: 0 auto 0;
    vertical-align: bottom;
  }

  .tanita_txt-under h5 {
    width: 55rem;
    padding-bottom: 8rem;
  }

  .tanita_under-txt {
    width: 100%;
    margin: -1rem auto 0;
  }
}

/*================================================
* merit
================================================*/
#merit {
  background: #C3181F;
}

.merit_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.merit_list li {
  width: 54rem;
}

.merit_list li:nth-child(2),
.merit_list li:nth-child(4) {
  margin-top: 14rem;
}

.merit_list li:nth-child(3) {
  margin-top: -22rem;
}

.merit_list li:nth-child(5) {
  margin-top: -30rem;
}


.merit_under {
  width: 90rem;
  margin: 0 auto;
}

.merit_under a {
  width: 41rem;
  margin: 4rem auto;
  display: block;
}

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

  .merit_list li:nth-child(2),
  .merit_list li:nth-child(4) {
    margin-top: 6rem;
  }

  .merit_list li:nth-child(3) {
    margin-top: 6rem;
  }

  .merit_list li:nth-child(5) {
    margin-top: 6rem;
  }

  .merit_under {
    width: 70rem;
    margin: 5rem auto;
  }

  .merit_under a {
    width: 36rem;
  }
}

/*================================================
* program
================================================*/
#program {
  padding-top: 10rem;
}

#program .wrap {
  width: 127rem;
}

#program h2 {
  text-align: center;
  font-size: 4.9rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

#program h2 span {
  font-family: var(--din);
  font-size: 3.7rem;
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--color-black);
  border-radius: 1000px;
  margin: 0 2rem;
  line-height: 1;
  font-weight: 400;
}

#program h3 {
  width: 104rem;
  margin: 0 auto 3rem;
}

#program .lead {
  text-align: center;
  font-size: 2.2rem;
  line-height: 2;
  margin-bottom: 6rem;
}

.program_list {
  display: grid;
  gap: 10rem 2rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  font-size: 2.7rem;
}

.program_list li>img {
  margin: 2rem 0;
}

.program_list p {
  font-size: 1.8rem;
}

.program_list span img {
  width: auto;
  max-width: unset;
  height: 5rem;
  margin: 0 auto;
  display: block;
}

#program h4 {
  text-align: center;
  font-size: 3.3rem;
  font-weight: 700;
  margin: 10rem 0 3rem;
}

#program .sup {
  font-size: 1.6rem;
  margin: 5rem auto 10rem;
  text-align: center;
}

@media screen and (max-width:767px) {
  #program .wrap {
    width: 67rem;
  }

  #program h3 {
    width: 100%;
    margin: 0 auto 3rem;
  }

  .program_list {
    gap: 6rem 2rem;
    grid-template-columns: repeat(1, 1fr);
    font-size: 3rem;
    margin-bottom: 10rem;
  }

  #program .lead {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 6rem;
  }

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

  #program .sup {
    display: none;
  }
}

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

#price {
  background: var(--color-black);
}

#price h3 {
  text-align: center;
  font-size: 3.6rem;
  color: var(--color-white);
  font-weight: 700;
  margin-top: 3rem;
}

#price h3 img {
  display: inline-block;
  width: 7.6rem;
  margin-right: 1rem;
}


#price .wrap {
  width: 144rem;
  background: #F5F2EC;
  padding: 4rem 0;
  margin-top: 5rem;
}

#price .wrap .inner {
  width: 115rem;
  margin: 0 auto;
}

#price .wrap .inner .lead {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 6rem;
}


.price_list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.price_list li {
  background: var(--color-white);
  padding: 2rem;
  border: 1px solid #4D4D4D;
}

.price_list h4 {
  font-size: 3.7rem;
  color: var(--color-white);
  background: #333;
  border-radius: 1rem;
  padding: 0.2rem 0;
  text-align: center;
  letter-spacing: 0.1em;
}


.price_list li .num {
  display: flex;
  align-items: end;
  justify-content: center;
  margin: 3rem 0 2rem;
  line-height: 1;
  gap: 2rem;
  caret-color: #333333;
}

.price_list li .num span {
  font-size: 2.2rem;
  display: inline-block;
  padding: 0.5rem 1rem 0.7rem;
  border: 1px solid;
  border-radius: 10000px;

}

.price_list li .num div {
  font-weight: 400;
  font-size: 7.1rem;
  font-family: var(--din);
}

.price_list li .num div small {
  font-size: 4.5rem;
}

.price_list li p {
  line-height: 1.4;
  font-size: 1.8rem;
  margin: 1rem auto 0;
  color: #4D4D4D;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#price h5 {
  text-align: center;
  margin-top: 7rem;
}

.price_list02 {
  width: 107rem;
  margin: 2rem auto 0;
}

/* .price_list03 {
  width: 52.5rem;
  margin: 2rem auto 0;
  grid-template-columns: repeat(1, 1fr);
} */

.price_list02 li .num {
  margin-top: 0;
  margin-bottom: 0;
}

.price_list02 li .num strong {
  font-size: 3.1rem;
  font-weight: 500;
}

.price_list02 img {
  width: auto;
  max-width: unset;
  height: 9.4rem;
}

.price_card {
  width: 86rem;
  margin: 6rem auto 3rem;
}

@media screen and (max-width:767px) {
  #price .wrap {
    width: 100%;
    background: #F5F2EC;
    padding: 4rem 0;
    margin-top: 5rem;
  }

  #price .wrap .inner,
  .price_list02,
  .price_list03 {
    width: 66rem;
    margin: 0 auto;
  }

  .price_list {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .price_list li .num {
    font-size: 2.4rem;
    gap: 4rem;
  }

  .price_list li .num div {
    font-size: 8.3rem;
  }

  .price_list li .num div small {
    font-size: 5.3rem;
  }

  .price_list li .num span {
    font-size: 2.6rem;
  }

  .price_list li p {
    font-size: 2rem;
  }

  #price h5 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  .price_list02 li .num strong {
    font-size: 3.5rem;
  }

  .price_list02 img {
    height: 8.8rem;
  }

  .price_card {
    width: 100%;
  }
}

/*================================================
* qa
================================================*/
#qa {
  margin-top: 10rem;
}

#qa h2 {
  background: #434F56;
  color: var(--color-white);
  font-size: 2.4rem;
  padding: 2rem 0;
  text-align: center;
}

#qa h2 span {
  font-size: 6.2rem;
  font-family: var(--din);
  font-weight: 400;
  letter-spacing: 0.2em;
}


#qa .ac {
  margin: 5rem auto;
  font-size: 2.2rem;
}

#qa li {
  margin-top: 5rem;
}

#qa li div {
  padding: 2rem 2rem 2rem 6rem;
  position: relative;
}

#qa li div span {
  font-family: var(--din);
  font-size: 4.4rem;
  position: absolute;
  top: -0.6rem;
  left: 2rem;
}

#qa li .q {
  color: var(--color-white);
  background: linear-gradient(90deg, rgba(214, 21, 24, 1) 0%, rgba(145, 29, 34, 1) 100%);
}

#qa li .a {
  background: url(../images/qa_bg.jpg) no-repeat center top/cover;
  padding: 2rem 2rem 2rem 10rem;
  font-size: 1.9rem;
}

#qa li .a span {
  color: #D72621;
  left: 6rem;
  top: 0.4rem;
}

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

  #qa h2 span {
    font-size: 8rem;
  }

  #qa .ac {
    font-size: 3rem;
  }

  #qa li .q {
    font-size: 2.5rem;
  }

  #qa li .a {
    font-size: 2.4rem;
  }

  #qa li div span {
    font-size: 5.5rem;
  }

  #qa li div {
    padding: 2rem 2rem 2rem 7rem;
  }

  #qa li .a span {
    left: 5rem;
  }
}

/*================================================
* access
================================================*/
#access {
  background: var(--color-black);
  color: var(--color-white);
  padding-bottom: 0;
}

#access h2 {
  text-align: center;
  font-size: 5.5rem;
  font-family: var(--din);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 6rem;
}

.acc_logo {
  width: 60rem;
  margin: 0 auto;
}


#access .inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 4rem 0;
  align-items: center;
}

#access .inner img {
  width: 28rem;
}

#access .inner p {
  line-height: 2;
  margin: 0rem 0;
}

#access .map {
  background: var(--color-white);
}

#access .map iframe {
  display: block;
  width: 170rem;
  height: 60rem;
  margin: 0 auto;
}

#access .meta {
  margin-top: 2rem;
}

.acc_tel {
  font-size: 2.8rem;
  font-family: var(--din);
}

@media screen and (max-width:767px) {
  #access .inner {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 4rem auto;
    align-items: center;
    position: relative;
    padding-bottom: 14rem;
  }

  #access .inner p {
    font-size: 2.6rem;
  }

  #access .inner small {
    font-size: 2rem;
  }

  #access .meta {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 0rem;
    transform: translateX(-50%);
    text-align: center;
    font-size: 2.5rem;
  }

  .acc_tel {
    font-size: 3rem;
  }
}


/*================================================
 *  footer
 ================================================*/
footer {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: 6rem 0;
  font-size: 2.3rem;
}

footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

footer ul li a {
  padding: 1rem 2rem;
  border: 1px solid var(--color-white);
  border-radius: 1000px;
  display: block;
  font-size: 2rem;
}

footer .copy {
  margin-top: 2rem;
  font-size: 1.9rem;
}

.ft_contact {
  width: 26rem;
  margin: 3rem auto;
}



@media screen and (max-width:767px) {
  footer {
    margin-bottom: 10rem;
  }

  .ft_contact,
  footer ul {
    display: none;
  }

}

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

.fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s;
}

.fadeUp.started {
  opacity: 1;
  transform: translateY(0px);
}



/* zoom */
.zoom {
  opacity: 0;
  -webkit-transform: scale(0) translateY(1rem) rotate(20deg);
  transform: scale(0) translateY(1rem) rotate(20deg);
  will-change: opacity, transform;
}

.zoom.started {
  -webkit-transition: .8s .4s cubic-bezier(0.34, 1.63, 0.64, 1);
  transition: .8s .4s cubic-bezier(0.34, 1.63, 0.64, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  opacity: 1;
  -webkit-transform: scale(1) translateY(0) rotate(0);
  transform: scale(1) translateY(0) rotate(0);
}


/* delay */
.delay_02s {
  transition-delay: 0.2s;
}

.delay_03s {
  transition-delay: 0.3s;
}

.delay_04s {
  transition-delay: 0.4s;
}

.delay_05s {
  transition-delay: 0.5s;
}

.delay_06s {
  transition-delay: 0.6s;
}

.delay_08s {
  transition-delay: 0.8s;
}

.delay_1s {
  transition-delay: 1s;
}

.delay_12s {
  transition-delay: 1.2s;
}

.delay_14s {
  transition-delay: 1.4s;
}

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