/*============================
共通
============================*/
.element {
	padding: 0.25rem 0;
	margin-bottom: 0.50rem;
}
@media screen and (max-width: 599px) {
	.element {
		margin-bottom: 0.2rem;
	}
}

/*背景あり*/
.element.bg {
	background: #F6F6F6;
}

/*ボーダートップ有り*/
.element.border_t .in {
	border-top: 1px solid #000;
	padding-top: 0.50rem;
	padding-bottom: 0.50rem;
}

/*タイトル*/
.element .element_title{
	font-size: 0.30rem;
	margin-bottom: 0.20rem;
}
@media screen and (max-width: 599px) {
	.element .element_title{
		font-size: 0.22rem;
		margin-bottom: 0.20rem;
	}
}

/*リンク*/
.element a {
	color: #013e89;
}

.element a:hover {
	opacity: 0.7;
}

/*ボタン*/
.element_btn_box {
	margin-bottom: 0.50rem;
}
@media screen and (max-width: 599px) {
	.element_btn_box {
		margin-bottom: 0.30rem;
	}
}

.element_btn_box a {
	display: block;
	max-width: 3.00rem;
	width: 100%;
	margin: 0 auto;
	color: #013E89;
	text-decoration: none;
	border: 1px solid #013E89;
	text-align: center;
	padding: 0.15rem;
	border-radius: 0.30rem;
	font-size: 0.18rem;
	position: relative;
}
@media screen and (max-width: 599px) {
	.element_btn_box a {
		max-width: 2.50rem;
		font-size: 0.16rem;
	}
}

.element_btn_box a::before {
	content: '';
	display: inline-block;
	width: 0.15rem;
	height: 0.15rem;
	background: url(../img/icon_togle_down_blue.svg);
	background-repeat: no-repeat;
	background-size: contain;
	transform:rotate(-90deg);
	position: absolute;
	right: 0.1rem;
	transition: .3s all;
}

.element_btn_box a:hover {
	color: #fff;
	background: #013e89;
	opacity: 1;
}

.element_btn_box a:hover::before {
	background-image: url(../img/icon_togle_down_wh.svg);
	right: 0.08rem;
}

.element .list .item::before {
	content: none;
}

/*============================
基本セット
============================*/
.element_normal .text{
	font-size: 0.16rem;
	line-height: 1.75;
	margin-bottom: 0.16rem;
}
@media screen and (max-width: 599px) {
	.element_normal .text{
		font-size: 0.15rem;
		line-height: 1.65;
	}
}


.element_normal .text_box  {
	margin-bottom: 0.50rem;
}
@media screen and (max-width: 599px) {
	.element_normal .text_box  {
		margin-bottom: 0.30rem;
	}
}

.element_normal .btn_box  {
	margin-bottom: 0.50rem;
}
@media screen and (max-width: 599px) {
	.element_normal .btn_box  {
		margin-bottom: 0.30rem;
	}
}

.element_normal .element_btn_box .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.element_normal .element_btn_box .list .item {
	width: 33.333%;
	line-height: 1;
}
@media screen and (max-width: 599px) {
	.element_normal .element_btn_box .list .item {
		width: 100%;
		margin-bottom: 0.15rem;
	}
}


.element_normal .ph_wrap {
	margin-bottom: 0.50rem;
	max-width: 12.00rem;
	width: 100%;
	height: 5.50rem;
}
@media screen and (max-width: 599px) {
	.element_normal .ph_wrap {
		height: auto;
	}
}

.element_normal .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 599px) {
}

/*============================
画像左右振りセット
============================*/
.element_lr .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.50rem;
}

.element_lr .box .ph_wrap {
	max-width: 7.00rem;
	width: 100%;_
	box-sizing: border-box;
}

.element_lr .box .ph_wrap img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 599px) {
	.element_lr .box .ph_wrap {
		margin-bottom: 0.10rem;
	}
}

.element_lr .box .text_wrap {
	width: calc(100% - 7.00rem);
	box-sizing: border-box;
}
@media screen and (max-width: 599px) {
	.element_lr .box .text_wrap {
		width: 100%;
	}
}

