@charset "UTF-8";
/* ////////////////////////////////////////////
 *                 base & layout
 * //////////////////////////////////////////// */
/* Typography
------------------------------------------*/
html {
  background: #fff;
  font-size: 16px;
}

body {
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  /*font-family: "メイリオ" ,"Meiryo", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  color: #555;
}

a {
  color: #555;
  text-decoration: none;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: underline;
}

/* use hover animation */
a,
a:hover {
  transition: 0.3s ease-in-out;
}

/* Layout
------------------------------------------*/
body {
  min-width: 1200px;
}

body.home {
  word-break: break-all;
}

#container {
  overflow: hidden;
}

/* header
------------------------------------------*/
#header {
  margin-bottom: 40px;
}

#header-inner {
  position: relative;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  z-index: 20;
}

.site-description {
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 11px;
  color: #aaa;
}

.header-address {
  position: absolute;
  top: 20px;
  right: 0;
  font-size: 11px;
  color: #aaa;
}

.header-logo {
  position: absolute;
  top: 36px;
  left: 42px;
}

.header-mail {
  position: absolute;
  top: 0;
  right: 0;
}

.header-mail a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  width: 200px;
  height: 100px;
  background: linear-gradient(to bottom, #44b250, #8edb64);
  border-radius: 0 0 0 10px;
}

.header-mail a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.header-mail span {
  padding-left: 55px;
  position: relative;
}

.header-mail span::before {
  content: "";
  display: block;
  background: url(/images/default/mail.png) no-repeat center/contain;
  width: 37px;
  height: 29px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.header-info {
  position: absolute;
  top: 19px;
  right: 232px;
  display: flex;
  align-items: center;
  gap: 19px;
}

.header-info .header-tel {
  margin-right: 22px;
}

.header-info .header-tel a {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  padding-left: 28px;
}

.header-info .header-tel a::before {
  content: '';
  display: block;
  background: url(/images/default/TEL.png) no-repeat center/contain;
  width: 24px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.header-info .header-time {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
}

.header-info .header-time span {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 12px;
  background: #518C22;
  border-radius: 50px;
  width: 70px;
  padding: 3px;
}

.gnav {
  position: absolute;
  top: 69px;
  right: 232px;
}

/* droppy */
.gnav-list {
  position: relative;
  text-align: left;
  zoom: 1;
  display: flex;
  gap: 30px;
}

.gnav-list li {
  float: left;
  display: block;
  position: relative;
  z-index: 20;
}

.gnav-list ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
}

.gnav-list ul li {
  float: none;
}

.gnav-list ul li a {
  display: block;
  padding: 5px 10px;
  color: inherit;
  font-size: 11px;
  zoom: 1;
}

.gnav-list ul li a:hover {
  text-decoration: none;
  background: #fff;
}

.gnav-list ul ul {
  top: 0;
  left: 100%;
  width: 100%;
}

.gnav-list a,
.gnav-ul img {
  display: block;
}

/* mainimage
------------------------------------------*/
/* 横スライド
.slideshow .slick-list {overflow: visible;}
*/
#mainimage {
  position: relative;
  overflow: hidden;
  margin: 0auto;
  background: url(/images/default/main_bg001.jpg) no-repeat left bottom;
}

#mainimage::before {
  content: '';
  display: block;
  background: url(/images/default/maincopy.png) no-repeat center/contain;
  width: 657px;
  height: 292px;
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 240px);
  transform: translate(-50%, -50%);
  z-index: 1;
}

#mainimage-inner {
  margin: 0 0 130px auto;
  width: 1200px;
}

/* slideshow */
.slideshow {
  margin: 0 calc((-1560px + 1200px) / 2);
}

.slideshow .slick-slide {
  backface-visibility: hidden;
}

.slideshow .slick-slide img {
  width: 100%;
}

/* arrows */
.slideshow .slick-arrow,
.slideshow .slick-arrow::before {
  width: 20px;
  height: 30px;
}

.slideshow .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}

.slideshow .slick-arrow.slick-prev {
  left: 30px;
}

.slideshow .slick-arrow.slick-prev::before {
  content: "";
  background: url(/images/default/slideshow-prev.png) no-repeat center center;
}

.slideshow .slick-arrow.slick-next {
  right: 30px;
}

.slideshow .slick-arrow.slick-next::before {
  content: "";
  background: url(/images/default/slideshow-next.png) no-repeat center center;
}

