html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 1080px;
  color: #82413B;
  background-color: #F7F3E1;
  line-height: 3.5rem;
  letter-spacing: 0.02rem;
  font-size: 1.7rem;
  /* Googleフォント */
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  overflow-x: scroll;
  overflow-y: scroll;

  animation: fadeIn 2s forwards;
}

main, footer {
  overflow-x: scroll;
}
 

.punctuation {
  font-family: serif; /* 句読点フォントを適用 */
}

main, footer {
  overflow-x: hidden;
}

p {
  text-align: justify;
}

/* リンク */
a {
  transition: .5s;
}

a:hover {
  opacity: .7;
}

/* 横幅 */
.inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

/* アニメーションキーフレーム */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn-bottom {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateY(-10%);
    opacity: 1;
  }
}

@keyframes bottomIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
  10%,100% {
    opacity: 1;
  }
}

@keyframes slideIn-left {
  0% {
    opacity: 0;
    transform: translateX(-180px);
  }
  100% {
    transform: translateX(0);
  }
  10%,100% {
    opacity: 1;
  }
}

@keyframes slideIn-right {
  0% {
    opacity: 0;
    transform: translateX(180px);
  }
  100% {
    transform: translateX(0);
  }
  10%,100% {
    opacity: 1;
  }
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: translate(0, 20px);
    opacity: 1;
  }
}

@keyframes furifuri {
  0%, 100% {
    transform: translate(-5px, 10px) rotate(0deg);
  }
  5% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: rotate(0deg);
  }
  22% {
    transform: rotate(5deg);
  }
  24% {
    transform: rotate(0deg);
  }
  26% {
    transform: rotate(5deg);
  }
  28% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  90% {
    transform: translate(-5px, 10px) rotate(0deg);
  }
}

@keyframes infinity-scroll-right {
	from {
    transform: translateX(-80vw);
  }
    to {
    transform: translateX(100vw);
  }
  }

/* スクロール時のフェードイン */
.fade-in-section {
  opacity: 0;
  transform: translate(0, 5%);
  transition: 2s;
}

.fade-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* スクロール時の右スライドイン */
.slide-in-right-img {
  opacity: 1;
  transform: translate(120%, -20%);
  transition: 2s;
}

.slide-in-right {
  opacity: 1;
  transform: translate(0, 0);
}

/* スクロール時の左スライドイン */
.slide-in-left-img {
  opacity: 1;
  transform: translate(-120%, -20%);
  transition: 2s;
}

.slide-in-left {
  opacity: 1;
  transform: translate(0, 0);
}

/* スクロール時のズームイン */
.zoom-in-img {
  opacity: 1;
  transform: scale(0, 0);
  transition: .5s;
}

.zoom-in {
  opacity: 1;
  transform: scale(1, 1);
}

/* =================ヘッダー================= */

.pc_header {
  min-width: 1080px;
  position: absolute;
  top: 10px;
  z-index: 999;
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-weight: 500;
}

.sp_header, .cv {
  display: none;
}

.header_menu_top {
  display: flex;
  justify-content: end;
  align-items: center;
}

.header_menu_bottom {
  display: flex;
  align-items: center;
}

.header_tel_gr {
  margin-right: 20px;
}

.tel_icon {
  vertical-align: baseline;
  margin-right: 5px;
}

.tel_text {
  font-size: 1.3rem;
  line-height: 2.3rem;
  text-align: right;
}

.header_tel {
  font-size: 2.8rem;
  letter-spacing: .15rem;
  color: #739154;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.web_btn {
  color: #fff;
  background-color: #E3AD3E;
  border-radius: 15px;
  padding: 10px 30px;
  margin-right: 10px;
  white-space: nowrap
}

.line_btn {
  color: #fff;
  background-color: #739154;
  border-radius: 15px;
  padding: 10px 30px;
  white-space: nowrap
}

.header_link {
  text-align: center;
  margin-right: 30px;
  transition: 0s;
  display: block;
  line-height: 6rem;
}

.dropdown_menu  {
  background-image: url(../images/arrow1.svg);
  background-repeat: no-repeat;
  background-position: bottom 5px left 50%;
  cursor: pointer;

  position: relative;
  display: flex;
  flex-direction: column;
}

.dropdown_menu:hover {
  background-image: url(../images/arrow_hover.svg);
}

.header_link:hover {
  color: #E3AD3E;
  opacity: 1;
}

.sns_link {
  margin-right: 5px;
}

.dropdown_list {
  font-size: 1.5rem;
  width: 220px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #fff;
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  box-shadow: 0px 1px 3px rgba(96, 96, 96, 0.1);
  text-align: left;
}

.dropdown_list a {
  display: block;
  line-height: 3.8rem;
  transition: 0s;
  color: #82413B;
}

.dropdown_list a:hover {
  color: #E3AD3E;
  opacity: 1;
}

.dropdown_list_show {
  display: block;
}

/* 追従ヘッダー */
.fixed_header {
  /* 画面上部に固定表示するプロパティ */
  width: 100%;
  z-index: 1000;
  position: fixed;
  padding: 0 30px;
  transform: translateY(-200px);
  /* フワッと表示させるためのプロパティ */
  transition: all 0.4s ease-out;
}

.fixed_header_inner {
  padding: 0 30px;
  position: relative;
  width: 100%;
  min-width: 1020px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  background-color: rgba(255,255,255,0.95);  
  border-radius: 20px;
}

.fixed_header_nav {
  position: relative;
  height: 100px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  font-weight: 500;
}

.fixed_header_nav .header_menu_bottom {
  padding-right: 20px;
}

.fixed_header_nav .header_menu_top {
  margin-bottom: 0;
}

.fixed_header_logo {
  display: flex;
  align-items: center;
}

.fixed_header_logo img {
  width: 140px;
}

.reservation_btn_gr {
  display: flex;
}

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

  .fixed_header_logo img {
    max-width: 110px;
    width: 100%;
    margin-right: 20px;
  }

  .fixed_header .header_link {
    margin-right: 15px;
    font-size: 1.5rem;
  }

  .fixed_header .header_tel {
    font-size: 2.2rem;
  }

  .fixed_header .tel_text {
    font-size: 1.2rem;
  }

  .reservation_btn_gr {
    flex-direction: column;
  }

  .fixed_header .web_btn, .fixed_header .line_btn {
    font-size: 1.5rem;
    padding: 4px 20px;
    border-radius: 10px;
    text-wrap: nowrap !important;
    margin-right: 0px;
  }

  .fixed_header .dropdown_list {
    font-size: 1.5rem;
  }

}

@media screen and (max-width: 1080px) {
  .fixed_header {
    padding: 0 10px;
  }

  .fixed_header_inner {
    padding: 0 20px;
  }

  .fixed_header .header_menu_bottom {
    padding-right: 20px;
  }

  .fixed_header .header_tel_gr {
    margin-right: 15px;
  }

  .fixed_header .header_link, .fixed_header .dropdown_list {
    margin-right: 15px;
    font-size: 1.4rem;
  }

  .fixed_header .tel_text {
    font-size: 1.1rem;
  }
}


/* =================　ファーストビュー　================= */
.fv {
  width: 100%;
  height: 800px;
  position: relative;
  margin-bottom: 100px;
  margin-top: 160px;
}

.fv_gr {
  display: flex;
  justify-content: center;
  padding-top: 120px;
  animation: fadeIn-bottom 2s ease-out forwards;
  opacity: 0;
}

.fv_text {
  z-index: 50;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2.7rem;
  line-height: 7rem;
  letter-spacing: .3rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
  width: 40%;
  padding-right: 3vw;
  padding-top: 50px;
}

.fv_img_gr {
  width: 60%;
  height: 100%;
  position: relative;
}

.fv_img1 {
  width: 50%;
  min-width: 400px;
  max-width: 600px;
  margin: 0 auto 0 8vw;
  object-fit: cover;
}

.fv_img2 {
  width: 15vw;
  max-width: 250px;
  min-width: 180px;
  position: absolute;
  bottom: -40%;
  left: -10%;
}