/*テキスト右*/
.element_lr .box_l .text_wrap {
	padding-left: 0.50rem;
}
@media screen and (max-width: 599px) {
	.element_lr .box_l .text_wrap {
		padding-left: 0;
	}
}

/*テキスト左*/
.element_lr .box.box_r {
	flex-flow: row-reverse;
}
@media screen and (max-width: 599px) {
	.element_lr .box.box_r {
		flex-flow: column;
	}
}

.element_lr .box_r .text_wrap {
	padding-right: 0.50rem;
}
@media screen and (max-width: 599px) {
	.element_lr .box_r .text_wrap {
		padding-right: 0;
	}
}


.element_lr .text_wrap .title {
	font-size: 0.22rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.20rem;
}
@media screen and (max-width: 599px) {
	.element_lr .text_wrap .title {
		font-size: 0.16rem;
		margin-bottom: 0.10rem;
	}
}


.element_lr .text_wrap .text {
	font-size: 0.16rem;
	line-height: 1.75;
	margin-bottom: 0.20rem;
}
@media screen and (max-width: 599px) {
	.element_lr .text_wrap .text {
		font-size: 0.14rem;
		line-height: 1.65;
		margin-bottom: 0.20rem;
	}
}



.element_lr .text_wrap .element_btn_box a {
	margin: 0 auto 0 0;
}
@media screen and (max-width: 599px) {
	.element_lr .text_wrap .element_btn_box a {
		margin: 0 auto;
	}
}

/*============================
iframe
============================*/
.element .iframe_box {
    height: 8.00rem;
}
.element .iframe_box iframe {
    height: 100%;
}
@media screen and (max-width: 599px) {
    .element .iframe_box {
        height: 90vh;
        border: 1px solid #ccc;
    }
}

/*============================
２つ並びセット
============================*/
.element.element_2col .element_title {
/*	text-align: center;*/
}
@media screen and (max-width: 599px) {
	.element .element_2col .element_title {
		text-align: left;
	}
}

.element_2col .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.element_2col .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.element_2col .list .item {
	width: 33.333%;
	box-sizing: border-box;
	padding: 0 2%;
	line-height: 1;
}

@media screen and (max-width: 599px) {
	.element_2col .list .item {
		width: 100%;
		padding: 0;
		margin-bottom: 0.20rem;
	}
}


.element_2col .list .item .ph_wrap {
	width: 100%;
	height: 2.00rem;
}

.element_2col .list .item .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.element_2col .list .item .title {
	font-size: 0.18rem;
	line-height: 1.5;
	padding: 0.10rem 0;
}

.element_2col .list .item .text {
	font-size: 0.16rem;
	line-height: 1.75;
	margin-bottom: 0.20rem;
}



/*============================
３つ並びセット
============================*/
.element_3col .list {
	display: flex;
	flex-wrap: wrap;
}

.element_3col .list .item {
	width: 33.333%;
	padding: 0 0.15rem;
	box-sizing: border-box;
	line-height: 1;
}

@media screen and (max-width: 599px) {
	.element_3col .list .item {
		width: 100%;
		padding: 0;
		margin-bottom: 0.20rem;
	}
}

.element_3col .list .item .ph_wrap {
	max-width: 3.50rem;
	width: 100%;
	height: 2.00rem;
}
@media screen and (max-width: 599px) {
	.element_3col .list .item .ph_wrap {
		width: 100%;
		height: auto;
	}
}


.element_3col .list .item .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 599px) {
	.element_3col .list .item .ph_wrap img {
		height: auto;
	}
}


.element_3col .list .item .title {
	font-size: 0.18rem;
	line-height: 1.5;
	padding: 0.10rem 0;
}
@media screen and (max-width: 599px) {
	.element_3col .list .item .title {
		font-size: 0.16rem;
	}
}


.element_3col .list .item .text {
	font-size: 0.16rem;
	line-height: 1.75;
	margin-bottom: 0.20rem;
}
@media screen and (max-width: 599px) {
	.element_3col .list .item .text {
		font-size: 0.14rem;
		line-height: 1.65;
	}
}


