@charset "UTF-8";
*{
margin: 0;
padding: 0;
}

:root{
--hero-radius: 12px;
--hero-pad-x: 48px;
--hero-pad-y: 128px;
--hero-btn: #00a3ff;
--area-color: #ea9838;
--color-red: #e90d41;
--color-blue: #5883d2;
--color-green: #a3be9c;
--color-orange: #ea9838;
--color-black: #1d1d1f;
--color-txt: #6e6e73;
--color-main: #6db131;
--vc-grad: linear-gradient(180deg, rgba(79, 172, 32, 1) 15%, rgba(116, 186, 59, 1)65%);
--area-grad: linear-gradient(180deg, rgba(79, 172, 32, 1) 15%, rgba(116, 186, 59, 1);65%);
--area-color: #a37dac;
--area-grad: linear-gradient(180deg, rgba(163, 125, 172, 1) 15%, rgba(176, 141, 176, 1) 65%);
--bg-dark: #2a2b3f;
--basic-range: min(100%, 970px);
--fixed_range: 970px;
}
@media (200px <= width < 969px)  {
:root{
--subTxt: 18px;
--blue: #0000ff;
}
}


::selection {
color: #fff;
background-color: rgba(101, 157, 55, 0.8);
}

html {
scroll-padding-top: 100px;
scroll-behavior: smooth;
}
/* @media (width < 969px) {
html {
scroll-padding-top: 80px;
scroll-behavior: smooth;
}
} */



body{
color: #333;
font-family: YakuHanJP, "Noto Sans JP", sans-serif;
font-size: clamp(0.875rem, 0.834rem + 0.17vw, 1rem);
}


em{
font-style: normal;
color: var(--color-red);
font-weight: bold;
}

a:hover{
text-decoration: none;
/* color: #333; */
}

strong{
  font-size: 1.5em;
  font-weight: 800;
  line-height: .8em;
}

/*!!!!!!!!!! header !!!!!!!!!!!!*/


@media screen and (max-width: 969px) {
  .header_sp_head {
      display: flex;
      justify-content: space-between;
      margin: 0 auto 10px auto;
      align-items: center;
  }
}

@media screen and (max-width: 969px) {
    .header_sp_head_tel {
        /* display: table-cell; */
        /* vertical-align: middle; */
        width: 45px;
        margin-left: auto;
    }
}

/*!!!!!!!!!! common !!!!!!!!!!!!*/
.end-box{
  border: solid 1px var(--color-red);
  width: 100%;
  margin: 40px auto;
  padding: 20px 10px 26px;
  box-sizing: border-box;
  text-align: center;

}
@media (width < 969px) {
  .end-box{
      width: calc(100% - 20px);
      text-align: left;
  }
}

.end-title,
.end-txt{
  color: var(--color-red);
}

.end-title{
  font-size: clamp(1.375rem, 1.334rem + 0.17vw, 1.5rem);
  font-weight: 700;
  margin-bottom: .5em;
}

.end-txt{
  font-size: clamp(1rem, 0.959rem + 0.17vw, 1.125rem);
}

.headerLead{
display: none;
}

main{
display: block;
}

.contents{
  width: var(--basic-range);
  /* margin: 80px auto auto; */
  margin: 60px auto auto;
}
@media (width < 969px) {
  .contents{
    margin: 40px auto auto;
  }
}

@media (width < 969px) {
  .contents__inner{
    padding-inline: 10px;
    box-sizing: border-box;
  }
}

a.link{
  display: inline-block;
  color: #333333;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 1px;
  text-underline-offset: 1.5px;
  text-decoration-color: #919191;
  transition: all .3s;
  position: relative;
  margin-right: .1em;
  font-weight: 450;
  cursor: pointer;
}

a.internal_link,
.copy-link{
  display: inline-block;
  color: #333333;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 1px;
  text-underline-offset: 1.5px;
  text-decoration-color: #919191;
  transition: all .3s;
  position: relative;
  margin-right: 1.7em;
  font-weight: 450;
  cursor: pointer;
}

a.internal_link::after,
 .copy-link::after{
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0c1";
  position: absolute;
  top: 3px;
  left: calc(100% + 2px);
  color: #919191;
}

.copy-link::after{
  content: "\f0c5";
}