.kumo4 {
  width: 180px;
  position: absolute;
  top: 30px;
  left: 40px;
  animation: slideIn-left 3s ease-out forwards;
}


/* FVイラスト */
.sennin1 {
  width: 240px;
  position: absolute;
  top: 60px;
  right: 30px;
  animation: fuwafuwa 3s linear infinite;
}

.okyu1 {
  width: 490px;
  position: absolute;
  bottom: 20px;
  left: -150px;
  animation: fuwafuwa 4s linear infinite;
}

.fadein_left {
  animation: slideIn-left 2s ease-out forwards;
  opacity: 0;
}

.fadein_right {
  animation: slideIn-right 2s ease-out forwards;
  opacity: 0;
}

.kumo1 {
  width: 300px;
  position: absolute;
  top: -50px;
  left: -120px;

}

.kumo2 {
  width: 220px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.kumo3 {
  width: 290px;
  position: absolute;
  top: -20px;
  right: -120px;
}

.kumo5 {
  width: 310px;
  position: absolute;
  top: 40%;
  left: 10%;
}

.kumo6 {
  width: 290px;
  position: absolute;
  top: 50%;
  right: 8vw;
}

.kumo7 {
  width: 180px;
  position: absolute;
  bottom: -50px;
  right: 50%;
}

.kumo8 {
  width: 540px;
  position: absolute;
  bottom: 50px;
  right: -200px;
}


/* =================　トップご挨拶　================= */
#greeting {
  position: relative;
  background-color: #E5EACF;
}

.yama_back1 {
  width: 103%;
  display: flex;
  justify-content: center;
  background-color: #F7F3E1;
}

.yama_back1_sp {
  display: none;
}

.footer_yama1.fv_yama {
  width: 200px;
  top: 28px;
  left: -21px;
}

.footer_yama3.fv_yama {
  width: 220px;
  top: 10px;
  right: -37px;
}

.greedding_text_gr {
  width: 100%;
  position: relative;
  padding-bottom: 130px;
}

.greeting_text {
  text-align: center;
  line-height: 4rem;
  margin-bottom: 50px;
}

/* トップご挨拶イラスト */
.okyu2 {
  width: 430px;
  position: absolute;
  top: 170px;
  right: -180px;
}

.shishimai1 {
  width: 430px;
  position: absolute;
  bottom: 100px;
  left: -150px;
}

.kawa1 {
  width: 80px;
  position: absolute;
  top: -60px;
  right: 30%;
}

.kawa2 {
  width: 150px;
  max-width: 220px;
  position: absolute;
  top: 100px;
  left: 5%;
}

.kawa3 {
  width: 80px;
  max-width: 130px;
  position: absolute;
  bottom: 80px;
  left: 300px;
}

.kawa4 {
  width: 150px;
  max-width: 220px;
  position: absolute;
  bottom: 150px;
  right: 10%;
}

/* ボタン */
.btn {
  margin: 0 auto;
  max-width: 240px;
  min-width: 240px;
  height: 50px;
  line-height: 1.5rem;
  padding: 1em;
  display: block;
  color: #739154;
  background: #fff;
  font-weight: 500;
  border-radius: 15px;
  text-align:center;
  transition: 0.3s ease-in-out;
  position: relative;
}

.btn:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/arrow2.svg") no-repeat center;
  background-size: contain;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}

.btn:hover {
  opacity: 1;
  background: #E6EDC4;
}

.btn:hover:after {
  right: 1.5rem;
  opacity: 1;
}


/* =================　トップ施術メニュー　================= */
#menu {
  background-color: #E8DAB8;
  position: relative;
  padding-bottom: 130px;
  background-image: url(../images/kusa_back.webp);
  background-size: 10%;
  background-repeat: repeat;
}

.yama_back2 {
  background-color: #E5EACF;
  width: 103%;
  display: flex;
  justify-content: center;
}

.footer_yama1.top_menu_yama {
  width: 200px;
  top: 36px;
  left: -21px;
}

.footer_yama2.top_menu_yama {
  width: 180px;
  top: 22px;
  left: 109px;
}

.footer_yama3.top_menu_yama {
  width: 220px;
  top: 20px;
  right: -37px;
}

.footer_yama4.top_menu_yama {
  width: 190px;
  top: 8px;
  right: 102px;
}  

.menu_container {
  position: relative;
  padding-top: 60px;
}

.heading2_gr {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 60;
  left: 40;
}

.h2 {
  text-orientation: upright;
  -webkit-text-orientation: upright;
  font-size: 3.6rem;
  line-height: 6rem;
  letter-spacing: .2rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
  border-left: solid 1px #82413B;
  border-right: solid 1px #82413B;
}

.h2_en {
  line-height: 4rem;
  letter-spacing: .3rem;
}

/* メニューブロック */
.top_menu_inner {
  display: flex;
  padding: 40px;
  color: #fff;
  position: relative;
  margin-bottom: 100px;
}

.green_back {
  background-color: #739154;
  margin-left: 150px;
  background-image: url(../images/box_topleft.svg), url(../images/box_topright.svg), url(../images/box_bottomleft.svg), url(../images/box_bottomright.svg), url(../images/box_top.svg), url(../images/box_bottom.svg), url(../images/box_left.svg), url(../images/box_right.svg);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-x, repeat-y, repeat-y;
  background-position: left top, right top, left bottom, right bottom, top, bottom, left, right;
  filter:blur(0);
}

.red_back {
  background-color: #E2664D;
  margin-left: 150px;
  background-image: url(../images/box_topleft_red.svg), url(../images/box_topright_red.svg), url(../images/box_bottomleft_red.svg), url(../images/box_bottomright_red.svg), url(../images/box_top_red.svg), url(../images/box_bottom_red.svg), url(../images/box_left_red.svg), url(../images/box_right_red.svg);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-x, repeat-y, repeat-y;
  background-position: left top, right top, left bottom, right bottom, top, bottom, left, right;
}

.yellow_back {
  background-color: #E3AD3E;
  margin-right: 150px;
  background-image: url(../images/box_topleft_ye.svg), url(../images/box_topright_ye.svg), url(../images/box_bottomleft_ye.svg), url(../images/box_bottomright_ye.svg), url(../images/box_top_ye.svg), url(../images/box_bottom_ye.svg), url(../images/box_left_ye.svg), url(../images/box_right_ye.svg);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-x, repeat-y, repeat-y;
  background-position: left top, right top, left bottom, right bottom, top, bottom, left, right;
}

.top_menu_left {
  width: 50%;
  object-fit: cover;
  border-radius: 20px;
}

.top_menu_right {
  width: 60%;
  min-height: 340px;
  padding-left: 40px;
}

.top_menu_text {
  margin-bottom: 30px;
  margin-top: 20px;
}

.right {
  margin: 0 0 0 auto;
}

.h3 {
  font-size: 3.2rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  line-height: 4rem;
  margin-bottom: 20px;
}

.sub_menu_gr {
  display: flex;
  flex-wrap: wrap;
}

.sub_menu {
  background-color: #fff;
  color: #739154;
  padding: 0px 20px;
  border-radius: 30px;
  margin-right: 10px;
  margin-bottom: 5px;
}

/* メニューイラスト */
.shinkyu {
  width: 180px;
  position: absolute;
  bottom: -60px;
  left: -130px;
}

.menu_kumo1 {
  width: 300px;
  position: absolute;
  top: -60px;
  right: -250px;
}

.menu_kumo2 {
  width: 300px;
  position: absolute;
  top: -80px;
  left: -250px;
}

.massage {
  width: 180px;
  position: absolute;
  top: -200px;
  right: -20px;
}

.menu_kumo3 {
  width: 330px;
  position: absolute;
  bottom: 80px;
  left: -130px;
}


/* =================　ブログ　================= */
#blog {
  position: relative;
}

.blog_shishimai {
  width: 500px;
  position: absolute;
  top: -80px;
  animation :infinity-scroll-right 30s infinite linear 0.5s both;
  animation-delay: -5s;
}

.blog_kumo1 {
  width: 500px;
  position: absolute;
  top: -100px;
  right: -200px;
}

.blog_container {
  position: relative;
  padding-top: 200px;
  padding-bottom: 100px;
}

