/*
index.css
*/

/* reset
--------------------------------*/
h1, h2, h3, h4, h5, h6 p {
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1;
}

ul, ol, dl, li, dt, dd{
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
}

img {
	vertical-align: top;
	max-width: 100%;
}

figure {
	margin: 0;
}


/* common
--------------------------------*/
html {
	width: 100%;
	min-width: 1000px;
	box-sizing: border-box;
}

body {
	font-family: "メイリオ", "Meiryo", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 1rem;
	letter-spacing: 0.05px;
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	color: #fff;
}

.container {
	width: 100%;
	min-width: 1000px;
	max-width: 1000px;
	margin: auto;
}

header,
main,
section,
footer {
	width: 100%;
	margin: 0 auto;
}

.inner {
	width: 100%;
	box-sizing: border-box;
}

p {
	margin: 0;
	font-size: 1rem;
	line-height: 1;
}

a {
	-moz-transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
a {
	color: #012646;
}
a.linkStyle {
	color: #012646;
	border-bottom: solid 1px #012646;
}
a.linkStyle:hover {
	border: none;
}

.link_underline {
	color: #000;
	border-bottom: solid 1px;
}
.link_underline:hover {
	color: #75bb63;
	border-bottom: none;
}

.flex_container {
	display: flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
}

.justify_space_between {
	justify-content: space-between;
}
.justify_space_around {
	justify-content: space-around;
}

.justify_center {
	display: flex;
	justify-content: center;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.pc_only,
br.pc_only,
.display_block {
	display: block;
}

br.pc_only {
	line-height: 0; /* Firefoxで親要素のline-heightを継承してしまう対策 */
}

.sp_only,
br.sp_only {
	display: none;
}

.position_relative {
	position: relative;
}

.display_inlineblock {
	display: inline-block;
}

.hidden {
	display: none;
}

.font_mincho {
	font-family: Yu Mincho, "Hiragino Mincho ProN", serif;
}

.font_weight_bold {
	font-weight: bold;
}

.centering_container {
	text-align: center;
}
-
.text_align_left {
	text-align: left;
}
.text_align_right {
	text-align: right;
}
.text_align_justify {
	text-align: justify;
	-webkit-line-break: strict;
	line-break: strict; /* 禁則処理 */
}

.v_align_top {
	vertical-align: top;
}

.indent {
	padding-left: 1rem;
	text-indent: -1rem;
}

.capsule {
	border-radius: 10000px;
}

.margin-auto {
	margin: auto;
}

.white_bg {
	background-color: #fff;
}
.gray_bg {
	background-color: #e5e5e5;
}

.font_color_bk {
	color: #000000;
}
.font_color_green {
	color: #77be62;
}

sup {
	top: -0.4em;
	font-size: 90%;
}

*::selection {
	background: #858998;
	color: #fff;
}

.bg_style_white {
	background: #ffffff url(../img/pc_bg_title.png) no-repeat top center / 72% auto;
}
.bg_style_green {
	background: #e9f2e7 url(../img/pc_bg_title.png) no-repeat top center / 72% auto;
}

/* header
--------------------------------*/
header {
	position: relative;
}

header .inner {
	padding: 4% 0;
}

.header_logo img {
	max-width: 100%;
	margin: auto;
	vertical-align: middle;
}

.header_logo01 {
	width: 21.5%;
}

.head_btn_wrap {
	width: 26%;
	padding: 20px 0 18px;
	justify-content: space-between;
	align-items: center;
}

.btn_style {
	display: block;
	box-sizing: border-box;
}

.site_link_btn {
	width: 175px;
	padding: 12px 0;
	background-color: #ff2900;
	color: #fff;
	font-size: 1rem;
	text-align: center;
}
.site_link_btn:hover {
	opacity: .5;
}

.share_btn {
	width: 30px;
	height: 30px;
}
.share_btn img {
	max-width: 100%;
}

/* main
--------------------------------*/
.common_wrap {
	padding: 9.7% 0;
}

.header_style {
	margin: 0 auto 6%;
	font-size: 1.875rem;
	color: #000;
}

.link_btn_wrap {
	width: 790px;
	margin: auto;
	text-align: center;
}
.link_btn {
	width: 49.36%;
	padding: 3.2% 0;
	font-size: 1.125rem;
	border-radius: 5px;
	background-color: #000;
	color: #fff;
}
.link_btn:hover {
	color: #75bb63;
}


/* KV */
.kv {
	position: relative;
	background: #76be61 url(../img/pc_kv.jpg) no-repeat center center;
	background-size: cover;
}

.kv .inner {
	padding-left: 5%;
	padding-bottom: 5.5%;
}

.kv .txt_box {
	padding: 12% 0 10%;
	width: 51%;
	font-size: 1.375rem;
	line-height: 1.3;
}
.kv .txt_box .main_ttl {
	margin-top: 2.5%;
	font-size: 3.75rem;
	font-weight: bold;
}
.kv .txt_box .txt {
	line-height: 1.7;
	font-weight: normal;
}

.kv .img_box {
	width: 30%;
	margin: auto;
	justify-content: space-between;
}


/* movie_area */
.movie_area {
	background-color: #000;
}
.movie_area .header_style {
	margin-bottom: 2.5rem;
}

.movie_area .sentence {
	padding: 0 4%;
	margin-bottom: 7%;
	line-height: 1.87;
}

.movie_area video {
	position: relative;
	width: 68%;
}
.movie_area video:before {
	content:"";
	display: block;
	padding-top: 56.25%; /* 高さと幅の比を16:9に固定。9/16*100=56.25 */
}
.movie_area video source {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* journal_info */
.info_box {
	padding-left: 33.4%;
	color: #000;
}
.info_box dt,
.info_box dd {
	padding: 13px 0 10px;
	margin-bottom: 1%;
}
.info_box dt {
	width: 140px;
	background-color: #dddddd;
}
.info_box dd {
	padding-left: 35px;
}

/* aims_and_scopes */
.aims_and_scopes .txt {
	width: 55%;
}
.aims_and_scopes .txt p {
	margin-bottom: 1rem;
	color: #000;
	font-size: 1rem;
	line-height: 1.75;
}
.aims_and_scopes figure {
	width: 36.5%;
}

/* contents  */
.contents .cont_box {
	color: #000;
	font-size: 1rem;
	line-height: 1.875;
	text-align: left;
}
.contents .cont_box li {
	width: 29%;
	padding-top: 110px;
	padding-left: 2.5%;
	margin-bottom: 3%;
}

.contents .cont_box li.cont_01 {
	background: url(../img/icon01.png) no-repeat center 6px / 50px auto;
}
.contents .cont_box li.cont_02 {
	background: url(../img/icon02.png) no-repeat top center / 100px auto;
}
.contents .cont_box li.cont_03 {
	background: url(../img/icon03.png) no-repeat center 18px / 98px auto;
}
.contents .cont_box li.cont_04 {
	background: url(../img/icon04.png) no-repeat center 6px / 95px auto;
}
.contents .cont_box li.cont_05 {
	background: url(../img/icon05.png) no-repeat top center / 80px auto;
}
.contents .cont_box li.cont_06 {
	background: url(../img/icon06.png) no-repeat center 23px / 75px auto;
}

/* link_area_01 */
.link_area_01 li {
	width: 39%;
}

.link_area_01 .header_style {
	margin-bottom: 70px;
}

.link_area_01 .txt {
	margin-bottom: 1rem;
	color: #000;
}

.link_area_01 .link_btn {
	width: 100%;
	padding: 6.4% 0;
}


/* message_area */
.message_area {
	color: #000;
}

.message_area .inner {
	padding: 0 11%;
}

.message_area .header_style {
	margin-bottom: 105px;
}

.message_area .detail_box {
	padding: 90px 40px;
	margin-bottom: 120px;
}

.message_area .sub_title {
	width: 100%;
	padding: 16px 0;
	margin: 0 auto 64px;
	font-size: 1.25rem;
	border-top: solid 1px;
	border-bottom: solid 1px;
}

.message_area .infoWrap {
	text-align: right;
}

.message_area .name {
	margin: 1rem auto 55px;
	font-size: 1.25rem;
}
.message_area .name span {
	margin-left: .3rem;
	font-size: 0.875rem;
}

.message_area .job {
	font-size: 1rem;
	line-height: 2.18;
}

.message_area .sentence p {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 2.18;
}


/* link_area_02 */
.link_area_02 {
	padding: 10% 0;
	background: #e9f2e7 url(../img/pc_bg_title.png) no-repeat center center / 72% auto;
}


/* footer
--------------------------------*/
footer {
	width: 100%;
	height: auto;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
	background-color: #000;
}

footer img {
	display: block;
	margin: auto;
	max-width: 100%;
}

footer .inner {
	padding-top: 4.875%;
	padding-bottom: 1.56%;
}

footer .ft_logo {
	display: inline-block;
	width: 120px;
	margin: 0 auto 1.56%;
}

footer .address {
	margin-bottom: 2.5%;
	font-size: 1rem;
	line-height: 1.55;
}

footer small {
	font-size: 0.75rem;
}

footer .page_top a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 1.4% 0;
	background: #171717 url(../img/btn_top.png) no-repeat center center / 1.8% auto ;
}
footer .page_top a:hover{
	opacity: 0.5;
}



/*
=========================================================

                 responcive:smartphone

=========================================================
*/
@media screen and (max-width: 640px) {

/* common:sp
--------------------------------*/
	html {
		min-width: auto;
		font-size: 24px;
		font-size: calc(0% + 2.5vw);
	}

	body {
		min-width: auto;
		background-size: 100%;
		background-position: center;
	}

	header,
	main,
	section,
	footer {
		min-width: auto;
	}

	section .inner {
		padding: 0 3.125%;
		min-width: auto;
		max-width: none;
	}

	.container {
		min-width: auto;
		max-width: none;
	}

	.flex_container {
		display: block;
	}

	.flex_container.sp {
		display: flex;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
	}

	.pc_only,
	br.pc_only {
		display: none;
	}
	.sp_only,
	br.sp_only {
		display: block;
	}

	p {
		margin-bottom: 0;
		font-size: 1.875rem;
	}

	img {
		max-width: 100%;
	}

	.bg_style_white {
		background: #ffffff url(../img/sp_bg_title.png) no-repeat center 5.5% / 100% auto;
	}
	.bg_style_green {
		background: #e9f2e7 url(../img/sp_bg_title.png) no-repeat center 5.5% / 100% auto;
	}


/* header:sp
--------------------------------*/
	header {
		min-width: auto;
	}

	header .inner {
		padding: 2.5% 3.125% 3%;
	}

	.header_logo01 {
		width: 36%;
	}

	.head_btn_wrap {
		width: 55%;
		padding: 0;
	}

	.btn_style {
		padding: 4.5% 0;
		line-height: 1;
		font-size: 1.5rem;
	}

	.site_link_btn.btn_style {
		width: 60%;
		font-size: 1.25rem;
	}
	.share_btn {
		width: 15%;
		height: auto;
	}

/* main:sp
--------------------------------*/
	.common_wrap {
		padding: 26.6% 0;
	}

	.header_style {
		font-size: 2.5rem;
	}

	.link_btn_wrap {
		width: 100%;
	}

/* KV */
	.kv {
		background: #76be61  url(../img/sp_kv.jpg) no-repeat center center / cover;
	}

	.kv .inner {
		padding: 10% 3% 21%;
	}

	.kv .txt_box {
		padding: 0;
		margin-bottom: 6%;
		width: 100%;
		font-size: 1.8rem;
		line-height: 1.6;
	}

	.kv .txt_box .main_ttl {
		font-size: 4.375rem;
		margin-top: 3.5%;
		margin-bottom: 8.3%;
		line-height: 1;
	}
	.kv .img_box {
		width: 76.6%;
		margin-bottom: 8.3%;
	}

	.kv .btn_style {
		width: 100%;
		padding: 6.66%;
		font-size: 1.875rem;
	}
	.kv .btn_style:first-of-type {
		margin-bottom: 2.5%;
	}


/* movie_area */
	.movie_area .header_style {
		margin-bottom: 11.6%;
		line-height: 1.4;
	}

	.movie_area video {
		width: 100%;
	}

/* journal_info */
	.journal_info.bg_style_white {
		background: #ffffff url(../img/sp_bg_title.png) no-repeat center 20.3% / 100% auto;
	}

	.info_box {
		padding: 0 14%;
	}

	.info_box dt,
	.info_box dd {
		padding: 3.76% 0;
		margin-bottom: 3%;
		font-size: 1.6rem;
	}

	.info_box dt {
		width: 43%;
	}

	.info_box dd {
		padding-left: 7.5%;
	}

/* aims_and_scopes */
	aims_and_scopes.bg_style_green {
		background: #e9f2e7 url(../img/sp_bg_title.png) no-repeat center 5.5% / 100% auto;
	}

	.aims_and_scopes .txt {
		width: 100%;
	}
	.aims_and_scopes .txt p {
		font-size: 1.625rem;
		line-height: 1.54;
	}
	.aims_and_scopes .txt p.last {
		margin-bottom: 8.3%;
	}

	.aims_and_scopes figure {
		width: 88%;
		margin: auto;
	}

/* contents  */
	.contents.bg_style_white {
		background: #ffffff url(../img/sp_bg_title.png) no-repeat center 6% / 100% auto;
	}

	.contents .cont_box li {
		width: 100%;
		padding-top: 0;
		padding-left: 24.5%;
		box-sizing: border-box;
		margin-bottom: 7.5%;
		font-size: 1.625rem;
		line-height: 1.54;
	}

	.contents .cont_box li.cont_01 {
		background: url(../img/icon01.png) no-repeat 6.3% 5% / 10.8% auto;
	}
	.contents .cont_box li.cont_02 {
		background: url(../img/icon02.png) no-repeat 3.3% 5% / 17.5% auto;
	}
	.contents .cont_box li.cont_03 {
		background: url(../img/icon03.png) no-repeat 2.16% 5% / 19% auto;
	}
	.contents .cont_box li.cont_04 {
		background: url(../img/icon04.png) no-repeat 1.3% 5% / 21% auto;
	}
	.contents .cont_box li.cont_05 {
		background: url(../img/icon05.png) no-repeat 5% 5% / 13.3% auto;
	}
	.contents .cont_box li.cont_06 {
		background: url(../img/icon06.png) no-repeat 5% 5% / 14.3% auto;
	}

/* link_area_01 */
	.link_area_01  {
		background: #e9f2e7;
	}

	.link_area_01 li {
		width: 100%;
	}
	.link_area_01 li:first-of-type {
		margin-bottom: 16.6%;
	}

	.link_area_01 .header_style {
		margin-bottom: 9.1%;
	}

	.link_area_01 .txt {
		font-size: 1.625rem;
	}

	.link_area_01 .btn_style {
		font-size: 1.875rem;
	}

/* message_area */
	.message_area.bg_style_white {
		background: #ffffff url(../img/sp_bg_title.png) no-repeat center 3% / 100% auto;
	}

	.message_area .inner {
		padding: 0 3.125%;
	}
	.message_area .header_style {
		margin-bottom: 15.8%;
	}

	.message_area .sub_title {
		line-height: 1.4;
		font-size: 2rem;
	}

	.message_area .job {
		font-size: 1.625rem;
		line-height: 1.54;
	}
	.message_area .name {
		margin: 1rem auto 9.16%;
		font-size: 1.875rem;
	}
	.message_area .sentence p {
		margin-bottom: 1.5rem;
		font-size: 1.625rem;
		line-height: 1.54;
	}


/* link_area_02 */
	.link_area_02 {
		background: #e9f2e7 url(../img/sp_bg_title.png) no-repeat center center / 100% auto;
	}

	.link_area_02 .inner {
		padding: 0 3.125%;
	}

	.link_area_02 .link_btn {
		width: 100%;
		padding: 6.4% 0;
		margin-bottom: 3.33%;
		font-size: 1.875rem;
	}

/* footer:sp
--------------------------------*/
	footer .inner {
		padding-top: 15.6%;
		padding-bottom: 24.2%;
	}

	footer .ft_logo {
		width: 28%;
		margin: 0 auto 7.8%;
	}

	footer .address {
		margin-bottom: 8.3%;
		font-size: 1.125rem;
	}

	footer small {
		font-size: 0.75rem;
	}

	footer .page_top a {
		padding: 5.4% 0;
		background-size: 6% auto;
	}

}



@media screen and (min-width:415px) and (max-width:640px){

}