@charset "utf-8";
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
}
.section-title1::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 1px;
  background-color: #000000;
  display: block;
}
.section-title2::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #000000;
  display: block;
}
.en {
  display: block;
  font-size: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.ja {
  display: block;
  font-size: 18px;
}


/* トップページ */
/* header */
#header {
  margin: 30px 8% 0;
}
#header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header h1 {
  width: 360px;
}
#header .socialBtn {
  display: flex;
  align-items: center;
  gap: 20px;
}
#header .socialBtn .insta {
  width: 30px;
}
#header .socialBtn .insta img {
  display: block;
  height: auto;
  object-fit: cover;
}
#header .socialBtn .line {
  width: 25px;
}
#header .socialBtn .yoyaku a {
  display: inline-block;
  background-color:#000000;
  color: #FFFDFD;
  width: 80px;
  padding: 5px;
  text-align: center;
  border-radius: 20px;
}
#header .cf {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
  font-size: 14px;
}
#header .cf li {
  margin-left: 30px;
}
#header .cf li a {
  color: #000000;
}
#header .cf li a:hover {
  color: #c3b8b8;
}

/* mainvisual */
#mainvisual {
  width: 100%;
  height: 580px;
  /* margin-bottom: 200px; */
}
#mainvisual .mainvisual-sec-right {
  width: 100%;
  position: relative;
}
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 580px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 3s ease;
}
.background-image.active {
  opacity: 1;
}
#mainvisual img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

/* content */
#content {
  position: relative;
  max-width: 950px;
  height: 700px;
  margin: 0 auto;
}
#content  h2 {
  text-align: center;
  margin: 75px 0 20px;
}
#content img {
  width: 200px;
}
#content .wrapper1 {
  position: absolute;
  top: 50px; 
  left: 50%; 
  transform: translateX(-50%); 
}
#content .wrapper2 {
  position: absolute;
  bottom: 0; 
  left: 0;
}
#content .wrapper3 {
  position: absolute;
  bottom: 0; 
  right: 0;
}
#content h3 {
  text-align: center;
}
#content p {
  width: 280px;
  word-wrap: break-word; 
}

/* trouble */
#trouble {
  margin-top: 80px;
}
#trouble .trouble-title {
  font-size: 32px;
  font-weight: normal;
  text-align: center;
}
#trouble .trouble-text {
  font-size: 52px;
}
#trouble .trouble-circle-container {
  display: flex;
  width: 1000px;
  justify-content: space-between;
  margin: 50px auto 35px;
}
#trouble .trouble-circle-wrapper1 {
  position: relative;
  width: 250px;
  height: 250px;
}
.trouble-background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1000;
}
#trouble .trouble-circle1 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(200, 190, 185, 0.9);
}
#trouble .trouble-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  width: 92%;
  z-index: 1001;
}
#trouble .trouble-circle-wrapper2 {
  position: relative;
  width: 250px;
  height: 250px;
}
#trouble .trouble-circle2 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(200, 190, 185, 0.9);
}
#trouble .trouble-circle-wrapper3 {
  position: relative;
  width: 250px;
  height: 250px;
}
#trouble .trouble-circle3 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(200, 190, 185, 0.9);
}
.trouble-bold {
  font-weight: bold;
}
.corner-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65px;
  height: 70px;
}
#trouble .solution-line {
  position: relative;
  height: 4px;
  background-color: rgba(200, 190, 185, 0.9);
  width: 1000px;
  margin: 60px auto;
}
#trouble .solution-line::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  bottom: -14px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-bottom: 4px solid rgba(200, 190, 185, 0.9);;
  border-right: 4px solid rgba(200, 190, 185, 0.9);;
}
#trouble .trouble-solution {
  font-size: 32px;
  font-weight: normal;
  text-align: center;
}
#trouble .trouble-solution-text {
  font-size: 68px;
  font-weight: bold;
  color: rgba(200, 190, 185, 0.9);
}
#trouble .trouble-logo {
  display: inline-block;
  width: 180px;
  height: 5em;
  vertical-align: -2em;
}