.blog_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 30px;
  margin-left: 150px;
  margin-bottom: 50px;
}

.sp_blog_list {
  display: none;
}

.thumbnail {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.line {
  width: 100%;
}

.date_cat_gr {
  margin-top: 15px;
  margin-bottom: -15px;
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: solid 1px #82413B;
}

.date {
  margin-right: 10px;
}

.category {
  background-color: #E2664D;
  height: 30px;
  color: #fff;
  font-size: 1.4rem;
  padding: 0px 10px;
  border-radius: 30px;
  line-height: 2.8rem;
}

.blog_h3 {
  margin-top: 30px;
  font-weight: 600;
}


/* =================　ご予約　================= */
#reservation {
  position: relative;
  background-color: #E5EACF;
  padding: 100px 0 80px 0;
}

.reservation_top_text p {
  text-align: center;
}

.reservation_h2 {
  font-size: 3.6rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
  line-height: 4rem;
  margin-bottom: 30px;
  text-align: center;
}

.reservation_kumo {
  width: 500px;
  position: absolute;
  top: -100px;
  left: -200px;
}

.reservation_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 180px;
}

.telmark_l {
  width: 30px;
  height: 45px;
}

.spmark {
  height: 45px;
}

.linemark {
  width: 37px;
  height: 45px;
}

.reservation_gr {
  width: 100%;
  height: 155px;
  background-color: #fff;
  border-radius: 20px;
  outline: 2px solid #E1D7B3;
  outline-offset: -6px;
  padding: 40px 20px;
  position: relative;
  transition: .5s;
}

.reservation_container a:hover {
  opacity: 1;
}

.reservation_gr:hover {
  background-color: #FCFFF0;
}

.reservation_okyu {
  width: 120px;
  position: absolute;
  top: -132px;
  left: 50%;
  transform: translateX(-50%);
}

.reservation_okyu_line {
  width: 120px;
  position: absolute;
  top: -132px;
  left: 10%;
}

.line_qr_text {
  position: absolute;
  top: -120px;
  right: -20px;
}

.reservation_text_gr {
  color: #739154;
}

.reservation_text_gr2 {
  display: flex;
  justify-content: center;
  height: 45px;
}

.reservation_heading_tel {
  font-size: 2.8rem;
  font-weight: 600;
  margin-left: 10px;
  line-height: 4rem;
}

.reservation_heading {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 4rem;
  margin-left: 1vw;
}

.reservation_hours {
  font-size: 1.4rem;
  text-align: center;
  margin-top: -5px;
}

.reservation_toptext {
  font-size: 1.2rem;
  line-height: 2rem;
  margin-top: 10px;
}

.reservation_bottomtext {
  color: #739154;
  font-size: 1.2rem;
  letter-spacing: -0.08rem;
  line-height: 2rem;
  text-align: center !important;
  margin-top: -3px;
}


/* =================　フッター　================= */
#footer {
  background-color: #E5EACF;
}

.footer {
  margin-top: 100px;
  padding: 100px 0;
  position: relative;
  background-color: #90A66D;
  color: #fff;
}

.footer_yama1 {
  width: 200px;
  position: absolute;
  top: -28px;
  left: -21px;
}

.footer_yama2 {
  width: 180px;
  position: absolute;
  top: -35px;
  left: 109px;
}

.footer_shishimai {
  width: 150px;
  position: absolute;
  top: -74px;
  left: 80px;
  animation: furifuri 8s infinite;
}

.footer_yama3 {
  width: 220px;
  position: absolute;
  top: -49px;
  right: -37px;
}

.footer_yama4 {
  width: 190px;
  position: absolute;
  top: -50px;
  right: 102px;
}

.footer_name {
  font-size: 2.8rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 500;
  line-height: 4rem;
}

.adress {
  margin-top: 20px;
}

.hoken_text {
  margin: 10px 0;
}

.footer_br {
  display: none;
}

.inside_store_btn {
  display: block;
  width: 150px;
  padding: 5px 20px;
  border: solid 1px #fff;
  border-radius: 10px;
  position: relative;
}

.inside_store_btn:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/arrow3.svg") no-repeat center;
  background-size: contain;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}

.inside_store_btn:hover {
  opacity: 1;
  background: #B3CA8F;
}

.inside_store_btn:hover:after {
  right: 1.2rem;
  opacity: 1;
}

.schedule_wrap {
  width: 65%;
  margin-left: 60px;
}

.schedule {
  width: 100%;
  table-layout: fixed;
  margin: 40px 0 20px 0;
}

.schedule_time {
  text-align: left !important;
  width: 30%;
  padding: 0 10px;
  letter-spacing: 0.2rem;
  font-weight: 500;
}

.schedule1 th {
  text-align: center;
  font-weight: 400;
  border-bottom: solid 1px #fff;
  vertical-align: middle;
  height: 70px;
  font-weight: 500;
}

.schedule_padding_right {
  padding-right: 10px;
}

.schedule2 td {
  border-bottom: solid 1px #fff;
  vertical-align: middle;
  height: 70px;
  text-align: center;
}

.schedule3 td {
  vertical-align: middle;
  height: 70px;
  text-align: center;
}

.schedule td {
  color: #fff;
  font-weight: 500;
}

.schedule_wrap p {
  margin-top: 10px;
  text-align: left;
}

.footer_wrap {
  display: flex;
  margin: 40px 0 60px 0;
}

.footer_wrap_left {
  padding-right: 50px;
  width: 50%;
}

.footer_wrap_right {
  width: 50%;
}

.map {
  width: 100%;
  max-width: 500px;
  height: 100%;
  border-radius: 20px;
  border: solid 2px #fff;
}

.footer_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.5rem;
}

.footer_bottom li {
  margin: 0 10px;
}

.footer_menu_list {
  display: flex;
}

.footer_menu_link_gr {
  display: flex;
}

.footer_menu_link_gr a {
  white-space: nowrap;
}

.footer_menu_link_gr li {
  margin-right: 0px;
  margin-left: 5px;
}

.footer_menu_link::after {
  content: "/";
  margin: 0 0px 0 5px;
}

.footer_menu_text {
  margin-left: 5px;
}

.copy_right {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  margin-top: 40px;
}

.page_top:hover {
  opacity: 1;
}

.page_top:hover .page_top_img {
  bottom: 35px;
}

.page_top_img {
  width: 60px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  transition: .5s;
}


/* ぱんくずリスト */
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
  line-height: 2.5rem;
  margin-top: 5px;
}

.breadcrumbs li::after {
  content: "/";
  margin: 0 5px;
}

.breadcrumbs li:last-child:after {
  content: "";
}

.mark {
  font-weight: 600;
}

.breadcrumbs {
  position: absolute;
  top: 160px;
  right: 30px;
}


/* =======================================================
下層ページ：ご挨拶
======================================================= */

.child_header {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 150px;
  height: 600px;
  position: relative;
  background-color: #E5EACF;
}

.child_head_center {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  padding-left: 35px;
}

.child_header_kumo {
  width: 590px;
  position: absolute;
  bottom: 80px;
  left: -230px;
  animation: slideIn-left 1.5s ease-out forwards;
}

.child_header_kumo2 {
  width: 620px;
  position: absolute;
  bottom: 0px;
  right: -250px;
  animation: slideIn-right 1.5s ease-out forwards;
}

