@charset "UTF-8";

body {
	font-family: 'メイリオ', 'Meiryo', sans-serif;
	color: #161853;
}

figcaption {
	font-size: 1.4rem;
   max-width: auto;

}

figure{
	max-width: 600px;
	margin: auto;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

a {
	transition: .2s;
	cursor: pointer;
}

a:hover {
	color: #faa44e !important;
}

/* header 
.headerのbackground指定は"header-image.css"
-----------------------------------------------*/
.header {
	background-repeat: no-repeat;
	background-size: auto 100%, 100% auto;
	background-position: right, left;
}

.header-container {
	width: min(90%, 1080px);
	margin-inline: auto;
}

.header-inner {
	padding-top: 50px;
	padding-bottom: 50px;
}

.header-logo img {
	max-height: 60px;
}

/* main ---------------------------------------*/
.main {
	background: #fafafa;
}

.main-container {
	width: min(90%, 1080px);
	margin-inline: auto;
	background: #fff;
}

.main-inner {
	padding: 30px 5.7% 70px;
}

.bread {
	width: 100%;
	margin-bottom: 25px;
	font-size: 1.4rem;
}

.bread-list {
	display: flex;
	flex-wrap: wrap;
}

.bread-list li {
	position: relative;
}

.bread-list li:not(:last-child)::after {
	content: '>';
	padding: 0 5px;
}

.bread-list a {
	text-decoration: underline;
	color: #697FAA;
}

/*main- index---------------------------------------*/
.index {
	margin-bottom: 40px;
}

.index-tag {
	margin-bottom: 25px;
}

.index-tag a {
	display: inline-block;
	padding: 5px 25px;
	background: #161853;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
}

.index-title {
	padding-left: 3%;
	padding-right: 3%;
	font-size: 3rem;
	font-weight: 600;
	line-height: 110%;
}

/*main- point---------------------------------------*/
.point {
	max-width: 740px;
	padding: 30px 12%;
	margin-inline: auto;
	background: #F0F1FF;
}

.point-tag {
	display: inline-block;
	padding: 3px 15px;
	margin-bottom: 15px;
	background: #1C239B;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
}

.point-link a {
	font-weight: 600;
	color: #1C239B;
	text-decoration: underline;
}

/*footer---------------------------------------*/
.footer {
	background: #fafafa;
}

.footer-container {
	width: min(90%, 560px);
	margin-inline: auto;
}

.footer-inner {
	padding-top: 40px;
	padding-bottom: 50px;
}

.sns {
	margin-bottom: 30px;
}

.sns-list {
	display: flex;
	justify-content: center;
}

.sns-list li {
	margin-right: 7.5px;
	margin-left: 7.5px;
}

.sns-list img {
	width: 30px;
}

.footer-content {
	display: flex;
	justify-content: center;
	font-size: 1.2rem;
}

.footer-content-index {
	display: flex;
	align-items: center;
}

.footer-content-index-01 {
	margin-right: 5px;
}

.footer-content-index-02 {
	display: flex;
	align-items: center;
	font-weight: 600;
}

.footer-content-index-02>*:nth-child(1) {
	margin-right: 10px;
	font-size: 1.8rem;
}

.footer-content-link a {
	text-decoration: underline;
	color: #23254D;
}


/*main- news (記事用パーツ)---------------------------------------*/
.news>* {
	margin-bottom: 35px;
}

.news section>*:not(:last-child) {
	margin-bottom: 1em;
}

.news {
	text-align: justify;
}

.news img {
	width: 100%;
}

.title-01,
.title-02 {
	position: relative;
	margin-bottom: 10px !important;
	font-size: 2rem;
	line-height: 120%;
	z-index: 1;
}

.title-01 {
	width: 100%;
}

.title-02 {
	display: inline-block;
}

.title-01::before,
.title-01::after,
.title-02::before,
.title-02::after {
	content: '';
	position: absolute;
	background: #94B5D8;
	bottom: 50%;
	right: 0;
	transform: translateY(50%);
	z-index: -1;
}

.title-01::before,
.title-02::before {
	width: 100%;
	height: 2px;
}

.title-01::after,
.title-02::after {
	width: 30px;
	height: 30px;
	border-radius: 50px;
}

.title-01 span,
.title-02 span {
	display: inline-block;
	padding-right: 10px;
	margin-right: 50px;
	background: #fff;
}

.img-01 img {
	width: auto;
	max-height: 350px;
	margin-right: auto;
	margin-left: auto;
}

.grid-layout-01,
.grid-layout-02 {
	display: grid;
	gap: 1em 25px;
}

.grid-layout-01 *>*:not(:last-child),
.grid-layout-02 *>*:not(:last-child) {
	margin-bottom: 1em;
}

/* media ---------------------------------------*/
@media screen and (max-width:1080px) {
	.main {
		background: #fff;
	}

	.main-inner {
		padding: 20px 0 40px;
	}
}

@media screen and (min-width:769px) {

	.title-01 span,
	.title-02 span {
		margin-right: 230px;
	}

	.float-layout-01::after,
	.float-layout-02::after {
		content: '';
		display: block;
		clear: both;
	}

	.float-layout-01 img {
		float: left;
		width: 40%;
		margin-right: 15px;
		margin-bottom: 15px;
	}

	.float-layout-02 img {
		float: right;
		width: 40%;
		margin-bottom: 15px;
		margin-left: 15px;
	}

	.grid-layout-01 {
		grid-template-columns: 1.5fr 2fr;
	}

	.grid-layout-02 {
		grid-template-columns: 2fr 1.5fr;
	}
}

@media screen and (max-width:768px) {

	.float-layout-01 img+*,
	.float-layout-02 img+* {
		clear: both;
	}

	.float-layout-01 img,
	.float-layout-02 img {
		margin-bottom: 1em;
	}
}

u{
   color:blue;
}

.btn_1,
a.btn_1 {
  color: #000149;
  background-color: #D7D8FD;
  border-radius: 16px;    /* 角丸の指定 */
  padding: 0.4em;           /* 内側の余白 */
}
.btn_1:hover,
a.btn_1:hover {
  color: #fff;
  background: #161853;
}
a.btn_1 {
   border-radius: 100vh;
}

.info_1{
   padding: 30px 60px 3px 30px;
   background: #f8f8f8; 
}

.syousai a span{
   color:#fff;
   background-color: #161853;
   border-radius: 16px;
   height: 8px;
   padding: 8px;
}

.box_text{
   max-width: 1000px;
	padding: 16px 8%;
}
