@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  overflow-x: hidden;
}

.w_base {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  padding: 0 20px;
}

a {
  text-decoration: none;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_item {
  display: flex;
  justify-content: flex-start;
}
.hd_bg .hd .hd_item h1 {
  gap: 1em;
  color: #19856c;
}
.hd_bg .hd .hd_item a {
  transition: all 0.5s ease;
  margin: 0;
}
.hd_bg .hd .hd_item a img {
  max-width: 50px;
  width: 100%;
  height: auto;
  margin: 5px;
}
.hd_bg .hd .hd_item p {
  margin: 0;
  font-size: 1em;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav PC
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav sp
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  position: fixed;
  right: -100vw;
  top: 0;
  z-index: 100;
  overflow-x: auto;
  overflow-y: auto;
  width: 60%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  transition: All 0.8s ease;
}
.nav_bg .nav_list {
  display: flex;
  flex-direction: column;
}
.nav_bg .nav_list .nav_hd_logo a {
  color: #fff;
  transition: all 0.5s ease;
}
.nav_bg .nav_list .nav_hd_logo a .hd_item {
  display: flex;
  justify-content: flex-start;
}
.nav_bg .nav_list .nav_hd_logo a .hd_item span {
  display: block;
  margin: 2px;
  font-size: 15px;
  line-height: 1.2em;
}
.nav_bg .nav_list .nav_hd_logo a .hd_item img {
  max-width: 30px;
  width: 100%;
  height: auto;
  margin: 5px;
}
.nav_bg .nav_list .nav_hd_logo a span {
  display: none;
}
.nav_bg .nav_list .nav_icon {
  display: flex;
  justify-content: center;
  background: #87dce2;
}
.nav_bg .nav_list .nav_icon .icon_items {
  margin: 20px;
}
.nav_bg .nav_list .nav_icon .icon_items a {
  opacity: 1;
  transition: all 0.5s ease;
}
.nav_bg .nav_list .nav_icon .icon_items a:nth-of-type(2) {
  padding: 0 30px;
}
.nav_bg .nav_list .nav_icon .icon_items a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}
.nav_bg .nav_list > li {
  position: relative;
}
.nav_bg .nav_list > li > a {
  position: relative;
  display: block;
  padding: 1em;
  border-bottom: 1px solid #19856c;
  color: #19856c;
  font-size: 16px;
  text-decoration: none;
}
.nav_bg .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 0.75em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.nav_bg .nav_list > li .child_wrap_btn::before, .nav_bg .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 3px;
  background-color: #fff;
}
.nav_bg .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 20px;
  transform: rotate(0deg) translateX(-50%);
}
.nav_bg .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav_bg .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav_bg .nav_list > li .child_wrap {
  display: none;
}
.nav_bg .nav_list > li .child_wrap > p {
  display: none;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu {
  background: #87dce2;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25em 0 1.25em 3.5em;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 1.25em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #87dce2;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background-color: #fff;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 15px;
  transform: rotate(0deg) translateX(-50%);
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.4em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1.25em 0 1.25em 3.5em;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a::before {
  content: "ー";
  margin-right: 5px;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #87dce2;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1050;
  position: fixed !important;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background-color: #417a41;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 30%;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 30%;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** button
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.tel,
.line {
  display: flex;
  width: 100%;
  border: 1px solid #e4e4e4;
  background: #fff;
  color: #19856c;
  padding: 10px 15px;
  align-items: center;
}
.tel *,
.line * {
  transition: all 0.3s ease;
}
.tel > p,
.line > p {
  color: #19856c;
  line-height: 1;
  font-size: 32px;
  font-weight: normal;
  font-size: 0.35em;
}
.tel .zenmaru-font,
.line .zenmaru-font {
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", sans-serif;
}
.tel:hover .icon.arrow,
.line:hover .icon.arrow {
  transform: translateX(10px);
}

span.icon {
  display: inline-block;
  content: "";
}
span.icon.arrow {
  width: 2em;
  aspect-ratio: 1/1;
  background: url("../images/icons_arrow.svg") center/contain no-repeat;
}
span.icon.phone {
  width: 1em;
  aspect-ratio: 1/1;
  background: url("../images/icons_tel.svg") center/contain no-repeat;
}
span.icon.mail {
  width: 1em;
  aspect-ratio: 9/7;
  background: url("../images/icons_mail.svg") center/contain no-repeat;
}
span.icon.smartphone {
  width: 6.5em;
  aspect-ratio: 9/11;
  background: url("../images/icons_smartphone.svg") center/contain no-repeat;
}

.btn {
  display: block;
  position: relative;
  width: 250px;
  transition: all 0.3s ease;
}
.btn.tel {
  padding: 10px 25px;
  line-height: 0.7;
  background: none;
  border: none;
}
.btn.tel::before {
  display: block;
  content: "";
  position: absolute;
  top: 22px;
  left: 0px;
  width: 25px;
  height: 25px;
  background: url("../images/icons_tel.svg") center/contain no-repeat;
}
.btn.reserve {
  background: #19856c;
  color: #fff;
  padding: 25px 20px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.btn.reserve::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url("../images/icons_calendar.svg") center/contain no-repeat;
}
.btn.reserve:hover {
  opacity: 0.8;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
  padding-top: 70px;
}

.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}

.main {
  order: 1;
  width: 700px;
}

.side {
  order: 2;
  width: 230px;
}
.side h3 {
  background-color: #eee;
  color: #111;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 8px;
  text-align: center;
}

.side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #ccc;
  color: #111;
  display: block;
  padding: 12px 10px;
  text-decoration: none;
}
.side_nav_list li a:hover, .side_nav_list li a.current {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_bg {
  width: 100%;
  margin-top: auto;
  background: #fff;
}
.ft_bg .ft_con {
  margin: 50px 0 30px;
}
.ft_bg .ft_con .ft_box {
  width: 100%;
}
.ft_bg .ft_con .ft_box .ft_list {
  display: none;
}
.ft_bg .ft_con .ft_box .ft_logo {
  text-align: center;
}
.ft_bg .ft_con .ft_box .ft_logo img {
  width: 100%;
  max-width: 90px;
  height: auto;
}
.ft_bg .ft {
  padding: 10px 0;
  background-color: #fff;
}
.ft_bg .ft .ft_copy {
  font-size: 10px;
  text-align: center;
  color: #585858;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s ease;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
  opacity: 0;
  transition: all 0.3s ease;
}
.pt_btn::before, .pt_btn::after {
  background-color: #fff;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt_btn::after {
  height: 7px;
  right: 0;
}

.advent.pt {
  opacity: 1;
  transition: all 0.3s ease;
}
.advent.pt .pt_btn {
  opacity: 1;
  transition: all 0.3s ease;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_main {
  order: 1;
  width: 700px;
}

.index_side {
  order: 2;
  width: 230px;
}

.index_bnr_list li {
  margin-bottom: 4px;
}
.index_bnr_list a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #000000;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/icon_elink_black.png) no-repeat 16px center;
  color: #000000;
}
.index_bnr_list a:hover {
  background-color: #000;
  background-image: url(../images/icon_elink_white.png);
  color: #fff;
}

.index_news,
.index_about,
.index_features,
.index_project {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 30px 0;
}
.index_news .index_about_box,
.index_news .index_features_box,
.index_news .index_project_box,
.index_about .index_about_box,
.index_about .index_features_box,
.index_about .index_project_box,
.index_features .index_about_box,
.index_features .index_features_box,
.index_features .index_project_box,
.index_project .index_about_box,
.index_project .index_features_box,
.index_project .index_project_box {
  width: 100%;
  margin: 30px;
  padding: 15px;
}
.index_news .index_about_box h2,
.index_news .index_features_box h2,
.index_news .index_project_box h2,
.index_about .index_about_box h2,
.index_about .index_features_box h2,
.index_about .index_project_box h2,
.index_features .index_about_box h2,
.index_features .index_features_box h2,
.index_features .index_project_box h2,
.index_project .index_about_box h2,
.index_project .index_features_box h2,
.index_project .index_project_box h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 10vw;
  line-height: 1.5em;
  text-align: left;
}
.index_news .index_about_box h2 span,
.index_news .index_features_box h2 span,
.index_news .index_project_box h2 span,
.index_about .index_about_box h2 span,
.index_about .index_features_box h2 span,
.index_about .index_project_box h2 span,
.index_features .index_about_box h2 span,
.index_features .index_features_box h2 span,
.index_features .index_project_box h2 span,
.index_project .index_about_box h2 span,
.index_project .index_features_box h2 span,
.index_project .index_project_box h2 span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4vw;
}
.index_news .index_about_box a,
.index_news .index_features_box a,
.index_news .index_project_box a,
.index_about .index_about_box a,
.index_about .index_features_box a,
.index_about .index_project_box a,
.index_features .index_about_box a,
.index_features .index_features_box a,
.index_features .index_project_box a,
.index_project .index_about_box a,
.index_project .index_features_box a,
.index_project .index_project_box a {
  display: block;
  font-size: 15px;
  text-align: right;
}
.index_news .index_about_box p,
.index_news .index_features_box p,
.index_news .index_project_box p,
.index_about .index_about_box p,
.index_about .index_features_box p,
.index_about .index_project_box p,
.index_features .index_about_box p,
.index_features .index_features_box p,
.index_features .index_project_box p,
.index_project .index_about_box p,
.index_project .index_features_box p,
.index_project .index_project_box p {
  padding-bottom: 20px;
  font-size: 15px;
  color: #404040;
}
.index_news .index_news_scrl,
.index_news .index_about_scrl,
.index_news .index_features_scrl,
.index_news .index_project_scrl,
.index_about .index_news_scrl,
.index_about .index_about_scrl,
.index_about .index_features_scrl,
.index_about .index_project_scrl,
.index_features .index_news_scrl,
.index_features .index_about_scrl,
.index_features .index_features_scrl,
.index_features .index_project_scrl,
.index_project .index_news_scrl,
.index_project .index_about_scrl,
.index_project .index_features_scrl,
.index_project .index_project_scrl {
  width: 100%;
  margin: 15px;
  display: flex;
  flex-wrap: wrap;
}
.index_news .index_news_scrl .index_news_item,
.index_news .index_about_scrl .index_news_item,
.index_news .index_features_scrl .index_news_item,
.index_news .index_project_scrl .index_news_item,
.index_about .index_news_scrl .index_news_item,
.index_about .index_about_scrl .index_news_item,
.index_about .index_features_scrl .index_news_item,
.index_about .index_project_scrl .index_news_item,
.index_features .index_news_scrl .index_news_item,
.index_features .index_about_scrl .index_news_item,
.index_features .index_features_scrl .index_news_item,
.index_features .index_project_scrl .index_news_item,
.index_project .index_news_scrl .index_news_item,
.index_project .index_about_scrl .index_news_item,
.index_project .index_features_scrl .index_news_item,
.index_project .index_project_scrl .index_news_item {
  display: grid;
  align-items: center;
  width: 100%;
  margin: 20px 0;
  padding-left: 10px;
  border-left: solid 1px #404040;
}
.index_news .index_news_scrl .index_news_item .index_news_item_date span,
.index_news .index_about_scrl .index_news_item .index_news_item_date span,
.index_news .index_features_scrl .index_news_item .index_news_item_date span,
.index_news .index_project_scrl .index_news_item .index_news_item_date span,
.index_about .index_news_scrl .index_news_item .index_news_item_date span,
.index_about .index_about_scrl .index_news_item .index_news_item_date span,
.index_about .index_features_scrl .index_news_item .index_news_item_date span,
.index_about .index_project_scrl .index_news_item .index_news_item_date span,
.index_features .index_news_scrl .index_news_item .index_news_item_date span,
.index_features .index_about_scrl .index_news_item .index_news_item_date span,
.index_features .index_features_scrl .index_news_item .index_news_item_date span,
.index_features .index_project_scrl .index_news_item .index_news_item_date span,
.index_project .index_news_scrl .index_news_item .index_news_item_date span,
.index_project .index_about_scrl .index_news_item .index_news_item_date span,
.index_project .index_features_scrl .index_news_item .index_news_item_date span,
.index_project .index_project_scrl .index_news_item .index_news_item_date span {
  padding: 2px 5px;
  color: #fff;
  background-color: #87dce2;
}