.child_header_back {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.greeding_gr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.profile_img {
  width: 100%;
  border-radius: 20px;
}

.child_heading {
  font-size: 2.4rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
  line-height: 4rem;
  margin-bottom: 30px;
}

.director {
  color: #739154;
  font-size: 1.6rem;
  font-weight: 600px;
  margin-top: 20px;
}

.name_gr {
  display: flex;
  color: #739154;
}

.name {
  font-size: 2.4rem;
  margin-right: 30px;
  margin-bottom: 10px;
}

.en_name {
  font-size: 1.6rem;
  color: #90A66D;
  letter-spacing: 0.2rem;
}

.greeding_bottom_gr {
  margin-top: 40px;
  margin-bottom: 180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.greeding_bottom {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
}

.greeding_bottom_headgr {
  background-image: url(../images/line2.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  margin-bottom: 20px;
}

.greeding_bottom_head {
  width: 80px;
  font-weight: 600;
  color: #739154;
  padding: 0 10px;
  background-color: #fff;
  margin: 0 auto;
  text-align: center;
}

.greeding_bottom_line {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.child_greeding_massage {
  width: 180px;
  position: absolute;
  bottom: -80px;
  right: -60px;
}

/* 院名の由来 */
#origin {
  background-color: #E8DAB8;
  position: relative;
  padding-bottom: 150px;
  padding-top: 100px;
  background-image: url(../images/kusa_back.webp);
  background-size: 10%;
  background-repeat: repeat;
}

.yama_back3 {
  width: 103%;
  background-color: #F7F3E1;
}

.origin_gr {
  margin-top: 0px;
  display: flex;
  padding: 50px;
  position: relative;
  background-color: #F9F7EA;
  background-image: url(../images/box_topleft_wh.svg), url(../images/box_topright_wh.svg), url(../images/box_bottomleft_wh.svg), url(../images/box_bottomright_wh.svg), url(../images/box_top_wh.svg), url(../images/box_bottom_wh.svg), url(../images/box_left_wh.svg), url(../images/box_right_wh.svg);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-x, repeat-y, repeat-y;
  background-position: left top, right top, left bottom, right bottom, top, bottom, left, right;
}

.vertical_head {
  position: absolute;
  top: -40px;
  left: 40px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2.7rem;
  letter-spacing: .3rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
  background-color: #fff;
  border: solid 1px #82413B;
  border-radius: 10px;
  padding: 10px 5px;
}

.origin_left {
  width: 35%;
  margin-right: 30px;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.origin_img {
  width: 90%;
  object-fit: contain;
}

.origin_right {
  width: 65%;
  margin: 0 auto;
  align-items: center;
}


.origin_text {
  color: #82413B;
}

.origin_kumo  {
  width: 300px;
  position: absolute;
  right: -150px;
  bottom: -50px;
}

/* =======================================================
下層ページ：鍼灸
======================================================= */
.sub_title {
  color: #fff;
  padding: 0px 10px;
  border-radius: 10px;
  font-size: 1.8rem;
  letter-spacing: .3rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
  position: absolute;
  top: 520px;
  left: 50%;
  transform: translateX(-50%);
  text-wrap: nowrap;
}

.green {
  background-color: #739154;
}

/* 鍼灸メニューボタン */
.acupuncture_menu {
  width: 690px;
  display: flex;
  text-align: center;
  margin: 0 auto;
}

.menu_btn {
  margin: 0 auto;
  max-width: 200px;
  min-width: 200px;
  height: 50px;
  line-height: 1.5rem;
  padding: 1em;
  display: block;
  background: #fff;
  font-weight: 600;
  border-radius: 15px;
  text-align:center;
  transition: 0.3s ease-in-out;
  position: relative;
}

.menu_btn:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("../images/arrow1.svg") no-repeat center;
  background-size: contain;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
}

.menu_btn:hover {
  opacity: 1;
  background: #E6EDC4;
}

.menu_btn:hover:after {
  opacity: 1;
}

/* MENU01 鍼灸 */
#menu1_acupuncture {
  padding: 100px 0;
}

.menu_title_gr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 100px;
}

.menu_title_img {
  width: 67px;
  margin: 0 auto;
}

.menu_title {
  font-size: 3.2rem;
  letter-spacing: .3rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
  margin-top: 10px;
}

.menu_head {
  display: flex;
  margin-bottom: 100px;
}

.menu_head_reverse {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 100px;
}

.menu_head_img_gr {
  width: 60%;
}

.menu_head_img {
  width: 100%;
  border-radius: 20px;
}

.menu_h3 {
  font-size: 2.4rem;
  letter-spacing: .3rem;
  line-height: 5rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
  padding-left: 30px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-text-orientation: upright;
}

.menu_h3_gr {
  position: relative;
  width: 40%;
  display: flex;
}

.menu_h3_gr_reverse .menu_h3 {
  padding: 0 50px 0 0;
  margin-left: auto !important;
  margin-right: 0 !important;
}

.menu_h3_img {
  position: absolute;
  width: 180px;
  bottom: -30px;
  right: 30px;
}

.menu_h3_img_reverse {
  position: absolute;
  width: 180px;
  bottom: -30px;
  left: 50px;
}

.menu_text_gr1 {
  display: flex;
  margin-bottom: 60px;
}

.menu_text_gr2 {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 60px;
}

.menu_text_img_gr {
  width: 30%;
}

.menu_text_img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.menu_text_img_contain {
  width: 100%;
  border-radius: 20px;
  object-fit: contain;
}

.menu_text_right {
  padding-left: 50px;
  width: 70%;
}

.menu_text_left {
  padding-right: 50px;
  width: 70%;
}

.who_caption {
  margin-top: 60px;
  margin-bottom: 10px;
}

.table_who {
  background-color: #fff;
  border: none;
  line-height: 3rem;
}

.table_who_title {
  background-color: #E3AD3E;
  color: #fff;
}

.table_who_title th {
  padding: 10px;
  text-align: center;
}

.table_who tr {
  border-bottom: 1px solid #E8DAB8;
}

.table_who td {
  padding: 10px 20px;
}

.table_who tr:first-child, .table_who tr:last-child {
  border-bottom: none;
}

.table_who_name, .table_who_left {
  border-right: 1px solid #E8DAB8;
}

.table_who_name {
  vertical-align: middle;
  text-align: center;
  background-color: #F4EFE3;
  width: 20%;
}

/* 内部リンクボタン */
.btn_question {
  margin: 0 auto;
  max-width: 240px;
  min-width: 240px;
  height: 50px;
  line-height: 1.5rem;
  padding: 1em;
  display: block;
  color: #739154;
  background: #FAFDE6;
  font-weight: 500;
  border-radius: 15px;
  text-align:center;
  transition: 0.3s ease-in-out;
  position: relative;
}

.btn_question:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/arrow2.svg") no-repeat center;
  background-size: contain;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}

.btn_question:hover {
  opacity: 1;
  background: #E6EDC4;
}

.btn_question:hover:after {
  right: 1.5rem;
  opacity: 1;
}

.inner_link_gr {
  display: flex;
  width: 550px;
  margin: 60px auto 0 auto;
}

/* 不眠治療 */
#menu2_insomnia {
  background-color: #EDE3CA;
  padding: 100px 0;
  position: relative;
}

.insomnia_column {
  display: flex;
  margin-bottom: 60px;
  align-items: center;

  margin-top: 0px;
  display: flex;
  padding: 50px;
  position: relative;
  background-color: #F9F7EA;
  background-image: url(../images/box_topleft_wh2.svg), url(../images/box_topright_wh2.svg), url(../images/box_bottomleft_wh2.svg), url(../images/box_bottomright_wh2.svg), url(../images/box_top_wh.svg), url(../images/box_bottom_wh.svg), url(../images/box_left_wh.svg), url(../images/box_right_wh.svg);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-x, repeat-y, repeat-y;
  background-position: left top, right top, left bottom, right bottom, top, bottom, left, right;
}

.insomnia_column_left {
  width: 70%;
  padding-right: 40px;
}

.insomnia_column_right {
  width: 30%;
}

.insomnia_column_img {
  width: 100%;
  border-radius: 20px;
}

.insomnia_column_h4 {
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.insomnia_kumo {
  width: 620px;
  position: absolute;
  right: -350px;
  bottom: -70px;
}


/* 不妊治療 */
#menu3_infertility {
  padding: 100px 0;
}

.pregnant_img {
  display: flex;
  justify-content: center;
}

.pregnant_img img {
  width: 140px;
}

.about_infertility {
  position: relative;
  border-radius: 20px;
  background-color: #EDE3CA;
  padding: 50px;
  margin-top: -30px;
}

.about_infertility_img {
  padding-left: 50px;
  width: 40%;
}

.about_infertility_img img {
  object-fit: contain;
}

