@charset "UTF-8";
/*============================================================
common
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Old Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  background: #efefef;
  /*読み込み時ふわっと表示させる*/
  animation: fadeIn 3s ease 0s 1 normal;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /*-webkit-appearance: none;
  -moz-appearance: none;*/
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
a:link, a:visited, a:active {
  color: #000;
}

/*============================================================
inview
==============================================================*/
.invew {
  position: relative;
  transition: all 0.6s ease-in-out 0s;
}

.fade {
  opacity: 0;
  top: 40px;
}
.fade.fire {
  opacity: 1;
  top: 0;
}

.fade_list li {
  position: relative;
  opacity: 0;
  top: 40px;
  transition: all 0.6s ease-in-out 0s;
}
.fade_list li:nth-of-type(2) {
  transition-delay: 0.1s;
}
.fade_list li:nth-of-type(3) {
  transition-delay: 0.2s;
}
.fade_list li:nth-of-type(4) {
  transition-delay: 0.3s;
}
.fade_list li:nth-of-type(5) {
  transition-delay: 0.4s;
}
.fade_list li:nth-of-type(6) {
  transition-delay: 0.5s;
}
.fade_list li:nth-of-type(7) {
  transition-delay: 0.6s;
}
.fade_list li:nth-of-type(8) {
  transition-delay: 0.7s;
}
.fade_list li:nth-of-type(9) {
  transition-delay: 0.8s;
}
.fade_list.fire li {
  opacity: 1;
  top: 0;
}

/*============================================================
common
==============================================================*/
.sp {
  display: inherit;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 768px) {
  .pc {
    display: inherit;
  }
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.inner {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .inner {
    width: 90%;
    max-width: 1040px;
  }
}

.center {
  text-align: center;
}

.caution {
  font-size: 10px;
  font-size: 0.625rem;
}
@media (min-width: 768px) {
  .caution {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.h2_ttl {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}
.h2_ttl span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 50px;
  font-size: 3.125rem;
}
.h2_ttl::after {
  content: "";
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  border-bottom: solid 1px #000;
  margin-top: 40px;
  width: 30px;
}

.btn_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Zen Old Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
  background: #000;
  background-clip: padding-box;
  border-radius: 100vh;
  padding: 18px 24px;
  transition: all 0.3s ease-in-out 0s;
}
.btn:link, .btn:visited, .btn:active {
  color: #fff;
}
.btn:hover {
  opacity: 0.8;
}

.cta_btn, .tel_btn {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-flow: column;
  height: 70px;
}

.tel_btn {
  font-size: 10px;
  font-size: 0.625rem;
  color: #000;
  background: #fff;
}
.tel_btn:link, .tel_btn:visited, .tel_btn:active {
  color: #000;
}
.tel_btn span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}

.contact_btn {
  width: 80%;
}

@media (min-width: 768px) {
  .cta_btn, .tel_btn {
    font-size: 16px;
    font-size: 1rem;
    padding: 18px 44px;
  }
  .btn_wrap {
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    margin-top: 20px;
  }
  .h2_ttl {
    margin-bottom: 50px;
  }
  .h2_ttl span {
    font-size: 70px;
    font-size: 4.375rem;
  }
}
/*============================================================
cta
==============================================================*/
.cta {
  color: #fff;
  background: url(../img/cta_bg.jpg) no-repeat center/cover;
  padding: 20px 0;
  text-align: center;
}
.cta .h2_ttl span {
  font-size: 24px;
  font-size: 1.5rem;
}
.cta .h2_ttl::after {
  border-bottom: solid 1px #fff;
  margin-top: 10px;
}
.cta p {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .cta {
    padding: 40px 0;
  }
  .cta .inner {
    max-width: 600px;
  }
  .cta .h2_ttl span {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
/*============================================================
header
==============================================================*/
header {
  background: #fff;
}
header .header_inner {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding: 9px 0 9px 15px;
}
header .header_logo {
  width: 36%;
}
header .navi ul {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-size: 11px;
  font-size: 0.6875rem;
}
header .btn {
  padding: 12px 30px 12px 20px;
}
header #g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}
header #g-nav ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header #g-nav li {
  list-style: none;
  text-align: center;
}
header #g-nav li a {
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
header #g-nav li a.btn {
  margin-top: 16px;
}
header #g-nav.panelactive {
  opacity: 1;
  z-index: 99;
}
header #g-nav.panelactive ul {
  display: block;
}
header .openbtn {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #fff;
}
header .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #000;
  width: 45%;
}
header .openbtn span:nth-of-type(1) {
  top: 15px;
}
header .openbtn span:nth-of-type(2) {
  top: 23px;
}
header .openbtn span:nth-of-type(3) {
  top: 31px;
}
header .openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
header .openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media (min-width: 768px) {
  header .header_logo {
    width: 10%;
  }
  header .header_inner {
    height: 80px;
    padding: 0 20px;
  }
  header .navi ul li {
    margin: 0 5px;
  }
  header .btn {
    width: auto;
  }
}
@media (min-width: 960px) {
  header .navi ul {
    font-size: 14px;
    font-size: 0.875rem;
  }
  header .navi ul li {
    margin: 0 10px;
  }
  header .btn {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 12px 40px;
  }
}

