@charset "UTF-8";

/* style
----------------------------------------------------------- */
/* main common style  */
/* font style variation */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Sans JP', sans-serif;
}

.aa_f_m {
  font-family: 'Noto Serif JP', serif;
}

.aa_f_g {
  font-family: 'Noto Sans JP', sans-serif;
}

/* end. font style variation */
/* common style */
body {
  width: 100%;
  margin: inherit;
  color: #464646;
}

a {
  text-decoration: none;
  color: #464646;
}

a:hover {
  opacity: 0.5;
  transition: ease 0.3s;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.container p,
#container p {
  color: #464646;
  font-size: 15px;
  line-height: 2.5em;
  letter-spacing: 0.05rem;
  font-weight: 300;
}

* {
  float: none;
  position: static;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  overflow: hidden;
  /* 謎の余白処理 */
}

.inner {}

p {
  color: #464646;
  line-height: 2em;
  letter-spacing: 0.1rem;
  font-size: 16px;
}

/* question style */
.wrap {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.visual_info {
  text-align: center;
  padding: 20px;
  background: #F8DE7C;
  font-size: 30px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
}

.container._answer {
  background-image: url(../assets/images/bg_stone4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-bottom: 50%;
}

.main_visual {
  position: relative;
}

.visu_pop {
  position: absolute;
  bottom: -8%;
  right: 3%;
  width: 25vw;
  max-width: 200px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.main_txt {
  position: absolute;
  bottom: 3%;
  left: -2%;
  padding: 3% 7%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65%;
  max-width: 470px;
}

.main_txt::before {
  position: absolute;
  border: 1px solid #707070;
  width: 98%;
  height: 95%;
  content: "";
}

.main_img img {
  display: block;
}

.q_1,
.q_2 {
  padding-bottom: 7%;
}

.intro {
  background-image: url(../assets/images/bg_img_01.jpg);
  background-size: cover;
  background-position: top;
}

.intro p {
  font-size: 28px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  text-align: center;
  line-height: 2em;
  letter-spacing: 0.1rem;
  margin: 0;
  padding: 0;
}

.intro .txt {
  padding: 4% 0 12%;
}

.aa_ll {
  font-size: 125%;
  padding: 3px;
}

.intro .line_black {
  border-bottom: 2px solid #707070;
  padding: 5px;
  line-height: 3em;
}

.line_orange {
  background: linear-gradient(transparent 92%, #F8DE7C 8%);
}

._question .img {
  display: block;
}

.startbox {
  font-size: 30px;
  background: #464646;
  color: #fff;
  text-align: center;
  width: 75%;
  max-width: 600px;
  padding: 20px;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  margin: 40px auto;
  position: relative;
  margin-top: -45px;
}

.startbox::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -10px;
  background: #464646;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
}

.question_head {
  text-align: center;
}

.q_num {
  font-size: 60px;
  font-family: "ten-mincho-text", serif;
  letter-spacing: 0.2rem;
  position: relative;
}

.q_num::before {
  content: "";
  background: #F8DE7C;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 80px;
  height: 5px;
}

p.q_title,
p.a_title {
  font-size: 43px;
  font-family: "ten-mincho-text", serif;
  line-height: 1.5em;
}

.question {
  background-image: url(../assets/images/bg_img_02.jpg);
  background-size: cover;
  background-position: top;
}

.linkbox {
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  width: 80%;
}

.q_item,
.q_item2 {
  font-size: 33px;
  line-height: 1.7em;
  background-position: center;
  font-family: 'Noto Serif JP', serif;
  margin: 45px auto auto;
  font-weight: 300;
  position: relative;
  padding-left: 70px;
  cursor: pointer;
}

.q_item:last-child,
.q_item2:last-child {
  margin-bottom: 45px;
}

.q_item::before,
.q_item2::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  border: 2px solid #707070;
  background: #fff;
  left: 0;
  top: 4px;
}

.linkbox .q_item::after,
.linkbox .q_item2::after {
  content: "";
  width: 45px;
  height: 45px;
  top: 7px;
  left: 2px;
  position: absolute;
  opacity: 0;
  transition: ease all 0.5s;
  background-repeat: no-repeat;
}

.linkbox .q_item.is--selected::after {
  /* チェックしたときのマーク */
  opacity: 1;
  background-image: url(../assets/images/check_orange.svg);
}

.linkbox .q_item2.active::after {
  /* チェックしたときのマーク */
  opacity: 1;
  background-image: url(../assets/images/check_orange.svg);
}

.open_contents {
  height: 0;
  opacity: 0;
  transition: ease all 0.5s;
}

.open_contents.active {
  height: fit-content;
  opacity: 1;
}

._story {
  background: #F4F4F4;
  padding: 7% 7% 10%;
}

._story .title {
  font-size: 38px;
  font-family: "ten-mincho-text", serif;
  text-align: center;
  color: #464646;
  margin: 0 auto;
  padding: 0 0 7%;
}

._story p {
  font-size: 28px;
  line-height: 1.5em;
  word-break: break-all color: #464646;
  font-family: 'Noto Sans JP', sans-serif;
}

._story .img {
  margin: 0 auto;
}

.btn__next {
  font-size: 30px;
  background: #F8DE7C;
  padding: 28px 0;
  text-align: center;
  width: 100%;
  font-family: 'Noto Serif JP', serif;
  color: #464646;
  display: block;
  position: relative;
}

.btn_box {
  display: block;
  max-width: 600px;
  width: 80%;
  margin: 7% auto;
}

.btn__next::after {
  content: "";
  position: absolute;
  background-image: url(../assets/images/arrow_btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  top: 38%;
  right: 3%;
}

.white_board {
  background: #fff;
  padding: 3% 0;
  border: 1px solid #D5D5D5;
  margin: 20% auto auto;
}

.white_board ul {
  padding: 30px;
  margin: 50px auto;
}

.white_board .midashi {
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  font-size: 33px;
  font-weight: 400;
  position: relative;
}

.white_board .midashi::before {
  content: "";
  background: #D5D5D5;
  width: 50%;
  height: 2px;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
}

.white_board li {
  font-size: 30px;
  font-family: 'Noto Serif JP', serif;
  list-style: none;
  padding: 7px 0;
}

.q_2 .question_head,
.q_3 .question_head {
  margin-top: 10%;
}

.q_3 .q_title {
  margin-bottom: 0;
}

.q_3 .question {
  background-image: url(../assets/images/bg_stone3.jpg);
}

.q_3 .linkbox {
  width: 100%;
  max-width: inherit;
}

.q_3 .btn_box {
  margin: 0 auto;
  padding: 7% 0 15%;
}

.q_3 .question .btn__next::after {
  display: none;
}







/* common style */
.contents_head {
  text-align: center;
}

.contents_head h2 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: relative;
  padding: 0 0 3%;
  margin: 3% auto;
  line-height: 1em;
  font-family: 'Noto Serif JP', serif;
}

.contents_head h2::before {
  content: "";
  background: #F8DE7C;
  width: 30%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 180px;
}

.contents_head h6 {
  font-size: 29px;
  font-weight: 300;
  letter-spacing: 0.3rem;
  line-height: 1em;
  margin: 0;
  padding: 0;
  font-family: "ten-mincho-text", serif;
}

.contents_head p {
  font-size: 30px;
  font-family: 'Noto Serif JP', serif;
}








/* answer style */
p.a_title {
  font-size: 40px;
  text-align: center;
}

.aa_ss {
  font-size: 95%;
}

.aa_mm {
  font-size: 105%;
}

.a_1 .q_title {
  font-size: 43px;
  line-height: 1.5em;
  font-weight: 500;
  text-align: center;
}

._answer .txt {
  font-size: 28px;
  font-weight: 300;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  line-height: 2em;
  margin: 7% auto;
}

.answer_head {}

.reserve_btn {
  background: #F8DE7C;
  border-radius: 200px;
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  width: 90%;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15));
}