.causes_infertility {
  position: relative;
  padding: 10px 30px 30px 30px;
  background-color: #fff;
  border-radius: 0 20px 20px 20px;
  margin-top: 100px;
}

.causes_infertility_head {
  padding: 10px 30px;
  position: absolute;
  top: -55px;
  left: 0;
  color: #fff;
  border-radius: 20px 20px 0 0;
  font-size: 2rem;
}

.yellow_back2 {
  background-color: #E3AD3E;
}

.green_back2 {
  background-color: #739154;
}

.causes_infertility_title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.causes_infertility_title:before {
  content:  "";
  width:  15px;
  height:  15px;
  display:  inline-block;
  background-color: #E3AD3E;
  border-radius:  50%;
  margin-right: 5px;
}

.man .causes_infertility_title:before {
  content:  "";
  width:  15px;
  height:  15px;
  display:  inline-block;
  background-color: #739154;
  border-radius:  50%;
  margin-right: 5px;
}

.causes_infertility_list {
  border-bottom: dotted 1px #82413B;
  padding: 20px 10px;
}

.causes_infertility_list:last-child {
  border-bottom: none;
}

/* 他の施術メニュー */
#other_menu {
  padding: 80px 0 50px 0;
  background-color: #E7D99D;
}

.other_menu_title {
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: .3rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
}

.other_menu_gr {
  width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px auto;
}

.other_menu_text {
  padding: 30px 50px;
  width: 100%;
  height: 130px;
  max-width: 360px;
  background-color: #F7F3E1;
  border-radius: 20px;
  font-weight: 600;
  font-size: 2rem;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.other_acupuncture {
  background-image: url(../images/shinkyu.webp);
  background-size: 30%;
  background-position: top 50% right 40px;
  padding-left: 80px;
}

.other_beauty_acupuncture {
  background-image: url(../images/biyoushin_illust.webp);
  background-size: 25%;
  background-position: top 50% right 40px;
  padding-left: 80px;
}

.other_stretch_massage {
  background-image: url(../images/massage.webp);
  background-size: 30%;
  background-position: right 40px bottom -10px;
}

.other_menu_text:hover {
  background-color: #EEE8CE;
  opacity: 1;
}

/* =======================================================
下層ページ：美容鍼
======================================================= */
#menu4_beauty_acupuncture {
  padding: 100px 0;
}

.yellow {
  background-color: #E3AD3E;
}

.biyoushin_illust2 {
  display: flex;
  justify-content: center;
}

.biyoushin_illust2 img {
  width: 90%;
  margin-top: -30px;
}

/* =======================================================
下層ページ：ストレッチ・マッサージ
======================================================= */
/* MENU5 ストレッチ */
#menu5_stretch {
  padding: 100px 0;
}

.stretch_menu {
  width: 460px;
  display: flex;
  text-align: center;
  margin: 0 auto;
}

.red {
  background-color: #E2664D;
}

.stretch_illust {
  width: 50%;
  display: flex;
  justify-content: center;
}

.massage_illust {
  width: 40%;
  display: flex;
  justify-content: center;
}

/* MENU6 マッサージ */
#menu6_massage {
  padding: 100px 0;
  background-color: #EDE3CA;
}

.stretch_illust img, .massage_illust img {
  margin-top: -25%;
}

.stretch_illust img {
  width: 90%;
}

.massage_illust img {
  width: 70%;
}

.menu_h3_gr_reverse_noillust .menu_h3 {
  padding: 0;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* =======================================================
下層ページ：料金
======================================================= */
.inner_price {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}

.price_h2 {
  font-size: 2.8rem;
  letter-spacing: .3rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
}

.price_table {
  margin-top: 40px;
  border-radius: 20px;
  background-color: #fff;
}

.price_table_head {
  border-radius: 20px 20px 0 0;
  padding: 10px 40px !important;
}

.price_table_text {
  padding: 10px 60px;
}

.price_table_tr {
  line-height: 8rem;
  border-bottom: dotted 1px #82413B;
  margin-bottom: 0 !important;
  font-weight: 600;
}

.price_table_tr:last-child {
  border-bottom: none;
}

.price_attention {
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin-top: 20px;
}

.ticket_sub_text {
  font-weight: 500;
}

#ticket_price {
  padding-bottom: 130px;
}

/* =======================================================
下層ページ：よくあるご質問
======================================================= */
.question_cat_gr {
  padding: 80px 0 0 0;
}

.question_cat_name {
  font-size: 2.4rem;
  letter-spacing: .3rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.question_body {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 25px 70px;
  margin-top: 20px;
}

.question_body:hover {
  cursor:pointer
}

.question_title {
  font-size: 1.8rem;
  font-weight: 600;
}

.question_title::before {
  display: block;
	content: "";
	position: absolute;
	top:40px; 
	right:30px;
	width: 20px;
	height: 2px;
	background-color: #82413B;
	transition: .2s;
	transform: rotate(90deg);
}

.question_title::after {
  display: block;
	content: "";
	position: absolute;
	top:40px; 
	right:30px;
	width: 20px;
	height: 2px;
	background-color: #82413B;
	transition: .2s;
	transform: rotate(0deg);
}

.question_title.on::before {
	transform: rotate(135deg);
}

.question_title.on::after {
	transform: rotate(45deg);
}

.question_answer {
  display: none;
  margin-top: 25px;
}


.q {
  font-size: 2.8rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  position: absolute;
  top: 22px;
  left: 30px;
}

#question_about_us {
  padding-bottom: 130px;
}

