@charset "UTF-8";
/* フォント */
@font-face {
  font-family: "SourceHanSans";
  src: url("/font/SourceHanSans-ExtraLight.otf") format("opentype");
  font-weight: 200;
}

@font-face {
  font-family: "SourceHanSans";
  src: url("/font/SourceHanSans-Light.otf") format("opentype");
  font-weight: 300;
}

@font-face {
  font-family: "SourceHanSans";
  src: url("/font/SourceHanSans-Normal.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "SourceHanSans";
  src: url("/font/SourceHanSans-Medium.otf") format("opentype");
  font-weight: 500;
}

@font-face {
  font-family: "SourceHanSans";
  src: url("/font/SourceHanSans-Bold.ttc") format("opentype");
  font-weight: 700;
}

@font-face {
  font-family: "SourceHanSans";
  src: url("/font/SourceHanSans-Heavy.otf") format("opentype");
  font-weight: 800;
}

/* 変数 */
/* 基礎のスタイル */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  position: relative;
  overflow-x: hidden;
  color: #000000;
  font-family: "SourceHanSans",
               -apple-system,
               BlinkMacSystemFont,
               "Hiragino Sans",
               "Noto Sans JP",
               sans-serif;
}

a {
  text-decoration: none !important;
}

* a {
  text-decoration: none !important;
  color: unset;
}
p, div {
  line-height: 1.0;
  font-weight: 300; /* nomal */
}


h1, h2, h3, h4, h5, h6 {
  line-height: 1.0;
  font-weight: 400; /* nomal */
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
.inner,
.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

/* 共通のスタイル */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 4rem 0;
  background: #ffffff;
}

.cnt
{
  text-align:center;
  margin:0 auto;
}



header .site-header {
  width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  color: #0a2a4c;
}


header .site-header .site-header-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


header .site-header .site-header-top .logo .logo-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .site-header .site-header-top .logo .logo-inner .logo-figure {
  width: 1.5rem;
  margin-right: 1rem;
  vertical-align: middle;
}



header .site-header .site-header-top .logo .logo-inner .logo-title {
  text-align: center;
  font-size: 38px;
  font-weight:500;
  padding-top:0.3rem;
}



header .site-header .site-header-top .sht-l {
  position: absolute;
  left: 0;
  top: 0;
  width: 285px;
  font-size: 14px;
  line-height: 1.25;
}



header .site-header .site-header-top .sht-r {
  position: absolute;
  right: 0;
  top: 0;
}


header .site-header .site-header-top .sht-r .sht-r-ttl {
  margin: 0 0 11px;
  text-align: center;
  font-size: 22px;
}


header .site-header .site-header-top .sht-r .sht-r-tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .site-header .site-header-top .sht-r .sht-r-tel-link .sht-r-tel-icon {
  width:2rem;
  margin-right:1rem;
}



header .site-header .site-header-top .sht-r .sht-r-tel-link .sht-r-tel-txt {
  font-size: 32px;
}


header .site-header .global-nav {
  position: absolute;
  left: 0;
  margin-top:4rem ;
  width: 100%;
padding:1rem 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1001;
  font-weight:500;
}


header .site-header .global-nav .header-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


header .site-header .global-nav .header-menu-list .header-menu-item {
  padding: 13px 21px 7px;
  border-right: 1px solid ;
  max-width:12rem;
  position:relative;
}


header .site-header .global-nav .header-menu-list .header-menu-item span {
  font-size: 20px;
  line-height: 0.8;
}



header .site-header .global-nav .header-menu-list .header-menu-item:last-child {
  border-right: none;
}
/* */

/*ドロップダウンメニュー部分*/
.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 10rem;
    position: absolute;
    top: 100%;  /* 親liの真下 */
    opacity: 0;
    transition: all .3s;/*表示の変化を0.3秒に指定*/
}
.header-menu-item:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
  opacity: 1;/*不透明度1*/
}
.dropdown__list {
    background-color: #004d80;
    height: 3rem;
    transition: all .3s;
    position: relative;
}

.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #3492d1;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color: #003558;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
  padding: 1rem 0;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}



/*フッター*/
#footer {
  width: 100%;
  background: #bdc8d3; /* 画像の背景色 */
  padding: 40px 0 0 0;
  color:#0a2a4c;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
  align-items: start;
  padding: 0 20px;
}
.footer-info {
  margin-bottom:4rem;
}

.footer-info p {
  line-height:1.5;
}
.footer-info h3.footer-title {
  font-size: 1.5rem;
  line-height:2;
  letter-spacing:2px;
  font-weight:600;
 vertical-align:middle;
    display:inline-block;
  margin-bottom:1rem;
}
.footer-info h3.footer-title img {
  display:inline;
  width:1.5rem;
  vertical-align:middle;
  margin-right:0.5rem;
}
.reserve-box {
  display: inline-block;
  width:100%;
  background: rgba(100,120,140,0.4);
  padding: 5px 20px;
  margin: 15px 0;
  border-radius: 6px;
  font-size: 1.5rem;
  text-align:center;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.line-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content:flex-end;
}

.line-box p {
  font-weight:500;
}
.line-box p img {
  width: 100px;
 text-align:right;
  margin-left:1rem;
}
.badge {
  position: relative;
  display: inline-block;
  padding: 0.4em 1.4em;
  margin:2rem 0 3px 0 ;
  background: #0b2c4a;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
}
/* 右の矢印 */
.badge::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.2em;
  transform: translateY(-50%);
  border-width: 1.2em 0 1.2em 1.2em;
  border-style: solid;
  border-color: transparent transparent transparent #0b2c4a;
}

.footer-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  margin:0 0 0 2rem;
}

footer .copyright-bar {
  padding: 30px 0;
  background: #0a2a4c;
  color:#FFF;
}
.copyright {
  text-align: center;
  font-size: 18px;
  color: #ffffff;
}

.content {
  margin: 0 auto;
}


.schedule-table {
  width:100%;
  border-top: #fff 1px solid;
}

.schedule-table table {
  width: 100%;
  background: #ffffff;
  border-collapse: collapse;
  font-weight: 200;
}

.schedule-table table tr {
  padding: 0;
  font-weight: 200;
}
.schedule-table table th {
    font-weight: 200;
  letter-spacing:0.1rem;
}
.schedule-table table tr td {
  height: 74px;
  text-align: center;
  font-size: 24px;
  line-height: 1.3;
  border-left: none;
  font-weight: 200;
}