/*============================================================
kv
==============================================================*/
#kv {
  letter-spacing: 0.05rem;
}
#kv h1 {
  font-family: "Playfair Display", serif;
  margin: 32px 0 0 10px;
}
#kv h1 span {
  background: rgba(255, 255, 255, 0.7);
  padding: 2px 10px;
}
#kv .fs12 {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}
#kv .fs50 {
  font-size: 50px;
  font-size: 3.125rem;
  margin-bottom: 10px;
}
#kv .fs16 {
  font-size: 16px;
  font-size: 1rem;
}
#kv .kv_wrap {
  position: relative;
}
#kv .kv_wrap img {
  width: 100%;
}
#kv .kv_text {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 10;
}
#kv .kv_cta {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  margin-bottom: 40px;
  z-index: 10;
}
#kv .kv_btn {
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 18px 40px;
}

.swiper-container.kv_bg {
  width: 100%;
  position: relative;
  max-width: 943px;
  margin: 0 0 0 auto;
}

.loaded .swiper-container.kv_bg {
  animation: fade 1s ease 3.2s forwards;
}

#kv .mini_bnr {
  display: inline-block;
  position: absolute;
  bottom: 120px;
  right: 20px;
  width: 180px;
  z-index: 10;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.swiper-slide-active img,
.swiper-slide-duplicate-active img,
.swiper-slide-prev img {
  animation: zoomUp 10s linear 0s 1 normal both;
}

@media (min-width: 768px) {
  #kv {
    background: #fff;
  }
  #kv .fs12 {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  #kv .fs50 {
    font-size: 90px;
    font-size: 5.625rem;
    margin-bottom: 10px;
  }
  #kv .fs16 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  #kv .kv_box {
    max-width: 1760px;
    position: relative;
    width: 90%;
    padding: 50px 0;
    margin: auto;
    z-index: 2;
  }
  #kv .kv_text, #kv .kv_cta {
    position: static;
  }
  #kv .kv_cta {
    text-align: left;
    margin: 50px 0 0;
  }
  .swiper-container.kv_bg {
    width: 90%;
    position: absolute;
    top: auto;
    right: 0;
    bottom: auto;
    left: auto;
  }
  #kv .mini_bnr {
  display: none;
}
}
/*============================================================
intro
==============================================================*/
#intro {
  background: url(../img/intro_bg.jpg) no-repeat center/cover;
  padding: 40px 0;
}
#intro h2 {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
#intro p {
  line-height: 1.5rem;
}
#intro .mini_bnr {
  display: none;
}


@media (min-width: 768px) {
  #intro {
    background: none;
    padding: 50px 0;
  }
  #intro .inner {
    max-width: 1760px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #intro .intro_box {
    background: #fff;
    position: relative;
    width: 60%;
    padding: 30px;
    z-index: 10;
  }
  #intro .mini_bnr {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    z-index: 10;
    margin-right: -50px;
  }

}
/*============================================================
features
==============================================================*/
#features {
  letter-spacing: 0.05rem;
  text-align: center;
  padding: 40px 0;
}
#features .h2_ttl span {
  color: #fff;
}
#features .features_list_item {
  margin-bottom: 20px;
}
#features h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
}
#features .txt_box {
  background: #fff;
  padding: 25px;
}
#features .txt_box p {
  text-align: left;
}
#features .features_icon {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  flex-wrap: wrap;
}
#features .features_icon li {
  letter-spacing: 0;
  width: 40%;
  margin: 20px 0 0;
}
#features .features_icon figure {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}
#features .features_icon p {
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
}