.reserve_btn a {
  color: #464646;
  padding: 56px;
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  display: block;
  border-radius: 200px;
  letter-spacing: 0.1rem;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
}

.reserve_btn::after {
  content: "";
  background-image: url(../assets/images/arrow_btn.svg);
  width: 25px;
  height: 25px;
  top: 42%;
  right: 5%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}

.a_1 .answer_head {
  padding-top: 15%;
}

._answer .a_sab {
  font-size: 35px;
  font-family: "ten-mincho-text", serif;
  line-height: 1.5em;
  text-align: center;
  letter-spacing: 0.1rem;
}

._answer .a_sab .aa_ll {
  font-size: 135%;
}

._answer .a_sab .aa_mm {
  font-size: 115%;
}

.balloon {
  position: relative;
}

.balloon::after {
  transform: rotate(25deg);
  right: 0;
}

.balloon::before {
  transform: rotate(-25deg);
  left: 0;
}

.balloon::before,
.balloon::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #707070;
  top: 0;
  position: absolute;
}

.a_1 .a_title {
  width: 75%;
  margin: 0 auto;
}




/* artist staff style */
.artist_staff {
  margin-top: -57%;
}

.artist_staff .wrapping .image {
  position: relative;
  max-width: 415px;
  height: fit-content;
  z-index: 1;
}