.schedule-table table tr td:last-child {
  border-right: none;
}

.schedule-table table tr:first-child td {
  height: 78px;
}



.schedule-table table tr:last-child td {
  border-bottom: none;
}

.br-950 {
  display: none;
}


.br-950-no {
  display: block;
}


.br-768 {
  display: none;
}


.br-768-no {
  display: block;
}


.br-480 {
  display: none;
}


.br-480-no {
  display: block;
}


/* ナビーメニュー */
/*　ハンバーガーボタン　*/
.hamburger {
  display: none;
}



.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #0a2a4c;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}




/* トップページのスタイル */
body.home #main-visual {
  position: relative;
  width: 100%;
margin-top: 16rem;
  background: url(/img/home/mv.jpg) no-repeat;
 background-size: cover;
  background-position: center;
}
body.home .content {
  width:70%;
  margin: 0 auto;
}





body.home #main-visual .mv-bg img {
  width: 100%;
}


body.home #main-visual .mv-inner {
  padding: 90px 0 0;
    position:absolute;
  top:40%;
  right:5%;
}



body.home #main-visual .mv-inner .mv-ttl-sub {
  font-size: 25px;
  color: #FFF;
  font-weight:200;
  letter-spacing:3px;
}


body.home #lead {
  padding: 5rem 0 0;
}



/*body.home #lead h3.lead-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 20px;
  font-size: 30px;
  font-weight:500;
}
.lead-ttl span {
  width:10rem;
}*/

body.home #lead h3.lead-ttl {
  text-align:center;
  margin-bottom:2rem;
  font-size: 25px;
  font-weight: 500;
}

.lead-ttl span img {
  width:10rem;
  display: inline;
  vertical-align: middle;
  margin: 0 0.3em;
}




body.home #lead .lead-txt {
  margin: 0 0 5rem;
  font-size: 17px;
  line-height: 2.3;
}


body.home #lead .lead-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -6px;
}


body.home #lead .lead-infos .lead-news {
  width: 398px;
  margin: 0 6px;
}



body.home #lead .lead-infos .lead-news .lead-news-ttl {
  margin: 0 0 24px;
}




body.home #lead .lead-infos .lead-news .lead-news-list {
  padding: 18px 28px 0;
  background: #ffffff;
  border-top: 7px solid #0a2a4c;
}



body.home #lead .lead-infos .lead-news .lead-news-list .lead-news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px;
}



body.home #lead .lead-infos .lead-news .lead-news-list .lead-news-item .lead-news-date {
  width: 100px;
  font-size: 16px;
  line-height: 1.5;
}



body.home #lead .lead-infos .lead-news .lead-news-list .lead-news-item .lead-news-ttl {
  display: block;
  width: calc(100% - 100px);
}



body.home #lead .lead-infos .lead-news .lead-news-list .lead-news-item .lead-news-ttl span {
  font-size: 16px;
  line-height: 1.5;
}



body.home #lead .lead-infos .lead-schedule {
  width: 100%;
  margin: 0 6px;
}



body.home #lead .lead-infos .lead-schedule .lead-schedule-ttl {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.3;
}



body.home #lead .lead-infos .lead-schedule .lead-schedule-ttl span {
  font-size: 32px;
  color: #0a2a4c;
}



body.home #lead .lead-infos .lead-schedule .lead-schedule-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 25px;
}



body.home #lead .lead-infos .lead-schedule .lead-schedule-tel .lead-schedule-tel-icon {
  margin-right: 24px;
}



body.home #lead .lead-infos .lead-schedule .lead-schedule-tel span {
  font-size: 36px;
  color: #0a2a4c;
}



body.home #medical {
  padding: 120px 0 0;
}



body.home #medical .medical-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 110px;
  font-size: 42px;
}





body.home #medical .medical-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}



body.home #medical .medical-list .medical-item {
  width: calc(33.333333% - 40px);
  margin: 0 20px 36px;
  padding: 30px 20px;
  border: 1px solid #0a2a4c;
  border-radius: 19px;
}



body.home #medical .medical-list .medical-item .medical-item-icon {
  margin: 0 0 10px;
}


body.home #medical .medical-list .medical-item .medical-item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80px;
  margin: 0 0 10px;
  text-align: center;
}



body.home #medical .medical-list .medical-item .medical-item-ttl span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 1.5;
  z-index: 1;
}



body.home #medical .medical-list .medical-item .medical-item-ttl span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: #fff8cc;
  z-index: -1;
}

body.home #medical .medical-list .medical-item .medical-item-txt {
  font-size: 19px;
  line-height: 1.3;
}



body.home #cta {
  padding: 105px 0 185px;
}



body.home #cta .cta-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 28px;
  font-size: 42px;
}



body.home #cta .cta-ttl span {
  margin: 0 0 0 10px;
}



body.home #cta .cta-inner {
  position: relative;
  width: 570px;
  margin: 0 auto;
}




body.home #cta .cta-inner .cta-lr .cta-l {
  position: absolute;
  top: -70px;
  left: -310px;
  z-index: -1;
}




body.home #cta .cta-inner .cta-lr .cta-r {
  position: absolute;
  top: -70px;
  right: -330px;
  z-index: -1;
}




body.home #cta .cta-inner .cta-txt {
  margin: 0 0 40px;
  font-size: 24px;
  line-height: 1.5;
}


body.home #cta .cta-inner .cta-arrow {
  margin: 0 0 40px;
}

body.home #cta .cta-inner .cta-arrow img {
  margin: 0 auto;
}

body.home #cta .cta-inner .cta-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 148px;
  background: #fff8cc;
  border: 1px solid #000000;
  border-radius: 19px;
}

body.home #cta .cta-inner .cta-link span {
  font-size: 40px;
}

body.home #cta .cta-inner .cta-link:after {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background: #727272;
  border-radius: 19px;
  z-index: -1;
}

  /* メインビジュアル共通制御 */
.main-visual {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;

  /* 高さ */
  margin:5rem 0 0 0;
  padding: clamp(120px, 30vw, 270px) 0;
  text-align: center;
}

  /* メインビジュアルページ別 */