/* news */
#news {
  margin: 100px 0 100px;
}
#news .section-title1 {
  position: relative;
  margin: 50px 0 40px;
  padding-bottom: 20px;
  text-align: center;
}
#news .list {
  overflow: hidden;
}
#news ul {
  max-width: 700px;
  margin: 0 auto;
}
#news .list li {
  display: flex;
  margin: 30px 0;
  border-top: solid 1px #D8DBE1 ;
  padding-top: 30px;
}
#news .list li:last-child {
  border-bottom: solid 1px #D8DBE1;
  padding-bottom: 30px;
}
#news .list li .date {
  width: 200px;
}
#news .list li .span1 {
  display: inline-block;
  background-color: #000000;
  color: #FFFDFD;
  text-align: center;
  width: 50px;
  height: 24px;
  border-radius: 20px;
  margin-left: 40px;
}

/* philosophy */
#philosophy {
  display: flex;
  margin-bottom: 120px;
}
#philosophy .img {
  width: 55%;
}
#philosophy .img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
#philosophy .text {
  width: 45%;
  padding: 40px 2% 0 2%;
}
#philosophy .section-title2 {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 25px;
}
#philosophy .section-title2 .ja {
  margin: 5px 0;
}
#philosophy .text p {
  font-size: 24px;
}

/* representative */
#representative {
  margin: 0 4% 100px;
}
#representative .content1 {
  display: flex;
}
#representative .content1 .text {
  width: 55%;
  margin-top: 40px;
}
#representative .content1 .img {
  width: 45%;
} 
#representative .content1 .img img {
  width: 100%;
  object-fit: cover;
}
#representative .section-title2 {
  position: relative;
  margin-bottom: 100px;
  padding-bottom: 25px;
}
#representative .spimg {
  display: none;
}
#representative .section-title2 .ja {
  margin: 5px 0;
}
#representative h5 {
  margin-bottom: 250px;
}
#representative h5 .ja1 {
  font-size: 36px;
}
#representative h5 .en1 {
  font-size: 20px;
  margin-left: 20px;
}
#representative h6 {
  font-size: 20px;
  margin-bottom: 10px;
}
#representative p {
  margin-bottom: 10px;
}
#representative p {
  font-size: 20px;
}

/* menu */
#menu {
  margin: 100px 5% 0;
}
#menu .section-title1 {
  position: relative;
  margin: 50px 0 100px;
  padding-bottom: 20px;
  text-align: center;
}
#menu .menu-content {
  display: flex;
  justify-content: space-between;
}
#menu .menu-sec-btn {
  display: block;
  position: relative;
  width: 32.3%;
}
#menu .menu-sec-btn-inner {
  position: absolute;
  box-sizing: border-box;
  top: 20%;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 100;
}
#menu .menu-sec-btn-text {
  text-align: center;
}

#menu .menu-sec-btn-text .eng {
  font-size: 18px;
  display: block;
  margin-bottom: 45px;
  color: #FFFDFD;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#menu .menu-sec-btn-text .jpn1 {
  font-size: 36px;
  display: block;
  color: #FFFDFD;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#menu .menu-sec-btn-text .jpn2 {
  font-size: 18px;
  display: block;
  color: #FFFDFD;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#menu .menu-fee {
  text-align: left;
  font-size: 12px;
  margin-left: 3%;
  color: #FFFDFD;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#menu .fee span {
  font-size: 16px;
}
#menu .menu-sec-btn .menu-sec-btn {
  display: block;
  width: 100%;
}
#menu .menu-sec-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(230, 222, 218, 0.4); 
  transition: background 0.3s ease, opacity 0.3s ease;
}
#menu .menu-sec-btn:hover::after {
  background: rgba(200, 190, 185, 0.9);
}
#menu .overlay-container img {
  display: block;
  height: auto;
  object-fit: cover;
}
#menu .arrow-container {
  position: absolute;
  bottom: 40px;  /* 位置を調整 */
  right: 50px;   /* 位置を調整 */
}
#menu .arrow {
  display: inline-block;
  width: 50px;   /* 矢印の線の長さ */
  height: 2px;   /* 矢印の線の太さ */
  background-color: white; /* 矢印の色 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform 0.3s ease;
}

#menu .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;  /* 矢印の先端の長さ */
  height: 10px; /* 矢印の先端の長さ */
  border-top: 2px solid white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) rotate(45deg); 
}
#menu .menu-sec-btn:hover .arrow {
  transform: translateX(10px); /* ホバー時に矢印を右へ移動 */
  transition: transform 0.3s ease;
}

