@charset "UTF-8";

/*メインビジュアル*/
.mainvisual {
  overflow: hidden;
}

.mainvisual__inner {
  position: relative;
}
@media screen and (min-width: 1366px) {
  .mainvisual__inner {
		max-width: 1100px;
  }
}

.mainvisual__image__wrapper {
  width: 100vw;
  height: 540px;
  margin-left: 8vw;
}
@media screen and (min-width: 769px) {
  .mainvisual__image__wrapper {
    height: 704px;
    margin-left: 5vw;
  }
}
@media screen and (min-width: 1366px) {
  .mainvisual__image__wrapper {
    margin-left: 0;
  }
}

.mainvisual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: left 70% bottom 0;
}
@media screen and (min-width: 1366px) {
  .mainvisual__image {
    width: 89.312vw;
		object-position: left 0 bottom 0;
  }
}

.mainvisual__slogan__wrapper {
  position: absolute;
  top: 313px;
}
@media screen and (min-width: 769px) {
  .mainvisual__slogan__wrapper {
    top: 378px;
    left: 30px;
  }
}
@media screen and (min-width: 1366px) {
  .mainvisual__slogan__wrapper {
    left: -20px;
  }
}

.mainvisual__slogan__main {
  font-size: clamp(20px, 5.333vw, 24px);
  font-size: max(20px, min(5.333vw, 24px));
  font-weight: 500;
  line-height: 1.35;
  filter: drop-shadow(7px 0px 10px #fff)
					drop-shadow(7px 0px 10px #fff)
					drop-shadow(7px 0px 10px #fff);
}
@media screen and (min-width: 769px) {
  .mainvisual__slogan__main {
    font-size: 32px;
  }
}

.mainvisual__slogan__main .text__large {
  font-size: clamp(30px, 8vw, 40px);
  font-size: max(30px, min(8vw, 40px));
}
@media screen and (min-width: 769px) {
  .mainvisual__slogan__main .text__large {
    font-size: 48px;
  }
}

.mainvisual__slogan__main .text__wrap {
  /*これ、消します？*/
  display: block;
  /*display: inline-block;*/
  padding-right: 20px;
}
@media screen and (min-width: 769px) {
  .mainvisual__slogan__main .text__wrap {
    display: block;
  }
}

.mainvisual__slogan__sub {
  font-size: clamp(16px, 4.267vw, 20px);
  font-size: max(16px, min(4.267vw, 20px));
  line-height: 1.6875;
  margin-top: 11px;
  filter: drop-shadow(7px 0px 10px #fff)
					drop-shadow(7px 0px 10px #fff)
					drop-shadow(7px 0px 10px #fff);
}
@media screen and (min-width: 769px) {
  .mainvisual__slogan__sub {
    font-size: 32px;
		margin-top: 24px;
  }
}

.mainvisual__slogan__sub .text__wrap {
	/*これ、消します？*/
  display: block;
  /*display: inline-block;*/
  padding-right: 20px;
}
@media screen and (min-width: 769px) {
  .mainvisual__slogan__sub .text__wrap {
    display: block;
  }
}

/*三日月用のバックグラウンド（アバウト～ニュースまでを包む）*/
.section__background {
  background-image: url("../img/background01.png");
  background-position: top -120px right;
  background-size: clamp(272.5px, 72.667vw, 72.667vw);
  background-size: max(272.5px, min(72.667vw, 72.667vw));
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .section__background {
    background-image: url("../img/background01.png");
    background-position: top -235px right;
    background-size: 72.667vw;
		padding-top: 80px;
  }
}
@media screen and (min-width: 1366px) {
  .section__background {
    background-image: url("../img/background02.png");
    background-position: top -360px right;
    background-size: 60.688vw;
  }
}

/*アバウト*/
@media screen and (min-width: 769px) {
	.about .main__button__green {
		margin-top: 75px;
	}
}

.about__message {
  font-size: 16px;
  line-height: 1.688;
  margin-top: 42px;
	letter-spacing: 0.027em;
}
@media screen and (min-width: 769px) {
  .about__message {
    font-size: 18px;
    line-height: 1.667;
    text-align: center;
    margin-top: 57.5px;
  }
}

/*ニュース*/
@media screen and (min-width: 769px) {
	.news .main__button__green {
		margin-top: 86.5px;
	}
}

@media screen and (min-width: 769px) {
	.news.section {
		padding-top: 96px;
  	padding-bottom: 80px;
	}
}

@media screen and (min-width: 769px) {

  .news__inner {
    max-width: 860px;
  }
}

.news__content {
  margin-top: 50px;
  list-style: none;
}
@media screen and (min-width: 769px) {
  .news__content {
    margin-top: 60px;
  }
}

.news__article {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .news__article {
    margin-top: 60px;
  }
}
.news__article:first-child {
  margin-top: 0;
}

.news__link {
  display: block;
  padding: 0 20px;
  padding-top: 18px;
  padding-bottom: 17px;
  position: relative;
}
/*緑ボーダー破線*/
.news__link::before {
  position: absolute;
  content: "";
  border: 4px dashed #008c38;
  border-radius: 10px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.news__link::after {
  position: absolute;
  content: "";
  border: 4px solid #fff;
  border-radius: 10px;
  top: 1px;
  right: 1px;
  left: 1px;
  bottom: 1px;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .news__link {
		padding-left: 40px;
		padding-right: 57px;
  	padding-top: 18px;
  	padding-bottom: 10px;
  }
	.news__link::before {
		border: 7.9px dashed #008c38;
	}
	.news__link::after {
		border: 7.9px solid #fff;
	}
}

.news__info {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  column-gap: 2.4vw;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .news__info {
    column-gap: 20px;
  }
}

.news__time {
  font-weight: bold;
  color: #000;
}
@media screen and (min-width: 769px) {
  .news__time {
    font-size: 14px;
  }
}

.news__category {
  font-weight: bold;
  color: #000;
}
@media screen and (min-width: 769px) {
  .news__category {
    font-size: 14px;
  }
}

.news__body {
  display: block;
  color: #000;
  margin-top: 11px;
}
@media screen and (min-width: 769px) {
	.news__body {
		margin-top: 7px;
	}
}

.news__body__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .news__body__title {
    font-size: 20px;
		line-height: 1.75;
		letter-spacing: 0.065em;
  }
}

.news__body__text {
  margin-top: 11px;
}
@media screen and (min-width: 769px) {
  .news__body__text {
		letter-spacing: 0.081em;
		margin-top: 12px;
		text-align: justify;
  }
}

/*サービス*/
@media screen and (min-width: 769px) {
	.service .main__button__green {
		margin-top: 80px;
	}
}

.service {
  background-color: rgba(245, 206, 31, 0.3);
}

.service.section {
  padding-top: 80px;
  padding-bottom: 90px;
}
@media screen and (min-width: 769px) {
	.service.section {
		padding-top: 100px;
  	padding-bottom: 80px;
	}
}

.service__lists {
  margin-top: 42px;
}
@media screen and (min-width: 769px) {
  .service__lists {
    margin-top: 70px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    row-gap: 136px;
    justify-content: space-between;
    background-image: url("../img/service__background01.png");
    background-position: top calc(50% - -10px) left calc(50% - 0px);
    background-size: 180px;
    background-repeat: no-repeat;
  }
}

.service__list {
  margin-top: 22px;
}
.service__list:first-child {
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  .service__list {
    margin-top: 0;
    width: 40%;
    background-color: #fff;
    border-radius: 36px;
    padding: 0 29.5px;
		padding-top: 29px;
		padding-bottom: 40px;
  }
}

.service__list__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.688;
}
@media screen and (min-width: 769px) {
	.service__list__title {
		font-size: 20px;
		line-height: 1.75;
		letter-spacing: 0.027em;
	}
}

.service__list__text {
  margin-top: 6px;
  padding-left: 10px;
}
@media screen and (min-width: 769px) {
	.service__list__text {
		letter-spacing: 0.027em;
		margin-top: 14px;
	}
}

/*お問い合わせ*/
@media screen and (min-width: 769px) {
	.contact .main__button__green {
		margin-top: 48px;
	}
}

@media screen and (min-width: 769px) {
	.contact.section {
		padding-top: 107px;
  	padding-bottom: 80px;
	}
}

.contact__message {
  font-size: 16px;
  line-height: 1.688;
  text-align: center;
  margin-top: 42px;
	letter-spacing: 0.027em;
}
@media screen and (min-width: 769px) {
  .contact__message {
    font-size: 20px;
    line-height: 2.7;
    font-weight: bold;
    margin-top: 40px;
  }
}