.mv-about {
  background-image: url(/img/about/bg_about.png);
}
.mv-accident {
  background-image: url(/img/accident/mv.jpg);
}
.mv-beauty {
  background-image: url(/img/beauty/mv.jpg);
}
.mv-hair_removal {
  background-image: url(/img/hair_removal/mv.jpg);
}
.mv-staff {
  background-image: url(/img/staff/mv.jpg);
}
.mv-peeling {
  background-image: url(/img/beauty/mv-peeling.jpg);
}
.mv-recruit {
  background-image: url(/img/recruit/mv.jpg);
}
.mv-partnership {
  background-image: url(/img/partnership/mv.jpg);
}
.mv-price {
  background-image: url(/img/price/mv.jpg);
}


section.main-visual h1 {
  color: #ffffff;
  text-align: center;
  font-size:28px;
  letter-spacing: 3px;
}

/* トップページのスタイル */
body.page #main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 196px;
  background-size: contain !important;
  background-position: center !important;
}


*/



body.page #main-visual .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 500px;
}


body.page #main-visual .mv-inner {
  padding: 70px 0 0;
}


body.page .page-ttl {
  position: relative;
  margin: 0 0 48px;
  text-align: center;
}



body.page .page-ttl span {
  position: relative;
  padding: 0 60px;
  font-size: 80px;
  color: #0a2a4c;
}



body.page .page-ttl span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 17px;
  background: #fff8cc;
  z-index: -1;
}


body.page .page-txt {
  font-size: 27px;
  line-height: 1.5;
}



/*body.page #each_main-visual {
  position: relative;
  width: 100%;
  height: 400px;
  margin-top: 196px;
  background-size: contain !important;
  background-position: center !important;
}

body.page-about #main-visual {
  background: url(/img/about/bg_about.png) no-repeat;
  background-size: contain;
  
}
#main-visual .mv-inner h1 {
  font-weight: 500;
  font-size:30px;
  color: #ffffff;
  text-align: center;
}

*/




/* 院案内ページのスタイル */
body.page-about #about {
  padding: 3rem 0 ;
}


body.page-about #about .about-ttl {
  margin: 0 0 72px;
  text-align: center;
}


body.page-about #about .about-ttl .about-ttl-icon {
  width: 66px;
  margin: 0 auto 30px;
}


body.page-about #about .about-ttl .about-ttl-txt img {
  display:block;
}

body.page-about #about .about-ttl .about-ttl-txt {
  text-align: center;
  font-size: 30px;
  font-weight:500;
  color: #0a2a4c;
}

h1.nameofin {
  display:block;
  text-align:center;
  margin-bottom:3rem;
  font-size:30px;
}
h1.nameofin img {
  display:inline;
  width:2rem;
  vertical-align:middle;
  margin:1rem;
  margin-bottom:1.5rem;
}

body.page-about #about .about-row {
  display: -webkit-box;
  display: -ms-flexbox;
display: flex !important;
  justify-content:center;
  width: 70%;
  margin:0 auto;  
}

body.page-about #about .about-row .about-infos {
  width: 50%;
  margin: 0 6px;
}

body.page-about #about .about-photo {
  width: 40%;
  margin: 0 6px;
}

body.page-about #about .about-photo img {
  width: 100%;
  display: block;
  border-radius: 6px;
}


body.page-about #about .about-row .about-infos {
  width: 50%;
  margin: 0 6px;
}


body.page-about #about .about-row .about-infos .about-infos-list {
  margin: 0 0 90px;
  padding-right: 30px;
}


body.page-about #about .about-row .about-infos .about-infos-list .about-infos-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 8px;
  border-bottom: 2px dotted #0a2a4c;
}


body.page-about #about .about-row .about-infos .about-infos-list .about-infos-item .about-infos-item-ttl {
  width: 130px;
  font-size: 18px;
  line-height: 1.5;
  color: #0a2a4c;
}


body.page-about #about .about-row .about-infos .about-infos-list .about-infos-item .about-infos-item-data {
  width: calc(100% - 150px);
  font-size: 18px;
  line-height: 1.5;
}


body.page-about #about .about-row .about-infos .about-infos-schedule .about-infos-schedule-ttl {
  margin: 0 0 12px;
  font-size: 48px;
}

.google-map {
  width:70%;
  margin:3rem auto;
}



/*新規ボックスのスタイル*/
.schedule-box {
  background: #eef3f8;
  padding: 80px 40px;
  color: #0a2a4c;
}

.schedule-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.schedule-line {
  width: 60%;
  height: 1px;
  margin: 0 auto 50px;
  border-bottom: 2px dotted #0a2a4c;
}

.schedule-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.schedule-badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #bfcfe0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
}

.schedule-table table {
  border-collapse: collapse;
  font-size: 16px;
}

.schedule-table th,
.schedule-table td {
  border-left: 1px solid #b6c3d3;
  border-right: 1px solid #b6c3d3;
  padding: 10px 14px;
  text-align: center;
  white-space: nowrap;
}


.schedule-table tbody th {
  text-align: left;
  padding-right: 20px;
}

.schedule-table .sat {
  color: #0066cc;
}

.schedule-table .sun {
  color: #cc0000;
}
/*
.schedule-note {
  text-align: center;
  margin: 3rem 0;
  font-size: 15px;
}

.schedule-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.schedule-tel,
.schedule-linebox {
  background: #cddceb;
  padding: 24px 28px;
  border-radius: 10px;
}

.schedule-tel {
  min-width: 360px;
  text-align: center;
}

.schedule-tel .number {
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
}*/

.line-inner {
  text-align: left;
  width:80%;
  margin: 0 auto;
  padding:0.3rem;
  display: flex;
  gap: 16px;
}
.line-inner p {
  width:90%;
  font-size:15px;
  line-height: 1.2;
}
.line-inner .ID {
  display:block;
  font-weight:500;
    margin-top: 8px;
}

.line-inner .qr {
  width: 130px;
  height: auto;
}

.schedule-linebox img {
  width: 80px;
  height: auto;
}

.label {
  text-align:center;
  display:block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}