/* information */
#information {
  margin: 200px 5% 0;
}
#information .information-sec {
  background-color: #F7F5F2;
}
#information .information-sec-inner {
  display: flex;
  padding: 50px 25px;
}
#information .information-sec-left {
  margin-left: 2%;
  width: 50%;
}
#information .section-title2 {
  position: relative;
  margin-bottom: 90px;
  padding-bottom: 30px;
}
#information .information-sec-left-text1 {
  margin-bottom: 40px;
}
#information .information-sec-left-text1 p {
  font-size: 18px;
  font-weight: bold;
}
#information .information-sec-left-text1 .yoyaku {
  color: #FF0303;
}
#information .information-sec-left-text1 img {
  width: 80px;
}
#information .information-sec-left .phone {
  font-size: 36px;
  font-weight: bold;
}
#information .information-sec-right {
  width: 50%;
  margin-top: 150px;
}
#information .information-sec-right .opening-time-tbl {
  width: 100%;
}
#information th {
  background-color: #AE9373;
  color: #FFFDFD;
  font-size: 14px;
  font-weight: normal;
  padding: 8px 2px;
}
#information .th-hour-ttl {
  width: 20%;
}
#information .th-week01 {
  width: 10%;
  padding: 8px 2px;
}
#information .th-week02 {
  width: 10%;
  padding: 8px 2px;
}
#information .th-week03 {
  width: 10%;
  padding: 8px 2px;
}
#information .th-week04 {
  width: 10%;
  padding: 8px 2px;
}
#information .th-week05 {
  width: 10%;
  padding: 8px 2px;
}
#information .th-week06 {
  width: 10%;
  padding: 8px 2px;
}
#information .th-week07 {
  width: 10%;
  padding: 8px 2px;
}
#information .opening-time-tbl td {
  text-align: center;
  background-color: #FFFDFD;
}
#information .opening-time-tbl img {
  width: 14px;
  height: 14px;
}
#information .opening-time-text img {
  width: 10px;
  height: 13px;
}
#information .opening-time-text {
  margin-top: 15px;
}
#information .opening-time-text span {
  font-weight: bold;
}
#information .opening-time-text .kyuushinn {
  margin: 5px 0;
}

/* access */
#access {
  margin: 60px 5% ;
}
#access .access-sec {
  background-color: #F7F5F2;
}
#access .access-sec-inner {
  display: flex;
  padding: 50px 25px;
}
#access .access-sec-left {
  margin-left: 2%;
  width: 50%;
}
#access .section-title2 {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 30px;
}
#access .access-sec-right {
  margin-top: 50px;
  width: 50%;
}
#access .access-sec-left-text2 {
  margin: 10px 0 60px;
}

/* footer */
#footer {
  margin: 70px 0 0;
  background-color: #333333;
}
#footer .footer-inner {
  display: flex;
  color: #FFFFFF;
  padding: 5% 10%;
  /* justify-content: space-between; */
}
#footer .footer-left1 {
    width: 0;
  }
#footer .footer-left {
  font-size: 20px;
}
#footer .footer-left .name {
  margin-bottom: 50px;
  font-size: 16px;
}
#footer .footer-left .address {
  font-size: 14px;
}
#footer .footer-right {
  display: flex;
  line-height: 1.8;
  align-items: center;
  padding-left: 30px;
  border-left: solid 1px #FFFFFF ;
  font-size: 14px;
  margin-left: auto;
}
#footer .footer-right .footer-open-day {
  margin-right: 20px;
}
#to-top {
  width: 40px;
  height: 40px;
  background-color: #121212;
  border: solid 1px #fff;
  border-radius: 50%;
  position: fixed;
  right: 25px;
  bottom: 25px;
}
#to-top::after {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
  position: relative;
  left: 12px;
  bottom: 5px;
}