a.link:hover,
a.internal_link:hover,
.copy-link:hover{
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

.marker{
    background: linear-gradient(180deg, rgba(109, 177, 49, 0) 75%, rgb(171 230 97) 35%);
 }

 .f-small{
  font-size: .8em;
 }

/*!!!!!!!!!! title !!!!!!!!!!!!*/

h3{
  margin-bottom: .5em;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.375rem, 1.334rem + 0.17vw, 1.5rem);
  font-weight: 600;
  width: 100%;
  margin-bottom: 30px;
  line-height: 1.66;
  box-sizing: border-box;
  padding-bottom: 6px;
  background: #6DB132;
  background: linear-gradient(90deg, rgba(109, 177, 50, 1) 13%, rgba(109, 177, 50, 1) 42%, rgba(168, 209, 71, 1) 67%, rgba(176, 213, 86, 0.53) 100%);
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: left bottom;
  em{
    font-weight: 600;
  }
}
@media (width < 969px) {
  .section-title{
    padding-inline: 5px;
  }
}
@media (width < 640px) {
  .section-title {
    padding-bottom: 10px;
    background-size: 100% 8px;
  }
}
.section-title i {
  color: #6eb42f;
  font-style: normal;
  font-size: 130%;
  line-height: 1em;
}

.message{
  font-size: clamp(1.125rem, 1.084rem + 0.17vw, 1.25rem);
  margin-bottom: 1.5em;
  color: #333;
  font-weight: 600;
}

.section-title-detail{
  /* font-size: clamp(1rem, 0.568rem + 0.71vw, 1.25rem); */
  font-size: 16px;
  font-weight: 600;
}

.section-title-detail::before{
  content: "■";
  color: #ccc;
  margin-right: 0.2em;
}

