@charset "utf-8";

/* レイアウトのためのCSS */
html, body {
	/* footerを最下部に固定するための設定 */
	height: 100%;
}

body {
	/* footerを最下部に固定するための設定 */
	display: flex;
	flex-direction: column;
	/* footerを最下部に固定するための設定 */
	font-family: Arial,Verdana,"Lucida Grande","メイリオ",Meiryo,"ＭＳ Ｐゴシック","ヒラギノ角ゴ Pro W3",sans-serif;
  font-size:1rem;
	line-height:1;
}

*{box-sizing: border-box;}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: rgb(0, 0, 0);
	text-decoration: none;
	outline: none;
}

img{
  max-width: 100%;
  height: auto;
}

h1{
	font-size:2rem;
	/* text-align: center; */
	text-transform: uppercase;
	/* padding: 20px; */
}

h2{
	font-size:1.2rem;
	/* text-align: center; */
	/* margin: 0 0 30px 0; */
}


/* font-family */

h1,
h2,
#service .service-area section h3,
#g-nav,
#footer-link,
.scrolldown1 span,
#vidual-area dt,
.footer-logo{
	/* font-family: Arial,Verdana,"Lucida Grande","メイリオ",Meiryo,"ＭＳ Ｐゴシック","ヒラギノ角ゴ Pro W3",sans-serif; */
	font-family: "メイリオ",Meiryo,"ＭＳ Ｐゴシック","ヒラギノ角ゴ Pro W3",sans-serif;
  /* letter-spacing: 0.01em; */
}


.__mt40 {
	margin-top: 40px;
}

.__mt30 {
	margin-top: 30px;
}

.__mt20 {
	margin-top: 20px;
}
.__mt15 {
	margin-top: 15px;
}
.__mt1em {
	margin-top: 1em;
}
.__mr05 {
	margin-right: 0.5em;
}

.__pl20 {
	padding-left: 20px;
}
.__pl1em {
	padding-left: 1em;
}
.__ml1em {
	margin-left: 1em;
}
.__lh12 {
	line-height: 1.2;
}
.__lh13 {
	line-height: 1.3;
}
.__lh15 {
	line-height: 1.5;
}
.__lh17 {
	line-height: 1.7;
}
.__ta-c {
	text-align: center;
}
.__ta-l {
	text-align: left;
}
.__ta-r {
	text-align: right;
}
.__ta-j {
	text-align: justify;
}
.__ti-1em {
	text-indent: 1em;
}
.__ti-2em {
	text-indent: 2em;
}
.__ti-3em {
	text-indent: 3em;
}

/*----------------------------------------
	footer
----------------------------------------*/
.footer {
	margin-top: auto;
}
.footer-contents {
	padding: 0 20px;
	background-color: #333;
	color: #fff;
}
.footer-inner {
	width: 100%;/*横幅指定*/
	max-width: 1080px;
	margin: 0 auto;
}
.footer__menu > li {
	border-bottom: 1px solid #707070;
}
.footer__menu a {
	display: block;
	padding: 1em 20px;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}
.footer__copyright {
	padding: 14px 0;
	font-size: 14px;
	text-align: center;
}
@media screen and (min-width: 768px),print {
	.footer-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 20px 0;
	}
	.footer__menu {
		border-right: 1px solid #707070;
		border-bottom: 0;
	}
	.footer__menu > li {
		display: inline-block;
		border-left: 1px solid #707070;
		border-bottom: 0;
	}
	.footer__menu a {
		padding: 0 1em;
	}
	.footer__menu a:hover {
		text-decoration: underline;
	}
	.footer__copyright {
		padding: 6px 0;
	}
}
/*----------------------------------------
	container
----------------------------------------*/
.main-container {
  max-width: 1080px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}


/*----------------------------------------
	section
----------------------------------------*/
.section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section + .section {
  padding-top: 0;
}
.section__title {
  margin-bottom: 20px;
}
.section__button {
  margin-top: 40px;
}
.section__center {
	text-align: center;
}
@media screen and (min-width: 768px),print {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section__title {
    margin-bottom: 40px;
  }
  .section__button {
    margin-top: 60px;
  }
}

/*----------------------------------------
	ボタン
----------------------------------------*/

/*----------------------------------------
	ボタン
----------------------------------------*/

/*ボタンベース
-----------------------------------*/
.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;
}

/*ボタンサイズ
-----------------------------------*/
/*大サイズ*/
.button--lg {
  max-width: 400px;
  padding: 20px;
  font-size: 18px;
}

/*ボタン種類
-----------------------------------*/
/*標準*/
/*枠線*/
.button--outline {
  border: 2px solid rgb(34, 133, 43);
	/* border-radius: 50px; */
  background: #fff;
  color: #333;
}
.button--outline:hover,
.button--outlien:focus {
  background: rgb(34, 133, 43);
  color: #fff;
}

