@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}


body * {
  font-family: YuGothic, '游ゴシック', 'Yu Gothic', '游ゴシック体', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  box-sizing: border-box;
  color: #333;
}

@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}


/* SPのみヘッダー固定 ここから */
.drawer--navbarTopGutter {
  padding-top: 0;
}
@media only screen and (max-width: 768px) {
  .drawer--navbarTopGutter {
    padding-top: 3.75rem;
  }
}
/* SPのみヘッダー固定 ここまで */

.wrapper {
  width: 100%;
}


/*---------------------------------------------------------
   header
---------------------------------------------------------*/
.l-header {
  width: 100%;
  /* height: 75px; */
  height: 110px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .l-header {
    height: 16vw;
  }
}

/* SPのみヘッダー固定 ここから */
.drawer-navbar--fixed {
  position: initial;
}
@media only screen and (max-width: 768px) {
  .drawer-navbar--fixed {
    position: fixed;
  }
}
/* SPのみヘッダー固定 ここまで */

.l-header-inner {
  /* width: 1100px; */
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .l-header-inner {
    width: 92vw;
  }
}

.l-header-inner .main-logo {
  display: inline-block;
  width: 200px;
}

.l-header-inner .main-logo img {
  width: 200px;
  aspect-ratio: 464 / 71;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .l-header-inner .main-logo {
    width: 53.333vw;
  }

  .l-header-inner .main-logo img {
    width: 53.333vw;
    height: 8.133vw;
    aspect-ratio: 464 / 71;
    object-fit: cover;
  }
}

.l-header-inner .contact-btn {
  display: flex;
  align-items: center;
  width: 230px;
  height: 35px;
  background: #27A539;
  color: #fff;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 10px;
  padding-left: 85px;
  position: relative;
}

.l-header-inner .contact-btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 13.5px;
  position: absolute;
  top: 50%;
  left: 55px;
  transform: translateY(-50%);
  background: url(../images/common/mail.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .l-header-inner .contact-btn {
    display: none;
  }
}

.l-header-inner .menu-list {
  display: flex;
  padding: 0;
}

.l-header-inner .menu-list li {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}

.l-header-inner .menu-list li a:hover {
  opacity: .8;
}

.l-header-inner .menu-list li.current_item span {
  color: #27A539;
  position: relative;
}

.l-header-inner .menu-list li.current_item span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #27A539;
}

.l-header-inner .menu-list li:not(:last-child) {
  margin-right: 28px;
}

.l-header-inner .menu-list li .child-link-list {
  display: none;
}

@media only screen and (max-width: 768px) {
  .l-header-inner .menu-list {
    display: none;
  }

  .l-header-inner .drawer-nav li {
    font-weight: bold;
    padding-left: 15px;
    margin: 15px 0 15px 0;
  }

  .l-header-inner .drawer-nav li .drawer-menu-item {
    padding: 0;
    margin: 0;
  }

  .l-header-inner .drawer-nav li .child-link {
    font-weight: 500;
  }

  .l-header-inner .drawer-nav li .child-link a {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-left: 50px;
  }

  .l-header-inner .drawer-nav li .child-link a::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    border-bottom: solid 1px #333;
  }

  .l-header-inner .drawer-nav li.current_item span {
    display: inline-block;
    font-size: 1rem;
    color: #27A539;
    position: relative;
  }

  .l-header-inner .drawer-nav li.current_item span::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #27A539;
  }
}

/*---------------------------------------------------------
   ハンバーガーメニュー
---------------------------------------------------------*/
.drawer-hamburger, .drawer-nav {
  display: none;
}

.drawer-navbar {
  border-bottom: none;
}

