@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  font-size: 14px;
  overflow-x: hidden;
}

body {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.w_base {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}

a {
  text-decoration: none;
}

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

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg .nav_list {
  display: flex;
  flex-wrap: wrap;
}
.nav_bg .nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav_bg .nav_list > li > a {
  position: relative;
  align-items: center;
  padding: 10px 36px;
  font-size: 15px;
  font-weight: 500;
}
.nav_bg .nav_list > li > a:hover {
  opacity: 0.8;
}
.nav_bg .nav_list > li:not(:last-child) a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background: #000;
}
.nav_bg .nav_list > li.current a, .nav_bg .nav_list > li:hover a {
  color: #19856c;
}
.nav_bg .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: -moz-max-content;
  width: max-content;
  padding: 0px 30px 30px 30px;
  color: #404040;
  background: #fff;
  transition: All 0.5s ease;
}
.nav_bg .nav_list > li > .child_wrap > p {
  padding: 20px 20px 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #ff0000;
}
.nav_bg .nav_list > li > .child_wrap > .sub-menu {
  display: flex;
  margin-top: 15px;
}
.nav_bg .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  background: #fff;
}
.nav_bg .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  color: #ff0000;
}
.nav_bg .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  width: 100%;
  background: #fff;
}
.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;
  position: relative;
  justify-content: end;
  align-items: center;
  padding: 10px 0px 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translatey(-50%);
  width: 10px;
  height: 1px;
  margin-left: 40px;
  background-color: #404040;
}
.nav_bg .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  color: #ff0000;
}
.nav_bg .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover::before {
  background-color: #ff0000;
}
.nav_bg .nav_list > li:nth-of-type(3) > .child_wrap {
  left: -100%;
}
.nav_bg .nav_list > li:nth-of-type(4) > .child_wrap {
  left: -250%;
}
.nav_bg .nav_list > li:nth-of-type(5) > .child_wrap {
  left: auto;
  right: -100%;
}
.nav_bg .nav_list > li:nth-of-type(6) > .child_wrap {
  left: auto;
  right: 0;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** button
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.tel,
.line {
  display: flex;
  width: 100%;
  border: 1px solid #e4e4e4;
  background: #fff;
  color: #19856c;
  padding: 20px 25px;
  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;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** color change
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.colorchange.hd_bg {
  color: #040404;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a {
  color: #040404;
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a .hd_item img {
  filter: invert(1);
  transition: all 0.5s ease;
}
.colorchange.hd_bg .nav_list > li > a {
  color: #040404;
  transition: all 0.5s ease;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
  width: 100%;
  padding-top: 150px;
}

.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;
}
.ft_bg .ft_con .ft_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.ft_bg .ft_con .ft_box .ft_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.ft_bg .ft_con .ft_box .ft_list > li {
  position: relative;
  z-index: 1000;
}
.ft_bg .ft_con .ft_box .ft_list > li > a {
  position: relative;
  align-items: center;
  padding: 10px 36px;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
.ft_bg .ft_con .ft_box .ft_list > li > a:hover {
  opacity: 0.8;
}
.ft_bg .ft_con .ft_box .ft_list > li:not(:last-child) a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background: #000;
}
.ft_bg .ft_con .ft_box .ft_list > li.current a {
  color: #19856c;
}
.ft_bg .ft_con .ft_box .ft_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: -moz-max-content;
  width: max-content;
  padding: 0px 30px 30px 30px;
  color: #404040;
  background: #fff;
  transition: All 0.5s ease;
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap > p {
  padding: 20px 20px 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #ff0000;
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap > .sub-menu {
  display: flex;
  margin-top: 15px;
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  background: #fff;
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap > .sub-menu > li > a:hover {
  color: #ff0000;
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  width: 100%;
  background: #fff;
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  position: relative;
  justify-content: end;
  align-items: center;
  padding: 10px 0px 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translatey(-50%);
  width: 10px;
  height: 1px;
  margin-left: 40px;
  background-color: #404040;
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  color: #ff0000;
}
.ft_bg .ft_con .ft_box .ft_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover::before {
  background-color: #ff0000;
}
.ft_bg .ft_con .ft_box .ft_list > li:nth-of-type(3) > .child_wrap {
  left: -100%;
}
.ft_bg .ft_con .ft_box .ft_list > li:nth-of-type(4) > .child_wrap {
  left: -250%;
}
.ft_bg .ft_con .ft_box .ft_list > li:nth-of-type(5) > .child_wrap {
  left: auto;
  right: -100%;
}
.ft_bg .ft_con .ft_box .ft_list > li:nth-of-type(6) > .child_wrap {
  left: auto;
  right: 0;
}
.ft_bg .ft_con .ft_box .ft_logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
}
.ft_bg .ft {
  margin-top: 30px;
  padding: 10px 0;
  background-color: #fff;
}
.ft_bg .ft .ft_copy {
  font-size: 16px;
  text-align: center;
  color: #585858;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #19856c;
  bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
  transition: all 0.3s ease;
  opacity: 0;
}
.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;
}
.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;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** 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_slider_bg {
  width: 90%;
  max-width: 1675px;
  position: relative;
}
.index_slider_bg .index_slider {
  position: relative;
  width: 100%;
  -webkit-mask: url("../images/slider.svg") top/100% no-repeat;
  mask: url("../images/slider.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: min(45px, 2.3vw);
  line-height: 2.5em;
  letter-spacing: 0.5em;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 span {
  background: #fff;
  padding: 0.3em 0.2em;
}
.index_slider_bg .index_slider img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 100/49;
}
.index_slider_bg .description {
  position: absolute;
  width: 24%;
  height: 34%;
  left: 0;
  bottom: 0;
  padding-right: 1vw;
  background: #fff;
  color: #19856c;
  font-size: min(20px, 1vw);
}
.index_slider_bg .description .tel {
  max-width: 400px;
}
.index_slider_bg .description .tel > p {
  font-size: 1.2vw;
  line-height: 1.4;
}
.index_slider_bg .description .tel > p > span {
  font-size: 1.2em;
}

.index_about,
.index_features,
.index_project {
  display: flex;
  justify-content: space-around;
  padding: 30px 0;
}

.index_herbcare_bg h3 > strong {
  position: relative;
  font-size: 1.6em;
  font-weight: normal;
}
.index_herbcare_bg h3 > strong::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 25%;
  width: 0.6em;
  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::before {
  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_resolve_bg .tel > p {
  font-size: 1.2em;
}

.index_contact_bg .tel {
  height: 130px;
}
.index_contact_bg .tel > .icon {
  font-size: 1.5vw;
  transform: translateY(-15px);
}
.index_contact_bg .tel > p {
  font-size: 1.2vw;
}
.index_contact_bg .tel > p > .icon {
  font-size: 1.5vw;
}
.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: 280px;
  border: 140px solid transparent;
  border-bottom: 50px 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;
  border: none;
  height: 150px;
}
.index_reservation_bg .tel p {
  color: #fff;
  font-size: 18px;
}
.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;
  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: min(770px, 50vw);
  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;
  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: 400px;
  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: 60px;
  height: 60px;
  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: 60px;
  height: 60px;
}
.slider_slick .slick-prev:hover,
.slider_slick .slick-next:hover {
  opacity: 0.8;
}
.slider_slick .slick-prev {
  left: calc(50% - 650px);
}
@media (max-width: 1399px) {
  .slider_slick .slick-prev {
    left: 50px;
  }
}
.slider_slick .slick-prev button::before {
  background: url("../images/slick-prev.png") 100%/contain no-repeat;
}
.slider_slick .slick-next {
  right: calc(50% - 650px);
}
@media (max-width: 1399px) {
  .slider_slick .slick-next {
    right: 50px;
  }
}
.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: 90%;
  max-width: 1675px;
  position: relative;
}
.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: 85%;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy {
  text-align: center;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1 {
  font-size: clamp(40px, 3.3vw, 60px);
  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: 2vw;
}
.page_slider_bg .page_slider img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  filter: opacity(0.4);
}

.page {
  margin-bottom: 60px;
}
.page a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.page h2 {
  font-weight: 300;
  font-size: min(100px, 7.1vw);
  color: #19856c;
  line-height: 1.4;
}
.page h3 {
  font-weight: 500;
  font-size: min(60px, 4.3vw);
  color: #19856c;
}
.page h4 {
  font-weight: 400;
  font-size: min(25px, 1.8vw);
  color: #19856c;
}
.page h5,
.page h6 {
  font-size: 18px;
  margin-bottom: 2px;
  margin-top: 15px;
}
.page p {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 1em;
}
.page hr {
  border: none;
  border-top: 1px dotted #000;
}
.page iframe {
  max-width: 100%;
}
.page img {
  max-width: 1920px;
  width: 100%;
  height: auto;
}
.page ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-size: 18px;
}
.page ol li {
  margin-left: 2em;
}
.page ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-size: 18px;
}
.page ul li {
  list-style-type: disc;
  margin-left: 1.5em;
}
.page .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page .box_item {
  width: 50%;
  padding: 10px;
}
.page .box.row_reverse {
  flex-direction: row-reverse;
}
.page .map iframe {
  aspect-ratio: 10/3;
}
.page .voices_scrl_item_img {
  width: 20%;
}
.page .voices_scrl_item_cont {
  width: 80%;
}
.page .voices_scrl_item_cont h3 {
  font-size: min(30px, 2.3vw);
  font-weight: 400;
  line-height: 1em;
  margin-bottom: 0.5em;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
@media screen and (max-width: 1023px) {
  .hd_bg .hd {
    flex-direction: column;
  }
  .nav_bg .nav .nav_list > li > a {
    padding: 10px;
  }
  .page .voices_scrl_item_img {
    width: 30%;
  }
  .page .voices_scrl_item_cont {
    width: 70%;
  }
}/*# sourceMappingURL=style.css.map */