/*透過*/
.button--ghost {
	border: 2px solid #fff;
	color: #fff;
}
.button--ghost:hover,
.button--ghost:focus {
	background: rgba(255,255,255,0.3);
	color: #fff;
}

/*ボタンレイアウト
-----------------------------------*/
.button-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.button-center .button:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px),print {
  .button-center {
    flex-direction: row;
    justify-content: center;
  }
  .button-center .button:not(:first-child) {
    margin-top: 0;
    margin-left: 20px;
  }
}

/*----------------------------------------
	ページタイトル
----------------------------------------*/

/*ページタイトル(大・中・小共通)
--------------------------------------*/
.page-title-area {
  width: 100%;
  max-width: 1080px;
  /* margin: 0 auto;
  padding: 70px 15px; */
  margin: auto auto;
  padding: 0 15px;
  z-index: 2;
  color: #fff;
}
.page-title {
	line-height: 1.5;
  text-align: center;
}
.page-title__main-no {
  text-align: left;
	display: block;
	font-size: 16px;
  font-weight: normal;
	/* letter-spacing: 0.001em; */
}
.page-title__main {
  text-align: left;
	display: block;
	font-size: 20px;
	letter-spacing: 0.01em;
	line-height: 1.2;
  text-shadow: 2px 2px 4px #808080;
  text-indent: 0.5em;
}
.page-title__main-live {
	text-align: center;
	font-size: 32px;
}
.page-title__sub-theme,
.page-title__sub-title,
.page-title__sub-title-2 {
	display: block;
	color: rgb(60 227 76);
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	letter-spacing: 0.05em;
	/* text-transform: uppercase; */
  /* -webkit-text-stroke: 0.5px #FFF;
  text-stroke: 0.5px #FFF; */
  text-align: left;
  text-shadow: 2px 2px 4px #ffffff;
}
.page-title__sub-theme {
  margin-top: 1rem;
  text-indent: 1rem;
}
.page-title__sub-title {
  text-indent: 2rem;
}
.page-title__sub-title-2 {
  text-indent: 6rem;
}
@media screen and (min-width: 768px),print {
	.page-title__sub {
		font-size: 30px;
	}
  .page-title__main-no {
    font-size: 34px;
  }
	.page-title__main {
		/* font-size: 65px; */
		font-size: 62px;
	}
  .page-title__sub-theme,
  .page-title__sub-title,
  .page-title__sub-title-2 {
    font-size: 40px;
  }
	.page-title__sub-theme {
	  text-indent: 3rem;
	}
	.page-title__sub-title {
	  text-indent: 4rem;
	}
  .page-title__sub-title-2 {
    text-indent: 14rem;
  }
}
/*ページヘッダー領域
--------------------------------------*/
/*大*/
.page-header-lg {
	/* display: flex;
	justify-content: center;
	align-items: center; */

	/* padding: 0 20px; */
	background: linear-gradient(#0034ff, #39a5ff);
	background-position: center center;
	background-size: cover;
	text-align: center;
}
.page-header-lg__service {
	/* background-image: url(../img/bg_header_top.jpg); */
}
.page-header-lg__inner {
  /* background-image: url(../img/mv_pc-m.jpg); */
  /* background:url(../img/mv_pc-m.jpg) no-repeat center center / cover; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: calc(200 / 375 * 100vw);
	/* height: calc(240 / 375 * 100vw); */
	margin: 0 auto;
	/* padding-top: 1%; */
  position: relative;
}
.page-header-lg_mv {
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
/* @media screen and (min-width: 768px),print { */
@media screen and (min-width: 1172px),print {
	.page-header-lg {
		text-align: left;
	}
	.page-header-lg__inner {
		flex-direction: row;
		justify-content: space-between;
		/* max-width: 1080px; */
		max-width: 1200px;
		height: 500px;
		/* height: 650px; */
		/* padding: 20px 15px; */
		align-items: start;
		/* padding-top: 130px; */
	}
	/* .page-title__main {
		text-align: left;
	} */
	.page-title__main-live {
		font-size: 38px;
	}
	.page-header-lg__inner p {
		font-size: 1.5em;
	}
	.page-header-lg__inner .page-title__member {
		padding-left: 3em;
	}
	.page-header_sponsor {
		margin-top: 0;
		font-size: 14px;
	}
}

/*中*/
.page-header-md {
	padding: 60px 20px;
	background: rgb(213, 241, 197);
	text-align: center;
}
.page-header-md__lead {
	margin-top: 30px;
}
@media screen and (min-width: 768px),print {
	.page-header-md {
		padding: 80px 0;
	}
	.page-header-md__lead {
		margin-top: 40px;
	}
}
/*小*/
.page-header-sm {
	padding: 60px 20px;
	background: rgb(203, 229, 250);
	text-align: left;
}
.page-header-sm__inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
}

/*----------------------------------------
	page-intro
----------------------------------------*/
.page-intro {
	padding: 50px 0;
	line-height: 1.8;
}
.page-intro__catch {
	margin: -4px 0;
	font-size: 22px;
}
.page-intro__txt {
	margin-top: 40px;
}
@media screen and (min-width: 768px),print {
	.page-intro {
		padding: 80px 0;
	}
	.page-intro__catch {
		margin: -14px 0;
		text-align: center;
		font-size: 36px;
	}
}

/*----------------------------------------
	cv-area
----------------------------------------*/
.cv-area {
	padding: 50px 0;
	background: rgb(76, 157, 84);
	color: #fff;
	text-align: center;
	font-size: 14px;
	line-height: 1.8;
}
.cv-area__txt {
	margin-top: 40px;
}
.cv-area__btn {
	max-width: 400px;
	margin: 40px auto 0;
}
.cv-area__btn i {
	margin-right: 8px;
}
.cv-area__tanto {
	margin-top: 40px;
}
.cv-area__tel {
	margin-top: 0;
	font-family: 'Oswald', sans-serif;
}
.cv-area__tel a {
	color: #fff;
	font-size: 25px;
	text-decoration: none;
	font-weight: bold;
}
.cv-area__tel span {
	font-size: 24px;
}
@media screen and (min-width: 768px),print {
	.cv-area {
		padding: 60px 0;
		font-size: 16px;
	}
	.cv-area__tel a {
		line-height: 1;
		font-size: 30px;
	}
	.cv-area__tel span {
		font-size: 20px;
	}
}

/*----------------------------------------
	breadcrumb
----------------------------------------*/
.breadcrumb {
	display: none;
}
@media screen and (min-width: 768px) {
	.breadcrumb {
		display: block;
		padding: 15px 0;
		border-bottom: 1px solid #eee;
		text-align: left;
	}
	.breadcrumb_inner {
		max-width: 1080px;
		margin: auto;
		padding-left: 20px;
		padding-right: 20px;
	}
	.breadcrumb__list {
		list-style: none;
	}
	.breadcrumb__list a,
	.breadcrumb_inner a {
		color: rgb(0,104,183);
		font-size: 12px;
	}
	.breadcrumb__list li,
	.breadcrumb_inner span  {
		display: inline-block;
		font-size: 12px;
	}
	.breadcrumb__list li:not(:last-child)::after {
		content: ">";
		margin: 0 13px 0 20px;
	}
}

/*----------------------------------------
	見出し
----------------------------------------*/

/*大見出し
-----------------------------------*/
/*日本語メイン*/
.heading-lv2-ja {
	text-align: center;
	font-weight: bold;
	line-height: 1.2;
}
.heading-lv2-ja._after::after {
	content: "";
	display: block;
	width: 100px;
	margin: 20px auto 0;
	border-top: 1px solid rgb(34, 133, 43);
}
.heading-lv2-ja__main {
	display: block;
	margin-bottom: 0.5em;
	font-size: 26px;
}
@media screen and (min-width: 768px),print {
	.heading-lv2-ja__main {
		font-size: 32px;
	}
	.heading-lv2-ja__sub {
		font-size: 18px;
	}
}

/*中見出し
-----------------------------------*/
.heading-lv3 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
  text-align: center;
}
.heading-lv3::after {
	content: "";
	display: block;
	width: 50px;
	margin-top: 20px;
	border-top: 1px solid rgb(34, 133, 43);
}
.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: 768px),print {
	.heading-lv3 {
		font-size: 28px;
	}
}


/*----------------------------------------
	グリッド
----------------------------------------*/
.grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -40px;
}
.grid__item {
	margin-top: 40px;
}
/*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% - 20px) / 2);
	}
}
@media screen and (min-width: 768px),print {
	.grid--pc3col .grid__item {
		width: calc((100% - 40px) / 3);
	}
	.grid--pc3col::after {
		content: "";
		display: block;
		width: calc((100% - 40px) / 3);
	}
}

/*----------------------------------------
	card
----------------------------------------*/
.card {
	display: flex;
	flex-direction: column-reverse;
	border: 1px solid transparent;
	box-shadow: 3px 3px 6px rgba(0,0,0,0.07);
	color: inherit;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.3s;
}
a.card:hover,
a.card:focus {
	border: 1px solid #adcde6;
	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;
	object-fit: cover;
	transition: 0.5s;
}
/*カードボディ部*/
.card__body {
	padding: 30px 20px 20px 20px;
}
.card__title {
	text-align: center;
	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: .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;
}
