/*--------------------------------------
 * common
 * ------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&family=Zen+Maru+Gothic&display=swap');

p,
a,
li,
dt,
dd,
time,
h1,
h2,
h3,
h4,
h5,
h6,
th,
td,
span,
label,
input {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  overflow-x: hidden;
}

.bg_white {
  background-color: #fff;
  padding: 50px;
}

iframe {
  width: 100%;
}

main {
  position: relative;
  margin-top:50px;
}

.mb100 {
  margin-bottom: 100px;
}


/*--------------------------------------
 * メインビジュアル
 * ------------------------------------*/
.video-box.overlay {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
}

#yt_player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.player-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}


body:before {
  position: absolute;
  top: -25vw;
  left: -15vw;
  content: "";
  width: 50vw;
  height: 50vw;
  background: #00530e;
  border-radius: 50%;
  z-index: -1;
}

/*メイン*/

#home {
  padding: 0;
  width: 90%;
  margin: 30px auto;
  border-radius: 30px;
  overflow: hidden;
}


.block_flex {
  display: flex;
  justify-content: space-between;
}

.col50 {
  width: 48%;
}



/*--------------------------------------
 * 動画
 * ------------------------------------*/

.youtube_block {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0px;
  position: relative;
  margin-top: 100px;
  margin-bottom: 50px;
}

.youtube_block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 20px #eee solid;
  border-radius: 10px;
}

/*--------------------------------------
 * header
 * ------------------------------------*/

.g-nav-tel-pc {
width: 250px;
  position: absolute;
  top: 0;
  right: 40px;
  background: #eaf6e6;
  padding: 10px 15px;
  border-radius: 0 0 10px 10px;
}

.header-menu {
  background-color: transparent;
}

.header-menu>li a {
  font-size: 1.6rem;
  color: var(--main);
  font-weight: 700;
  letter-spacing: 0.01em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  display: block;
  color: #333;
  padding: 0 40px;
  border-right: #eee 1px dotted;
}

.header-menu>li {
  position: relative;
}

.header-menu>li:after {
  content: '';
  display: block;
  height: 1px;
  width: 0%;
  background: #00530e;
  position: absolute;
  bottom: 0;
  left: 10%;
  transition: .3s;
}

.header-menu>li.current_page_item :after {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background: #00530e;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .3s;
}

.header-menu>li:hover {
  color: #ff1787;
}

.header-menu>li:hover:after {
  width: 80%;
}


.header-content02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0 0;
}

.header-box01 .logo {
  max-width: 400px;
  width: 100%;
  margin-left: 50px;
}

/*--------------------------------------
 * 見出し
 * ------------------------------------*/
.title_main {
  background: #00530e;
  color: #fff;
  padding: 10px;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.title01 {
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: left;
  position: relative;
  padding: 0;
  margin-bottom: 20px;
}

.title01::before {
  display: none;
}

.title01:after {
  content: "";
  width: 70%;
  height: 1px;
  background-color: #00530e;
  display: block;
  top: 50%;
  position: absolute;
  right: 0;
}

/*--------------------------------------
 * お知らせ
 * ------------------------------------*/
.s-top__news_01 {
  position: relative;
}

.s-top__news_01:after {
  content: "News";
  position: absolute;
  font-size: 14vw;
  color: rgba(204, 204, 204, 0.1);
  left: -10vw;
  top: -5vw;
  z-index: -1;
}

.s-top__news_02 {
  position: relative;
  border: 1px solid #ccc;
  padding: 20px;
}

.s-top__news_02:after {
  content: "Ekiten";
  position: absolute;
  font-size: 14vw;
  color: rgba(204, 204, 204, 0.1);
  bottom: -5vw;
  z-index: -1;
}

/*--------------------------------------
 * ごあいさつ
 * ------------------------------------*/
#greet {
  position: relative;

}

#greet::before {
  content: "Greet";
  position: absolute;
  font-size: 14vw;
  color: rgba(204, 204, 204, 0.1);
  left: 0;
  top: 0;
  z-index: -1;
}


#sns {
  position: relative;
  background: #eaf6e6;
  margin-top: 150px;
}

#sns:before {
  content: "";
  position: absolute;
  background: #eaf6e6;
  width: 150vw;
  height: 20vw;
  border-radius: 50%;
  top: -5vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}

/*--------------------------------------
 * シルバー割引
 * ------------------------------------*/