/* メニューページ */
.menu-course {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
}
.menu-price {
  font-size: 32px;
  display: flex;
}
.menu-price2 {
  margin-left: 20px;
  color: #CC4466;
  font-weight: bold;
}
.menu-manual {
  font-size: 16px;
  margin-top: auto;
}
.btn {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 20px;
}
.btnwrapper {
  text-align: center;
}
.menu-tag {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.menu-tag-title1 {
  color: #FFFFFF;
  background-color: #FFC0CB;
  padding: 0 10px;
}
.menu-tag-title2 {
  color: #FFFFFF;
  background-color: #C488C1;
  padding: 0 10px;
}
.menu-tag-title3 {
  color: #FFFFFF;
  background-color: #87CEEB;
  padding: 0 10px;
}
.menu-tag-title4 {
  color: #FFFFFF;
  background-color: #6DCD97;
  padding: 0 10px;
}
.menu-tag-title5 {
  color: #FFFFFF;
  background-color: #9C9C9C;
  padding: 0 10px;
}


/* mainvisual */
#menu-mainvisual {
  position: relative;
  width: 100%;
  height: 180px;
}
#menu-mainvisual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#menu-mainvisual .menu-title1 {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%,0);
  color: #000000;
  text-align: center;
  padding-bottom: 20px;
}
#menu-mainvisual .menu-title1::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 2px;
  background-color: #000000;
  display: block;
}
#menu-mainvisual .menu-en {
  display: block;
  line-height: 1;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#menu-mainvisual .menu-ja {
  display: block;
  font-size: 18px;
  font-weight: bold;
}
/* facialcourse */
#facialcourse {
  margin: 100px 5% 0;
}
#facialcourse .facialcourse-ja{
  font-size: 48px;
  margin-left: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#facialcourse .facialcourse-en{
  font-size: 20px;
  margin-left: 30px;
}
.facialcourse-title1 {
  position: relative;
}
.facialcourse-title1::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  display: block;
}
#facialcourse .facialcourse-content {
  display: flex;
  align-items: stretch;
  margin: 30px 10px 30px 20px ;
  padding-bottom: 30px;
  border-bottom: 1px solid #CCCCCC;
}
#facialcourse .facialcourse-left {
  width: 25%;
}
#facialcourse .facialcourse-left img {
  display: block;
  max-height: 100%;
}
#facialcourse .facialcourse-right {
  flex: 1;
  display: flex;
  align-items: stretch;
  width: 70%;
  margin: 0 2.5px 0 25px;
}
#facialcourse .first {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* body */
#bodycourse {
  margin: 100px 5% 0;
}
#bodycourse .bodycourse-ja{
  font-size: 48px;
  margin-left: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#bodycourse .bodycourse-en{
  font-size: 20px;
  margin-left: 30px;
}
.bodycourse-title1 {
  position: relative;
}
.bodycourse-title1::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  display: block;
}
#bodycourse .bodycourse-content {
  display: flex;
  align-items: stretch;
  margin: 30px 10px 30px 20px ;
  padding-bottom: 30px;
  border-bottom: 1px solid #CCCCCC;
}
#bodycourse .bodycourse-left {
  width: 25%;
}
#bodycourse .bodycourse-left img {
  display: block;
  max-height: 100%;
}
#bodycourse .bodycourse-right {
  flex: 1;
  display: flex;
  align-items: stretch;
  width: 70%;
  margin: 0 2.5px 0 25px;
}
#bodycourse .first {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* treatment */
#treatmentcourse {
  margin: 100px 5% 0;
}
#treatmentcourse .treatmentcourse-ja{
  font-size: 48px;
  margin-left: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#treatmentcourse .treatmentcourse-en{
  font-size: 20px;
  margin-left: 30px;
}
.treatmentcourse-title1 {
  position: relative;
}
.treatmentcourse-title1::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  display: block;
}
#treatmentcourse .treatmentcourse-content {
  display: flex;
  align-items: stretch;
  margin: 30px 10px 30px 20px ;
  padding-bottom: 30px;
  border-bottom: 1px solid #CCCCCC;
}
#treatmentcourse .treatmentcourse-left {
  width: 25%;
}
#treatmentcourse .treatmentcourse-left img {
  display: block;
  max-height: 100%;
}
#treatmentcourse .treatmentcourse-right {
  flex: 1;
  display: flex;
  align-items: stretch;
  width: 70%;
  margin: 0 2.5px 0 25px;
}
#treatmentcourse .first {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .section-title1::after {
    width: 30px;
  }
  .en {
    font-size: 32px;
  }
  .ja {
    font-size: 12px;
  }
  /* header */
  #header {
    margin: 15px 2% 0;
  }
  #header h1 {
    width: 160px;
  }
  #header .socialBtn .insta {
    display: none;
  }
  #header .socialBtn .line {
    display: none;
  }
  #header .cf {
    display: none;
  }
  
  /* main */
  #mainvisual {
    height: 350px;
    /* overflow: hidden;
    position: relative; */
  }
  #mainvisual img {
    width: 100%;
    height: auto;
    display: block;
  }
  #mainvisual .mainvisual-sec-right {
    width: 100%;
    position: relative;
  }
  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s ease;
  }


  
  /* content */
  #content {
    position: relative;
    max-width: 950px;
    height: 580px;
    margin: 0 auto;
  }
  #content  h2 {
    font-size: 16px;
  }
  #content img {
    display: block;
    width: 100px;
    margin: 0 auto;
  }
  #content .wrapper1 {
    top: 50px; 
    left: 25%;  
  }
  #content .wrapper2 {
    bottom: 0; 
    left: 5%;
  }
  #content .wrapper3 {
    top: 150px;
    right: 10%; 
  }
  #content h3 {
    font-size: 14px;
    margin-top: 5px;
  }
  #content p {
    width: 150px;
    font-size: 12px;
  }

  /* trouble */
  #trouble {
    margin-top: 0;
  }
  #trouble .trouble-title {
    font-size: 16px;
  }
  #trouble .trouble-text {
    font-size: 28px;
  }
  #trouble .trouble-circle-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 25px 0 15px;
    padding: 0 2%;
  }
  #trouble .trouble-circle-wrapper1 {
    width: 120px;
    height: 120px;
  }
  #trouble .trouble-circle1 {
    width: 120px;
    height: 120px;
  }
  #trouble .trouble-circle-text {
    font-size: 12px;
    padding-left: 4px;
  }
  #trouble .trouble-circle-wrapper2 {
    width: 120px;
    height: 120px;
  }
  #trouble .trouble-circle2 {
    width: 120px;
    height: 120px;
  }
  #trouble .trouble-circle-wrapper3 {
    width: 120px;
    height: 120px;
  }
  #trouble .trouble-circle3 {
    width: 120px;
    height: 120px;
  }
  .corner-image {
    width: 30px;
    height: 42px;
  }
  #trouble .solution-line {
    height: 2px;
    width: 96%;
    margin: 20px auto 35px;
  }
  #trouble .solution-line::before {
    border-bottom: 2px solid rgba(200, 190, 185, 0.9);
    border-right: 2px solid rgba(200, 190, 185, 0.9);
  }
  #trouble .trouble-solution {
    font-size: 16px;
  }
  #trouble .trouble-solution-text {
    font-size: 28px;
  }
  #trouble .trouble-logo {
    display: inline-block;
    width: 90px;
    height: 5em;
    vertical-align: -2em;
  }

  /* news */
  #news {
    margin: 50px 0 50px;
  }
  #news .section-title1 {
    margin: 50px 0 20px;
    padding-bottom: 10px;
  }
  #news ul {
    margin: 0 4%;
    font-size: 14px;
  }
  #news .list li {
    flex-direction: column;
    margin: 10px 0;
    padding-top: 10px;
  }
  #news .list li:last-child {
    padding-bottom: 10px;
  }
  #news .list li .date {
    width: 200px;
    margin-bottom: 10px;
  }
  #news .list li .span1 {
    display: inline-block;
    background-color: #000000;
    color: #FFFDFD;
    text-align: center;
    width: 50px;
    height: 18px;
    line-height: 18px;
    border-radius: 20px;
    margin-left: 20px;
  }
  
  /* philosophy */
  #philosophy {
    flex-direction: column;
  }
  #philosophy .img {
    width: 100%;
  }
  #philosophy .img img {
    width: 100%;
    height: auto;
    display: block;
  }
  #philosophy .text {
    width: 100%;
    padding: 20px 2% 0 2%;
  }
  #philosophy .section-title2 {
    margin-bottom: 30px;
  }
  #philosophy .section-title2 .ja {
    margin: 5px 0;
  }
  #philosophy .text p {
    font-size: 12px;
  }
  
  /* representative */
  #representative {
    margin: 0 0 100px;
  }
  #representative .content1 {
    display: flex;
    flex-direction: column;
  }
  #representative .content1 .text {
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }
  #representative .spimg {
    display: block;
  }
  #representative .spimg img {
    height: 300px;
    object-position: top;
    object-fit: cover;
  }
  #representative .content1 .img {
    width: 100%;
  } 
  #representative .content1 .img img {
    display: none;
  }
  #representative .section-title2 {
    margin: 0 2% 20px;
  }
  #representative h5 {
    margin: 15px 2% 25px;
  }
  #representative h5 .ja1 {
    font-size: 30px;
  }
  #representative h5 .en1 {
    font-size: 12px;
    margin-left: 20px;
  }
  #representative h6 {
    font-size: 16px;
    margin: 0 2% 5px;
  }
  #representative p {
    margin: 0 2% 20px;
  }
  #representative p {
    font-size: 14px;
  }
  
  /* menu */
  #menu .section-title1 {
    margin: 50px 0 45px;
  }
  #menu .menu-content {
    flex-direction: column;
    margin: 0 10%;
  }
  #menu .menu-sec-btn {
    width: 100%;
    margin-bottom: 50px;
  }
  #menu .menu-sec-btn-text .eng {
    margin-bottom: 30px;
  }
  #menu .arrow-container {
    bottom: 30px;  /* 位置を調整 */
    right: 40px;   /* 位置を調整 */
  }
  
  /* information */
  #information {
    margin: 45px 5% 0;
  }
  #information .information-sec-inner {
    flex-direction: column;
    padding: 50px 10px;
  }
  #information .information-sec-left {
    width: 100%;
  }
  #information .section-title2 {
    margin-bottom: 20px;
  }
  #information .information-sec-left-text1 p {
    font-size: 16px;
  }
  #information .information-sec-left .tel {
    display: inline-block;
    font-size: 12px;
  }
  #information .information-sec-left .phone {
    font-size: 24px;
    display: inline-block;
  }
  #information .information-sec-right {
    width: 100%;
    margin-top: 15px;
  }
  #information th {
    font-size: 8px;
  }
  #information p {
    font-size: 10px;
  }
  #information .opening-time-tbl img {
    width: 10px;
    height: 10px;
  }
  #information .opening-time-text img {
    width: 10px;
    height: 9px;
  }
  #information .opening-time-text {
    margin-top: 15px;
  }
  #information .opening-time-text .kyuushinn {
    margin: 0 0 5px;
  }
  
  /* access */
  #access {
    margin: 45px 5% 0 ;
  }
  #access .access-sec-inner {
    flex-direction: column;
    padding: 50px 10px;
  }
  #access .access-sec-left {
    width: 100%;
  }
  #access .section-title2 {
    margin-bottom: 20px;
    padding-bottom: 30px;
  }
  #access .access-sec-right {
    margin-top: 35px;
    width: 100%;
  }
  #access .access-sec-left-text2 {
    margin: 0 0 10px;
  }
  
  /* footer */
  #footer {
    margin: 70px 0 0;
    background-color: #333333;
  }
  #footer .footer-inner {
    /* flex-direction: column; */
    padding: 5% 8%;
  }
  #footer .footer-left1 {
    width: 20%;
  }
  #footer .footer-left {
  margin: 20px 0px 20px auto;
}
  #footer .footer-left .name {
    margin-bottom: 20px;
    font-size: 10px;
  }
  #footer .footer-left .address {
    font-size: 8px;
  }
  #footer .footer-right {
    display: none;
  }
  #to-top {
    width: 40px;
    height: 40px;
    background-color: #121212;
    border: solid 1px #fff;
    border-radius: 50%;
    position: fixed;
    right: 10px;
    bottom: 20px;
  }
  #to-top::after {
    content: "";
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    position: relative;
    left: 12px;
    bottom: 5px;
  }

  /* メニューページ */
  .menu-course {
    font-size: 20px;
    margin-bottom: 2px;
    font-weight: bold;
  }
  .menu-price {
    font-size: 20px;
    display: flex;
  }
  .menu-price2 {
    margin-left: 20px;
    color: #CC4466;
    font-weight: bold;
  }
  .menu-manual {
    font-size: 10px;
    margin-top: auto;
  }
  .btn {
    display: inline-block;
    background-color: #000000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
  }
  .btnwrapper {
    text-align: center;
  }
  .menu-tag {
    display: flex;
    gap: 3px;
    margin-bottom: 2px;
  }

  .menu-tag-title1 {
    color: #FFFFFF;
    background-color: #FFC0CB;
    padding: 0 6px;
    font-size: 10px;
  }
  .menu-tag-title2 {
    color: #FFFFFF;
    background-color: #C488C1;
    padding: 0 6px;
    font-size: 10px;
  }
  .menu-tag-title3 {
    color: #FFFFFF;
    background-color: #87CEEB;
    padding: 0 6px;
    font-size: 10px;
  }
  .menu-tag-title4 {
    color: #FFFFFF;
    background-color: #6DCD97;
    padding: 0 6px;
    font-size: 10px;
  }
  .menu-tag-title5 {
    color: #FFFFFF;
    background-color: #9C9C9C;
    padding: 0 6px;
    font-size: 10px;
  }

  /* mainvisual */
  #menu-mainvisual {
    height: 100px;
  }
  #menu-mainvisual .menu-title1 {
    top: 18px;
    padding-bottom: 10px;
  }
  #menu-mainvisual .menu-title1::after {
    width: 30px;
  }
  #menu-mainvisual .menu-en {
    font-size: 32px;
  }
  #menu-mainvisual .menu-ja {
    font-size: 12px;
  }
  /* facialcourse */
  #facialcourse {
    margin: 80px 2% 0;
  }
  #facialcourse .facialcourse-ja{
    font-size: 32px;
    margin-left: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  #facialcourse .facialcourse-en{
    font-size: 12px;
    margin-left: 15px;
    font-weight: bold;
  }
  .facialcourse-title1 {
    position: relative;
  }
  .facialcourse-title1::after {
    content: "";
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000000;
    display: block;
  }
  #facialcourse .facialcourse-content {
    display: flex;
    align-items: stretch;
    margin: 20px 2px 15px 5px ;
    padding-bottom: 15px;
    border-bottom: 1px solid #CCCCCC;
  }
  #facialcourse .facialcourse-left {
    width: 25%;
  }
  #facialcourse .facialcourse-left img {
    display: block;
    max-height: 100%;
  }
  #facialcourse .facialcourse-right {
    flex: 1;
    display: flex;
    align-items: stretch;
    width: 70%;
    margin: 0 0 0 10px;
  }
  #facialcourse .first {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  /* body */
  #bodycourse {
    margin: 80px 2% 0;
  }
  #bodycourse .bodycourse-ja{
    font-size: 32px;
    margin-left: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  #bodycourse .bodycourse-en{
    font-size: 12px;
    margin-left: 15px;
    font-weight: bold;
  }
  .bodycourse-title1 {
    position: relative;
  }
  .bodycourse-title1::after {
    content: "";
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000000;
    display: block;
  }
  #bodycourse .bodycourse-content {
    display: flex;
    align-items: stretch;
    margin: 20px 2px 15px 5px ;
    padding-bottom: 15px;
    border-bottom: 1px solid #CCCCCC;
  }
  #bodycourse .bodycourse-left {
    width: 25%;
  }
  #bodycourse .bodycourse-left img {
    display: block;
    max-height: 100%;
  }
  #bodycourse .bodycourse-right {
    flex: 1;
    display: flex;
    align-items: stretch;
    width: 70%;
    margin: 0 0 0 10px;
  }
  #bodycourse .first {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  /* treatment */
  #treatmentcourse {
    margin: 80px 2% 0;
  }
  #treatmentcourse .treatmentcourse-ja{
    font-size: 32px;
    margin-left: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  #treatmentcourse .treatmentcourse-en{
    font-size: 12px;
    margin-left: 15px;
    font-weight: bold;
  }
  .treatmentcourse-title1 {
    position: relative;
  }
  .treatmentcourse-title1::after {
    content: "";
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000000;
    display: block;
  }
  #treatmentcourse .treatmentcourse-content {
    display: flex;
    align-items: stretch;
    margin: 20px 2px 15px 5px ;
    padding-bottom: 15px;
    border-bottom: 1px solid #CCCCCC;
  }
  #treatmentcourse .treatmentcourse-left {
    width: 25%;
  }
  #treatmentcourse .treatmentcourse-left img {
    display: block;
    max-height: 100%;
  }
  #treatmentcourse .treatmentcourse-right {
    flex: 1;
    display: flex;
    align-items: stretch;
    width: 70%;
    margin: 0 0 0 10px;
  }
  #treatmentcourse .first {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}