/* =======================================================
下層ページ：ブログ一覧
======================================================= */
.blog_inner {
  display: flex;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.blog_list_archive {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 40px;
  margin-bottom: 60px;
}

.blog_main {
  width: 65%;
  padding-bottom: 150px;
}

.blog_main_inner {
  max-width: 740px;
  padding: 0 40px;
  margin: 0 auto;
}

.cat_name {
  width: 100%;
  font-weight: 600;
  margin: 0 auto 30px auto;
  font-size: 1.8rem;
}

/* サイドバー */
.sidebar {
  padding: 0 40px;
  width: 35%;
}

.sidebar_gr {
  margin-bottom: 40px;
}

.sidebar_title {
  letter-spacing: .1rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration:underline;
  text-decoration-color: #82413B;
  padding-bottom: 15px;
}

.sidebar_categories li {
  margin-bottom: 10px;
  line-height: 2.6rem;
  font-size: 1.5rem;
}

.btn {
  cursor: pointer;
}

.blog_btn {
  margin-top: 60px;
}

.next_prev {
  text-align: center;
  margin-bottom: 40px;
}

.next_prev a {
  margin: 0 10px;
}

.next_prev span {
  margin: 0 5px;
  border-bottom: solid 1px #82413B;
}

/* =======================================================
下層ページ：ブログ記事
======================================================= */
.blog_title {
  font-size: 2.8rem;
  font-weight: 600;
  margin: 30px 0 60px 0;
  line-height: 4rem;
}

.blog_detail h2, .blog_detail h3, .blog_detail h4 {
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}

.blog_detail h2 {
  font-size: 2.4rem;
  border-bottom: solid 2px #DCCC9F;
}

.blog_detail h3 {
  font-size: 2rem;
  border-bottom: solid 1px #DCCC9F;
}

.blog_detail h4 {
  font-size: 1.8rem;
}

.blog_detail figure {
  text-align: center;
  margin: 40px auto;
}

.blog_detail ul {
  list-style: inside;
}

.blog_detail ol {
  list-style-type: decimal;
  padding-left: 20px;
}

/*--------------------------------
 下層：404ページ
---------------------------------*/

.wrap_404.inner {
  width: 100%;
  margin: 0px auto;
  padding: 300px 40px 200px 40px;
}

.title404 {
  font-size: 3.6rem;
  font-weight: 500;
}

.wrap_404 p {
  margin: 50px 0;
  text-align: center;
}



/*media Queries 767px
----------------------------------------------------*/
@media screen and (max-width:767px) {
  body {
    font-size: 1.6rem;
    line-height: 3.2rem;
    letter-spacing: 0rem;
    min-width: auto;
  }

  main, footer {
    overflow-x: hidden;
  }

  .inner {
    padding: 0 24px;
  }

  .sp_logo {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
  }

  .sp_logo img {
    width: 72px;
  }

  .pc_header, .fixed_header {
    display: none;
  }

  .sp_header {
    z-index: 1000;
    position: absolute;
    display: flex;
    justify-content: end;
    height: 70px;
    top: 0px;
    min-width: auto;
    padding: 10px;
    align-items: start;
    width: 100%;
  }

  .sp_header_tel {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #739154;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
  }

  .sp_tel_icon {
    vertical-align: middle;
    margin-bottom: 8px;
  }

  .sp_header_icon_gr {
    margin: 0;
    display: flex;
    z-index: 1000;
    position: fixed;
  }

    /* スマホ用メニューボタン */  
    .sp-menu{
      display: block;
      padding: 80px 25px 150px 25px;
      color: #fff;
      background-color: rgba(115, 145, 84, 1);
      position: fixed;
      top: 0;
      left: 100%;
      width: 100%;
      height: 100vh;
      z-index: 999;
      transition: .5s;
      font-size: 1.5rem;
      overflow-x: hidden;
      line-height: 5rem;
    }

    .sp-menu.active{
      width: 80%;
      left: 20%;

    }

    .sp_header_tel_list.active {
      opacity: 0;
    }

    .sp_header_tel_list {
      transition: .5s;
      opacity: 1;
    }
  
    .hamburger {
      display: block; 
      position: relative;
      width: 45px; 
      height: 45px;
      background-color: #739154;
      border-radius: 100vh;
      cursor: pointer;
    }
    
    .hamburger span{
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      background-color: #fff;
      height: 3px; 
      width: 60%; 
      border-radius: 3px;
      transition: all 0.4s ease-in-out;
    }
    .hamburger span:first-of-type{/* ハンバーガーメニューの1番目の線 */
      top: 15px;
    }
    .hamburger span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
      bottom: 15px;
    }

    /* メニュークリック時 */
    .hamburger.active span:first-of-type{/* ハンバーガーメニューの1番目の線 */
      transform: translate(-50%, 6px) rotate(45deg);
      z-index: 1000;
    }
    .hamburger.active span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
      transform: translate(-50%, -6px) rotate(-45deg);
      z-index: 1000;
    }

  .sp-menu-link,  .sp-menu-child-link a {
    display: block;
    width: 100%;
  }  

  .sp-menu_border {
    border-bottom: solid 1px #E5EACF;
  }

  .sp-menu-child-link {
    padding-left: 20px;
    margin-left: 10px;
    position: relative;
    border-bottom: dotted 1px #E5EACF;
    font-size: 1.5rem;
  }

  .sp-menu-child-link:last-child {
    letter-spacing: -0.2rem;
  }

  .sp-menu-child-link a::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("../images/arrow3.svg") no-repeat center;
    background-size: contain;
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
  }

  .header_tel_gr {
    margin-top: 40px;
    text-wrap: nowrap;
    text-align: center;
  }

  .tel_text {
    text-align: center;
  }

  .header_tel {
    color: #fff;
    font-size: 2.6rem;
  }

  .tel_icon {
    width: 20px;
  }

  .sp_web_line_btn a {
    margin: 0 auto;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 300px;
    height: 50px;
    line-height: 3rem;
    background-color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
  }

  .web_btn {
    color: #E3AD3E;
  }

  .sp_web_line_btn .line_btn {
    margin-top: 10px;
    color: #739154;
  }

  .sp_sns_link_gr {
    display: flex;
    justify-content: center;
  }

  .sp_sns_link {
    margin: 10px;
  }

  /* CVボタン */
  .cv {
    display: block;
    background-color: rgba(255,255,255,0.9);
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 998;
    padding: 5px;
    animation: bottomIn .2s ease-out;
    animation-duration: 3s;
  }

  .cv_ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .cv_btn {
    display: block;
    text-align: center;
    width: 100%;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    letter-spacing: .1rem;
  }

  .line_web_icon {
    margin-right: 8px;
  }

  /* FV */
  .fv {
    margin-top: 140px;
    margin-bottom: 60px;
    height: 650px;
  }

  .fv_gr {
    padding: 0 50px;
  }

  .fv_img1 {
    min-width: 350px;
    margin: 0px auto 0 -5vw;
  }

  .fv_img2 {
    min-width: 160px;
    left: -100px;
  }

  .fv_text {
    font-size: 2.2rem;
    line-height: 5rem;
    padding: 0;
    align-items: center;
  }

  /* fvイラスト */
  .sennin1 {
    width: 150px;
    top: -70px;
    right: -30px;
  }

  .okyu1 {
    width: 300px;
    bottom: 0px;
    left: -150px;
  }

  .kumo3 {
    width: 177px;
    top: -150px;
    right: -60px;
  }

  .kumo6 {
    width: 250px;
    top: -100px;
    left: -120px;
    animation: slideIn-left 1s ease-out forwards;
  }

  .kumo5 {
    width: 220px;
    top: 230px;
    left: -80px;
  }

  .kumo7 {
    width: 107px;
    bottom: -50px;
    right: 40%;
  }

  .kumo8 {
    width: 277px;
    bottom: 100px;
    right: -120px;
  }

  .kumo1, .kumo2, .kumo4 {
    display: none;
  }

  /* トップご挨拶 */
  .footer_yama1.fv_yama {
    width: 110px;
    top: 13px;
    left: -27px;
  }

  .footer_yama3.fv_yama {
    width: 129px;
    top: 4px;
    right: -58px;
  }

  .kawa1, .kawa3 {
    display: none;
  }

  .kawa2 {
    width: 118px;
    top: -140px;
  }

  .kawa4 {
    width: 118px;
    bottom: 120px;
    right: -10px;
  }

  .okyu2 {
    width: 258px;
    top: 73px;
    right: -140px;
  }

  .shishimai1 {
    width: 260px;
    bottom: 70px;
    left: -120px;
  }

  .greedding_text_gr {
    max-width: 520px;
    margin: 0 auto;
    padding-bottom: 230px;
  }

  .greeting_text {
    margin-top: 160px;
    margin-bottom: 40px;
    text-align: justify;
    line-height: 3.2rem;
  }

  .br {
    display: none;
  }

  /* トップ施術メニュー */
  .footer_yama1.top_menu_yama {
    width: 147px;
    top: 18px;
    left: -44px;
  }

  .footer_yama2.top_menu_yama {
    width: 113px;
    top: 11px;
    left: 55px;
  }

  .footer_yama3.top_menu_yama {
    width: 148px;
    top: 5px;
    right: -41px;
  }

  .footer_yama4.top_menu_yama {
    width: 107px;
    top: 4px;
    right: 56px;
  }  

  .heading2_gr.top_menu_heading2 {
    top: 45px;
  }

  
  .heading2_gr {
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 30px;
  }

  .h2 {
    font-size: 2.4rem;
    line-height: 4rem;
  }

  .h2_en {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .menu_container {
    padding-top: 160px;
  }

  .top_menu_inner {
    margin: 0 auto;
    flex-direction: column;
    padding: 30px;
    margin-top: 120px;
    position: relative;
    z-index: 100;
  }

  .top_menu_left {
    width: 100%;
  }

  .top_menu_right {
    width: 100%;
    padding-left: 0;
    min-height: auto;
  }

  .h3 {
    font-size: 2.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .sub_menu {
    padding: 0 10px;
    margin-right: 5px;
  }

  .top_menu_text {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .btn.right {
    margin: 0 auto;
  }

  .btn.top_menu_btn {
    min-width: 200px;
  }

  .shinkyu {
    width: 130px;
    top: -70px;
    left: auto;
    right: -20px;
  }

  .menu_kumo1 {
    width: 197px;
    position: absolute;
    top: -140px;
    right: -80px;
  }

  .massage {
    width: 140px;
    position: absolute;
    top: -140px;
    right: -30px;
}

.menu_kumo2 {
  width: 192px;
  top: -140px;
  left: -80px;
}

.menu_kumo3 {
  width: 200px;
  left: -126px;
  bottom: 160px;
  z-index: 99;
}

/* ブログ */

.blog_kumo1 {
  width: 310px;
  right: -120px;
  top: -70px;
}

.blog_shishimai {
  width: 320px;
  z-index: 100;
  top: -48px;
}

.blog_list {
  display: none;
}

.sp_blog_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 230px;
  margin-left: 0px;
  margin-bottom: 40px;
}

#blog {
  padding-bottom: 120px;
}

.date {
  margin-right: 6px;
  font-size: 1.4rem;
}

/* ご予約 */
#reservation {
  padding: 80px 0 20px 0;
}