.stripe-block{
  position: relative;
  padding-left: 20px;
}
.stripe-block::before{
  content: "";
  position: absolute;
  top: .1em;
  left: 0;
  display: block;
  width: .5em;
  height: 1.25em;
  background-image: repeating-linear-gradient(45deg, #6db131, #6db131 3px, transparent 3px, transparent 6px);
}

.vc-title{
    font-size: 14px;
  /* background-image: linear-gradient(90deg, rgba(109, 177, 49, 1,) 0%, rgba(126, 199, 62, 1) 80%); */
  background-color: rgba(109, 177, 49, .7);
  line-height: 1.2;
  color: #fff;
  padding: 5px;
  text-align: center;
  margin-bottom: 0;
}
/*!!!!!!!!!! title !!!!!!!!!!!!*/


/*!!!!!!!!!! event !!!!!!!!!!!!*/
.co-main{
  color: #6aa833;
}

.event-img{
  width: 35%;
  float: right;
  margin-left: 1em;
  img{
    width: 100%;
    object-fit: cover;
    border: solid 1px #eee;
  }
}
@media (width < 640px) {
.event-img{
  margin-left: auto;
  margin-bottom: 20px;
  width: 100%;
  float: none;
  img{
    height: 170px;
  }
}
}

.event_detail{
  dt{
    font-weight: 500;
    margin-top: 1em;

    i{
      /* color: #8b8b8b; */
      font-style: normal;
      margin-right: 2px;
    }
  }

  dd{
  }
}

.last_message{
  margin-top: 1em;
}

.facility-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
@media (width < 768px) {
  .facility-list{
      gap: 10px 4px;
  }
}

.facility-list.first-20 li{
  width: calc(100% / 4 - 8px);
}
@media (width < 768px) {
  .facility-list.first-20 li{
    width: calc(100% / 2 - 5px);
  }
}

.facility-list.first-30 li{
  width: calc(100% / 3 - 8px);
}
@media (width < 768px) {
  .facility-list.first-30 li{
    width: calc(100% / 2 - 5px);
  }
}

.facility-list a{
  transition: all .3s;
}

.facility-list a:hover{
  text-decoration: none;
}

.facility-list a:hover img{
  opacity: .7;
  transition: all .3s;
}

.facility-list figure{
  position: relative;
}

.facility-list figcaption{
  position: absolute;
  bottom: 0;
  width: 100%;
}

/*!!! PC・タブレット・SPの表示切り替え 重ね掛けOK !!!!*/

.d-sp {
	display: none;
}
@media (width <= 640px) {
	.d-sp {
		display: block;
	}
}

.d-pc, .d-tb {
	display: none;
}

@media (width >= 969px) {
	.d-pc {
		display: block;
	}
}
@media (641px <= width <= 968px) {
	.d-tb {
		display: block;
	}
}

/*!!!!!!!!!!!!!! contact section !!!!!!!!!!!!*/

  .contact-cta * {
    line-height: 1.2;
  }

  .contact-cta {
    position: relative;
  }


  /* .contact-cta::before {
    content: "CONTACT";
    display: block;
    font-size: 80px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-main);
    opacity: .5;
  } */


  .contact-cta {
    width: min(100%, var(--basic-range));
    margin: 60px auto 60px;
    padding: 30px;
    background-color: var(--bg-dark);
    box-sizing: border-box;
  }

  .contact-cta__title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: #fff;
    border-bottom: solid 2px var(--color-main);
  }

  @media (width < 969px) {
    .contact-cta__title {
      font-size: 22px;
      text-align: left;
    }
  }
  @media (width < 640px) {
    .contact-cta__title {
      margin-bottom: 20px;
    }
  }

  .contact-cta__text {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
  }

  @media (width < 640px) {
    .contact-cta__text {
      text-align: left;
    }
  }

  .contact-cta__links {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* margin-top: 40px; */
  }

  .contact-cta__link-item{
    width: auto;
  }
  @media (width < 969px) {
    .contact-cta__link-item{
      width: 100%;
    }
  }

  .contact-cta__link-item a {
    color: #fff;
  }

  .contact-cta__button {
    display: flex;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    width: 370px;
    box-sizing: border-box;
    position: relative;
  }

  @media (width < 820px) {
    .contact-cta__button {
      width: min(100%, 350px);
      margin: auto;
    }
  }

  .contact-cta__button--phone {
    color: #fff;
    padding: 0;
  }

  .contact-cta__button--form {
    padding: 15px 10px;
    background-image: linear-gradient(90deg, rgba(163, 125, 172, 1) 0%, rgba(176, 141, 176, 1) 50%, rgba(109, 177, 49, 1) 50%, rgba(126, 199, 62, 1) 100%);
    background-size: 200% auto;
    background-position: right center;
    color: #fff;
    justify-content: center;
    transition: background-position 0.4s ease-in-out;
  }

  @media (970px <= width) {
    .contact-cta__button--form:hover {
      background-position: left center;
    }
  }

  .contact-cta__button--form::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 1em;
    height: 1em;
    border: 3px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    position: absolute;
    right: 15px;
    bottom: 1.66em;
  }

  .contact-cta__button:hover,
  .contact-cta__button:visited {
    text-decoration: none;
  }

  .contact-cta__icon {
    font-size: 30px;
    margin-right: 10px;
  }

  .contact-cta__button--form .contact-cta__icon {
    color: #fff;
    margin-left: -20px;
  }

  .contact-cta__text-wrapper {
    display: flex;
    flex-direction: column;
  }

  .contact-cta__label {
    font-size: 14px;
    font-weight: 500;
  }


  .contact-cta__main-text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
  }

  .contact-cta__main-text_tel {
    font-size: 34px;
    font-weight: 600;
  }

  @media (max-width: 640px) {
    .contact-cta__main-text_tel {
      font-size: 30px;
    }
    .contact-cta__main-text {
      font-size: 22px;
    }
  }


  .contact-cta__main-text_tel span {
    color: var(--color-blue);
    font-weight: 700;
  }

  .contact-cta__sub-text {
    font-size: 14px;
    margin-left: 5.5em;
  }

  @media (max-width: 640px) {
    .contact-cta__sub-text {
      margin-left: 0;
      margin-top: 5px;
    }
  }

  .contact-cta__arrow {
    font-size: 24px;
    margin-left: auto;
    color: #fff;
  }

  /* Responsive */
  @media (max-width: 640px) {
    .contact-cta {
      margin: 40px auto;
      padding: 20px;
    }

    .contact-cta__link-item:last-of-type{
      margin-top: 20px;
    }

    .contact-cta__links {
      flex-direction: column;
      gap: 0;
    }
 }

  .c-box {
    display: flex;
    justify-content: center;
    align-items: center;
  }