#pay {
  background: rgb(145, 206, 125, 0.1);
}

.s-top__pay {
  text-align: center;
}

.s-top__pay h3 {
  position: relative;
  background: #00530e;
  color: #fff;
  font-size: 3em;
  padding: 10px;
  margin-bottom: 50px;
}

.s-top__pay h3:after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border: 50px solid transparent;
  border-top-width: 50px;
  border-top-style: solid;
  border-top-color: transparent;
  border-top: 50px solid #00530e;
}

.s-top__pay .txt {
  text-align: left;
  font-size: 1.5em;

}

.s-top__pay_discount {}

.box_discount_fee {
  display: flex;
  justify-content: space-between;
}

.box_discount_fee dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.box_discount_fee dt {
  width: 50%;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #DADADA;

  display: flex;
  align-items: center;
  justify-content: center;
}

.box_discount_fee dd {
  width: 50%;

  background-color: #F3F3F3;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-top__pay h4 {
  position: relative;
  font-size: 22px;
  font-weight: 900;
  margin: 20px 0 20px;
  text-align: left;
  padding-bottom: 10px;
}

.s-top__pay h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #b8d200, #b8d200 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #b8d200, #b8d200 2px, #fff 2px, #fff 4px);

}

.f_l01 {
  font-size: 22px;
  text-align: left;
}

/*table*/

.tablepress tbody td.column-1 {
  width: 30%;
  font-weight: 700;

  background-color: #eee;
}

/*ご予約はこちら*/
#reserve {
  position: relative;
  padding-top: 0;

}

#reserve::before {
  content: "reserve";
  position: absolute;
  font-size: 14vw;
  color: rgba(245, 245, 245, 0.1);

  top: 0;
  z-index: 10;
  right: 0;
}

main.reserve #reserve:before {
  display: none;
}

.tit_r {
  position: relative;
  background-color: #00530e;
  color: #fff;
  font-size: 3.5em;
  text-align: center;
  padding: 50px;

}

.tit_r:after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border: 50px solid transparent;
  border-top-width: 50px;
  border-top-style: solid;
  border-top-color: transparent;
  border-top-width: 50px;
  border-top-style: solid;
  border-top-color: transparent;
  border-top: 50px solid #00530e;
}

.s-top__reserve .col50 {
  background: rgba(145, 206, 125, 0.1);

  padding: 50px;
  display: block;
  margin-top: 150px;
  text-align: center;
}

.s-top__reserve .col50 a {
  font-size: 30px;
  border-top: 1px solid #00530e;
  border-bottom: 1px solid #00530e;
  padding: 10px 0;
}

.s-top__reserve .col50 img {
  overflow: hidden;
  width: 100px;
  height: 100px;
  object-fit: cover;

  margin: -100px auto 20px;
}

/*menu*/
.com-menu01-tit {
  position: relative;
  display: block !important;
  text-align: left;
}

/**/

/*--------------------------------------
 * footer
 * ------------------------------------*/
.footer_link {
  padding: 20px;
  text-align: center;
  background: #eaf6e6;
  margin-top: 50px;
  width: 90%;
  margin: 50px auto;
  border-radius: 20px;
}

.footer_link h3 {
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 22px;
}

.block_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 80%;
  margin: 0 auto;


}

.block_link li {
  width: calc(100% / 7);
  margin: 10px;
}

.f_list-link img {
  background-color: #fff;
  border: 1px solid #eee;
}

.com-list01-icon img {
  width: auto;
  height: auto;
  margin: 0 auto;
  display: block;
  width: 90% !important;
  height: auto !important;
  border: 1px solid #999;
}

.sub-header-txt {
  padding: 10px 25px;
  color: rgba(0, 83, 14);
}

.recruit-feed01>li {
  width: 100%;
  padding: 40px;
  background-color: rgba(0, 83, 14, 0.05);
}


#breadcrumbs {
  display: none !important;
}

.contact-form01 th {
  font-size: 1.6rem;
  width: 30%;
  vertical-align: middle;
  padding: 10px 15px;
  background-color: rgba(0, 83, 14, 0.05);
}

/*--------------------------------------
 * プロのほぐしが選ばれる理由
 * ------------------------------------*/
main.reason::before {
  content: "reason";
  position: absolute;
  font-size: 14vw;
  color: rgba(204, 204, 204, 0.1);
  left: 0;
  top: 0;
  z-index: -1;
}