/* content main
------------------------------------------*/
#content-inner {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.home #content-inner {
  width: 100%;
  padding-bottom: 0;
}

#main {
  width: 100%;
}

.h2-ttl {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.h2-ttl span {
  display: block;
  color: #518C22;
  font-size: 18px;
  letter-spacing: normal;
  margin-top: 5px;
}

body.home h3 {
  color: #518C22;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

body.home .main-content-inner {
  max-width: 1200px;
  margin-inline: auto;
}

body.home .main-content-inner p:not([class]) {
  line-height: 38px;
}

body.home .main-content-more a, body.home .main-content-more span {
  text-align: center;
  display: table;
  color: #fff;
  font-size: 18px;
  background: #518C22;
  border-radius: 10px;
  width: 270px;
  line-height: 70px;
  margin-inline: auto;
  position: relative;
}

body.home .main-content-more a::after, body.home .main-content-more span::after {
  content: '';
  display: block;
  background: url(/images/default/btn_arrow.png) no-repeat center/contain;
  width: 27px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}

body.home .main-content-more a:hover, body.home .main-content-more span:hover {
  text-decoration: none;
  opacity: 0.8;
}

body.home .main-content-more.inverse a, body.home .main-content-more.inverse span {
  color: #518C22;
  background: #fff;
}

body.home .main-content-more.inverse a::after, body.home .main-content-more.inverse span::after {
  background-image: url(/images/default/btn_arrow_inverse.png);
}

body.home .main-movie {
  padding-block: 100px;
}

body.home .main-movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

body.home .main-info {
  background: #FAF5EB;
  padding-block: 107px 92px;
}

body.home .main-info .row {
  gap: 48px;
  flex-wrap: nowrap;
}

body.home .main-info .row > .col {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  padding: 80px 60px;
}

body.home .main-news-list {
  border-top: 1px solid #ccc;
  margin-bottom: 40px;
  min-height: 200px;
}

body.home .main-news-list-item {
  padding-block: 16px;
  border-bottom: 1px solid #ccc;
  font-size: 18px;
}

body.home .main-news-list-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

body.home .main-news-list-title > a {
  font-weight: normal;
}

body.home .main-news-list-date {
  color: #518C22;
  font-weight: bold;
  margin-right: 24px;
}

body.home .scroll-area {
  max-height: 200px;
}

body.home .main-service {
  padding-block: 110px 120px;
}

body.home .main-service .main-content-wrap {
  background: url(/images/default/bg_img001.png) no-repeat center;
  padding-block: 65px 72px;
  position: relative;
}

body.home .main-service .main-content-wrap::before, body.home .main-service .main-content-wrap::after {
  content: '';
  display: block;
  position: absolute;
}

body.home .main-service .main-content-wrap::before {
  background: url(/images/default/bnr_img002.png) no-repeat center;
  width: 354px;
  height: 465px;
  bottom: 25px;
  right: calc(50% + 443px);
}

body.home .main-service .main-content-wrap::after {
  background: url(/images/default/bnr_img001.png) no-repeat center;
  width: 458px;
  height: 606px;
  top: -12px;
  left: calc(50% + 406px);
}

body.home .main-service .main-content-text {
  text-align: center;
  margin-bottom: 42px;
}

body.home .main-service .main-content-text p {
  line-height: 40px;
}

body.home .main-course {
  background: #EEF6E7;
  padding-block: 98px 125px;
}

body.home .main-course .row {
  margin-inline: auto;
  gap: 80px;
}

body.home .main-course .row + .row {
  margin-top: 120px;
}

body.home .main-course .row > .col {
  padding: 0;
}

body.home .main-course .h2-ttl {
  margin-bottom: 70px;
}

body.home .main-course h3 {
  font-size: 26px;
  margin-block: 30px 11px;
}

body.home .main-course p {
  min-height: 152px;
  font-size: 18px;
}

body.home .main-course .main-content-bnr {
  margin-top: 110px;
}

body.home .main-course .main-content-bnr a {
  background: url(/images/default/bnr_img007.jpg) no-repeat center;
  width: 800px;
  height: 240px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

body.home .main-course .main-content-bnr a:hover {
  text-decoration: none;
  opacity: 0.8;
}

body.home .main-course .main-content-bnr a:hover span {
  opacity: 1;
}

body.home .main-course .main-content-bnr h3 {
  color: #fff;
  margin-block: 0 37px;
}

body.home .main-course .main-content-bnr .main-content-more {
  margin: 0;
}

body.home .main-course .main-content-more {
  margin-top: 30px;
}

body.home .main-concept {
  padding-block: 100px;
}

body.home .main-concept .row {
  margin-bottom: 54px;
}

body.home .main-voice {
  background: #EEF6E7;
  padding-block: 100px;
}

body.home .main-voice .slideshow-carousel {
  margin-bottom: 54px;
}

body.home .main-voice .slideshow-carousel a {
  text-decoration: none;
  cursor: pointer;
}

body.home .main-voice .slideshow-carousel h3 {
  margin-block: 28px 16px;
}

/* content sidebar
------------------------------------------*/
#sidebar {
  float: left;
  width: 220px;
  text-align: left;
}

.side-search {
  margin-bottom: 20px;
}

.side-nav {
  margin-bottom: 20px;
}

.side-nav-title {
  margin-bottom: 10px;
}

.side-nav-list > li > a {
  display: block;
  padding: 5px;
  border-bottom: 1px dashed rgba(185, 185, 185, 0.5);
  font-size: 13px;
}

.side-nav-list > li > a::before {
  content: "\f105";
  padding-right: 5px;
  transform: scale(0.8);
  transform-origin: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #333;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.side-nav-list > li > ul {
  padding: 10px;
}

.side-nav-list > li > ul > li > a {
  display: block;
  padding: 2px;
  font-size: 12px;
}

.side-about {
  margin-bottom: 20px;
  padding: 10px;
  background: #222;
  font-size: 12px;
  color: #fff;
}

.side-banner-list > li {
  margin-bottom: 10px;
}

/* footer
------------------------------------------*/
.footer-bnr {
  padding-block: 10px;
}

.footer-bnr .row {
  margin: 0;
  gap: 10px;
}

.footer-bnr .row > .col {
  padding: 0;
}

.footer-bnr .row > .col a:hover {
  opacity: 0.8;
}

.main-access {
  padding-block: 100px 20px;
}

.main-access .main-content-text {
  margin-bottom: 30px;
}

.main-access .main-content-table table {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
}

.main-access .main-content-table table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

.main-access .main-content-table table th, .main-access .main-content-table table td {
  padding-block: 10px;
}

.main-access .main-content-table table th {
  font-weight: normal;
  min-width: 170px;
}

.main-access .main-content-map {
  margin-top: 80px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.main-access .main-content-more {
  margin-top: 40px;
}

#footer-inner {
  position: relative;
  width: 980px;
  padding-block: 70px 60px;
  margin: 0 auto;
}

.footer-info {
  margin-bottom: 74px;
}

.footer-info .logo {
  margin-bottom: 33px;
}

.footer-info p {
  font-size: 14px;
}

.footer-info p.tel {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  padding-left: 28px;
}

.footer-info p.tel::before {
  content: '';
  display: block;
  background: url(/images/default/TEL.png) no-repeat center/contain;
  width: 24px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.footer-nav {
  font-size: 14px;
}

.footer-nav-list {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.footer-nav li {
  padding-block: 10px;
}

.footer-nav li a {
  color: inherit;
}

.footer-nav li ul {
  display: none;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
}

.pagetop-btn-wrap {
  display: none;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 20;
}

.pagetop-btn-wrap figure:last-child {
  margin-bottom: 0;
}

/* Lower
------------------------------------------*/
.entry {
  margin: 0 0 20px;
}

/* heading */
.page-title {
  text-align: center;
  margin: 0 0 30px 0;
  padding: 28px 15px;
  background-color: #8EDB64;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}

.entry-title,
.entry-content h2 {
  text-align: center;
  margin: 0 0 25px;
  font-size: 36px;
  font-weight: bold;
}

.entry-title a,
.entry-content h2 a {
  color: inherit;
}

.entry-content h3,
.h3 {
  padding: 5px 20px;
  border-left: 4px solid #518C22;
  background: rgba(81, 140, 34, 0.2);
  font-size: 24px;
}

.entry-content h4,
.h4 {
  padding-left: 18px;
  font-size: 18px;
  position: relative;
}

.entry-content h4::before,
.h4::before {
  content: '';
  display: block;
  background: #518C22;
  width: 7px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.entry-content h5,
.h5 {
  padding: 5px;
  border-bottom: 1px dashed #ccc;
  font-weight: bold;
}

/* Breadcrumb
------------------------------------------*/
.breadcrumb {
  justify-content: flex-start;
  margin: 10px 0 10px;
  padding: 0;
  background: none;
  font-size: 12px;
}

.breadcrumb-item + .breadcrumb-item:before {
  content: ">";
  color: inherit;
}

.breadcrumb-item.home:before {
  content: "\f015";
  padding: 0 5px 0 0;
  font-size: 11px;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* common-nav
------------------------------------------*/
.common-nav-list li {
  display: block;
  padding: 5px;
  border-bottom: 1px dashed rgba(186, 186, 186, 0.5);
}

.common-nav-list li a {
  padding: 5px;
  font-size: 13px;
}

/* blog-nav
------------------------------------------*/
.blog-nav-group {
  display: flex;
  justify-content: space-between;
}

.blog-nav {
  width: 23%;
}

.blog-nav-title {
  text-align: center;
}

.blog-nav {
  margin: 0 0 20px 0;
  text-align: left;
}

.blog-nav-title {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(186, 186, 186, 0.5);
  font-size: 15px;
  font-weight: bold;
}

.blog-nav-list li a {
  position: relative;
  display: block;
  padding: 0.8rem 0.8rem 0.8rem 2.5rem;
  border-bottom: 1px solid rgba(186, 186, 186, 0.5);
  font-size: 0.8rem;
  color: inherit;
}

.blog-nav-list li a::after {
  position: absolute;
  top: 1rem;
  left: 0.75rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  content: "\f105";
  font-size: 12px;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.blog-nav-list li li a {
  padding-left: 3.5rem;
}

.blog-nav-list li li a::after {
  left: 2.25rem;
}

.blog-nav-list li li li a {
  padding-left: 4rem;
}

.blog-nav .scroll-area {
  max-height: 200px;
}

/* Gallery
------------------------------------------*/
/* archive */
.gallery-list-item {
  padding: 0 15px 15px;
}

.gallery-list-img {
  margin-bottom: 3px;
}

.gallery-list-title {
  font-size: 13px;
}

.gallery-list-more {
  text-align: right;
}

/* single */
.gallery-detail {
  margin-bottom: 20px;
  text-align: center;
}

.gallery-detail-sub li {
  padding: 0 5px 10px;
}

/* before-after */
.ba-detail {
  padding: 0 0px 20px;
}

.ba-detail-once {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.ba-detail-before,
.ba-detail-after {
  position: relative;
  width: 45%;
}

.ba-detail-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
}

.ba-detail-arrow i {
  font-size: 30px;
}

.ba-detail-sub li {
  padding: 0 15px 15px;
}

/* Colors
------------------------------------------*/
/* arrows */
.slick-next::before,
.slick-prev::before {
  color: #fff;
}

/* dots */
.slick-dots li button::before {
  color: #ccc;
}

.slick-dots li button:hover::before,
.slick-dots li button:focus::before,
.slick-dots li.slick-active button::before {
  color: #666;
}

/* SimpleBar */
.scroll-area {
  overflow: auto;
}

.simplebar-track.simplebar-vertical {
  width: 11px;
}

.simplebar-track.simplebar-horizontal {
  height: 11px;
}

.scroll-area .simplebar-scrollbar::before {
  background: #aaa;
}

/* btns */
.btn-primary.disabled:hover,
.btn-primary:disabled:hover,
.btn-primary.active:focus,
.btn-primary:active:focus,
.btn-primary.active:hover,
.btn-primary:active:hover,
.btn-primary.active,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary {
  border-color: #518C22;
  background-color: #518C22;
  color: #fff;
}

.btn-secondary.disabled:hover,
.btn-secondary:disabled:hover,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.btn-secondary.active:hover,
.btn-secondary:active:hover,
.btn-secondary.active,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary {
  border-color: #518C22;
  background-color: #fff;
  color: #518C22;
}

.btn-outline-primary.disabled:hover,
.btn-outline-primary:disabled:hover,
.btn-outline-primary.active:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:hover,
.btn-outline-primary:active:hover,
.btn-outline-primary.active,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary {
  border-color: #202020;
  background-color: #fff;
  color: #202020;
}

/* pagination */
.page-link {
  border-color: #9e9e9e;
  color: #333;
}

.page-item.active .page-link,
.page-item.active .page-link:focus,
.page-item.active .page-link:hover,
.page-link:focus,
.page-link:hover {
  border-color: #999999;
  background-color: #518C22;
  color: #fff;
}