.artist_staff .wrapping .image::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 85%;
  height: 45%;
  bottom: -15%;
  right: -42%;
}

.artist_staff #hatanaka.wrapping .image::after {
  background-image: url(../assets/images/hatanaka.svg);
}

.artist_staff #takahama.wrapping .image::after {
  background-image: url(../assets/images/takahama.svg);
}

.artist_staff #sumiya.wrapping .image::after {
  background-image: url(../assets/images/sumiya.svg);
}

.artist_staff #iwasaki.wrapping .image::after {
  background-image: url(../assets/images/iwasaki.svg);
}

.artist_staff .wrapping .image .waku {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}

.artist_staff .wrapping .image .waku::before {
  content: "";
  border: 1px solid #D5D5D5;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -10px;
  right: -15px;
  z-index: -1;
}

#slidebox {
  position: relative;
}

.pin {
  position: absolute;
  top: -12%;
  left: -14%;
}

.pin::before {
  content: "";
  background-image: url(../assets/images/recommendation.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 150px;
  top: -10%;
  left: 0;
  position: absolute;
  z-index: 10;
}

.staffdata {
  margin: 10% auto;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.staffdata .en {
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.1rem;
  display: block;
  padding: 40px 0 0;
  font-family: 'Noto Serif JP', serif;
}

.staffdata .name {
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 0.1rem;
  margin: 10px auto;
  display: block;
  font-family: 'Noto Serif JP', serif;
}

.artist_staff .wrapping .data p.titolo {
  font-size: 38px;
  font-family: ten-mincho-text, serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.05rem;
  text-align: center;
}

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

@media screen and (min-width: 768px) {

  _::-webkit-full-page-media,
  _:future,
  :root .movie iframe {
    height: 250px;
  }
}

.skill_bar {
  padding: 15px 0;
  margin: 20px auto;
  border-bottom: 2px solid #707070;
  font-size: 32px;
  letter-spacing: 0.1rem;
  color: #464646;
  position: relative;
  cursor: pointer;
  font-family: "ten-mincho-text", serif;
  letter-spacing: 0.2rem;
}

.skill_bar::before,
.skill_bar::after {
  content: "";
  position: absolute;
  background: #464646;
  width: 16px;
  height: 2px;
  top: 50%;
  right: 20px;
  transform: rotate(0deg);
  transition: ease all 0.5s;
}

.skill_bar::before {
  transform: rotate(-90deg);
}

.skill_bar.active::before {
  transform: rotate(0deg);
}

.skill_bar.active::before {
  transform: rotate(0deg);
}

.works .slide .img {
  object-fit: cover;
  margin: 10px;
  aspect-ratio: 1;
  max-height: 290px;
}

#slidebox .swiper-button-next::after,
#slidebox .swiper-button-prev::after,
#slidebox .swiper-button-next.swiper-button-disabled::after,
#slidebox .swiper-button-prev.swiper-button-disabled::after {
  font-size: 15px;
  font-weight: 900;
  color: #464646;
}

#slidebox .swiper-button-next,
#slidebox .swiper-button-prev,
#slidebox .swiper-button-next.swiper-button-disabled,
#slidebox .swiper-button-prev.swiper-button-disabled {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: ease all 0.3s;
}