.index_news_bg .index_news_box {
  width: 100%;
  text-align: center;
  color: #87dce2;
}
.index_news_bg .index_news_box h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 9vw;
}
.index_news_bg .index_news_box h2 br {
  display: none;
}
.index_news_bg .index_news_box h2 span {
  display: block;
  font-size: 24px;
}
.index_news_bg .index_news_box a {
  display: none;
}
.index_news_bg .index_news_scrl a {
  display: block;
  width: 100%;
  font-size: 15px;
  text-align: right;
  color: #404040;
}

.index_about_bg {
  background: url(../images/aboutus_bg.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.index_about_bg .index_about_box {
  color: #87dce2;
  background-color: #fff;
}
.index_about_bg .index_about_box a {
  color: #404040;
}

.index_features_bg {
  background: url(../images/features_bg.jpg) no-repeat;
  background-position: 75% 50%;
  background-size: cover;
}
.index_features_bg .index_features_box {
  color: #87dce2;
  background-color: #fff;
}
.index_features_bg .index_features_box a {
  color: #404040;
}

.index_project_bg {
  background: url(../images/project_bg.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.index_project_bg .index_project_box {
  color: #87dce2;
  background-color: #fff;
}
.index_project_bg .index_project_box a {
  color: #404040;
}

.index_slider_bg {
  width: 100%;
  position: relative;
}
.index_slider_bg .index_slider {
  position: relative;
  width: 100%;
  -webkit-mask: url("../images/slider_sp.svg") top/100% no-repeat;
  mask: url("../images/slider_sp.svg") top/100% no-repeat;
}
.index_slider_bg .index_slider .catchcopy_bg {
  position: absolute;
  top: 0;
  right: 20%;
  writing-mode: vertical-rl;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  color: #19856c;
  font-size: 22px;
  line-height: 2.5em;
  letter-spacing: 0.5em;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy span {
  background: #fff;
  padding: 0.3em 0.2em;
}
.index_slider_bg .index_slider img {
  width: auto !important;
  min-width: 100%;
  min-height: 650px !important;
  -o-object-fit: cover;
  object-fit: cover;
}
.index_slider_bg .description {
  position: absolute;
  width: 65%;
  height: 25%;
  left: 0;
  bottom: 0;
  padding-left: 20px;
  padding-top: 5px;
  padding-right: 5px;
  background: #fff;
  color: #19856c;
  font-size: 3vw;
}
.index_slider_bg .description .tel {
  max-width: 400px;
}
.index_slider_bg .description .tel > p {
  font-size: 2.8vw;
  line-height: 1.4;
}
.index_slider_bg .description .tel > p > span {
  font-size: 1.2em;
}

.index_herbcare_bg h3 strong {
  position: relative;
  font-size: 1.6em;
  font-weight: normal;
}
.index_herbcare_bg h3 strong::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 15%;
  width: 0.8em;
  aspect-ratio: 21/9;
  background: url("../images/herbcare_rt.svg") center/contain no-repeat;
}
.index_herbcare_bg ruby > rt {
  font-size: 0.3em;
  font-weight: 500;
  margin-bottom: 10px;
}

.index_resolve_bg {
  background-image: url("../images/leaf_01.png"), url("../images/leaf_02.png"), url("../images/index_resolve_bg.jpg");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 80%, 80%, cover;
  background-position: top left, bottom right, center center;
}
.index_resolve_bg h4 {
  padding-left: 45px;
}
.index_resolve_bg h4::before {
  position: absolute;
  left: 0;
  top: -10px;
  display: inline-block;
  content: "";
  background: url("../images/icons_check.svg") center/contain no-repeat;
  width: 40px;
  aspect-ratio: 1/1;
  margin-right: 20px;
  transform: translateY(10px);
}

.index_contact_bg .tel {
  height: 100px;
  max-width: 350px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_contact_bg .tel > .icon {
  font-size: 1.8em;
}
.index_contact_bg .tel > p {
  font-size: 20px;
  margin: 0;
}
.index_contact_bg .tel > p > .icon {
  font-size: 1.3em;
}
.index_contact_bg .tel > p > span.zenmaru-font {
  font-size: 1.6em;
}

.index_course_bg .course_banner::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  border: 75px solid transparent;
  border-bottom: 30px solid #f5efef;
  border-top: 0;
}

.index_faq_bg details {
  transition: all 0.5s ease;
  padding-right: 20px !important;
}
.index_faq_bg details summary::after {
  content: "";
  position: absolute;
  width: 40px;
  aspect-ratio: 1/1;
  background: url("../images/index_faq_arrow.svg") center/contain no-repeat;
  top: 50%;
  right: 0;
  z-index: 3;
  transform: translateY(-50%);
  transition: transform 0.5s ease;
}
.index_faq_bg details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.3s ease;
}

.index_reservation_bg .tel {
  background-color: #19856c;
  justify-content: center;
  border: none;
  height: 150px;
}
.index_reservation_bg .tel p {
  color: #fff;
  font-size: 18px;
  margin: 0;
}
.index_reservation_bg .tel p .icon {
  font-size: 1.5em;
}
.index_reservation_bg .tel p .zenmaru-font {
  font-size: 2em;
}
.index_reservation_bg .line {
  background-color: #24b724;
  justify-content: center;
  border: none;
  height: 150px;
}
.index_reservation_bg .line p {
  color: #fff;
}
.index_reservation_bg .line a {
  display: inline-block;
  position: relative;
  padding: 5px 0;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 200px;
}
.index_reservation_bg .line a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 8px solid #fff;
  transition: all 0.3s ease;
}
.index_reservation_bg .line a:hover::after {
  transition: all 0.3s ease;
  transform: translate(10px, -50%);
}
.index_reservation_bg span.icon.phone {
  filter: brightness(0) invert(1);
}

/*index_video */
#index_video {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}

.index_video_wrap {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
}
.index_video_wrap iframe,
.index_video_wrap a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider_slick {
  width: 100%;
  z-index: 3;
}
.slider_slick_item {
  width: clamp(350px, 20vw, 400px);
  min-width: 350px;
  min-height: 360px;
  margin: 15px;
  padding: 25px;
  background: #fff;
  border: 1px solid #707070;
}
.slider_slick_item a {
  display: block;
  padding: 25px;
  color: #000;
}
.slider_slick_item_img img {
  width: 55% !important;
  margin: 0 auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50% !important;
}
.slider_slick_item_cont {
  font-size: 18px;
}
.slider_slick::after {
  display: block;
  content: "";
  background: #fff;
  width: 100%;
  height: 355px;
  position: absolute;
  z-index: -1;
  top: 50%;
}
.slider_slick .slick-slide {
  position: relative;
  transition: 0.5s;
}
.slider_slick .slick-slide:hover {
  opacity: 0.8;
}
.slider_slick:hover .slick-arrow-item {
  opacity: 1;
}
.slider_slick .slick-prev,
.slider_slick .slick-next {
  width: 40px;
  height: 40px;
  z-index: 3;
  transition: all 0.3s ease;
}
.slider_slick .slick-prev::before,
.slider_slick .slick-next::before {
  content: none;
}
.slider_slick .slick-prev button,
.slider_slick .slick-next button {
  background: none;
  border: none;
  padding: 0;
}
.slider_slick .slick-prev button::before,
.slider_slick .slick-next button::before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
}
.slider_slick .slick-prev:hover,
.slider_slick .slick-next:hover {
  opacity: 0.8;
}
.slider_slick .slick-prev {
  left: 20px;
}
.slider_slick .slick-prev button::before {
  background: url("../images/slick-prev.png") 100%/contain no-repeat;
}
.slider_slick .slick-next {
  right: 20px;
}
.slider_slick .slick-next button::before {
  background: url("../images/slick-next.png") 100%/contain no-repeat;
}
.slider_slick .slick-dots {
  bottom: -60px;
  z-index: 3;
}
.slider_slick .slick-dots li {
  margin: 0 5px !important;
}
.slider_slick .slick-dots li button:before {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 2px solid #707070;
  border-radius: 50%;
  content: "";
  opacity: 1;
  color: #19856c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slider_slick .slick-dots li.slick-active button:before {
  border: 2px solid #19856c;
  content: "";
  background: #19856c;
  opacity: 1;
  color: #19856c;
}

strong.marker {
  font-weight: inherit;
  background: linear-gradient(transparent 50%, #ffbaba 50%);
}

span.delete {
  position: relative;
}
span.delete::after {
  content: "";
  transform: rotate(13deg);
  width: 100%;
  border-top: 2px solid #19856c;
  position: absolute;
  top: 55%;
  left: 0;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_slider_bg {
  width: 100%;
}
.page_slider_bg .page_slider {
  position: relative;
  width: 100%;
}
.page_slider_bg .page_slider .catchcopy_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy {
  text-align: center;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1 {
  font-size: clamp(30px, 8vw, 45px);
  color: #19856c;
  line-height: 1.2;
  letter-spacing: 0.3em;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1 span {
  background: #fff;
  padding: 0.2em 0.3em;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy p {
  font-size: 4.5vw;
}
.page_slider_bg .page_slider img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  filter: opacity(0.4);
}

.page a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.page h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.page h2 {
  font-size: 40px;
  font-weight: 300;
  color: #19856c;
  line-height: 1.4;
}
.page h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #19856c;
}
.page h4 {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.4;
  color: #19856c;
}
.page h5,
.page h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.page p {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1em;
}
.page hr {
  border: none;
  border-top: 1px dotted #000;
}
.page iframe {
  max-width: 100%;
  width: 100%;
}
.page img {
  max-width: 100%;
  height: auto;
}
.page ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ol li {
  margin-left: 2em;
}
.page p {
  margin-bottom: 0.5em;
}
.page ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ul li {
  list-style-type: disc;
  margin-left: 1.5em;
}
.page .map iframe {
  aspect-ratio: 4/5;
}
.page .voices_scrl_item_img img {
  width: 100%;
  max-width: 400px;
}
.page .voices_scrl_item_cont h3 {
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  line-height: 1em;
  margin-bottom: 0.5em;
}/*# sourceMappingURL=sp.css.map */