@charset "utf-8";

html {
	font-size: 62.5%;
}

body {
	font-size: 1.6em;
	font-family: 'Noto Sans JP', sans-serif;
	color: #1a1a38;
	font-weight: 400;
}

* {
	box-sizing: border-box;
}

.d_none {
	display: none;
}

div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
	font-size: 1.6rem;
}

/* --------------------------

基本サイズ10px
3rem = 30px
1.6rem = 16px

--------------------*/

.en {
	font-family: 'Roboto', sans-serif;
}

.ita {
	font-style: italic;
}

#wrap,section,article,main {
	width: 100%;
	position: relative;
	overflow: hidden;
}

#wrap {
	opacity: 0;
	/* transition:all 2s; */
}

.display_on {
	opacity: 1 !important;
}

main {
	padding: 80px 0px;
	display: block;
}

#main_header + main {
	padding: 112px 0 200px;
}

.inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 70px;
}

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

.obf_cover,.obf_contain {
	width: 100%;
}

.obf_cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

.obf_contain img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	font-family: 'object-fit: contain;';
}

a {
	color: #333;
	transition: all 0.4s;
	cursor: pointer;
}

p {
	font-size: 1.6rem;
	line-height: 2em;
	font-weight: 500;
	letter-spacing: 0.1em;
}

h1,h2,h3,h4,h5,h6,dt,dd {
	line-height: 1.2em;
}

small {
	line-height: 1.2em;
}

/*-------------------------------
	複数行対応 3点リーダー css common.js内
-------------------------------*/

/* --- 2行のときは height: calc(1.63em * 2 ); ---*/
.js-text-overflow {
	overflow: hidden;
	height: calc(1.83em * 2);
	width: 100%;
}

/*-------------------------------
	arrow
-------------------------------*/

.arrow {
	position: relative;
	padding-right: 1.4em;
}

.arrow::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.arrow_right::after {
	background: url(../images/arrow_right.svg) no-repeat center / contain;
}

.arrow_bottom::after {
	background: url(../images/arrow_bottom.svg) no-repeat center / contain;
}

.arrow_white::after {
	background: url(../images/arrow_right_white.svg) no-repeat center / contain;
}

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

.btn {
	display: block;
	text-align: center;
	width: 100%;
	height: 60px;
	line-height: 56px;
	border-radius: 30px;
	border: 2px solid #005cac;
	background: #005cac;
	position: relative;
	transition: background 0.4s, color 0.4s;
	padding: 0 3em;
	font-size: 1.8rem;
	box-shadow: 0px 0px 4px 0px rgba(21, 18, 163, 0.2);
}

.btn span {
	font-size: 1.8rem;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.2em;
}

.btn::after {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	right: 30px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	background: url(../images/arrow_right_white.svg) no-repeat center / contain;
}

.btn:hover {
	background: #fff;
}

.btn:hover span {
	color: #005cac;
}

.btn:hover::after {
	background-image: url(../images/arrow_right.svg);
}

/* btn gray */

.btn_gray {
	background: #dcdcdc;
	border-color: #dcdcdc;
}

.btn_gray span {
	color: #4d4d4d;
}

.btn_gray:hover {
	background: #fff;
}

.btn_gray:hover span {
	color: #4d4d4d;
}

.btn_gray::after {
	background: url(../images/arrow_right_gray2.svg) no-repeat center / contain;
}

.btn_gray:hover::after {
	background-image: url(../images/arrow_right_gray.svg);
}

/* btn redline */

.btn_redline {
	width: 100%;
	height: 120px;
	padding: 0 20px;
	background: #005cac;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
}

.btn_redline::before {
	content: '';
	display: block;
	width: 10px;
	height: 100%;
	background: #de0013;
	position: absolute;
	left: 0;
	top: 0;
	transition: width ease-out 0.3s;
}

.btn_redline div {
	position: relative;
	font-size: 2.7rem;
	letter-spacing: 0.2em;
	color: #fff;
	padding: 0 12%;
	font-weight: bold;
}

.btn_redline div::after {
	content: '';
	display: block;
	width: 23px;
	height: 23px;
	background: url(../images/arrow_right_white.svg) no-repeat center / contain;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	transition: background ease-out 0.3s;
}