@media only screen and (max-width: 768px) {

  .drawer-hamburger {
    display: block;
    padding: 18px 1.5rem 30px;
  }

  .drawer--right.drawer-open .drawer-hamburger {
    right: 0px;
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon:after,
  .drawer-hamburger-icon:before {
    background-color: #27A539;
    width: 40px;
    height: 3px;
  }

  .drawer-hamburger-icon:before {
    top: -12px;
  }

  .drawer-hamburger-icon:after {
    top: 12px;
  }

  .drawer-nav {
    display: block;
  }

}

/*---------------------------------------------------------
   footer
---------------------------------------------------------*/
.l-footer {
  width: 100%;
  height: 350px;
  padding-top: 40px;
  background: #467832;
}

.l-footer .l-footer-inner {
  width: 1100px;
  height: 220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .l-footer {
    width: 100%;
    height: auto;
    padding-top: 40px;
    background: #467832;
  }

  .l-footer .l-footer-inner {
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}

/* ロゴ */
.l-footer .l-footer-inner .footer-logo-wrapper {
  width: 370px;
}

.l-footer .l-footer-inner .footer-logo-wrapper img {
  width: 370px;
  aspect-ratio: 744 / 128;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer-inner .footer-logo-wrapper {
    width: 73.333vw;
    margin: 0 auto;
  }

  .l-footer .l-footer-inner .footer-logo-wrapper img {
    width: 73.333vw;
    aspect-ratio: 744 / 128;
    object-fit: cover;
  }
}

/* リンク */
.l-footer .l-footer-inner .footer-link-wrapper {
  width: 510px;
  display: flex;
  justify-content: space-between;
}

.footer-link-list {
  margin: 0;
  padding: 0;
}

.footer-link-list:nth-child(1) {
  width: 180px;
}

.footer-link-list:nth-child(2) {
  width: 130px;
}

.footer-link-list:nth-child(3) {
  width: 100px;
}

.footer-link-list li {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.footer-link-list li.parent-link {
  margin-bottom: 10px;
}

.footer-link-list li.child-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.footer-link-list li a {
  color: #fff;
}

.footer-link-list li a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.footer-link-list li.child-link a {
  display: inline-block;
  position: relative;
  padding-left: 22px;
}

.footer-link-list li.child-link a::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-bottom: solid 1px #fff;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer-inner .footer-link-wrapper {
    width: 100%;
    display: block;
    padding-left: 2vw;
    margin-top: 8vw;
  }

  .footer-link-list {
    display: block;
  }

  .footer-link-list:nth-child(1), .footer-link-list:nth-child(2), .footer-link-list:nth-child(3) {
    width: 60%;
  }

  .footer-link-list li {
    display: block;
    font-size: 3.2vw;
    font-weight: bold;
    letter-spacing: 0;
    margin-bottom: 2.667vw;
  }

  .footer-link-list li.parent-link {
    margin-bottom: 1.333vw;
  }

  .footer-link-list li.child-link {
    display: block;
    font-size: 3.2vw;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 1.333vw;
    padding-left: 6vw;
  }

  .footer-link-list li.child-link a {
    display: inline-block;
    position: relative;
    padding-left: 2.933vw;
  }

  .footer-link-list li.child-link a::before {
    content: "";
    display: inline-block;
    width: 1.733vw;
    height: 0.133vw;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-bottom: solid 1px #fff;
  }
}

/* TOPへ */
.l-footer .l-footer-inner .to-top {
  width: 50px;
  height: auto;
  display: flex;
  align-items: flex-end;
}

.l-footer .l-footer-inner .to-top img {
  display: block;
  width: 50px;
  height: 50px;
  aspect-ratio: 101 / 101;
  object-fit: cover;
  margin-bottom: 25px;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer-inner .to-top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .l-footer .l-footer-inner .to-top img {
    display: block;
		width: 13.467vw;
		height: 13.467vw;
    aspect-ratio: 101 / 101;
    object-fit: cover;
    margin-bottom: 5vw;
  }
}

/* コピーライト */
.l-footer-copyright {
  width: 1100px;
  margin: 0 auto;
  border-top: solid 1px #fff;
  padding-top: 20px;
}

.l-footer-copyright p {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .l-footer-copyright {
    width: 80%;
    padding-top: 2.667vw;
    padding-bottom: 2.667vw;
  }

  .l-footer-copyright p {
    font-size: 2.4vw;
  }

  .l-footer-copyright p.copyright-text {
    margin-top: 3vw;
  }
}

/*---------------------------------------------------------
   main
---------------------------------------------------------*/
.l-main {
  width: 100%;
}

.l-container {
  width: 1100px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .l-container {
    width: 90%;
    margin: 0 auto;
  }
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.sp_block {
  display: none;
}

@media only screen and (max-width: 768px) {
  .sp_block {
    display: block;
  }
}

/*---------------------------------------------------------
   slick slider
---------------------------------------------------------*/
.slider-wrapper {
  width: 100%;
  height: 500px;
  position: relative;
}

.slider-wrapper picture img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .slider-wrapper {
    width: 100%;
    height: 53.333vw;
  }

  .slider-wrapper picture img {
    width: 100%;
    height: 53.333vw;
    object-fit: cover;
  }
}

/*---------------------------------------------------------
   slick slider h1
---------------------------------------------------------*/
.slider-wrapper .catch-copy {
  /* width: 850px;
  height: 180px; */
  width: 680px;
  height: 145px;
  position: absolute;
  top: 57%;
  left: 45%;
  transform : translate(-43%,-55%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-wrapper .catch-copy img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media only screen and (max-width: 768px) {
  .slider-wrapper .catch-copy {
    width: 73.333vw;
    height: 16vw;
    top: 50%;
    left: 50%;
    transform : translate(-50%,-50%);
  }
}

/*---------------------------------------------------------
   slick slider カスタマイズ
---------------------------------------------------------*/
.slick-dots {
  bottom: 20px;
}

.slick-dots li {
  margin: 0 8px;
  width: 70px;
  height: 4px;
}

.slick-dots li button::before {
  content:'';
  width: 70px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
}

.slick-dots li.slick-active button::before {
  background: #fff;
  opacity: 1;
}

.slick-next {
  right: 30px !important;
  z-index: 2;
}

.slick-prev {
  left: 15px !important;
  z-index: 2;
}

.slick-prev::before,
.slick-next::before{
  font-size: 30px;
}

@media only screen and (max-width: 768px) {
  .slick-dots {
    bottom: 2.4vw;
  }

  .slick-dots li {
    margin: 0 8px;
    width: 10.667vw;
    height: 1vw;
  }

  .slick-dots li button::before {
    content:'';
    width: 10.667vw;
    height: 1vw;
    background: rgba(255, 255, 255, 0.5);
  }

  .slick-next {
    right: 4.5vw !important;
    z-index: 2;
  }
  
  .slick-prev {
    left: 1.5vw !important;
    z-index: 2;
  }
}

/*---------------------------------------------------------
   h2 ページタイトル
---------------------------------------------------------*/
.page_ttl_wrapper {
  width: 100%;
  text-align: center;
}

.page_ttl_wrapper .page_ttl {
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  margin: 80px auto 0 auto;
  letter-spacing: 0;
  line-height: 1.3;
  padding-bottom: 5px;
  border-bottom: solid 1px #333;
}

@media only screen and (max-width: 768px) {
  .page_ttl_wrapper .page_ttl {
    display: inline-block;
    /* font-size: 6vw; */
    font-size: 20px;
    font-weight: bold;
    margin-top: 13.333vw;
    text-align: left;
    letter-spacing: 0;
    line-height: 1.3;
  }
}


/*---------------------------------------------------------
   hover テキスト
---------------------------------------------------------*/
.hover_text {
  text-decoration: underline;
  text-underline-offset: 8px;
}


/*---------------------------------------------------------
   PC版のみ表示
---------------------------------------------------------*/
.pc-only {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}


/*---------------------------------------------------------
   SP版のみ表示
---------------------------------------------------------*/
.sp-only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}