/* 鍼灸ページのスタイル 
body.page-acuponcture #main-visual {
  background: url(/img/acuponcture/mv.jpg) no-repeat;
}

body.page-acuponcture #acuponcture {
  padding: 135px 0;
}



body.page-acuponcture #acuponcture .acuponcture-ttl {
  position: relative;
  margin: 0 0 48px;
  text-align: center;
}



body.page-acuponcture #acuponcture .acuponcture-ttl span {
  position: relative;
  padding: 0 60px;
  font-size: 80px;
  color: #0a2a4c;
}



body.page-acuponcture #acuponcture .acuponcture-ttl span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 17px;
  background: #fff8cc;
  z-index: -1;
}


body.page-acuponcture #acuponcture .acuponcture-txt {
  font-size: 27px;
  line-height: 1.5;
}



/* 交通事故治療ページのスタイル */
.symptom-area {
  background: #fff;
  padding: 80px 20px 100px;
  text-align: center;
}

.symptom-title {
  font-size: 1.8rem;
  color: #1f3b57;
}

/* 飾りカーブ */
.symptom-title::after {
  content: url('/img/accident/fukidashi_long.png');
  display: block;
  margin: 20px auto ;
}

.symptom-title::after {
  content: "";
  display: block;
  width: 100%;            /* 親要素の幅いっぱいに広がる */
  max-width: 842px;       /* 元のサイズより大きくならないように制限 */
  
  /* 横縦比を指定（842:114をそのまま書けます） */
  aspect-ratio: 842 / 114; 
  
  margin: 20px auto;
  
  /* 背景画像の設定 */
  background-image: url('/img/accident/fukidashi_long.png');
  background-size: contain;    /* 枠内に収まるように */
  background-repeat: no-repeat;
  background-position: center;
}

.symptom-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.symptom-list li {
  width: 160px;
}

.symptom-list .icon {
  display: flex;
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  background: #f2f6fa;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #8aa1b5;
}

.symptom-list p {
  font-weight: 600;
  color: #1f3b57;
}

.accident-flow {
  background: #eef4f8;
  padding: 80px 3rem;
}

.flow-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 60px;
  color: #1f3b57;
}

.flow-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.flow-item {
  display: flex;
  gap: 30px;
  align-items: center;
}

.flow-img {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-img img {
  width:160px;
  height:auto;
  text-align:center;
  padding:1rem;  
}
.flow-text {
  width: 80%;
  padding: 0 2rem 0 0;
}

.flow-text h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #1f3b57;
}

.flow-text p,
.flow-text li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}

.flow-text ul {
  padding-left: 1.2em;
}

.flow-text h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  color: #1f3b57;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 2px dotted #b7c9da;
}

.flow-text .num {
  font-size: 2.6rem;
  font-weight: 700;
  color: #6f8fae;
  line-height: 1;
}


/* ▼ 三角矢印（CSS） */
.arrow {
  width: 0;
  height: 0;
  margin: 35px auto;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 20px solid #c7d6e4;
}

/* スマホ */


/*交通事故旧*/

/*
body.page-accident #main-visual {
  background: url(/img/accident/mv.jpg) no-repeat;
  position:relative;
   background-size: contain;
}*/

body.page-accident #accident {
  padding: 120px 0 0;
}


body.page-accident #accident .accident-ttl-wrapper img {
  margin: 0 auto;
}

body.page-accident #flow {
  padding: 0 0 100px;
}


body.page-accident #flow .flow-ttl {
  margin: 0 0 80px;
  padding: 0 0 40px;
  font-size: 54px;
  border-bottom: 2px solid #0a2a4c;
}


body.page-accident #flow .flow-list .flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 100px;
}


body.page-accident #flow .flow-list .flow-item .flow-item-infos {
  width: 50%;
}


body.page-accident #flow .flow-list .flow-item .flow-item-infos .flow-item-ttl {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 0 65px;
  font-size: 36px;
  line-height: 1.25;
}


body.page-accident #flow .flow-list .flow-item .flow-item-infos .flow-item-ttl:before {
  content: '.';
  position: absolute;
  left: 50px;
  top: 0;
}


body.page-accident #flow .flow-list .flow-item .flow-item-infos .flow-item-ttl span {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 56px;
  color: #0a2a4c;
}


body.page-accident #flow .flow-list .flow-item .flow-item-infos .flow-item-txt {
  font-size: 21px;
  line-height: 2.0;
}


body.page-accident #flow .flow-list .flow-item .flow-item-figure {
  width: 50%;
}


body.page-accident #flow .flow-list .flow-item.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

body.page-accident #flow .flow-list .flow-item.reverse .flow-item-figure img {
  margin: 0 75px 0 auto;
}

/* 院案内ページのスタイル? 美容鍼古いスタイル? */
/*body.page-beauty #main-visual {
  background: url(/img/beauty/mv.jpg) no-repeat;
  background-size: contain;
}*/
body.page-beauty #beauty {
}
body.page-beauty #beauty .beauty-ttl-wrapper img {
  margin: 0 auto;
}
body.page-beauty #effect {
  padding: 90px 0 0;
}
body.page-beauty #effect .effect-ttl {
  margin: 0 0 40px;
}
body.page-beauty #effect .effect-ttl img {
  margin: 0 auto;
}
body.page-beauty #effect .effect-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
body.page-beauty #effect .effect-list .effect-item {
  width: calc(33.333333% - 40px);
  margin: 0 20px 35px;
  padding: 30px 20px;
  border: 1px solid #0a2a4c;
  border-radius: 19px;
}
body.page-beauty #effect .effect-list .effect-item .effect-item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 104px;
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.3;
  color: #0a2a4c;
}
body.page-beauty #effect .effect-list .effect-item .effect-item-txt {
  font-size: 20px;
  line-height: 1.5;
}
body.page-beauty #course {
  padding: 100px 0 0;
}
body.page-beauty #course .course-ttl {
  margin: 0 0 66px;
  padding: 0 0 20px;
  font-size: 40px;
  border-bottom: 2px dashed #0a2a4c;
}
body.page-beauty #course .course-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -32px;
}
body.page-beauty #course .course-list .course-item {
  width: calc(33.333333% - 64px);
  margin: 0 32px;
}
body.page-beauty #course .course-list .course-item .course-item-figure {
  margin: 0 0 20px;
}
body.page-beauty #course .course-list .course-item .course-item-txt {
  font-size: 24px;
}
body.page-beauty #price {
  padding: 130px 0 180px;
}
body.page-beauty #price .price-ttl {
  margin: 0 0 66px;
  padding: 0 0 20px;
  font-size: 40px;
  border-bottom: 2px dashed #0a2a4c;
}
body.page-beauty #price .price-txt {
  font-size: 24px;
  line-height: 1.5;
}
/* 院案内ページのスタイル? 美容鍼古いスタイル? */