.btn_redline div span {
	font-size: 1.6rem;
	display: block;
	color: #fff;
	text-align: center;
	margin-bottom: 0.5em;
	letter-spacing: 0.3em;
}

.btn_redline:hover::before {
	width: calc(100% - 10px);
}

.btn_redline:hover div::after {
	background-image: url(../images/arrow_right_white2.svg);
}

/*-------------------------------
		flex
-------------------------------*/

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

.fle_wra {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.nowrap {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.jus_ce {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jus_sb {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.jus_ar {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.jus_end {
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.ali_ce {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.ali_st {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.ali_end {
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

/*-------------------------------
	flex space-between対策 3block
-------------------------------*/

.sb_cp {
	position: relative;
}

.sb_cp::after {
	content: '';
	display: block;
	width: 30%;
}

/*-------------------------------
	共通
-------------------------------*/
.pc_none {
	display: none;
}

.tex_ce {
	text-align: center;
}

.tex_ri {
	text-align: right;
}

.fw_bold {
	font-weight: 700;
}
.fw_normal {
	font-weight: 400;
}
.fw_medium {
	font-weight: 500;
}
.fw_semibold {
	font-weight: 600;
}
.tex_sup {
	font-size: 1.2rem;
	vertical-align: super;
}
.tex_sub {
	font-size: 1.2rem;
	vertical-align: sub;
}
.link {
	color: #005cac;
	text-decoration: underline;
	transition: all 0.3s;
}
.link:hover {
	text-decoration: none;
	opacity: 0.8;
}


/*-------------------------------
	color
-------------------------------*/

.white {
	color: #fff;
}

.red {
	color: #de0013;
}

.red2 {
	color: #ff0000;
}

.blue {
	color: #005cac;
}

.gray {
	color: #949494;
}

.bg_blue {
	background: #005cac;
}

.bg_white {
	background: #fff;
}

.bg_gray {
	background: #e7e7e7;
}
.bg_black {
	background: #1a1a38;
}

/*-------------------------------
	パーツ
-------------------------------*/

main .ttl {
	font-size: 3rem;
	font-weight: bold;
	padding: 50px 0;
}

main h2 {
	font-size: 2.6rem;
	font-weight: bold;
	letter-spacing: 0.2em;
	text-align: center;
	margin-bottom: 1em;
}

main h2 span {
	font-size: 1.6rem;
	letter-spacing: 0.3em;
	margin-bottom: 0.25em;
	font-style: italic;
	display: block;
	text-align: center;
}

main h3:not(.h_title) {
	padding-left: 84px;
	position: relative;
	color: #005cac;
	font-weight: bold;
	letter-spacing: 0.2em;
	font-size: 2.4rem;
	margin-bottom: 1.5em;
}

main h3:not(.h_title)::before {
	content: '';
	display: block;
	width: 54px;
	height: 1px;
	background: #005cac;
	position: absolute;
	left: 0;
	top: 0.6em;
}

main h4 {
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.2em;
	color: #005cac;
}

main h5 {
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.2em;
}

.h_title {
	font-size: 1.9rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0.1em;
	background: #005cac;
	border-left: 10px solid #de0013;
	padding: 0.75em 1em 0.75em 1.5em;
	margin-bottom: 50px;
}

ol {
	counter-reset: item;
}

ol li {
	text-indent: -1.3em;
	padding-left: 1.3em;
	line-height: 1.75em;
	font-size: 1.6rem;
	font-weight: 500;
}

ol li:before {
	font-weight: 500;
	font-size: 1.4rem;
	counter-increment: item;
	content: counter(item) '.';
	/* 以下は自由に装飾... */
	padding-right: 0.5em;
	font-weight: 500;
	color: #1a1a38;
}

/* --- affect */

.affe_img,.affe_txt {
	width: 48%;
}

.affe_img {
	text-align: center;
}

.affe_img,.img_border,.img_list_block figure {
	border-radius: 10px;
	overflow: hidden;
	border: 2px solid #005cac;
}

@media screen and (max-width: 960px) {
	.affect_wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.affe_img,.affe_txt {
		width: 100%;
	}

	.affe_img {
		order: -1;
		margin-bottom: 40px;
	}
}

/* --- parts_imglist */

.img_list_block {
	width: 30%;
	margin-bottom: 40px;
}

.img_list_block figure {
	margin-bottom: 10px;
}

/* --- parts dl */

.parts_dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.parts_dl dt,.parts_dl dd,.parts_dl dd p {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
}

.parts_dl dt {
	width: 280px;
	padding: 25px 20px;
	font-weight: bold;
	background: #dfdfe3;
	border-top: 1px solid #8f8f8f;
	color: #1a1a38;
}

.parts_dl dt:last-of-type {
	border-bottom: 1px solid #8f8f8f;
}

.parts_dl dd {
	width: calc(100% - 280px);
	padding: 25px 30px;
	font-weight: 500;
	color: #1a1a38;
	border-top: 1px solid #8f8f8f;
}

.parts_dl dd:last-of-type {
	border-bottom: 1px solid #8f8f8f;
}

/* --- parts dl 02 */

.parts_dl02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.parts_dl02 > dt {
	width: 22%;
	line-height: 1.75em;
	letter-spacing: 0.2em;
	font-size: 1.6rem;
	padding: 45px 20px 45px 0px;
	font-weight: bold;
	border-bottom: 1px solid #8f8f8f;
}

.parts_dl02 > dd {
	width: 78%;
	padding: 45px 30px 45px 0px;
	font-weight: 500;
	border-bottom: 1px solid #8f8f8f;
}

/*-------------------------------
	kome
-------------------------------*/

.kome {
	position: relative;
	padding-left: 1.2em;
}

.kome::before {
	content: '※';
	display: block;
	width: 1em;
	height: 1em;
	font-size: 1em;
	position: absolute;
	left: 0;
	top: 0;
}

/*-------------------------------
	ten list
-------------------------------*/

.ten_list li {
	position: relative;
	padding-left: 1.2em;
	line-height: 1.5em;
}

.ten_list li:not(:last-of-type) {
	margin-bottom: 0.5em;
}

.ten_list li::before {
	content: '・';
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	left: 0;
	top: 0;
}

/*-------------------------------
	maru list
-------------------------------*/
.maru_list li,.maru {
	position: relative;
	padding-left: 1.5em;
	line-height: 2em;
}

.maru_list li:not(:last-of-type) {
	margin-bottom: 1em;
}

.maru_list li::before,.maru::before {
	content: '';
	display: block;
	width: 1em;
	height: 1em;
	background: #005cac;
	position: absolute;
	left: 0;
	top: 0.55em;
	border-radius: 50%;
}

/*-------------------------------
	icon pdf
-------------------------------*/

.icon_pdf {
	position: relative;
	padding-left: 35px;
	display: block;
}

.icon_pdf::before {
	content: '';
	display: block;
	width: 23px;
	height: 31px;
	background: url(../images/icon_pdf.svg) no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

/* btn pdf */

.icon_pdf_white {
	position: relative;
}
.icon_pdf_white::before {
	content: '';
	display: block;
	width: 23px;
	height: 31px;
	background: url(../images/icon_pdf_white.svg) no-repeat center / contain;
	position: absolute;
	left: -40px;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

/*-------------------------------
	header
-------------------------------*/
header {
	width: 100%;
	height: 80px;
	z-index: 80;
	transition: all 0.4s;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	transform: translateY(0%);
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	box-shadow: 0px 0px 4px 0px rgba(21, 18, 163, 0.2);
}

header.active {
	transform: translateY(-100%);
}

.header_logo a:first-of-type {
	margin-right: 14px;
}

.logo_img01 {
	width: 245px;
}

.logo_img02 {
	width: 95px;
}

.header_inner {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1320px;
	padding: 0 70px 0px 70px;
	margin: 0 auto;
	transition: all 0.4s;
}

.header_logo a:hover {
	opacity: 1;
}

.header_top {
	padding: 30px 0;
	border-bottom: 1px solid #8f8f8f;
}

.header_left {
	width: calc(100% - 510px);
	padding-top: 1rem;
}
.header_left .header_logo {
	font-size: 1.2rem;
	margin-bottom: 0.5em;
	letter-spacing: 0.2em;
	color: #666666;
}

.header_right {
	width: 500px;
}
.header_right .tex_ri {
	font-size: 1.25rem;
}
.header_right .tex_ri span {
	font-size: 1.25rem;
}
.header_right a {
	color: #005cac;
	font-size: 1.2rem;
	font-weight: 500;
	margin-top: 10px;
	letter-spacing: 0.05em;
	border-radius: 6px;
	width: 140px;
	height: 30px;
	line-height: 28px;
	text-align: center;
	transition: color 0.4s, background 0.4s;
}
.header_right .btn_mypage {
	border: 1px solid #005cac;
	color: #005cac;
	background: #fff;
	margin-right: 10px;
}
.header_right .btn_mypage:hover {
	background: #005cac;
	color: #fff;
}
.header_right .btn_logout {
	border: 1px solid #1a1a38;
	background: #1a1a38;
	color: #fff;
	margin-left: 10px;
}
.header_right .btn_logout:hover {
	color: #1a1a38;
	background: #fff;
}

/* --- main header */

#main_header {
	height: 112px;
}

#main_header .header_top {
	border-bottom: none;
}

#main_header .header_right {
	width: calc(100% - 350px);
	padding-left: 20px;
}

/*-------------------------------
	Nav
-------------------------------*/
.nav_list {
	padding: 30px 0;
}

.nav_list > li {
	text-align: center;
}

.nav_list > li:not(:first-of-type) {
	padding-left: 0.25em;
}

.nav_list > li:not(:last-of-type) {
	padding-right: 0.25em;
}

.nav_list > li a {
	letter-spacing: 0.05em;
}

.nav_list > li > a,.nav_list > li > span {
	font-size: 1.4rem;
	padding: 0.4em 0;
	display: block;
	text-align: center;
	font-weight: 500;
	color: #005cac;
	line-height: 1.25em;
	position: relative;
}

.nav_list > li > a::after,.nav_list > li > span::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #de0013;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: transform 0.3s, opacity 0.3s;
	transform: translateY(4px) scale(0, 1);
	opacity: 0;
	transform-origin: center center;
}

.nav_list > li > a:hover::after,.nav_list > li > span:hover::after {
	transform: translateY(0) scale(1, 1);
	opacity: 1;
}



/*-------------------------------
	Sp Nav
-------------------------------*/
.sp_nav {
	display: none;
}

@media screen and (max-width: 960px) {
	.nav_list > li a,	.header_right a {
		font-size: 1.2rem;
	}

	.header_left {
		min-width: 260px;
	}

	.header_left .header_logo {
		font-size: 1rem;
		letter-spacing: 0;
	}

	.logo_img01 {
		width: 175px;
	}

	.logo_img02 {
		width: 70px;
	}
	.header_right .tex_ri {
		font-size: 1.2rem;
	}
	.header_right .tex_ri span {
		font-size: 1.2rem;
	}
	.header_right .btn_contact {
		width: 140px;
	}

	/* --- main nav */

	#main_header .header_right {
		width: calc(100% - 260px);
	}


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

/* --- IE のみ --- */
@media all and (-ms-high-contrast: none) {
	/* ここに書く */
}

/*-------------------------------
	hamburger
-------------------------------*/

.hamburger {
	display: none;
	position: relative;
	z-index: 3;
	width: 12vw;
	height: 12vw;
	cursor: pointer;
	text-align: center;
	background: none;
	border-radius: 0;
	margin-left: auto;
}
.hamburger span {
	display: block;
	position: absolute;
	height: 0.4vw;
	right: 0vw;
	background: #fff;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
	width: 12vw;
	top: 3.333333333333333vw;
	background: #005cac;
}
.hamburger span:nth-child(2) {
	width: 6vw;
	top: 6.666666666666667vw;
	background: #de0013;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top: 6vw;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
	width: 12vw;
	top: 6vw;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	background: #005cac;
}

/*-------------------------------
	page top
-------------------------------*/

#page-top {
	position: fixed;
	width: 20px;
	bottom: 20px;
	right: 30px;
	z-index: 30;
	opacity: 0;
	visibility: hidden;
	transform: translateY(40px);
}

#page-top:hover {
	opacity: 1;
}

#page-top.on {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

#page-top.abso {
	position: absolute;
	bottom: 120px;
}

@media screen and (min-width: 769px) {
	#page-top:hover {
		opacity: 0.7;
	}
}

/*-------------------------------
	footer
-------------------------------*/

footer {
	width: 100%;
	background: #005cac;
	padding: 0px 0 20px;
}

.footer_link {
	padding: 10px 0;
}

.footer_link a {
	display: block;
	width: 100%;
	max-width: 1460px;
	padding: 0 70px;
	margin: 0 auto;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
}

footer .inner {
	padding-top: 70px;
}

footer .inner_new {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer .footer_wrap {
	display: flex;
	width: 100%;
}

footer .footer_logo {
	flex-grow: 1;
	width: 220px;
	margin-bottom: 35px;
}

.footer_logo img {
	width: 200px;
}

footer .footer_addres_new {
	line-height: 2.1;
	font-size: 1.4rem;
	letter-spacing: 0.2em;
	color: #fff;
}

/* --- footer nav --- */

footer .footer_nav {
	flex-grow: 1;
}

.footer_nav_list a:hover {
	color: #ffff00 !important;
}

.footer_nav_list a::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #ffff00;
	position: absolute;
	left: 0;
	bottom: -0.5em;
	transition: transform 0.3s, opacity 0.3s;
	transform: translateY(4px) scale(0, 1);
	opacity: 0;
	transform-origin: center center;
}

.footer_nav_list a:hover::after {
	transform: translateY(0) scale(1, 1);
	opacity: 1;
}
.footer_nav_list {
	text-align: center;
	list-style: none;
	padding-left: 0;
}
.footer_nav_list li {
	display: inline-block;
	font-size: 2.0rem;
	border-right: 1px solid #fff;
	padding: 0 0.75em;
}
.footer_nav_list li:last-of-type {
	border-right-width: 0;
}
.footer_nav_list li a {
	font-size: 1.4rem;
	display: block;
	color: #fff;
	letter-spacing: 0.2em;
	position: relative;
	line-height: 1.2em;
	text-decoration: none;
	padding-right: 1.2em;
}
.footer_nav_list li a::before {
	content: '';
	display: block;
	position: absolute;
	background: url(../images/arrow_square_white.svg) no-repeat center / 100% auto;
	width: 14px;
	height: 14px;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.footer_nav_list li a:hover::before {
	background-image: url(../images/arrow_square_yellow.svg);
}

.copy {
	flex-grow: 3;
	font-size: 1.1rem;
	color: #fff;
	display: block;
	letter-spacing: 0.1em;
	text-align: right;
}

.copy span {
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 960px) {
	footer .footer_nav {
		width: 100%;
		margin-top: 50px;
	}
	footer .inner_new {
		display: block;
	}
}

/*-------------------------------
	Sub Page first view
-------------------------------*/

.subf_view {
	width: 100%;
	height: 362px;
}

.subf_view h1 {
	font-size: 3rem;
	font-weight: bold;
	letter-spacing: 0.2em;
	color: #005cac;
}

.subf_view h1 span {
	font-size: 1.6rem;
	letter-spacing: 0.5em;
	display: block;
	margin-bottom: 0.75em;
	line-height: 1em;
	color: #1a1a38;
}

/*-------------------------------
	bread brumbs
-------------------------------*/

.bread_crumbs {
	margin: 20px auto 120px;
}

.bread_crumbs li,
.bread_crumbs li a {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.25em;
	letter-spacing: 0.1em;
	color: #aaaab5;
}

.bread_crumbs li a:hover {
	text-decoration: underline;
}

.bread_crumbs li:not(:last-of-type) {
	padding-right: 1em;
	margin-right: 0.5em;
	position: relative;
}

.bread_crumbs li:not(:last-of-type)::after {
	content: '/';
	display: block;
	font-size: 1.2rem;
	width: 0.5em;
	height: 1.25em;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	color: #aaaab5;
}
/*-------------------------------
	scrolle fade in
-------------------------------*/
@media screen and (min-width: 769px) {
	.fadein {
		opacity: 0;
		transition: transform 0.8s, opacity 0.8s;
		transform: translate(-50px, 0);
	}
	.rightin {
		opacity: 0;
		transition: transform 0.8s, opacity 0.8s;
		transform: translate(50px, 0);
	}

	.bottomin {
		opacity: 0;
		transition: transform 0.8s, opacity 0.8s;
		transform: translate(0, 50px);
	}

	.delay2 {
		transition-delay: 0.3s;
	}
	.delay3 {
		transition-delay: 0.6s;
	}
	.delay4 {
		transition-delay: 0.9s;
	}

	.delay5 {
		transition-delay: 1.2s;
	}

	.fadein.scrollin,.rightin.scrollin,.bottomin.scrollin {
		opacity: 1;
		transform: translate(0, 0);
	}
}

/*-------------------------------
	google map
-------------------------------*/

.google_map {
	width: 100%;
	height: 300px;
}

.google_map iframe {
	width: 100%;
	height: 100%;
}

/*-------------------------------
	Ver Smart phone
-------------------------------*/

@media screen and (max-width: 768px) {
	/*-------------------------------
		基本設定
	-------------------------------*/

	/*
			計算式：10(px) / 750(px) * 100 = 1.33
			画面幅750pxの時に "font-size: 1rem; = 10px " 相当になる
		ex) font-size:1.6rem = 16px（750pxのとき）
		*/

	html {
		font-size: 1.3333vw;
	}
	body {
		font-size: 2.6rem;
	}

	.pc_none,.hamburger {
		display: block;
	}

	.sp_none {
		display: none;
	}

	div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
		font-size: 2.6rem;
	}
	.inner {
		width: 100%;
		margin: 0 auto;
		padding: 0 4vw;
	}

	main {
		padding-top: 15vw;
	}

	p {
		font-size: 2.8rem;
	}

/*-------------------------------
	flex
-------------------------------*/

	.d_flex {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

/*-------------------------------
	arrow
-------------------------------*/

	.arrow::after {
		width: 3.733333333333333vw;
		height: 3.733333333333333vw;
	}

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

	.btn {
		height: 11.733333333333333vw;
		line-height: 11.2vw;
		font-size: 3rem;
		box-shadow: 0px 0px 0.533333333333333vw 0px rgba(21, 18, 163, 0.2);
	}

	.btn span {
		font-size: 3rem;
	}

	.btn::after {
		width: 3.733333333333333vw;
		height: 3.733333333333333vw;
		right: 7.6vw;
	}

	/* btn redline */

	.btn_redline {
		height: 20.8vw;
		padding: 0 2.666666666666667vw;
	}

	.btn_redline::before {
		width: 2vw;
	}

	.btn_redline div {
		font-size: 3.4rem;
		padding: 0 12%;
	}

	.btn_redline div::after {
		width: 4vw;
		height: 4vw;
	}

	.btn_redline div span {
		font-size: 2rem;
	}

	.btn_redline:hover::before {
		width: calc(100% - 2vw);
	}

	/*-------------------------------
	main
-------------------------------*/

	main,
	#main_header + main {
		padding: 21.333333333333333vw 0 16vw;
	}

	/*-------------------------------
	icon pdf
-------------------------------*/

	.icon_pdf {
		padding-left: 6vw;
	}

	.icon_pdf::before {
		width: 4vw;
		height: 5.466666666666667vw;
		left: 0;
		top: 0vw;
		bottom: auto;
		margin: 0;
	}

	.icon_pdf_white::before {
		width: 4vw;
		height: 5.466666666666667vw;
		left: -6.5vw;
		top: 0vw;
		bottom: auto;
		margin: 0;
	}

	/*-------------------------------
	header
-------------------------------*/

	header,#main_header {
		height: 21.333333333333333vw;
		transform: translateY(0%) !important;
		box-shadow: 0px 0px 0.533333333333333vw 0px rgba(21, 18, 163, 0.2);
	}

	.header_left {
		min-width: auto;
		padding-top: 0;
	}

	/* .header_logo {
		flex-wrap: nowrap;
	} */

	.header_logo a:first-of-type {
		margin-right: 1.866666666666667vw;
		padding-bottom: 1.866666666666667vw;
	}

	.logo_img01 {
		width: 50vw;
	}

	.logo_img02 {
		width: 20.266666666666667vw;
	}

	.header_inner {
		max-width: 100%;
		padding: 0 4vw;
	}

	.header_top {
		padding: 5.333333333333333vw 0;
		border-bottom: none;
	}
	.header_left {
		width: calc(100% - 170px);
		padding-right: 10px;
	}
	.header_left .header_logo {
		font-size: 1.7rem;
	}

	.header_right {
		width: 170px;
	}
	.header_right .tex_ri {
		font-size: 1.6rem;
		line-height: 1.2;
	}
	.header_right .tex_ri span {
		font-size: 1.6rem;
	}
	.header_right a {
		font-size: 1.8rem;
		width: 70px;
		height: 20px;
		line-height: 1.6;
		margin-top: 8px;
	}
	.header_right .btn_mypage {
		margin-right: 5px;
	}
	.header_right .btn_logout {
		margin-left: 5px;
	}

/*-------------------------------
	Nav
-------------------------------*/
	.header_nav {
		display: none;
	}

/*-------------------------------
	Sp Nav
-------------------------------*/
	.sp_nav {
		position: fixed;
		left: 0;
		top: 21.333333333333333vw;
		width: 100%;
		max-height: calc(90vh - 21.333333333333333vw);
		overflow-y: auto;
		background: #fff;
		z-index: 999;
		border-top: 1px solid #000000;
		padding: 0 4vw 13.333333333333333vw;
		box-shadow: 0px 0.533333333333333vw 0.533333333333333vw 0px rgba(21, 18, 163, 0.2);
	}

	.sp_nav_list > li {
		width: 100%;
	}

	.sp_nav_list > li:not(:first-of-type) {
		border-top: 1px solid #8f8f8f;
	}

	.sp_nav_list > li:last-of-type {
		border-bottom: 1px solid #8f8f8f;
	}

	.sp_nav_list > li > a,.sp_nav_list > li > span {
		display: block;
		padding: 6.666666666666667vw 8vw 6.666666666666667vw 4vw;
		font-size: 3.2rem;
		font-weight: 500;
		letter-spacing: 0.1em;
		line-height: 1.25em;
	}

	.sp_nav_list > li > .arrow::after {
		right: 4vw;
	}

	.sp_nav .btn {
		margin: 6.666666666666667vw auto 10vw;
		max-width: 68vw;
	}

	.sp_nav_bottom a {
		font-size: 3.2rem;
		font-weight: 500;
		display: inline-block;
	}

	.sp_nav_bottom a:first-of-type {
		margin-bottom: 1em;
	}

	/* --- sp nav child */

	.sp_nav_child {
		display: none;
		width: 100%;
		padding: 0vw 4vw 3vw 8vw;
	}

	.sp_nav_child > li:not(:last-of-type) {
		margin-bottom: 1em;
	}

	.sp_nav_child > li a {
		display: block;
		padding: 0.5em 0;
		font-size: 2.8rem;
		letter-spacing: 0.1em;
		font-weight: 500;
		color: #767688;
	}

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

/*-------------------------------
	footer
-------------------------------*/

	footer {
		padding: 0px 0 4vw;
	}

	footer .inner {
		padding-top: 6.666666666666667vw;
	}

	footer .footer_left_new {
		width: auto;
	}
	footer .footer_wrap {
		flex-direction: column;

	}

	footer .footer_logo {
		width: auto;
		margin-bottom: 4.533333333333333vw;
		text-align: center;
	}
	.footer_logo img {
		width: 61.866666666666667vw;
	}
	footer .footer_nav {
		margin-top: 20px;
	}
	.footer_nav_list li a {
		font-size: 2.0rem;
		letter-spacing: 0.05em;
		padding-right: 1.3em;
	}
	.footer_nav_list li a::before {
		width: 10px;
  	height: 10px;
	}

	/* --- footer nav --- */

	.copy {
		font-size: 2rem;
		width: 100%;
		margin: 2.666666666666667vw auto 0;
		padding-top: 2.666666666666667vw;
		text-align: center;
		border-top: 1px solid #fff;
	}

	.copy span.pc_none {
		display: inline;
		font-size: 2rem;
	}

/*-------------------------------
	Sub Page first view
-------------------------------*/

	.subf_view {
		height: 44vw;
		margin-bottom: 16vw;
	}

	.subf_view .inner {
		padding: 0 4vw;
	}

	.subf_view h1 {
		font-size: 4rem;
		letter-spacing: 0.05em;
	}

	.subf_view h1 span {
		font-size: 2.1rem;
		letter-spacing: 0.05em;
	}

/*-------------------------------
	bread brumbs
-------------------------------*/

	.bread_crumbs {
		display: none;
	}

/*-------------------------------
	page top
-------------------------------*/

	#page-top {
		width: 2.933333333333333vw;
		bottom: 4vw;
		right: 3vw;
		transform: translateY(5.333333333333333vw);
	}

	#page-top.abso {
		bottom: 10.666666666666667vw;
	}

/*-------------------------------
	パーツ
-------------------------------*/

	main .ttl {
		font-size: 4rem;
		padding: 25px 0;
	}

	main h2 {
		font-size: 4rem;
	}

	main h2 span {
		font-size: 2.2rem;
	}

	main h3:not(.h_title) {
		padding-left: 1.5em;
		font-size: 3.4rem;
	}

	main h3:not(.h_title)::before {
		width: 1em;
		height: 2px;
	}

	main h4 {
		font-size: 3rem;
	}

	main h5 {
		font-size: 3rem;
	}

	.h_title {
		font-size: 3.2rem;
		border-left: 1.733333333333333vw solid #de0013;
		margin-bottom: 8vw;
	}

	ol li {
		font-size: 2.8rem;
	}

	ol li:before {
		font-size: 2.8rem;
	}

	/* --- affect */

	.affe_img,.img_border,.img_list_block figure {
		border-radius: 1.333333333333333vw;
	}

	.affe_img {
		margin-bottom: 4vw;
	}

	/* --- parts_imglist */

	.img_list_block {
		width: 100%;
		margin-bottom: 6vw;
	}

	.img_list_block figure {
		margin-bottom: 1.333333333333333vw;
	}

	/* --- parts dl */

	.parts_dl_wrap {
		overflow-x: auto;
		width: 100%;
	}

	.parts_dl {
		min-width: 120vw;
	}

	.parts_dl dt,.parts_dl dd,.parts_dl dd p {
		font-size: 2.4rem;
		line-height: 1.5em;
	}

	.parts_dl dt {
		width: 37.333333333333333vw;
		padding: 3.333333333333333vw 4vw;
	}

	.parts_dl dd {
		width: calc(100% - 37.333333333333333vw);
		padding: 3.333333333333333vw 4vw;
	}

	/* --- parts dl 02 */

	.parts_dl02 > dt {
		width: 100%;
		font-size: 2.8rem;
		padding: 3.333333333333333vw 4vw;
		background: #dfdfe3;
		border-bottom: none;
	}

	.parts_dl02 > dd {
		width: 100%;
		padding: 3.333333333333333vw 4vw;
		border-bottom: none;
	}

	.parts_dl02 > dd:last-of-type {
		border-bottom: 1px solid #dfdfe3;
	}

/*-------------------------------
	google map
-------------------------------*/

	.accessmap .inner {
		padding: 0;
	}

	.google_map {
		height: 50vw;
	}

/*-------------------------------
	blog cate time
-------------------------------*/

	.cate {
		font-size: 3.5vw;
	}

	.time {
		font-size: 3vw;
	}

/*-------------------------------
	text
-------------------------------*/
	.tex_sup {
		font-size: 2.0rem;
	}
	.tex_sub {
		font-size: 2.0rem;
	}

}

/*-------------------------------
	// Ver. Smart phone
-------------------------------*/