@media (min-width: 768px) {
  #features .features_list figure {
    margin-bottom: -60px;
  }
  #features .features_list_item {
    margin-bottom: 60px;
  }
  #features .txt_box {
    padding: 100px 25px 50px;
  }
    #features h3 {
    margin-bottom: 32px;
  }
  #features .txt_box p {
    text-align: center;
  }
  #features .txt_box span {
    font-size: 14px;
  }
  #features .features_icon {
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: normal;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    margin-top: 30px;
  }
  #features .features_icon li {
    width: 15%;
  }
  #features .features_icon figure {
    margin-bottom: 0;
  }
}
/*============================================================
about
==============================================================*/
#about {
  letter-spacing: 0.05rem;
  text-align: center;
  background: #fff;
  padding: 80px 0;
}
#about h2 {
    letter-spacing: -0.05rem;
}
#about .h2_ttl span {
  color: #efefef;
}
#about .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 0 80px;
  text-align: left;
  letter-spacing: 0;
}
#about .box {
  width: 100%;
  background-color: #EFEFEF;
  padding: 40px;
}
#about .box_ttl {
  font-size: 15px;
  color: #fff;
  background-color: #000;
  padding: 4px 10px;
  width: fit-content;
  margin-bottom: 24px;
}
#about .box_h4 {
  font-size: 20px;
  margin-bottom: 32px;
}
#about .box_txt {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#about h3 {
  font-size: 24px;
  margin-bottom: 40px;
}
#about .difference {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;

}
#about .recommend {
}
#about .recommend_box {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 60px;
  background-color: #EFEFEF;
  text-align: left;
  letter-spacing: 0;
}
#about .recommend_box ul{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
#about .recommend_box ul li {
  display: flex;
  gap: 8px;
  width: 100%;
  padding: 8px 0;
  border-bottom: 1px solid #FFF;
}
#about .recommend_box ul li img {
  width: 20px;
}
#about .recommend_box ul li p {
  flex: 1;
}

@media (max-width: 768px) {
#about h2 span {
  font-size: 28px;
}
#about .box {
  padding: 32px 16px;
}
#about .box_ttl {
  margin: 0 auto 24px;
}
#about .box_h4 {
  font-size: 18px;
  text-align: center;
}
#about .box_h4 span {
  display: none;
}
#about h3 {
  font-size: 18px;
  margin-bottom: 24px;
}

#about .difference_img {
  overflow-x: scroll;
}
#about .difference img {
  width: 920px;
  max-width: 920px;
}
#about .recommend_box {
  padding: 20px 16px;
}




}




/*============================================================
flow
==============================================================*/
#flow {
  letter-spacing: 0.05rem;
  text-align: center;
  background: #fff;
  padding: 0 0 80px;
}
#flow .h2_ttl span {
  color: #efefef;
}
#flow h3 {
  font-size: 24px;
  margin-bottom: 40px;
}
#flow  ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  letter-spacing: 0;
  text-align: left;
  margin: 0 auto;
}
#flow  ul li {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #98918C;
}
#flow  ul li:last-child {
  border-bottom: 1px solid transparent;
}
#flow .step {
  width: 100px;
  height: 100px;
  background-color: #98918C;
  border-radius: 50%;
  font-size: 18px;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
#flow .flow_ttl {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
#flow .flow_txt a {
  text-decoration: underline;
}


@media (max-width: 768px) {
#flow h3 {
  font-size: 18px;
  margin-bottom: 32px;

}
#flow  ul li {
  gap: 10px;
  padding: 10px 0;
}
#flow .step {
  width: 40px;
  height: 40px;
  font-size: 8px;
}
#flow .flow_box {
  flex: 1;
}
#flow .flow_ttl {
  font-size: 16px;
  margin-bottom: 4px;
}


}



/*============================================================
price
==============================================================*/
#price {
  background: url(../img/trainers_bg.jpg) no-repeat center/cover;
  letter-spacing: 0.05rem;
  text-align: center;
  /* background: #fff; */
  padding: 40px 0;
}
#price .h2_ttl span {
  color: #efefef;
}
#price .container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
#price .price_img {
  width: 50%;
}