/*美容鍼の新しいスタイル*/
.effect-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.effect-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d2c4d;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.effect-item p {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
}

  .corse { 
    width:80%;
    margin:10px auto;
      display: flex;              /* ← ここが重要 */
  justify-content: space-between;
}
               .corse li {
                width:30%;
                 text-align: center;
                }
  ul.corse li p {
    font-size:20px;
    line-height:2.2;
    font-weight:400;
  }




/*//美容鍼の新しいスタイル*/

/*脱毛の新しいスタイル*/
/* 共通 */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #1f3b57;
}
/*body.page-beauty #main-visual {
  background: url(/img/hair_removal/mv.jpg) no-repeat;
  background-size: 100%;
}*/

section {
  width: 100%;
}

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

.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight:600;
  letter-spacing:2px;
  margin-top:5rem;
  margin-bottom: 4rem;
  border-bottom: 2px dotted #9fb3c8;
  padding-bottom: 10px;
}
#hair_removal {
  background: url(/img/hair_removal/mv-ttl.jpg) no-repeat;
}
/* 白背景 */
.white-section {
  background: #fff;
  padding: 80px 0;
}

.intro {
  display: flex;
  gap: 40px;
  align-items: top;
}

.intro-text {
  width: 55%;
}
.intro-text p {
 line-height:1.8;
}

.intro-image {
  width: 45%;
}

.intro-image img {
  width: 100%;
  border-radius: 6px;
}

/* 青背景 */
.blue-section {
  background: #eef3f8;
  width:80%;
  margin: 10px auto 50px;
  padding: 10px 0;
  position: relative;
  overflow: hidden;    /* はみ出し防止 */
}
/* 左上の装飾 */
.blue-section::before {
  content: "";
  position: absolute;
  top:3rem;
  left:3rem;
  width: 100px;
  height: 100px;
  background: url("/img/quote.svg") no-repeat;
  background-size: contain;
  pointer-events: none;
}

.center {
  text-align: center;
}

.select-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.select-buttons button {
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

/* メニュー */
.menu-block {
  margin-bottom: 80px;
  text-align: center;
  margin-top:5rem;
}

.menu-title {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.menu-content {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: flex-start;
}

.menu-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.menu-list li {
  margin-bottom: 10px;
}

.menu-image img {
  max-width: 120px;
}

.parts-section {
  background: #eef3f8;
  padding: 60px 0 80px;
  color: #0a2a52;
}

/* グリッド */
.parts-grid {
  width: 70%;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  row-gap: 60px;
}

/* 左側 */
.parts-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.parts-note {
  font-size: 15px;
  opacity: 0.8;
}

/* 右側 */
.parts-right {
  list-style: none;
  padding: 0;
  margin: 0;
}

.parts-right li {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.parts-right span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-right: 12px;
}

/* 注意書き */
.parts-attention {
  width: 90%;
  text-align:left;
  line-height:1.3;
  margin: 2rem auto 40px;
  border: 2px solid #0a2a52;
  padding: 20px 24px;
  font-size: 14px;
}
.parts-attention p {
    line-height: 1.4;
}

.parts-attention span {
  color: #ff6b5a;
  font-weight: 700;
}

/* ボタン */

.parts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  max-width: 420px;
  margin: 4rem auto;
  padding: 22px 24px;

  background: linear-gradient(
    90deg,
    #c9d9e8 0%,
    #b6c9dc 100%
  );

  color: #0b2a4a;
  font-size: 18px;
  font-weight: 600;

  border-radius: 8px;
  text-decoration: none;
}

.parts-btn span {
  font-size: 26px;
}
.parts-btn {
  transition: 
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.parts-btn:hover {
  background: linear-gradient(
    90deg,
    #b8cbe0 0%,
    #a9bfd7 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(11, 42, 74, 0.15);
}
/* レスポンシブ */
/*脱毛の新しいスタイル終わり*/

/*スタッフ紹介*/
.staff {
  padding: 80px 0;
  width:60%;
  margin:0 auto 5rem;
}

/* 2×2 グリッド */
.staff-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
  margin: 0;
  padding: 0;
}

/* 各スタッフ */
.staff-item {
  text-align: center;
}

/* 丸写真 */
.staff-photo {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 肩書き */
.staff-role {
  font-size: 16px;
  line-height:1.4;
  color: #6b7f95;
  margin-bottom: 6px;
}

/* 名前 */
.staff-name {
  font-size: 23px;
  font-weight: 500;
  margin-top:1rem;
  color: #0a2a4c;
}




/* ページのスタイル */
body.page-menu #main-visual {
  background: url(/img/menu/mv.jpg) no-repeat;
}

body.page-menu #menu {
  padding: 210px 0 1;
}


body.page-menu #menu .menu-ttl-wrapper {
  margin: 0 0 50px;
}


body.page-menu #menu .menu-ttl-wrapper img {
  margin: 0 auto;
}

body.page-menu #menu .menu-head-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}

body.page-menu #menu .menu-head-list .menu-head-item {
  width: calc(33.333333% - 20px);
  margin: 0 10px 40px;
}


body.page-menu #menu-list {
  padding: 205px 0 0;
}


body.page-menu #menu-list .menu-item {
  padding: 0 0 20px;
}

body.page-menu #menu-list .menu-item .menu-item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 50px;
  padding: 0 0 18px 36px;
  font-size: 28px;
  border-bottom: 2px dashed #0a2a4c;
}


body.page-menu #menu-list .menu-item .menu-item-ttl .menu-sec-ttl-icon {
  margin-right: 28px;
}

body.page-menu #menu-list .menu-item .menu-item-ttl span {
  font-size: 45px;
}

body.page-menu #menu-list .menu-item .menu-item-ttl-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 70px;
  margin: 0 0 30px;
  padding: 0 30px;
  font-size: 32px;
  color: #ffffff;
  background: #0a2a4c;
  border-radius: 9px;
}