/*============================
強調リンクセット
============================*/
.element_strong .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
	background: #fff;
	padding: 0.30rem;
}
@media screen and (max-width: 599px) {
	.element_strong .box {
		padding: 0.15rem;
	}
}

.element_strong .box .ph_wrap {
	width: 30%;
	height: 3rem;
	box-sizing: border-box;
}
@media screen and (max-width: 599px) {
	.element_strong .box .ph_wrap {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		margin-bottom: 0.10rem;
	}
}

.element_strong .box .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.element_strong .box .text_wrap {
	width: 70%;
	box-sizing: border-box;
	padding-left: 0.30rem;
}
@media screen and (max-width: 599px) {
	.element_strong .box .text_wrap {
		width: 100%;
		padding-left: 0;
	}
}

/*画像無し*/
.element_strong.noimage .box .text_wrap {
	width: 100%;
	box-sizing: border-box;
	padding-left: 0.30rem;
	text-align: center;
}
@media screen and (max-width: 599px) {
	.element_strong.noimage .box .text_wrap {
		width: 100%;
		padding-left: 0;
		text-align: left;
	}
}

.element_strong.noimage .box .text_wrap .element_btn_box a {
	margin: auto;
}
@media screen and (max-width: 599px) {
	.element_strong.noimage .box .text_wrap .element_btn_box a {
	}
}



.element_strong .box .text_wrap .title {
	color: #013e89;
	font-size: 0.25rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.20rem;
}
@media screen and (max-width: 599px) {
	.element_strong .box .text_wrap .title {
		font-size: 0.18rem;
		margin-bottom: 0.10rem;
	}
}


.element_strong .box .text_wrap .sub_title {
	font-size: 0.20rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.20rem;
}
@media screen and (max-width: 599px) {
	.element_strong .box .text_wrap .sub_title {
		font-size: 0.16rem;
		margin-bottom: 0.10rem;
	}
}



.element_strong .box .text_wrap .text {
	font-size: 0.16rem;
	line-height: 1.75;
	margin-bottom: 0.20rem;
}
@media screen and (max-width: 599px) {
	.element_strong .box .text_wrap .text {
		font-size: 0.14rem;
	}
}

.element_strong .box .text_wrap .element_btn_box  {
	margin-bottom: 0;
}

.element_strong .box .text_wrap .element_btn_box a {
	margin: 0 auto 0 0;
}

/*============================
Youtubeセット
============================*/
.element_yt .text {
	font-size: 0.16rem;
	line-height: 1.65;
	margin-bottom: 0.30rem;
}

.element_yt .movie {
	text-align: center;
}

.element_yt .movie iframe{
	width: calc(5.60rem * 1.5)!important;
	height: calc(3.15rem * 1.5)!important;
}
@media screen and (max-width: 599px) {
	.element_yt .movie iframe{
		width: 100%!important;
		height: auto!important;
	}
}

/*============================
フリーエリア
============================*/
.element_free p {
	font-size: 0.16rem;
	line-height: 1.65;
	margin-bottom: 0.30rem;
}
@media screen and (max-width: 599px) {
	.element_free p {
		font-size: 0.14rem;
	}
}

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







/*============================
パスワード保護ページ
============================*/
/* 投稿ページ */
#single_cont form.post-password-form {
	width: 100%;
    max-width: 12.8rem;
    margin: auto;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    position: relative;
    box-sizing: border-box;
	top: -0.4rem;
}
@media screen and (max-width: 599px) {
	#single_cont form.post-password-form {
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}
}

#single_cont form.post-password-form p {
	font-size: 0.16rem;
	margin-bottom: 0.20rem;
	line-height: 1.65;
}

#single_cont form.post-password-form label {
	font-size: 0.14rem;
}

/* 固定ページ */
#elementlist form.post-password-form {
	width: 100%;
    max-width: 12.8rem;
    margin: auto;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    position: relative;
    box-sizing: border-box;
	top: -0.4rem;
}
@media screen and (max-width: 599px) {
	#elementlist form.post-password-form {
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}
}

#elementlist form.post-password-form p {
	font-size: 0.16rem;
	margin-bottom: 0.20rem;
	line-height: 1.65;
}

#elementlist form.post-password-form label {
	font-size: 0.14rem;
}