#staff {
  position: relative;
  background: #eaf6e6;
  margin-top: 150px;
}

.com-interview01-list>li {
  margin-bottom: 40px;
  background: #fff;
  padding: 50px;
  margin-top: 40px;
  border-radius: 20px;
}

.com-interview01-position {
  background-color: transparent !important;
  color: rgb(0, 83, 14) !important;
  font-size: 1.6rem;
  padding: 0 !important;
  margin-bottom: 20px;
}

.com-interview01-name {
  margin-bottom: 5px !important;
}

.com-interview01-q {
  position: relative;
}

.com-interview01-q:before {
  content: "●";
  color: rgb(0, 83, 14) !important;
}

.com-box01::after {
  background-color: rgb(0, 83, 14) !important;
}

.com-box01::after {
  content: "";
  width: 40%;
  height: 300px;
  position: absolute;
  right: -20px !important;
  bottom: -20px !important;
}
.com-box01-wrap{
	margin-bottom:150px;
}
.com-box01-wrap .com-box01:nth-of-type(2n)::after {
  content: "";
  width: 40%;
  height: 300px;
  position: absolute;
  left: -20px !important;
  bottom: -20px !important;
  background-color: #d6edff;
  z-index: -1;
}

/*--------------------------------------
 * コースのご紹介
 * ------------------------------------*/
main.course::before {
  content: "course";
  position: absolute;
  font-size: 14vw;
  color: rgba(204, 204, 204, 0.1);
  left: 0;
  top: 0;
  z-index: -1;
}

/*--------------------------------------
 * お客様の声
 * ------------------------------------*/
main.voice::before {
  content: "voice";
  position: absolute;
  font-size: 14vw;
  color: rgba(204, 204, 204, 0.1);
  left: 0;
  top: 0;
  z-index: -1;
}

.hpb-voice_box {
  width: 100%;
  height: 615px;
  overflow-x: scroll;
}

h4.volice_tit {
  display: flex;
  align-items: center;
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid;
  padding-bottom: 10px;
}

h4.volice_tit:before {
  content: "";
  display: inline-block;
  background-image: url(/wp-content/uploads/2025/05/icon_voice.webp);
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

/*スクロールバーの幅*/
.hpb-voice_box::-webkit-scrollbar {
  width: 6px;
}

/*スクロールバーのレール*/
.hpb-voice_box::-webkit-scrollbar-track {
  border-radius: 30px;
  background: #eee;
}

/*スクロールバーのつまみ*/
.hpb-voice_box::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: #00530e;
}

/*--------------------------------------
 * ご利用・ご予約について
 * ------------------------------------*/
main.reserve::before {
  content: "reserve";
  position: absolute;
  font-size: 14vw;
  color: rgba(204, 204, 204, 0.1);
  left: 0;
  top: 0;
  z-index: -1;
}

/*--------------------------------------
 * スタッフ募集
 * ------------------------------------*/
main.recruit::before {
  content: "recruit";
  position: absolute;
  font-size: 14vw;
  color: rgba(204, 204, 204, 0.1);
  left: 0;
  top: 0;
  z-index: -1;
}

.bnr_recruit {
  width: 100%;
  text-align: center;

  position: relative;
  z-index: 10;
  border: 1px solid;
  display: inline-block;
  padding: 50px 100px;
  background: url(/wp-content/uploads/2025/05/flow03.webp);
  background-size: cover;
  margin: 100px 0 0;
  border: none;
}

.bnr_recruit:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(196, 189, 189, 0.37) 4px, rgba(196, 189, 189, 0.37) 8px)
}

.bnr_recruit .inner {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 50px 100px;
  background: rgb(255, 255, 255);
  margin: 100px auto;
}

.bnr_recruit p {
  font-size: 20px;

}

.bnr_recruit a {
  font-size: 20px;
  color: green;
  font-weight: bold;
}

.block_recruit01 .img {
  position: relative;
}

.block_recruit01 .img:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 200px;
  height: 200px;
  background-color: #00530e;
  left: -20px;
  top: -20px;
}

.block_recruit01 .img:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 200px;
  height: 200px;
  background-color: #00530e;
  right: -20px;
  bottom: -20px;
}

.main_txt {
  text-align: center;
  margin: 100px auto;
}

.list_menu a {
  color: #ff7e1b;
}

.list_menu a:hover {
  text-decoration: underline;
}
