@charset "utf-8";

/* -------------------------------------------------
	.h1-wrap
------------------------------------------------- */

.h1-wrap {
	position: relative;
}
.h1-wrap h1 {
	padding: 1em 0;
	text-align: center;
	font-family: 'M PLUS 2';
	font-weight: 600;
	font-size: 30px;
	color: #292828;
}
.h1-wrap h1 span{
padding: 0 .4em;
}

.h1-wrap p {
	width: 96%;
	height: 100%;
	max-width: 1290px;
	position: absolute;
	left: 2%;
	top: 0;
}
.h1-wrap p a {
	height: 20px;
	padding: 4px 0 0 33px;
	display: flex;
	align-items: center;
	background: url(../img/ico_folder.svg) no-repeat 0 0 / auto 20px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	font-size: 16px;
}

@media print, screen and (min-width:768px) {
	.h1-wrap p a:hover {
		text-decoration: underline;
	}
}

@media screen and (max-width:767px) {
	.h1-wrap h1 {
		font-size: 20px;
		text-align: left;
	}
	.h1-wrap p {
		width: 100%;
		max-width: none;
		position: absolute;
		left: 0;
	}
	.h1-wrap p a {
		padding: 4px 0 0 29px;
	}
}

/* -------------------------------------------------
	h
------------------------------------------------- */

.h-topBorder {
	padding: 90px 0 0;
	font-size: 26px;
	font-family: 'M PLUS 2';
	font-weight: 600;
	text-align: center;
	color: #656DCC;
	position: relative;
}
.h-topBorder::before {
	width: 332px;
	height: 3px;
	display: block;
	content: "";
	background: #656DCC;
	position: absolute;
	top: 70px;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width:767px) {
	.h-topBorder {
		padding-top: 70px;
		font-size: 24px;
	}
	.h-topBorder::before {
		width: 100%;
		top: 47px;
		left: 0;
		transform: translateX(0%);
	}
}

/* -------------------------------------------------
	lead
------------------------------------------------- */

.lead-type1,
.lead-type3 {
	margin-top: 1.8em;
	text-align: center;
	line-height: 1.5;
	font-size: 16px;
}
.lead-type2 {
	margin-top: 1em;
	text-align: center;
	font-size: 18px;
}

@media screen and (max-width:767px) {
	.lead-type1 {
		font-size: 15px;
		line-height: 1.66;
	}
	.lead-type2 {
		font-size: 16px;
	}
	.lead-type3 {
		font-size: 15px;
		line-height: 1.66;
		text-align: left;
	}
}

/* -------------------------------------------------
	.first-view
------------------------------------------------- */

.first-view {
	position: relative;
	background: #d1ecf7;
}
.first-view .pic {
	padding-bottom: 40px;
	position: relative;
}
.first-view .pic::before {
	width: 100%;
	height: 50%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	z-index: 2;
	content: "";
}
.first-view .pic img {
	position: relative;
	z-index: 4;
	box-shadow: 3px 5px 15px -3px #737373;
}

@media screen and (max-width:767px) {
	.first-view .pic {
		padding-bottom: 30px;
	}
	.first-view .pic::before {
		height: calc(83 / 243 * 100%);
	}
}

/* -------------------------------------------------
	.article-style1
------------------------------------------------- */

.article-style1 + .article-style1 {
	margin-top: 37px;
}
.article-style1 .pic a {
	display: block;
	transition: opacity 0.2s ease-out;
}
.article-style1 .texts .title {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
}
.article-style1 .texts .desc {
	margin-top: 1em;
	font-size: 16px;
	line-height: 1.62;
}

@media print, screen and (min-width:768px) {
	.article-style1 {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.article-style1 .pic {
		width: calc(336 / 864 * 100%);
	}
	.article-style1 .pic a:hover {
		opacity: 0.7;
	}
	.article-style1 .texts {
		width: calc(494 / 864 * 100%);
	}
}

@media screen and (max-width:767px) {
	.article-style1 + .article-style1 {
		margin-top: 53px;
	}
	.article-style1 .pic img {
		width: 100%;
	}
	.article-style1 .texts .title {
		margin-top: 1em;
		font-size: 18px;
	}
}

/* -------------------------------------------------
	btn
------------------------------------------------- */

.btn-type1 {
	width: 185px;
	margin-top: 25px;
	padding-bottom: 1em;
	border-bottom: solid 1px #707070;
	display: inline-block;
	font-size: 16px;
	color: #0D157B;
	position: relative;
}
.btn-type3 {
	width: 280px;
	margin-top: 25px;
	padding-bottom: 1em;
	padding-right:2em;
	border-bottom: solid 1px #707070;
	display: inline-block;
	font-size: 16px;
	color: #0D157B;
	position: relative;
}
.btn-type1::before,
.btn-type3::before {
	width: 28px;
	height: 8px;
	border-right: solid 3px #0045A2;
	border-bottom: solid 2px #0045A2;
	box-sizing: border-box;
	position: absolute;
	top: 10%;
	right: 5px;
	z-index: 6;
	display: inline-block;
	transform: skewX(56deg);
	content: "";
	transition: right 0.2s ease-out;
}

.btn-type2 {
	width: 336px;
	height: 50px;
	margin: 20px auto 0;
	border-radius: 25px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #4bb761;
	transition: background 0.2s ease-out;
}

@media print, screen and (min-width:768px) {
	.btn-type1:hover::before,
	.btn-type3:hover::before {
		right: -5px;
	}
	.btn-type2:hover {
		background: #4b94b7;
	}
}

@media screen and (max-width:767px) {
	.btn-type1-wrap {
		text-align: right;
	}
	.btn-type1 {
		width: 185px;
		margin-top: 10px;
		padding-left: 0.7em;
		text-align: left;
	}
	
	.btn-type2 {
		width: 286px;
	}
}

/* -------------------------------------------------
	#newsletter
------------------------------------------------- */

#newsletter .articles {
	margin-top: 50px;
}