.reservation_kumo {
  width: 248px;
  top: -50px;
  left: -80px;
}

.reservation_h2 {
  font-size: 2.4rem;
}

.reservation_top_text p {
  width: 100%;
  margin: 0 auto;
  text-align: justify;
}

.reservation_toptext {
  margin-top: 10px !important;
}

.reservation_container {
  grid-template-columns: 1fr;
  gap: 110px;
  margin: 130px auto 30px auto;
  max-width: 300px;
}

.reservation_okyu, .reservation_okyu_line {
  width: 100px;
  top: -110px;
}

.line_qr_text {
  width: 170px;
  top: -92px;
}


/* フッター */
.footer_yama1 {
  width: 147px;
  top: -19px;
  left: -34px;
}

.footer_yama2 {
  width: 113px;
  top: -23px;
  left: 36px;
}

.footer_yama3 {
  width: 148px;
  top: -28px;
  right: -46px;
}

.footer_yama4 {
  width: 107px;
  top: -33px;
  right: 40px;
}

.footer_shishimai {
  width: 100px;
  top: -56px;
  left: 22px;
}

.footer {
  padding-top: 60px;
  padding-bottom: 80px;
}

.footer_wrap {
  flex-direction: column-reverse;
  margin-bottom: 30px;
  
}

.footer_wrap_left {
  width: 100%;
  padding: 0;
}

.footer_wrap_right {
  width: 100%;
  height: 250px;
  margin-bottom: 40px;
}

.footer_toptext_gr, .adress, .hoken_text {
  text-align: center;
  line-height: 2.5rem;
}

.footer_name {
  font-size: 2.1rem;
}

.mail {
  display: block;
  margin-top: 10px;
}

.footer_bottom {
  display: none;
}

.inside_store_btn.right {
  margin: 30px auto 0 auto;
}

.map {
  width: 100%;
  max-width: 100%;
}

.schedule {
  margin-bottom: 0;
}

.schedule_time {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  /* width: 20%; */
  line-height: 2.5rem;
}

.schedule1 th, .schedule2 td {
  font-size: 1.5rem;
}

.schedule_bottom_p {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 10px;
}

.page_top_img {
  position: static;
  width: 50px;
  display: block;
  margin: 0 auto;
}

.page_top:hover .page_top_img {
  transform: translateY(-5px);
}
.copy_right {
  margin-top: 30px;
}

/* =======================================================
下層ページ：ご挨拶
======================================================= */
.child_header {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 120px;
  height: 385px;
}

.child_header_kumo2 {
  width: 360px;
  bottom: -13px;
  right: -198px;
}

.child_header_kumo {
  width: 230px;
  bottom: 55px;
  left: -94px;
}

.heading2_gr.child_head_center {
  top: 120px;
}

.breadcrumbs {
  top: auto;
  right: auto;
  bottom: -30px;
  left: 20px;
}

.breadcrumbs ul {
  flex-wrap: wrap;
  font-size: 1.2rem;
}

.greeding_gr {
  grid-template-columns: 1fr;
}

.greeding_gr_left {
  order: 2;
}

.greeding_gr_left {
  order: 1;
}

.child_heading {
  font-size: 2rem;
  text-align: justify;
}

.greeding_bottom_gr {
  margin-top: 40px;
  margin-bottom: 180px;
  grid-template-columns: 1fr;
}

.child_greeding_massage {
  width: 130px;
  bottom: -117px;
  right: -36px;
}

.greeding_bottom {
  padding: 20px;
}

.greeding_bottom_headgr {
  margin-bottom: 10px;
}

.vertical_head {
  left: 20px;
  top: -70px;
  font-size: 2.4rem;
}

.origin_gr {
  flex-direction: column;
  padding: 36px;
}

.origin_left {
  width: 100%;
  margin: 50px auto 30px auto;
  justify-content: center;
}

.origin_img {
  max-width: 260px;
}

.origin_right {
  width: 100%;
}

.origin_kumo {
  width: 197px;
  position: absolute;
  right: -49px;
  bottom: -50px;
}

/* =======================================================
下層ページ：鍼灸
======================================================= */
.child_header.menu_child_header {
  height: 500px;
}

.sub_title {
  font-size: 1.4rem;
  letter-spacing: 0rem;
  top: 296px;

}

.acupuncture_menu {
  flex-direction: column;
  width: 100%;
}

.menu_btn {
  margin-top: 10px;
}

/* MENU01 鍼灸 */
#menu1_acupuncture {
  padding: 80px 0;
}

.menu_title {
  font-size: 2.8rem;
}

.menu_title_img {
  width: 50px;
}

.menu_title_gr {
  margin-bottom: 40px;
}

.menu_head {
  flex-direction: column-reverse;
  margin-bottom: 60px;
}

.menu_head_img_gr {
  width: 100%;
}

.menu_h3_gr {
  width: 100%;
  max-width: 250px;
  margin: 60px auto 0 auto;
}

.menu_h3 {
  font-size: 2rem;
  padding-left: 0px;
  line-height: 4rem;
}

.menu_h3_img {
  width: 130px;
  bottom: -26px;
  right: -20px;
}

.menu_text_gr1 {
  flex-direction: column-reverse;
  margin-bottom: 50px;
}

.menu_text_img_gr {
  width: 100%;
  margin: 0 auto;
  object-fit: cover;
}

.menu_text_img_gr.height_picture {
  height: 320px;
}

.menu_text_right {
  margin-bottom: 30px;
  padding-left: 0px;
  width: 100%;
}

.menu_text_left {
  margin-bottom: 30px;
  padding-right: 0px;
  width: 100%;
}