#slidebox .swiper-button-prev,
#slidebox .swiper-rtl .swiper-button-next {
  left: 3%;
}





/* reason */
#reason {
  padding: 15% 0;
  background-image: url(../assets/images/bg_stone2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

#reason .contents {
  max-width: 100%;
  margin: 0 auto;
}

#reason .inner {
  max-width: 90%;
  position: relative;
  margin: 0 auto;
}

#reason .inner::before {
  content: "";
  width: 120%;
  height: 100%;
  border: 1px solid #d5d5d5;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
}

#reason .inner::before {
  content: "";
  width: 120%;
  height: 100%;
  border: 1px solid #d5d5d5;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.reason_wrap {
  display: grid;
  grid-template-columns: 1fr;
  margin-left: -10%;
  grid-gap: 30px;
}

#reason .contents {
  max-width: 100%;
  margin: 0 auto;
}

.num {
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  font-size: 48px;
  color: #fff;
  font-family: "ten-mincho-text", serif;
  padding: 40px 24px 40px 38px;
  position: relative;
}

._num {
  padding: 0 45px;
  font-size: 72px;
  display: inline-block;
  filter: drop-shadow(-1px -1px 1px #000);
}

._title {
  filter: drop-shadow(-1px -1px 1px #000);
  letter-spacing: 0.2rem;
  position: absolute;
  padding-top: 21px;
}

.num._skill {
  background-image: url(../assets/images/title_skill.png);
}

.num._color {
  background-image: url(../assets/images/title_colour.png);
}

.num._clinic {
  background-image: url(../assets/images/title_salon.png);
}

.reason_wrap .box .txt {
  padding: 0 20px;
  font-size: 28px;
  line-height: 1.9em;
  letter-spacing: 0rem;
  font-family: 'Noto Serif JP', serif;
  margin-left: 13%;
}

.aa_line_orange {
  background: linear-gradient(transparent 92%, #F8DE7C 8%);
}

#reason .logo {
  display: block;
  margin: 0 auto;
  max-width: 40vw;
}

#reason .title {
  font-size: 43px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5em;
  margin: 4% auto 8%;
  font-family: 'Noto Serif JP', serif;
}

.aa_three {
  position: relative;
  width: 40px;
  height: 43px;
  display: inline-block;
  margin-left: 5px;
}

.aa_three img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.inst_btn {
  border: 1px solid #464646;
  padding: 22px;
  text-align: center;
  font-size: 22px;
  color: #464646;
  position: relative;
  margin: 40px auto;
  letter-spacing: 0.2rem;
  font-family: "ten-mincho-text", serif;
}

.inst_btn::before {
  content: "";
  background-image: url(../assets/images/icon_instagram.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 34px;
  height: 34px;
  top: 29%;
  left: 20px;
}

.artist_staff .wrapping {
  position: relative;
  margin: 5% auto;
  overflow: hidden;
}

.artist_staff .wrapping::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 10%;
  z-index: -2;
  background: #F5F5F5;
}

.artist_staff .wrapping::after {
  content: "";
  width: 100%;
  height: 37vh;
  background: #fff;
  position: absolute;
  top: 0;
}

.wrapping:first-child::after {
  display: none;
}

.movie {
  width: 70%;
  display: block;
  margin: 10% auto;
}

.profile .movie {
  width: 100%;
  margin: 20px auto;
}

.profile {
  width: 70%;
  margin: 0 auto;
}

.profile .skill_in .aa_f_g {
  font-size: 22px;
  font-weight: 300;
}

.profile:first-child {
  margin-bottom: 0;
}

.profile:first-child .skill_bar {
  margin-bottom: 0;
}

.works {
  padding: 7% 0;
}





/* artist */
.artist_data .img {
  position: relative;
  max-width: 80%;
  height: fit-content;
  margin: 5% auto;
  z-index: 1;
}

.artist_data .img::after {
  content: "";
  border: 1px solid #D5D5D5;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -15px;
  right: -20px;
  z-index: -1;
}

.artist_data .img::before {
  content: "";
  background-image: url(../assets/images/shibata.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 65%;
  height: 35%;
  bottom: -10%;
  right: -10%;
}

.artist_data .titolo {
  font-size: 30px;
  font-weight: 500;
  font-family: "Noto Serif JP", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
  text-align: center;
}

.artist_data .txt {
  max-width: 75%;
  margin: 10% auto;
}

.artist_data .txt p {
  font-size: 26px;
  font-weight: 300;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: inherit;
  line-height: 1.8em;
}

.skill {
  margin: 20px auto;
  width: 75%;
  max-width: 560px;
}

.skill_in {
  display: inline-block;
  max-height: 0px;
  overflow: hidden;
  transition: all 1s ease 0s;
  opacity: 0;
  width: 100%;
  padding: 0 0 5%;
}

.skill_in.active {
  opacity: 1;
  max-height: 1200px;
}

.profile:last-child .skill_in {
  padding: 0 0 10%;
}

.sk_title {
  font-family: "ten-mincho-text", serif;
  letter-spacing: 0.2rem;
  font-size: 30px;
  margin: 5% auto;
  position: relative;
}

.sk_title::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 1px;
  top: 50%;
  right: 0;
  background: #707070;
}

.skill_list {
  color: #464646;
  list-style: none;
  letter-spacing: 0.1rem;
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 0 auto;
}

.skill_list li {
  padding: 5px;
}

.works .title {
  font-size: 40px;
  letter-spacing: 0.2rem;
  font-family: "ten-mincho-text", serif;
  text-align: center;
  margin: 0;
}

.slide._works .swiper-pagination {
  bottom: -15px;
}

#slidebox .swiper-pagination-bullet-active {
  background: #F8DE7C;
}