body.page-menu #menu-list .menu-item .menu-item-txt {
  margin: 0 0 40px;
  font-size: 21px;
  line-height: 1.7;
}


body.page-menu #menu-lead {
  padding: 130px 0 195px;
}


body.page-menu #menu-lead .menu-lead-figure {
  margin: 0 0 40px;
}


body.page-menu #menu-lead .menu-lead-figure img {
  width: 100%;
  margin: 0 auto;
}

body.page-menu #menu-lead .menu-lead-txt {
  font-size: 21px;
  line-height: 1.7;
}


body.page-menu #menu-lead .menu-lead-txt.has-bt {
  padding: 0 0 50px;
  border-bottom: 2px dashed #0a2a4c;
}


body.page-menu #menu-lead .menu-lead-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}


body.page-menu #menu-lead .menu-lead-list .menu-lead-item {
  border-radius: 9px;
  overflow: hidden;
}

body.page-menu #menu-lead .menu-lead-list .menu-lead-item .menu-lead-item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
  color: #ffffff;
  background: #0a2a4c;
}


body.page-menu #menu-lead .menu-lead-list .menu-lead-item .menu-lead-item-infos {
  padding: 20px 28px;
  background: #ffffff;
}


body.page-menu #menu-lead .menu-lead-list .menu-lead-item .menu-lead-item-infos .menu-lead-item-txt {
  line-height: 1.7;
}

body.page-menu #menu-lead .menu-lead-list .menu-lead-item .menu-lead-item-infos .menu-lead-item-figure {
  margin: 30px 0 0;
}

body.page-menu #menu-lead .menu-lead-list.col-2 {
  margin: 50px -15px 65px;
  padding: 44px 0 0;
}


body.page-menu #menu-lead .menu-lead-list.col-2 .menu-lead-item {
  width: calc(50% - 30px);
  margin: 0 15px;
}


body.page-menu #menu-lead .menu-lead-list.col-2 .menu-lead-item .menu-lead-item-ttl {
  height: 80px;
}


body.page-menu #menu-lead .menu-lead-list.col-2 .menu-lead-item .menu-lead-item-infos .menu-lead-item-txt {
  font-size: 22px;
}


body.page-menu #menu-lead .menu-lead-list.col-3 {
  margin: 0 -12px;
}


body.page-menu #menu-lead .menu-lead-list.col-3 .menu-lead-item {
  width: calc(33.333333% - 24px);
  margin: 0 12px;
}


body.page-menu #menu-lead .menu-lead-list.col-3 .menu-lead-item .menu-lead-item-ttl {
  height: 130px;
}


body.page-menu #menu-lead .menu-lead-list.col-3 .menu-lead-item .menu-lead-item-infos .menu-lead-item-txt {
  height: 260px;
  font-size: 19px;
}



body.page-menu #menu-lead .menu-lead-apply {
  margin: 0 0 40px;
  padding: 60px 90px 50px;
  background: #ffffff;
  border: 3px solid #0a2a4c;
  border-radius: 9px;
}


body.page-menu #menu-lead .menu-lead-apply .menu-lead-apply-ttl {
  margin: 0 0 40px;
  text-align: center;
  font-size: 40px;
  color: #0a2a4c;
}


body.page-menu #menu-lead .menu-lead-apply .menu-lead-apply-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -40px;
}


body.page-menu #menu-lead .menu-lead-apply .menu-lead-apply-list .menu-lead-apply-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 40px 40px;
}


body.page-menu #menu-lead .menu-lead-apply .menu-lead-apply-list .menu-lead-apply-item .menu-lead-apply-icon {
  width: 28px;
}


body.page-menu #menu-lead .menu-lead-apply .menu-lead-apply-list .menu-lead-apply-item p {
  position: relative;
  margin: 0 0 0 10px;
}

body.page-menu #menu-lead .menu-lead-apply .menu-lead-apply-list .menu-lead-apply-item p span {
  position: relative;
  padding: 0 18px;
  font-size: 28px;
  z-index: 1;
}


body.page-menu #menu-lead .menu-lead-apply .menu-lead-apply-list .menu-lead-apply-item p span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 10px;
  background: #fff8cc;
  z-index: -1;
}



/* 骨盤調整ページのスタイル */
body.page-adjustment #main-visual {
  background: url(/img/adjustment/mv.jpg) no-repeat;
}

body.page-adjustment #adjustment {
  padding: 250px 0 0;
}


body.page-adjustment #adjustment .adjustment-ttl {
  position: relative;
  margin: 0 0 48px;
  text-align: center;
}


body.page-adjustment #adjustment .adjustment-ttl span {
  position: relative;
  font-size: 80px;
  color: #0a2a4c;
}


body.page-adjustment #adjustment .adjustment-ttl span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 17px;
  background: #fff8cc;
  z-index: -1;
}


body.page-adjustment #adjustment .adjustment-txt {
  width: 720px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
}


body.page-adjustment #issue {
  padding: 150px 0;
}


body.page-adjustment #issue .issue-ttl {
  text-align: center;
  margin: 0 0 50px;
}


body.page-adjustment #issue .issue-ttl span {
  padding: 0 40px 20px;
  font-size: 36px;
  line-height: 1.5;
  color: #0a2a4c;
  border-bottom: 2px dashed #0a2a4c;
}


body.page-adjustment #issue .issue-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px 70px;
}


body.page-adjustment #issue .issue-list .issue-col {
  width: calc(50% - 40px);
  margin: 0 20px;
}


body.page-adjustment #issue .issue-list .issue-col .issue-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 50px;
}


body.page-adjustment #issue .issue-list .issue-col .issue-item .issue-icon {
  width: 28px;
}


body.page-adjustment #issue .issue-list .issue-col .issue-item .issue-txt {
  width: calc(100% - 28px);
  padding: 0 0 0 28px;
  font-size: 28px;
  line-height: 1.7;
}


body.page-adjustment #issue .issue-arrow {
  margin: 0 0 80px;
}


body.page-adjustment #issue .issue-arrow img {
  margin: 0 auto;
}

body.page-adjustment #issue .issue-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body.page-adjustment #issue .issue-cta .issue-cta-txt {
  font-size: 45px;
  line-height: 1.5;
  color: #0a2a4c;
}