.menu_text_img_contain {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.menu_text_gr2 {
  flex-direction: column-reverse;
  margin-bottom: 60px;
}

.table_who {
  font-size: 1.4rem;
  line-height: 2rem;
}

.table_who td {
  padding: 10px;
}

.table_who_name {
  width: 30%;
  text-align: left;
}

.inner_link_gr {
  flex-direction: column;
  width: 100%;
  margin: 60px auto 0 auto;
}

.btn_question {
  margin-top: 20px;
}

/* もっとみるアコーディオン */
.grad-wrap {
  position: relative;
  margin-bottom: 100px;
}

.grad-btn {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 0px 20px;
  transition: .3s;
  border-radius: 10px;
  border: solid 1px #82413B;
  font-size: 1.4rem;
  z-index: 10;
  text-wrap: nowrap;
}

.grad-btn:hover {
  background-color: #fff;
}

.grad-btn::before {
  content: "続きを読む"
}
.grad-item {
  position: relative;
  overflow: hidden;
  height: 200px; /*隠した状態の高さ*/
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #F7F3E1 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #F7F3E1 100%);
  content: "";
}
.grad-trigger {
  display: none; /*チェックボックスは常に非表示*/
}
.grad-trigger:checked ~ .grad-btn::before {
  content: "閉じる" /*チェックされていたら、文言を変更する*/
}
.grad-trigger:checked ~ .grad-btn {
  bottom: -50px; /*チェックされていたら、ボタンの高さを変更する*/
}
.grad-trigger:checked ~ .grad-item {
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad-trigger:checked ~ .grad-item::before {
  display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}


/* MENU02 不眠治療 */
.menu_head_reverse {
  flex-direction: column-reverse;
  width: 100%;
  margin: 60px auto 100px auto;
  height: auto;
}

.menu_h3_gr_reverse .menu_h3 {
  padding: 0;
  margin-right: auto !important;
  margin-left: 0 !important;
}

.menu_head_reverse .menu_h3 {
  text-wrap: nowrap;
}

.menu_h3_img_reverse {
  position: absolute;
  width: 120px;
  bottom: -55px;
  left: 142px;
}

.insomnia_column {
  padding: 30px;
  flex-direction: column;
}

.insomnia_column_left {
  width: 100%;
  padding-right: 0;
}

.insomnia_column_right {
  width: 100%;
  margin-top: 30px;
}

.insomnia_column_h4 {
  font-size: 2rem;
}

.insomnia_column_img {
  height: 320px;
  object-fit: cover;
}

.insomnia_kumo {
  width: 300px;
  right: -116px;
  bottom: -41px;
}

/* MENU03 不妊治療 */
.pregnant_img img {
  width: 110px;
}

.about_infertility {
  margin-top: 50px;
  padding: 24px;
}

.about_infertility .menu_text_gr1 {
  flex-direction: column;
  margin-bottom: 30px;
}

.about_infertility_img {
  padding: 60px 0 30px 0;
  width: 90%;
  max-width: 220px;
}

.causes_infertility {
  padding: 10px 15px 20px 15px;
}

.causes_infertility_head {
  padding: 10px;
  top: -52px;
  font-size: 1.6rem;
}

.causes_infertility_list {
  padding: 20px 0px;
}

.causes_infertility_title {
  font-size: 1.8rem !important;
}

.causes_infertility_list p {
  font-size: 1.4rem;
  line-height: 2.5rem;
}

/* 不妊治療　もっとみるアコーディオン */
.grad-wrap.infertility_grad-wrap {
  margin-bottom: 40px;
}

.infertility_grad-wrap .grad-item {
  height: 500px; /*隠した状態の高さ*/
}
.infertility_grad-wrap .grad-item::before {
  height: 150px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(237,227,202,0.9) 50%, rgba(237,227,202,0.9) 50%, #EDE3CA 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(237,227,202,0.9) 50%, rgba(237,227,202,0.9) 50%, #EDE3CA 100%);
}
.grad-trigger {
  display: none; /*チェックボックスは常に非表示*/
}
.grad-trigger:checked ~ .grad-btn::before {
  content: "閉じる" /*チェックされていたら、文言を変更する*/
}
.grad-trigger:checked ~ .grad-btn {
  bottom: -50px; /*チェックされていたら、ボタンの高さを変更する*/
}
.grad-trigger:checked ~ .grad-item {
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad-trigger:checked ~ .grad-item::before {
  display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}


/* 他の施術メニュー */
.other_menu_title {
  font-size: 2.4rem;
}

.other_menu_gr {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 20px;
}

.other_acupuncture {
  background-size: 35%;
  background-position: top 50% right 30px;
  padding-left: 70px;
}


.other_beauty_acupuncture {
  padding-left: 70px;
}

.other_stretch_massage {
  background-position: right 30px bottom -5px;
  padding-left: 50px;
}

/* =======================================================
下層ページ：美容鍼
======================================================= */
#menu4_beauty_acupuncture {
  padding: 0 0 80px 0;
}

.biyoushin_illust2 img {
  max-width: 230px;
  margin-top: 0px;
}

.stretch_menu {
  width: 100%;
  flex-direction: column;
}

/* =======================================================
下層ページ：ストレッチ・マッサージ
======================================================= */
#menu5_stretch .menu_head_reverse {
  margin-bottom: 60px;
}

.stretch_illust img, .massage_illust img {
  margin-top: 0px;
}

.massage_illust img {
  max-width: 240px;
}

/* =======================================================
下層ページ：料金
======================================================= */
.price_h2 {
  font-size: 2.4rem;
}

.inner_price {
  padding: 0 24px;
}

.price_table_head {
  padding: 5px 20px !important;
}

.price_table_text {
  padding: 10px 30px;
}

.price_table_tr.ticket_tr {
  width: 100%;
  display: block;
}

.wp-container-core-group-is-layout-fd526d70 {
  justify-content: flex-start !important;
  border-top: dotted 1px #82413B;
}

/* =======================================================
下層ページ：よくあるご質問
======================================================= */
.question_title {
  font-size: 1.6rem;
}

.question_body {
  padding: 15px 45px;
}

.q {
  font-size: 2.4rem;
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  position: absolute;
  top: 12px;
  left: 15px;
}

.question_title::before {
  top: 30px;
  right: 15px;
  width: 15px;
}

.question_title::after {
  top: 30px;
  right: 15px;
  width: 15px;
}

.question_answer {
  display: none;
  margin-top: 15px;
}

/* =======================================================
下層ページ：ブログ
======================================================= */
.blog_inner {
  flex-direction: column;
}

.blog_main_inner {
  padding: 0 24px;
}

.blog_main {
  width: 100%;
  padding-bottom: 60px;
}

.blog_list_archive {
  gap: 40px 20px;
  margin-bottom: 60px;
}

.thumbnail img {
  border-radius: 10px;
}

.category {
  font-size: 1.2rem;
  line-height: 2rem;
  height: 20px;
}

.sidebar {
  padding: 60px 24px 100px 24px;
  width: 100%;
  background-color: #EDE3CA;
}

.blog_h3 {
  line-height: 2.5rem;
}

.blog_title {
  font-size: 2.4rem;
  margin: 30px 0 40px 0;
}

.blog_detail h2 {
  font-size: 2.2rem;
}

.blog_detail h3 {
  font-size: 2rem;
}

.blog_detail h4 {
  font-size: 1.8rem;
}

/*--------------------------------
 下層：404ページ
---------------------------------*/

.wrap_404.inner {
  padding: 200px 24px 100px 24px;
}

}

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

/* ナビゲーションメニュー */
.header_tel {
  color: #fff;
  font-size: 6.8421vw;
}

.tel_icon {
  width: 5.463vw;
}

/* FV */
.fv {
  height: 540px;
}

.fv_img1 {
  margin: 0px auto 0 -5vw;
  min-width: 300px;
  width: 78.94vw;
}

.fv_img2 {
  min-width: 140px;
  width: 37vw;
  left: -70px;
}

.fv_text {
  margin-left: 30px;
}

.fv_img_gr {
  width: 60%;
  height: 100%;
  position: relative;
  margin-left: -30px;
}

/* トップご挨拶 */

.okyu2 {
  top: 40px;
}

.top_menu_left {
  height: 200px;
}

.h3 {
  font-size: 6.315vw;
  text-wrap: nowrap;
}

/* ご予約 */
.reservation_bottomtext {
  font-size: 1.1rem;
  letter-spacing: -0.1rem;
  text-wrap: nowrap;
}

/* フッター */
.footer_br {
  display: inline;
}

.footer_name {
  font-size: 5.52vw;
}

/* 施術メニュー */

.menu_text_img_gr.height_picture {
  height: 200px;
}

.insomnia_column_img {
  height: 200px;
}


}



/* @media screen and (max-width: 900px) { */

  /* 予約 */
  /* .reservation_container {
    gap: 3.3vw; /* 30px / 900px * 100vw */
  /* } 

  .reservation_heading_tel {
    font-size: 3.1vw; 
  }

  .reservation_heading {
    font-size: 2.7vw;
  }

  .reservation_text_gr2 {
    height: 85px;
    flex-direction: column;
  }

  .telmark_l, .linemark {
    margin: 0 auto;
  }

  .line_qr_text {
    width: 21.2vw;
    right: -50px;
  } */

  /* フッター */
  /* .footer_yama1 {
    width: 38.1vw;
    position: absolute;
    top: -5.55vw;
    left: -11.11vw;
  }
  
  .footer_yama2 {
    width: 29.33vw;
    position: absolute;
    top: -6.66vw;
    left: 14.44vw;
  }
  
  .footer_shishimai {
    width: 21.11vw;
    position: absolute;
    top: -11.11vw;
    left: 11.11vw;
  }
  
  .footer_yama3 {
    width: 39.22vw;
    position: absolute;
    top: -6.66vw;
    right: -11.11vw;
  }
  
  .footer_yama4 {
    width: 28.33vw;
    position: absolute;
    top: -7.77vw;
    right: 14.44vw;
  }

} */