.simei {
  font-size: 26px;
  font-weight: 300;
  position: relative;
  margin-top: 20px;
  letter-spacing: 0.05rem;
}

.simei::before {
  content: "";
  background: #707070;
  width: 30%;
  height: 1px;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
}

#pioneer {
  padding: 0 0 5%;
}

#pioneer .inner {
  position: relative;
  padding: 5% 0;
}

#pioneer .inner::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 23%;
  background: #fff;
  top: 0;
  z-index: -1;
}

#pioneer .inner::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 5%;
  z-index: -2;
  background: #F5F5F5;
}

/* voice */
#voice {
  padding: 15% 0;
}

#voice .inner {
  max-width: 90%;
  margin: 0 auto;
}

/* price */
#price {
  padding: 15% 0;
  background-image: url(../assets/images/bg_stone5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

#price .inner {}

#price .row {
  max-width: 90%;
  margin: 0 auto;
}

#price h5 {
  font-size: 38px;
  font-weight: 400;
  margin: 0;
  padding: 10px 0;
  text-align: left;
  letter-spacing: 0.1rem;
  font-family: 'Noto Serif JP', serif;
}

.menu_box table th {
  border-bottom: 2px solid #707070;
}

.menu_box table {
  width: 100%;
  margin: 7% auto 3%;
}

.eyebrow {
  font-size: 23px;
  padding: 0 30px;
  letter-spacing: 0.2rem;
  font-family: "ten-mincho-text", serif;
}

.menu_box table td {
  font-size: 32px;
  font-weight: 500;
  padding: 15px 0 0;
  letter-spacing: 0.1rem;
  font-family: 'Noto Serif JP', serif;
}

.menu_box.option {
  background: #fff;
  border: 1px solid #707070;
  margin: 12% auto;
}

.menu_box .aa_ss {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: inherit;
  margin: 0 auto;
  font-weight: 300;
}

.menu_box.option table {
  padding: 7%;
  margin: 0 auto;
}