body.page-adjustment #issue .issue-cta .issue-cta-txt span {
  font-size: 60px;
}


/* 人材募集ページのスタイル */
body.page-recruit #main-visual {
  background: url(/img/recruit/mv.jpg) no-repeat;
}

body.page-recruit #recruit {
  padding: 100px 0 80px;
}

body.page-recruit #recruit .recruit-ttl {
  margin: 40px 0 20px;
  padding: 0 0 20px;
  font-size: 40px;
  border-bottom: 2px dashed #0a2a4c;
}


body.page-recruit #recruit .recruit-txt {
  font-size: 21px;
  line-height: 1.7;
}


body.page-recruit #recruit .recruit-txt.has-padding {
  padding: 40px;
}


body.page-recruit #recruit .recruit-txt.has-no-padding-rl {
  padding-left: 0;
  padding-right: 0;
}

/* 提携院ページのスタイル */

.clearfix::after {
   content: "";
   display: block;
   clear: both;
}

body.page-partnership #partnership {
  padding: 0 15% 80px;
}
body.page-partnership #partnership .content {
  width:70%;
  margin: 0 auto;
}
body.page-partnership #partnership .content h3 {
    font-size: 27px;
    border-bottom: 2px dotted #0a2a4c;
    line-height: 1.5;
  font-weight:600;
}
body.page-partnership section#partnership .content dl {
    margin: 1rem 0 5rem;
    display: flex;
  flex-wrap: wrap;
  width:100%;
}
body.page-partnership section#partnership .content dl dt{
  width:50%;
    font-size: 20px;
    line-height: 1.5;
    color: #0a2a4c;
    border-bottom: 1px solid #9fb3c8;
  text-align:left;
  padding:1.5rem 0 1.5rem 0;
}
body.page-partnership section#partnership .content dl dt a {
    text-decoration: none;
}
body.page-partnership section#partnership .content dl dd{
  width:50%;
    padding:2rem;
    border-bottom: 1px solid #9fb3c8;
    text-align:left;
}




/*お知らせ*/
.info, .schedule {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 1rem 4rem 4rem 4rem;
  font-family: "SourceHanSans", sans-serif;
  color: #003260;
}
.info-head h2,
.schedule-head h2 {
  font-size: 22px;
  font-weight: 500;
  border-bottom: 2px dotted #003260;
  padding-bottom: 7px;
  margin-bottom: 24px;
}

.info-head h2 span {
  font-size: 16px;
  margin-left: 6px;
  font-weight: 400;
}

.info-list {
  list-style: none;
}


.info-list li {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid #d9d9d9;
  font-size: 16px;
}

.info-list .date {
  width: 140px;
}
.schedule-body {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}
.priority-circle {
  width: 140px;
  height: 140px;
  background: #b9cbe0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 25px;
  text-align:center;
  line-height:1.4;
margin-left:1rem;
}
.times {
  margin-bottom: 8px;
}

.times p {
  font-size: 26px;
  font-weight: 500;
}
.schedule-note{
  text-align:center;
  margin-bottom:1rem;
  font-size:120%;
  font-weight:500;
}

.schedule-table table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  min-width: 550px;
  text-align: center;
  font-size: 20px;
  font-weight:500;
}

.schedule-table th,
.schedule-table td {
  border: 1px solid #ccc;
  padding: 6px 12px;
}
.schedule-table td {
  color: #b9cbe0;
}