@media (max-width: 768px) {
#price .container {
  flex-wrap: wrap;
  gap: 40px;
}
#price .price_img {
  width: 100%;
  max-width: 360px;
}

}
/* #price h3 {
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 20px;
}
#price h3 span {
  display: block;
  color: #cbcaca;
  font-size: 24px;
  font-size: 1.5rem;
}
#price li {
  background: #98918c;
  color: #fff;
  padding: 14px 40px;
  margin: 10px 0;
}
#price li h4 {
  border-bottom: solid 1px #fff;
}
#price li p {
  font-size: 24px;
  font-size: 1.5rem;
}
#price li p span {
  font-size: 10px;
  font-size: 0.625rem;
}

@media (min-width: 768px) {
  #price h3 {
    font-size: 16px;
    font-size: 1rem;
  }
  #price h3 span {
    font-size: 30px;
    font-size: 1.875rem;
  }
  #price ul {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
  #price li {
    width: 49%;
  }
} */
/*============================================================
trainers
==============================================================*/
#trainers {
  background: url(../img/trainers_bg.jpg) no-repeat center/cover;
  letter-spacing: 0.05rem;
  padding: 30px 0;
}
#trainers .h2_ttl span {
  color: #efefef;
}
#trainers .trainers_photo {
  margin-top: 60px;
}
#trainers .trainers_photo figure {
  width: 60%;
  margin: 0 auto 10px;
}
#trainers h3 {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
#trainers h3 span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-size: 0.75rem;
  color: #cbcaca;
}
#trainers h4 {
  border-bottom: solid 1px #000;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
#trainers li {
  margin: 30px 0;
}

@media (min-width: 768px) {
  #trainers .trainers_wrap {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: normal;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
  }
  #trainers .trainers_item {
    width: 46%;
  }
  #trainers .trainers_photo {
    margin-top: 0;
  }
}
/*============================================================
voice
==============================================================*/
#voice {
  text-align: center;
  letter-spacing: 0.05rem;
  padding: 40px 0;
}
#voice .h2_ttl span {
  color: #fff;
}
#voice ul {
  margin-top: 20px;
}
#voice li {
  background: #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.voice_photo {
  display: flex;
  display: -ms-flexbox;
  justify-content: left;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-bottom: 15px;
}
.voice_photo figure {
  width: 50%;
  margin-right: 20px;
}
.voice_photo h3 {
  text-align: left;
  font-size: 18px;
  font-size: 1.125rem;
}
.voice_photo h3 span {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
}

.voice_txt {
  background: #fff;
  padding: 0 20px;
}
.voice_txt h4 {
  color: #fff;
  background: #000;
  padding: 8px 10px 10px 16px;
  margin: 10px 0;
}
.voice_txt p {
  margin-bottom: 30px;
}

.hide_area {
  display: none;
}

.modaal-close {
  background: #fff !important;
}

.modaal-close:after,
.modaal-close:before {
  background: #000;
  width: 2px;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal-container {
  box-shadow: none;
}

.modaal-content-container {
  padding: 0;
}

.modaal-overlay {
  background: #efefef !important;
  opacity: 1 !important;
}

@media (min-width: 768px) {
  #voice ul {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
  #voice li {
    width: 30%;
  }
  .voice_txt {
    padding: 0 40px;
  }
  .modaal-content-container .voice_photo figure {
    width: auto;
  }
  .modaal-close {
    position: absolute !important;
    right: 0 !important;
    top: -60px !important;
  }
}
/*============================================================
faq
==============================================================*/
#faq {
  letter-spacing: 0.1rem;
  padding: 40px 0;
}
#faq .h2_ttl span {
  color: #fff;
}

.faq_box {
  width: 96%;
  max-width: 800px;
  margin: 40px auto 0;
}

.accordion {
  margin-bottom: 15px;
}

.toggle {
  display: none;
}

.accordion_ttl {
  display: block;
  position: relative;
  text-align: left;
  color: #000;
  line-height: 1.4rem;
  background: #fff;
  padding: 20px 50px 20px 20px;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  border-radius: 4px;
}
.accordion_ttl p {
  display: flex;
  align-items: center;
}
.accordion_ttl::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.accordion_ttl::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.accordion_ttl,
.accordion_txt {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion_txt {
  height: 0;
  margin-bottom: 10px;
  padding: 0px 4px;
  overflow: hidden;
}
.accordion_txt p {
  display: flex;
  align-items: center;
}

.accordion_parent_ttl {
  font-size: 20px;
  font-weight: 700;
  display: block;
  position: relative;
  text-align: left;
  padding: 8px 50px 8px 4px;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  border-bottom: 1px solid #98918C;
}
.accordion_parent_ttl p {
  display: flex;
  align-items: center;
}
.accordion_parent_ttl::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.accordion_parent_ttl::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}




.accordion_parent_txt {
  height: 0;
  margin-bottom: 10px;
  padding: 0px 4px;
  overflow: hidden;
}

.accordion_parent >.toggle:checked + .accordion_parent_ttl + .accordion_parent_txt {
  height: auto;
  padding: 10px 4px;
  transition: all 0.3s;
}