#price .menu_box.option h5 {
  padding: 0;
  font-size: 32px;
}

.menu_box.option th {
  border: none;
}

.risk .title {
  background: #EDEDED;
  padding: 20px 0;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.1rem;
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1em;
  font-family: 'Noto Serif JP', serif;
}

.risk {
  margin: 70px auto auto;
}

.risk table {
  width: 100%;
  max-width: 70%;
  font-size: 28px;
  margin: 0 auto;
  padding: 3% 0;
}

.risk table td {
  padding: 5px;
  letter-spacing: 0.1rem;
  font-family: 'Noto Serif JP', serif;
}

#price ._txt {
  margin: 8% auto;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: inherit;
}

.contents_head .title {
  font-size: 40px;
  letter-spacing: 0.05rem;
  margin: 8% auto auto;
}



/* clinic */
#clinic {
  padding: 15% 0;
}

.slide._clinic .swiper-pagination {
  /* slide navi */
  bottom: 0;
}

#slidebox.slide__clinic {
  /* slide navi */
  padding-bottom: 35px;
}

.slide._clinic .swiper-button-next,
.slide._clinic .swiper-button-prev {
  top: 45%;
}

.slide._clinic {
  margin: 10% auto;
}




/* access schedule */
#access,
#schedule {
  padding: 15% 0;
  background-image: url(../assets/images/bg_stone5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

#access .inner {
  width: 80%;
  margin: 0 auto;
}

#schedule .inner {
  width: 85%;
  margin: 0 auto;
}

#access .contents_head h2,
#schedule .contents_head h2 {
  margin-bottom: 90px;
}

#access h3 {
  font-size: 45px;
  line-height: 1.5em;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  letter-spacing: 0.1rem;
}

#access .txt {
  font-size: 30px;
  font-weight: 300;
  margin: 40px auto;
}

#access .map {
  border: 1px solid #707070;
  height: fit-content;
  text-align: center;
  margin: 10% auto 20%;
}

#schedule .time {
  font-size: 44px;
  font-family: 'Noto Serif JP', serif;
}

#schedule .aa_s {
  font-size: 50%;
}

#access a {
  color: #1897e3;
}

#access .map iframe {
  width: 100%;
  aspect-ratio: 1;
  display: block;
}

.contents_head h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: relative;
  padding: 0 0 6%;
  margin: 3% auto;
  line-height: 1.5em;
  font-family: 'Noto Serif JP', serif;
}

#schedule table {
  width: 100%;
  border-spacing: 0;
  margin: 20px auto;
}

#schedule table td {
  padding: 10px;
  text-align: center;
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

#schedule table tr:last-child td {
  font-weight: bold;
  font-size: 28px;
  border-top: 1px solid #464646;
}

#schedule ._txt {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: inherit;
}


/* reserve */
#reserve {
  padding: 15% 0;
  background-image: url(../assets/images/bg_reserve.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  text-align: center;
}

#reserve p {
  font-size: 33px;
  font-family: 'Noto Serif JP', serif;
}

/* footer */
.footer .copyright {
  color: #D3D3D3;
  font-size: 22px;
  letter-spacing: 0.05rem;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5em;
}

.footer {
  background: #939393;
  padding: 30px;
  text-align: center;
}

/* Answer style end
-------------------------*/







/*sp 改行*/
@media (min-width: 768px) {
  .view-sp {
    display: none;
  }

  .view-pc {
    display: block;
  }
}

@media (max-width: 767px) {
  .view-sp {
    display: block;
  }

  .view-pc {
    display: none;
  }
}

/*sp 改行 END*/