@media screen and (max-width:767px) {
	#newsletter .articles {
		margin-top: 25px;
	}
}

/* -------------------------------------------------
	#pickup
------------------------------------------------- */

#pickup .articles {
	margin-top: 50px;
}

@media screen and (max-width:767px) {
	#pickup .articles {
		margin-top: 25px;
	}
}

/* -------------------------------------------------
	#event
------------------------------------------------- */

#event {
	margin-top: 85px;
	padding-bottom: 60px;
	background: #EFFAFF;
}
#event .event .pic {
	margin-top: 30px;
}
#event .colona {
margin-top: 1.4em;
font-size: 13px;
text-align: center;
}

#event .event .desc {
	font-size: 16px;
	line-height: 1.62;
}
#event .report {
	margin-top: 60px;
}
#event .event .report p {
	font-size: 18px;
	line-height: 1.5;
}

@media print, screen and (min-width:768px) {
	#event .event {
		margin-top: 35px;
		display: flex;
		justify-content: space-between;
	}
	#event .event .report {
		width: calc(488 / 864 * 100%);
	}
	#event .event .report .btn-type1-wrap {
		text-align: right;
	}
	#event .event .report .btn-type1-wrap .btn-type1 {
		text-align: left;
	}
	#event .event .pic {
		width: calc(336 / 864 * 100%);
	}
}

@media screen and (max-width:767px) {
	#event {
		margin-top: 65px;
		padding-bottom: 55px;
	}
	#event .event .pic {
		margin-top: 20px;
	}
	#event .event .title {
		margin: 0.8em 0;
		font-size: 18px;
		text-align: left;
	}
	#event .report {
		margin-top: 35px;
	}
	#event .report p {
		font-size: 16px;
		line-height: 1.62;
	}
}
@media screen and (max-width:767px) {
	#event {
		margin-top: 65px;
		padding-bottom: 55px;
	}
	
	#event .colona {
		line-height: 1.5;
		text-align: left;
		text-indent: -1em;
		margin-left: 1em;
	}
	
	#event .event .pic {
		margin-top: 20px;
	}
	#event .event .title {
		margin: 0.8em 0;
		font-size: 18px;
		text-align: left;
	}
	#event .event .report {
		margin-top: 25px;
	}
	#event .event .report p {
		font-size: 16px;
		line-height: 1.62;
	}
}

/* -------------------------------------------------
	#banner
------------------------------------------------- */

#banner {
	margin-top: 95px;
}
#banner ul {
	display: flex;
	justify-content: center;
}
#banner ul li a {
	transition: opacity 0.2s ease-out;
}

@media print, screen and (min-width:768px) {
	#banner li a:hover {
		opacity: 0.7;
	}
}

@media screen and (max-width:767px) {
	#banner {
		margin-top: 80px;
	}
}



/* -------------------------------------------------
	#今月の目次　ページ内リンク
------------------------------------------------- */
.inner-link{
	background: #e4f5f9;
	padding: 20px 20px;

}
.inner-link ul{
    display:flex;
    justify-content: center;
    gap: 0 1.5em;
}
.inner-link ul li{
    font-size: 18px;
    font-weight:  bold;
}
.inner-link ul li a{
color: #263d87;
}
.inner-link ul li a:hover{
color: #eb6000;
}

.inner-link ul li a::before{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_innerlink.svg); 
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -3px;
}
.inner-link ul li a:hover::before{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_innerlink_on.svg); 
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -3px;
}
.mb15em{
	margin-bottom:1.5em!important;
}
.mb20em{
	margin-bottom:2.0em!important;
}
@media screen and (min-width:768px) {
.mb50-pc{
    margin-bottom: 50px;
}

}


@media screen and (max-width:767px) {
.inner-link ul{
    display:flex;
    flex-direction: column;
    gap: .7em 0;
}
.inner-link ul li{
    font-size: 16px;
    line-height: 1;
}
}

説明