.accordion_parent >.toggle:checked + .accordion_parent_ttl::after {
  transform: translateY(-50%) rotate(0);
}


.accordion > .toggle:checked + .accordion_ttl + .accordion_txt {
  height: auto;
  padding: 10px 4px;
  transition: all 0.3s;
}

.accordion > .toggle:checked + .accordion_ttl::after {
  transform: translateY(-50%) rotate(0);
}


@media (max-width: 768px) {
.accordion_parent_ttl {
  font-size: 16px;
}

}



/*============================================================
info
==============================================================*/
#info {
  letter-spacing: 0.1rem;
  background: #fff;
  padding: 40px 0;
}
#info .h2_ttl span {
  font-size: 46px;
  font-size: 2.875rem;
  color: #efefef;
}
#info li {
  margin: 20px 0;
}
#info .info_txt {
  width: 90%;
  margin: 20px auto;
}
#info h3 {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 5px;
}
#info p {
  font-size: 13px;
  font-size: 0.8125rem;
}

.map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

@media (min-width: 768px) {
  #info .info_inner {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
  }
  #info .h2_ttl span {
    font-size: 70px;
    font-size: 4.375rem;
  }
}
/*============================================================
form
==============================================================*/
#form {
  letter-spacing: 0.1rem;
  padding: 40px 0 10px;
}
#form .h2_ttl span {
  color: #fff;
}
#form .contact_item {
  margin-bottom: 30px;
}
#form .contact_item p {
  margin-bottom: 10px;
}
#form .contact_item .check {
  margin-bottom: 30px;
}
#form .contact_req {
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  background: #000;
  padding: 2px 6px;
  margin-left: 10px;
}
#form .contact_input, #form .contact_select {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 8px 10px 8px;
  border-radius: 2px;
}
#form .input_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: left;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
#form .date_time {
  margin-bottom: 10px;
}
#form .date_time p {
  font-size: 10px;
  font-size: 0.625rem;
  width: 15%;
}
#form .radio_area label {
  margin-right: 20px;
}
#form .radio_area input {
  margin-right: 5px;
}
#form .contact_box {
  height: 120px;
}

h6.error {
  color: red;
}

.form_box input[type=text].error, .form_box input[type=email].error, .form_box select.error {
  background: #FCE6E6 !important;
  border: solid 1px red;
}

input[type=date],
input[type=time] {
  -webkit-appearance: none;
  height: 1em;
}

input[type=date]::-webkit-date-and-time-value,
input[type=time]::-webkit-date-and-time-value {
  text-align: left;
}

@media (min-width: 768px) {
  #form .form_box {
    max-width: 600px;
    margin: 0 auto;
  }
  #form .contact_item {
    margin-bottom: 20px;
  }
}

/*============================================================
20230828 追加
==============================================================*/
#form p.caution {
  display: inline-block;
  width: 100%;
  margin: 0 0 30px;
  text-align: center;
  color: #e00;
  font-size: 14px;
  font-size: 0.875rem;
}
#price li h4 {
  padding: 0 0 8px;
}
#price li p {
  padding: 0.2em 0 0;
  font-size: 29px;
  font-size: 1.8rem;
}
.bnr_area {
  width: 100%;
  text-align: center;
  display: block;
  margin: 0 auto;
  padding: 40px 0;
}
.bnr_area.bgc_wht {
  background: #fff;
}

@media (min-width: 768px) {
  #form p.caution {
    font-size: 12px;
    font-size: 0.75rem;
  }
  
}

@media (max-width: 768px) {
  .bnr_area2.pc {
    display: none;
  }
  
}

#form .question {
  margin-left: 24px;
}
#form .question p {
  font-size: 14px;
}



/*============================================================
footer
==============================================================*/
footer {
  font-size: 10px;
  font-size: 0.625rem;
  color: #000;
  text-align: center;
  border-top: solid 1px #000;
  padding: 20px 0;
}
footer li {
  margin: 5px 0;
}

.footer_copy {
  display: inline-block;
  font-family: "Playfair Display", serif;
  margin: 10px auto 0;
}

@media (min-width: 768px) {
  footer ul {
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
  footer li {
    margin: 0 10px;
  }
}
/*============================================================
law
==============================================================*/
#law {
  padding: 40px 0;
}
#law h2 {
  margin-bottom: 50px;
}
#law h3 {
  border-bottom: solid 1px #ddd;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
#law li {
  margin-bottom: 40px;
}