@charset "UTF-8";

@media screen and (min-width: 901px){
  .sp{
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
}


/*----------------------------------------
	section
----------------------------------------*/
.section {
  padding-top: 80px;
  padding-bottom: 80px;
  scroll-margin-top: 65px;
}
.section__title {
  margin-bottom: 20px;
} 
.section__button {
  margin-top: 40px;
}
@media screen and (min-width: 901px), print {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section__title {
    margin-bottom: 30px;
  }
  .section__button {
    margin-top: 60px;
  }
}
.section__bg {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.page-lead {
  font-weight: lighter;
}
.page-lead > * {
  margin-top: 40px;
}
.page-lead--center {
  text-align: center;
}
.page-lead--white {
  color: var(--baseColor);
}
/*----------------------------------------
	ボタン
----------------------------------------*/
/*ボタンベース
-----------------------------------*/
/*a,button,inputなどに適用される予定なのでベースの表示・挙動が同一になるように調整*/
.button {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  width: 100%;
  border: 2px solid transparent;
  font-family: inherit;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 10px;
  z-index: 1;
}
.button:hover {
  text-decoration: none;
}
/*ボタンサイズ
-----------------------------------*/
/*大サイズ*/
.button--lg {
  max-width: 500px;
  padding: 1em;
  font-size: 2rem;
}
/*中サイズ*/
.button--md {
  max-width: 400px;
  padding: 1em;
  font-size: 1.8rem;
}
/*小サイズ*/
.button--sm {
  width: auto;
  min-width: 220px;
  padding: 1em;
  font-size: 1.4rem;
}
/*ボタン種類
-----------------------------------*/
/*標準*/
.button--default {
  background: var(--darkColor);
  color: var(--baseColor);
  border: 3px solid var(--darkColor);
}
.button--default:hover, .button--default:focus {
  background: transparent;
  color: var(--darkColor);
  border: 3px solid var(--darkColor);
}
/*白塗り*/
.button--white {
  background: var(--baseColor);
  color: var(--keyColor);
  border: 3px solid var(--baseColor);
}
.button--white:hover, .button--white:focus {
  background: transparent;
  color: var(--baseColor);
  border: 3px solid var(--baseColor);
}
/*Action*/
.button--action {
  background: var(--keyColor);
  color: var(--baseColor);
  border: 3px solid var(--keyColor);
}
.button--action:hover, .button--action:focus {
  background: transparent;
  color: var(--keyColor);
  border: 3px solid var(--keyColor);
}
/*ボタンレイアウト
-----------------------------------*/
.button-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.button-center .button:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width:901px), print {
  .button-center {
    flex-direction: row;
    justify-content: center;
  }
  .button-center .button:not(:first-child) {
    margin-top: 0;
    margin-left: 20px;
  }
}
/*----------------------------------------
	テキストスタイル
----------------------------------------*/
/*強調*/
.text-strong {
  font-weight: bold;
}
/*警告*/
.text-alert {
  color: #DF5656;
  font-weight: bold;
}
/*注釈*/
.text-note {
  margin-left: 1em;
  text-indent: -1em;
  color: #707070;
  font-size: 0.875em;
}
/*----------------------------------------
	リスト
----------------------------------------*/
/*ノーマル*/
.list-normal > li:not(:first-child) {
  margin-top: 1em;
}
.list-normal > li {
  position: relative;
  padding-left: 1em;
}
.list-normal > li::before {
  position: absolute;
  left: 0;
  top: 0.75em;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37952F;
}
/*矢印リンク*/
.list-arrow > li:not(:first-child) {
  margin-top: 1em;
}
.list-arrow > li {
  position: relative;
  padding-left: 1em;
}
.list-arrow > li::before {
  position: absolute;
  left: 0;
  top: 0.75em;
  content: "";
  display: block;
  width: 0.625em;
  height: 0.625em;
  border-top: 2px solid #37952F;
  border-right: 2px solid #37952F;
  transform: rotate(45deg);
}
.list-arrow a {
  color: inherit;
  text-decoration: none;
}
.list-arrow a:hover, .list-arrow a:focus {
  color: #37952F;
}
/*数字リンク*/
.list-decimal > li:not(:first-child) {
  margin-top: 1em;
}
.list-decimal > li {
  margin-left: 1em;
  list-style-type: decimal;
}
/*----------------------------------------
	枠囲み
----------------------------------------*/
/*枠囲み（標準）*/
.frame {
  border: 2px solid #37952F;
  padding: 40px;
}
.frame__title {
  padding-left: 20px;
  border-left: 2px solid #37952F;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
.frame__title + * {
  margin-top: 30px;
}
/*枠囲み（警告）*/
.frame--alert {
  border: 2px solid #DF5656;
  color: #DF5656;
  font-weight: bold;
}
.frame--alert .frame__title {
  display: flex;
  align-items: center;
  padding-left: 0;
  border-left: 0;
}
.frame--alert .frame__title::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: url(../img/icon_attention.svg) center center / contain no-repeat;
  vertical-align: middle;
}
/*----------------------------------------
	ページタイトル
----------------------------------------*/
/*ページタイトル(大・中・小共通)
--------------------------------------*/
.page-title {
  line-height: 1.5;
}
.page-title__main {
  display: block;
  font-size: 8vw;
  font-family: var(--fontFamily);
  overflow: hidden;
  font-weight: bold;
  z-index: 2;
}
.page-title__main span {
  display: inline-block;
	min-width: .2em;
}
@media screen and (min-width:901px), print {
  .page-title__main {
    font-size: min(3.2vw, 54px);
  }
}
/*ページヘッダー領域
--------------------------------------*/

.page-header{
  min-height: 180px;
  padding: 20px;
  text-align: center;
  margin-top: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.page-header p{
  color:var(--dgrayColor)
}

.page-header::after{
  position: absolute;
  content: "";
  width: 100px;
  height: 10px;
  border-radius: 5px;
  display: block;
  background-color: var(--keyColor);
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1100px) {
.page-header{
margin-top: 50px;
}
}


/* 大 */
/* .page-header-lg {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: calc(200/375*100vw);
  padding: 30px 20px 0;
  color: var(--baseColor);
  background: var(--darkColor);
  background-position: center center;
  background-size: cover;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header-lg::after {
  content: "";
  display: block;
  border-bottom: 60vw solid transparent;
  border-left: 60vw solid #222;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width:901px), print {
  .page-header-lg {
    height: 300px;
    padding: 60px 50px 0;
  }
  .page-header-lg::after {
    border-width: 25vw;
  }
} */
/*中*/
/* .page-header-md {
  padding: 80px 20px;
  background: #EAF5E9;
  text-align: center;
}
.page-header-md__lead {
  margin-top: 40px;
}
@media screen and (min-width:901px), print {
  .page-header-md {
    padding: 100px 0;
  }
  .page-header-md__lead {
    margin-top: 50px;
  }
} */
/*小*/
/* .page-header-sm {
  padding: 70px 20px;
  background: #EAF5E9;
  text-align: center;
} */
/*----------------------------------------
	見出し
----------------------------------------*/
/*大見出し
-----------------------------------*/
.heading-lv2 {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  font-family: var(--fontFamily);
  font-size: 2.8rem;
}
.heading-lv2 strong {
  color: var(--keyColor);
}
.heading-lv2__sub {
  color: var(--keyColor);
  font-size: 1.8rem;
  text-align: center;
  font-family: var(--fontFamily);
  margin-bottom: 15px;
  display: block;
  line-height: 1.5;
}
.heading-lv2--left {
  text-align: left;
}
.heading-lv2--white {
  color: #fff;
}
@media screen and (min-width: 901px), print {
  .heading-lv2 {
    font-size: 3.6rem;
  }
}
/*中見出し
-----------------------------------*/
.heading-lv3 {
  color: var(--keyColor);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.heading-lv3__sub {
  color: var(--darkColor);
  font-size: 1.4rem;
  margin-bottom: 15px;
  display: block;
}
.heading-lv3--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.heading-lv3--white {
  color: #fff;
}
.heading-lv3--white::after {
  border-color: #fff;
}
@media screen and (min-width: 901px), print {
  .heading-lv3 {
    font-size: 3.2rem;
  }
}
/*小見出し
-----------------------------------*/
.heading-lv4 {
  padding-left: 20px;
  border-left: 2px solid var(--keyColor);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
.heading-lv4--white {
  color: #fff;
  border-color: #fff;
}
@media screen and (min-width: 901px), print {
  .heading-lv4 {
    font-size: 2.4rem;
  }
}
/*小見出し以下
-----------------------------------*/
.heading-lv5 {
  color: var(--keyColor);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
.heading-lv6 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}
.heading-lv2 + *, .heading-lv3 + *, .heading-lv4 + *, .heading-lv5 + *, .heading-lv6 + * {
  margin-top: 50px;
}
/*----------------------------------------
	グリッド
----------------------------------------*/
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: inherit;
}
.grid__item {
  margin-top: 40px;
  width: 100%;
}

/*PC3カラム用*/
.grid--pc3col {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 568px) {
  .grid--pc3col {
    max-width: none;
  }
  .grid--pc3col .grid__item {
    width: calc((100% - 30px)/2);
  }
}
@media screen and (min-width: 901px), print {
  .grid--pc3col .grid__item {
    width: calc((100% - 60px)/3);
  }
  .grid--pc3col::after {
    content: "";
    display: block;
    width: calc((100% - 60px)/3);
  }
}

/*----------------------------------------
	item
----------------------------------------*/
.item {
  display: block;
  color: inherit;
  text-decoration: none;
}
/*hover仕様*/
a.item:hover, a.item:focus {
  color: var(--keyColor);
}
a.item:hover .item__image img, a.item:focus .item__image img {
  transform: scale(1.2);
}
/*画像（アスペクト比維持して表示）*/
.item__image {
  position: relative;
  overflow: hidden;
}
.item__image::before {
  content: "";
  display: block;
  padding-top: calc((120/256)*100%);
}
.item__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none; /*resetで一律max-width: 100%にしているので解除*/
  object-fit: cover;
  transition: 0.5s;
}
/*キャプション*/
.item__caption {
  margin-top: 0.5em; /*ブロックの表示サイズによって文字サイズが変わるので余白も連動して同一比率で変わるようにem単位で指定しています。（pxでも可）*/
  font-weight: bold;
  font-size: 2.4rem;
  color: var(--keyColor);
}
.item__caption--center {
  text-align: center;
}
/*説明テキスト*/
.item__description {
  margin-top: 0.5em; /*ブロックの表示サイズによって文字サイズが変わるので余白も連動して同一比率で変わるようにem単位で指定しています。（pxでも可）*/
}
/*PC4カラムのSPレイアウトで配置された場合だけの指定*/
@media screen and (max-width: 900px) {
  .grid--pc4col .item {
    font-size: 14px;
  }
}
/*----------------------------------------
	card
----------------------------------------*/
/*アイテム同様、単体のカードブロックとして設計しています*/
.card {
  display: block;
  border: 1px solid #ccc;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.07);
  color: inherit;
  text-decoration: none;
  line-height: 1.5;
  transition: 0.3s;
}
/*hover仕様（a要素で構築された場合のみ）*/
a.card:hover, a.card:focus {
  border: 1px solid #70CC33;
  color: inherit;
}
a.card:hover .card__image img, a.card:focus .card__image img {
  transform: scale(1.2);
}
a.card:hover .card__btn, a.card:focus .card__btn {
  opacity: 0.8;
}
a.card:hover .card__btn::after, a.card:focus .card__btn::after {
  right: 15px;
}
/*サムネイル画像（アスペクト比維持して表示）*/
.card__image {
  position: relative;
  overflow: hidden;
}
.card__image::before {
  content: "";
  display: block;
  padding-top: calc((164/256)*100%);
}
.card__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none; /*resetで一律max-width: 100%にしているので解除*/
  object-fit: cover;
  transition: 0.5s;
}
/*カードボディ部*/
.card__body {
  padding: 30px 20px 20px 20px;
}
.card__title {
  font-size: 20px;
}
.card__text {
  margin-top: 10px;
}
.card__btn {
  position: relative;
  margin-top: 30px;
  padding: 10px;
  background: #37952F;
  color: #fff;
  text-align: center;
  font-weight: bold;
  transition: 0.3s;
}
.card__btn::after {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  transition: 0.3s;
}
/*----------------------------------------
	パネルコンテンツ
----------------------------------------*/
.panel {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}
.panel-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 40vh;
	position: relative;
}
.panel-bg .caption {
  font-size: 15vw;
  font-family: var(--fontFamily);
	font-weight: bolder;
	color: #fff;
	position: absolute;
	bottom: 15px;
	right: 15px;
	line-height: 1;
}
.panel-bg .caption--black {
	color: #000;
}
.panel-content {
  max-width: 1200px;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 901px), print {
  .panel {
    display: flex;
  }
  .panel--reverse {
    flex-direction: row-reverse;
  }
  .panel-bg {
    width: 50%;
    min-height: 0;
  }
.panel-bg .caption {
  font-size: min(8vw, 100px);
}
  .panel-content {
    width: 50%;
    padding: 100px 40px;
  }
}