.sat { color: #0052cc; }
.sun { color: #d60000; }
.holiday { color: #d60000; }

.schedule-contact {
  display: flex;
  gap: 20px;
  align-items: stretch; /* これで子要素の「高さ」を強制的に揃えます */
}
   a.call-btn {
flex: 1; /* LINEの箱と同じ比率で広がるようにする */
display: flex;        /* 追加：aタグ自体もflexにすることで、中の.phoneを伸ばします */
  text-decoration: none; /* 下線を消す */
  color: inherit;      /* 文字色を維持 */
}
   a[href^="tel:0862782228"] .sp-only {
    pointer-events: none;/* クリックを無効にする */
  }

.phone, .line {
  width:100%;
  background: #b9cbe0;
  text-align:center;
  padding: 1rem;
  border-radius: 8px;
  justify-content: center; /* 縦方向の中央寄せ（お好みで） */
}

.phone .number {
  display:block;
  font-size: 36px;
  font-weight: 500;
  text-align:center;
  margin-top:2.5rem;
}

.treatment {
  background: #e7e9eb;
  padding: 80px 20px;
  text-align: center;
  font-family: "SourceHanSans", sans-serif;
}

.treatment .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.treatment-title {
  font-size: 28px;
  font-weight: 500;
  color: #003260;
  margin-bottom: 24px;
}

.treatment-lead {
  font-size: 16px;
  line-height: 1.9;
  color: #003260;
  margin-bottom: 60px;
}

/* 画像5個 */
.treatment-list {
  width: 80%;
  margin:0 auto;
   list-style: none;
  display:flex;
  gap: 40px 40px;
   justify-content: space-around;
  margin-bottom: 60px;
}
.treatment-list2 {
  width: 60%;
}

.treatment-list img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}

.treatment-list span {
  font-size: 16px;
  line-height: 1.5;
  display: block;
  font-weight:400;
}


/* --美肌ピーリングページのスタイル-- */
.intro-text ul.peeling-point {
  font-size: 20px;
  line-height:2;
  font-weight:500;
  margin:2rem;
}




/* 料金表Priceページのスタイル */
/* ===== アンカーボタン群 ===== */
.menu-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.menu-anchor {
  min-width: 220px;
  padding: 14px 24px;
  border: 2px solid #0f2a44;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #0f2a44;
  text-align: center;
  text-decoration: none;
  position: relative;
}

.menu-anchor::after {
  content: "▾";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}

.menu-anchor:hover {
  background: #0f2a44;
  color: #fff;
}

/* アンカー飛び先のズレ防止 */
.blue-section h2 {
  font-size: 26px;
  color: #0f2a44;
  margin-bottom: 30px;
  scroll-margin-top: 120px; /* ← 固定ヘッダー対策 */
}

/* ===== リスト ===== */
.price-list {
  list-style: none;
  padding: 0 0 5rem 0;
  margin: 0;
  font-weight:400;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid #c7d3e0;
}


.price-list .item {
  font-size: 18px;
  font-weight: 600;
  color: #0f2a44;
}

.price-list .price {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
}

/* ===== SP ===== */

/* ===== 見出し装飾 ===== */
.blue-section h2 {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 32px;
}

/* ===== 注意ボックス ===== */
.notice-box {
  background: #fff;
  color: #0f2a44;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 32px;
  display: inline-block;
}

/* ===== course用 ===== */
.price-list.type-course li {
  align-items: flex-start;
}

.price-list .left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-list .title {
  font-size: 18px;
  font-weight: 700;
}

.price-list .desc {
  font-size: 14px;
  color: #4a5f78;
}

/* ===== 回数券 ===== */
h3.sub-ttl {
  font-size: 22px;
  font-weight: 700;
  margin: 60px 0 20px;
  color: #0f2a44;
}
h3.sub-ttl::after {
  content: "";
  display: block;
  border-bottom: 3px dotted #0f2a44;
  margin-top: 14px;
}

.label-badge {
  display: inline-block;
  background: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.price-list.type-ticket .item {
  font-weight: 600;
}

.price-list.type-ticket .old {
  text-decoration: line-through;
  color: #666;
}

.price-list.type-ticket .new {
  color: #e60000;
  font-weight: 700;
  font-size: 20px;
  margin-left: 6px;
}

.price-list.type-ticket .off {
  color: #e60000;
  font-size: 14px;
  margin-left: 4px;
}

/* ===== SP ===== */


/* ========= ラッパー ========= */
.price-table-wrap {
  padding: 1rem 0 5rem;
  overflow-x: auto; /* SP保険 */
}

/* ========= table 基本 ========= */
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px; /* 崩れ防止 */
  font-family: "Noto Sans JP", sans-serif;
}

/* 共通セル */
.price-table th,
.price-table td {
  padding: 2rem 18px;
  font-size: 16px;
  color: #1f2d3d;
  text-align: center;
   border-bottom: 1px solid #c7d3e0;
  white-space: nowrap;
}

/* ========= ヘッダー行 ========= */
.price-table thead th {
  background: #cddced;
  font-weight: 600;
}
.price-table thead th:first-child {
  background: none;
}

.price-table thead th span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  color: #4a5f78;
}

/* ========= ボディ行 ========= */
.price-table tbody tr {
  border-bottom: 1px solid #c7d3e0;
}


/* 左列（項目名） */
.price-table tbody th {
  text-align: left;
  font-weight: 600;
  color: #102a43;
}

/* ========= 金額表現 =========
.price-table td {
  font-size: 18px;
  letter-spacing: 0.03em;
}

.price-table td::after {
  content: "円";
  font-size: 13px;
  margin-left: 2px;
}
 */
/* 既に「円」を書いている場合は消したいなら↓ */
.price-table td::after {
  content: "";
}


/* ========= 土日カラー（任意） ========= */
.price-table thead th:nth-child(3),
.price-table thead th:nth-child(4) {
  /* 例：回数多めを少し強調したい時 */
}

/* ========= SP調整 ========= */

/* 人財募集ページのスタイル */
/* =========================
   厳しいところ
========================= */
dl.recruitment {
  line-height:1.7;
  margin: 0 0 3rem 0;
  display: grid;
  grid-template-columns: 120px 1fr; /* 左側の幅を固定、右側を余白分 */
  gap: 10px 0;
}
dl.recruitment dt {
  font-weight: 500;
}

.recruit-strict {
  padding: 80px 0 0 0;
  text-align: center; /* 中のテキストとインライン要素を中央へ */
}

.recruit-strict__inner {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

h4.recruit-strict__title {
  margin-bottom:3rem;
}

.recruit-strict__title img,
.strict-item__num img {
  display: block;      /* ブロック要素にする */
  margin-left: auto;   /* 左右のmarginをautoにすることで */
  margin-right: auto;  /* ブロック要素が中央に寄る */
}

.strict-item__num img {
  width: 72px;
  height: auto;
  margin-bottom: 28px;
}

/* 各項目のテキスト */
.strict-item__text {
  display: inline-block; /* 中身のテキスト量に合わせて幅を決めたい場合 */
  text-align: center;      /* 文章自体は左揃えの方が見やすい場合が多いです */
  max-width: 100%;       /* 親からはみ出さないように */
}
.strict-item__text b {
  font-weight:bold;
}
/* 各項目 */
.strict-item {
  margin-bottom: 3rem;
}

.strict-item__num img {
  width: 72px;
  height: auto;
  margin-bottom: 1rem;
}

.strict-item__text {
  font-size: 16px;
  line-height: 2.1;
  color: #0b2a4a;
}

.strict-item__text p {
  margin-bottom: 20px;
}

.strict-item__text--strong {
  font-weight: 600;
}

/* =========================
   応募・お問い合わせ
========================= */
.recruit-contact {
  background: #eef3f8;
  padding: 3rem 0;
  margin: 0 auto 5rem;
}

.recruit-contact__inner {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

.recruit-contact__lead {
  text-align:center;
  font-size: 20px;
  line-height: 2;
  border: #0b2a4a 3px solid;
  border-radius: 25px;
  padding:2rem ;
  margin: 0 auto 3rem;
  color: #0b2a4a;
  font-weight:bold;
  width:50%;
}

/* 枠 */
.recruit-contact__box {
  border-radius: 20px;
}

.recruit-contact__title {
  font-size: 22px;
  margin-bottom: 36px;
  color: #0b2a4a;
}

/* 共通 */
.contact-item {
  background: #fff;
  border-radius: 20px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 20px;
  width:60%;
}

.contact-item__label {
  font-weight: 700;
  letter-spacing: 0.2em;
}

.contact-item__icon {
  width:2rem;
  margin:0;
  padding:0;
}

.contact-item__value {
  font-size: 28px;
  font-weight: 700;
  color: #0b2a4a;
  text-decoration: none;
    letter-spacing: 0.2em;
}

/* LINE */
.contact-item--line {
  justify-content: center;
  align-items:center;
}

.contact-item__line-text {
  text-align: left;
}

.contact-item__line-id {
  display: block;
  font-size: 14px;
  margin-top: 4px;
}

.contact-item__qr img {
  width: 80px;
  height: auto;
}

/* SP */
/*SP*/