/* window size variation
----------------------------------------------------------- */
@media screen and (min-width:768px) and (max-width:1199px) {}

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

  /* common */
  .intro p {
    font-size: 14px;
  }

  /* main visual */
  .visual_info {
    font-size: 100%;
    padding: 10px;
  }

  .main_txt::before {
    width: 97.5%;
    height: 92%;
  }

  .main_txt {
    width: 58%;
  }

  .visu_pop {
    right: 5%;
    width: 27vw;
  }

  .intro .line_black {
    border-bottom: 1px solid #707070;
    padding: 3px;
  }

  .startbox {
    font-size: 15px;
    padding: 10px;
    margin-top: -22px;
  }

  .startbox::before {
    width: 10px;
    height: 10px;
    bottom: -5px;
  }

  .q_num {
    font-size: 30px;
  }

  .q_num::before {
    width: 40px;
    height: 2px;
  }

  p.q_title,
  p.a_title {
    font-size: 22px;
  }

  .q_item,
  .q_item2 {
    font-size: 17px;
    line-height: 1.3em;
    padding-left: 35px;
    margin: 23px auto auto;
  }

  .q_item::before,
  .q_item2::before {
    width: 20px;
    height: 20px;
    border: 1px solid #707070;
  }

  .q_item:last-child,
  .q_item2:last-child {
    margin-bottom: 20px;
  }

  ._story .title {
    font-size: 20px;
  }

  .q_num {
    font-size: 30px;
  }

  .q_num::before {
    width: 40px;
    height: 2px;
  }

  p.q_title,
  p.a_title {
    font-size: 22px;
  }

  .q_item,
  .q_item2 {
    font-size: 17px;
    line-height: 1.3em;
    padding-left: 35px;
    margin: 23px auto auto;
  }

  .linkbox {
    padding: 20px;
  }

  .linkbox .q_item::after,
  .linkbox .q_item2::after {
    width: 20px;
    height: 20px;
  }

  .q_item::before,
  .q_item2::before {
    width: 20px;
    height: 20px;
    border: 1px solid #707070;
  }

  .q_item:last-child,
  .q_item2:last-child {
    margin-bottom: 45px;
    margin-bottom: 20px;
  }

  ._story .title {
    font-size: 20px;
  }

  ._story p {
    font-size: 14px;
  }

  .btn__next::after {
    width: 16px;
    height: 16px;
    top: 35%;
  }

  .btn__next {
    font-size: 15px;
    padding: 14px 0;
  }

  .linkbox .q_item::after,
  .linkbox .q_item2::after {
    height: 20px;
    top: 6px;
    width: 18px;
    height: 18px;
    background-size: contain;
  }

  ._story .title {
    letter-spacing: inherit;
  }

  .white_board .midashi {
    font-size: 16px;
  }

  .white_board .midashi::before {
    bottom: -20px;
    height: 1px;
  }

  .white_board ul {
    margin: 15px;
    padding: 15px 0 0;
  }

  .white_board li {
    font-size: 15px;
    margin: 0% auto;
  }

  .q_3 {
    min-height: 100vh;
  }

  .a_1 .q_title {
    font-size: 22px;
    margin: 10px auto;
  }

  ._answer .txt {
    font-size: 14px;
  }

  .reserve_btn a {
    font-size: 18px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
    padding: 28px;
  }

  .reserve_btn {
    filter: none;
  }

  .reserve_btn::after {
    width: 15px;
    height: 15px;
  }

  ._answer .a_sab {
    font-size: 18px;
  }

  .a_1 .a_title {
    font-size: 19px;
    width: 70%;
  }

  .staffdata {
    margin: 5% auto;
  }

  .pin::before {
    width: 80px;
    height: 80px;
  }

  .artist_staff {
    margin-top: -50%;
  }

  .artist_staff .wrapping .image::after {
    width: 80%;
    height: 40%;
    right: -33%;
  }

  .artist_staff .wrapping .image {
    width: 55%;
  }

  .artist_staff .wrapping .image .waku::before {
    width: 97%;
    height: 97%;
    bottom: -3px;
    right: -7px;
  }

  .artist_staff .wrapping::after {
    height: 22vh;
  }

  .staffdata .en {
    font-size: 9px;
    padding: 20px 0 0;
  }

  .staffdata .name {
    font-size: 25px;
    margin: 0 auto 15px;
  }

  .simei {
    font-size: 12px;
    margin-top: 10px;
  }

  .simei::before {
    width: 40%;
  }

  .artist_staff .wrapping .data p.titolo {
    font-size: 19px;
  }

  .movie {
    margin: 5% auto;
    width: 80%;
  }

  .skill_in {
    padding: 0 0 5%;
  }

  .profile:last-child .skill_in {
    padding: 0 0 5%;
  }

  .profile .skill_in .aa_f_g {
    font-size: 13px;
    margin: 0;
  }

  .sk_title {
    font-size: 16px;
  }

  .skill_list {
    font-size: 13px;
  }

  .skill_list li {
    padding: 2px;
  }

  .skill_bar {
    font-size: 16px;
    padding: 7px 0;
    margin: 10px auto;
    border-bottom: 1px solid #707070;
  }

  .artist_staff .wrapping::before {
    left: 5%;
  }

  .artist_staff .wrapping {
    padding: 0 0 5%;
    margin: 5% auto 8%;
  }

  .profile {
    width: 80%;
  }

  #reason .title {
    font-size: 22px;
  }

  .aa_three {
    width: 20px;
    height: 25px;
    margin: 5px;
  }

  .num {
    font-size: 24px;
    padding: 30px 20px;
  }

  ._num {
    font-size: 36px;
    padding: 0 20px 0 40px;
    line-height: 1em;
  }

  ._title {
    padding-top: 3px;
  }

  .reason_wrap .box .txt {
    font-size: 14px;
    padding: 0 20px 0 10px;
  }

  #reason .inner {
    padding: 40px 0;
  }

  .artist_data .titolo {
    font-size: 15px;
  }

  .artist_data .img::after {
    bottom: -6px;
    right: -10px;
    width: 98%;
    height: 98%;
  }

  .artist_data .txt p {
    font-size: 13px;
  }

  .contents_head h6 {
    font-size: 14px;
    letter-spacing: 0.15rem;
  }

  .contents_head h2 {
    font-size: 24px;
  }

  .contents_head h2::before {
    height: 2px;
    max-width: 90px;
  }

  .contents_head p {
    font-size: 15px;
    letter-spacing: 0.05rem;
  }

  #price h5 {
    font-size: 19px;
    padding: 5px 0;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.1rem;
    padding: 0 15px;
  }

  .menu_box table td {
    font-size: 16px;
    padding: 7px 0 0;
  }

  .menu_box .aa_ss {
    font-size: 11px;
  }

  #price .menu_box.option h5 {
    font-size: 18px;
  }

  #price ._txt {
    font-size: 11px;
  }

  .menu_box.option {
    margin: 8% auto;
  }

  .risk .title {
    font-size: 18px;
    padding: 12px 0;
    letter-spacing: inherit;
  }

  .risk table {
    font-size: 14px;
    padding: 1% 0;
  }

  .risk table td {
    padding: 3px;
    letter-spacing: inherit;
  }

  .risk {
    margin: 10% auto auto;
  }

  .contents_head .title {
    font-size: 20px;
    margin: 5% auto auto;
  }

  #schedule .time {
    font-size: 22px;
  }

  #schedule table td {
    font-size: 14px;
  }

  #schedule table tr:last-child td {
    font-size: 14px;
  }

  #schedule table {
    margin: 5px auto;
  }

  #access .contents_head h2,
  #schedule .contents_head h2 {
    margin-bottom: 40px;
  }

  #schedule ._txt {
    font-size: 11px;
  }

  #access,
  #schedule {
    padding: 7% 0;
  }

  #access h3 {
    font-size: 22px;
  }

  #access .txt {
    font-size: 15px;
    margin: 20px auto;
  }

  #access .map {
    margin: 10% auto;
  }

  #access .map iframe {
    max-height: 300px;
  }

  #reserve p {
    font-size: 16px;
    letter-spacing: inherit;
  }

  .footer .copyright {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.05rem;
  }

  .footer {
    padding: 15px;
  }

  .inst_btn {
    font-size: 13px;
    padding: 9px;
    margin: 20px auto;
  }

  .inst_btn::before {
    width: 18px;
    height: 18px;
    top: 26%;
  }















}