@charset "UTF-8";

html {
	width: 100%;
	height: 100%;
	color: #505050;
	margin: 0;
	padding: 0;
	font-feature-settings: "palt" 1;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,figure {
	margin: 0;
	padding: 0;
}

body{
	font-size: 14px;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.43;
	letter-spacing: 0.1em;
	counter-reset:number;
	height: 100%;
	-webkit-text-size-adjust: none;
}

table {
	font: 100%;
	font-size: inherit;
	border-collapse: collapse;
	border-spacing: 0;
}
caption,th { text-align:left; }

fieldset,img { border: 0;}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: 500;
}
address,caption,cite,code,dfn,em,th,var {
	font-style: normal;
	font-weight: 500;
}
ol,ul { list-style: none;}

q:before,q:after { content:'';}
abbr,acronym {
	border: 0;
	font-variant: normal;
}
sup { vertical-align: text-top; }
sub { vertical-align: text-bottom;}
input,textarea,select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	outline: 0;
}
legend{ color:#555;}

select,input,button,textarea{ font-family: "Noto Sans JP", sans-serif; }

pre,code,kbd,samp,tt{
	font-family: monospace;
	line-height: 100%;
}

main { display: block; }

a {
	color: inherit;
	outline: none;
	text-decoration: none;
}
a:hover { text-decoration: none; }
a:focus { text-decoration: none; }
a:active { text-decoration: none; }

a img { border: none; }

img {
	max-width: 100%;
	vertical-align: top;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

html, body {
	height: 100%;
	text-align: justify;
	text-justify: inter-ideograph;
}
body { -webkit-text-size-adjust: 100%; }

/* common */
:root {
	/* color */
	--c-blue: #044bac;
	--c-b_blue: #3397ff;
	--c-l_blue: #66ccff;
	--c-d_blue: #142846;
	--c-b_gray: #c8dcf0;
	--c-m_blue: #003375;
}
.bold { font-weight: 500; }
.color-grad {
	display: inline-block;
	letter-spacing: 0.05em;
	background: linear-gradient(90deg, var(--c-blue) 0%, var(--c-l_blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.lh20 { line-height: 2.0; }


#wrapper {
	display: flex;
	overflow: hidden;
	min-height: 100vh;
	flex-direction: column;
	justify-content: space-between;
}
#content {
	flex-grow: 1;
}
#pageTitle {
	position: relative;
	color: var(--c-blue);
}
#pageTitle > span {
	display: inline-block;
	vertical-align: text-bottom;
}
#pageTitle .en::before,
#pageTitle .en::after {
	content: "／";
	display: inline-block;
}
#pageTitle::before,
#pageTitle::after {
	content: "";
	bottom: 0;
	height: 1px;
	display: block;
	position: absolute;
}
#pageTitle::before {
	left: 0;
	background: var(--c-b_blue);
}
#pageTitle::after {
	width: 100vw;
	background: var(--c-b_gray);
}
@media screen and (min-width:769px), print{
	.sp { display: none !important; }
	#content {
		width: 1000px;
		max-width: 100%;
		margin: 0 auto;
		padding: 80px 0 300px;
	}
	#pageTitle {
		padding: 20px 0 15px;
		margin-bottom: 90px;
	}
	#pageTitle::before { width:300px; }
	#pageTitle::after { left:300px; }
	#pageTitle .ja {
		font-size: 32px;
		margin-right: 0.1em;
	}
	#pageTitle .en {
		font-size: 16px;
		margin-bottom: 3px;
	}
	#pageTitle .en::before,
	#pageTitle .en::after {
		margin: 0 0.5em;
	}
	.block > * + * { margin-top: 30px; }
	.blockTitle { font-size: 32px; }
	.blockText {
		font-size: 15px;
		line-height: 30px;
	}
}
@media screen and (max-width:768px){
	.pc { display: none !important; }
	#content {
		padding: 37px 25px 140px;
	}
	#pageTitle {
		padding: 5px 0;
		margin-bottom: 38px;
	}
	#pageTitle .ja {
		font-size: 24px;
	}
	#pageTitle .en {
		font-size: 12px;
		margin-bottom: 4px;
	}
	#pageTitle .en::before,
	#pageTitle .en::after {
		margin: 0 0.5em;
	}
	.block > * + * { margin-top: 20px; }
	.blockTitle {
		font-size: 24px;
		line-height: 36px;
	}
	.blockText {
		font-size: 14px;
		line-height: 28px;
	}
}

/* common header */
#headCont {
	display: flex;
	position: relative;
	z-index: 9999;
	justify-content: space-between;
}
#headCont #hLogo {
	line-height: 1;
	color: var(--c-blue);
}
#headCont #hLogo img {
	vertical-align: bottom;
}
#headCont #gMenu {
	position: fixed;
	top: 0;
	right: 0;
}
#headCont #gMenu .icon {
	z-index: 9999;
	color: #fff;
	font-size: 13px;
	cursor: pointer;
	position: relative;
	text-align: center;
	background: var(--c-d_blue);
	transition-duration: .3s;
	transition-property: background-color;
}
#headCont #gMenu.open .icon {
	background: var(--c-m_blue);
}
#headCont #gMenu .icon span {
	display: inline-block;
	transition-duration: .3s;
	transition-property: opacity;
}
#headCont #gMenu.open .icon span {
	opacity: 0;
}
#headCont #gMenu .icon::before,
#headCont #gMenu .icon::after,
#headCont #gMenu .icon span::after {
	content: "";
	display: block;
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	transition-duration: .3s;
	transition-property: top, width, transform;
}
#headCont #gMenu.open .icon::before {
	transform: rotate(45deg);
}
#headCont #gMenu.open .icon::after {
	transform: rotate(-45deg);
}
#headCont #gMenuInner {
	top: 0;
	right: -360px;
	color: #fff;
	z-index: 9998;
	position: fixed;
	background: var(--c-m_blue);
	width: 360px;
	height: 100vh;
	max-width: calc(100vw - 50px);
	font-size: 14px;
	line-height: 34px;
	box-sizing: border-box;
	overflow-y: auto;
	transition-duration: .3s;
	transition-property: right;
}
#headCont #gMenu.open #gMenuInner {
	right: 0;
}
#headCont #gMenuInner #gMainMenu {
	border-top: 1px solid #0d3d7c;
}
#headCont #gMenuInner #gMainMenu > li {
	border-bottom: 1px solid #0d3d7c;
}
#headCont #gMenuInner #gMainMenu > li > a {
	display: block;
	padding: 10px 10px 10px 30px;
}
#headCont #gMenuInner #gMainMenu > li > ul {
	padding: 8px 8px 8px 45px;
	border-top: 1px solid #0d3d7c;
}
#headCont #gMenuInner #gLinkMenu {
	padding: 30px;
}
#headCont #gMenuInner #gLinkMenu li + li {
	margin-top: 30px;
}
#headCont #gMenuInner #gLinkMenu a {
	display: block;
	font-size: 16px;
	padding: 18px 25px;
	background: #0d3d7c;
	transition-duration: .3s;
	transition-property: background-color;
}
#headCont #gMenuBack {
	z-index: 9997;
	display: none;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	position: fixed;
	cursor: pointer;
	background: rgba(255,255,255,0.7);
}
@media screen and (min-width:769px), print{
	#headCont {
		padding-right: 90px;
	}
	#headCont #hLogo {
		padding: 25px;
		font-size: 15px;
	}
	#headCont #hLogo img {
		height: 40px;
		margin-right: 10px;
	}
	#headCont #subMenu {
		font-size: 16px;
		margin-top: 38px;
		margin-right: 40px;
		font-weight: 500;
	}
	#headCont #subMenu ul {
		line-height: 1;
		display: flex;
	}
	#headCont #subMenu ul::after,
	#headCont #subMenu ul li::before {
		content: "／";
		margin-left: 1em;
		display: inline-block;
	}
	#headCont #subMenu ul li::before {
		margin-right: 1em;
	}
	#headCont #subMenu a:hover {
		text-decoration: underline;
	}
	#headCont #gMenu .icon {
		width: 90px;
		height: 90px;
	}
	#headCont #gMenu .icon:hover {
		background: var(--c-m_blue);
	}
	#headCont #gMenu .icon span {
		font-size: 13px;
		margin-top: 54px;
	}
	#headCont #gMenu .icon::before,
	#headCont #gMenu .icon::after,
	#headCont #gMenu .icon span::after {
		width: 36px;
		height: 2px;
	}
	#headCont #gMenu .icon::before { top: 25px; }
	#headCont #gMenu .icon span::after { top: 34px; }
	#headCont #gMenu .icon::after { top: 43px; }
	#headCont #gMenu .icon:hover::before { top: 22px; }
	#headCont #gMenu .icon:hover::after { top: 46px; }
	#headCont #gMenu.open .icon::before,
	#headCont #gMenu.open .icon::after { top: 44px; }
	#headCont #gMenuInner {
		padding-top: 90px;
	}
	#headCont #gMenuInner #gMainMenu a:hover {
		text-decoration: underline;
	}
	#headCont #gMenuInner #gLinkMenu a:hover {
		background: var(--c-blue);
	}
}
@media screen and (max-width:768px){
	#headCont #hLogo {
		font-size: 9px;
		padding: 12.5px;
	}
	#headCont #hLogo img {
		height: 25px;
		margin-right: 6px;
	}
	#headCont #gMenu .icon {
		width: 50px;
		height: 50px;
	}
	#headCont #gMenu .icon span {
		font-size: 7px;
		margin-top: 28px;
	}
	#headCont #gMenu .icon::before,
	#headCont #gMenu .icon::after,
	#headCont #gMenu .icon span::after {
		width: 20px;
		height: 1px;
	}
	#headCont #gMenu .icon::before { top: 14px; }
	#headCont #gMenu .icon span::after { top: 19px; }
	#headCont #gMenu .icon::after { top: 24px; }
	#headCont #gMenu.open .icon::before,
	#headCont #gMenu.open .icon::after { top: 24.5px; }
	#headCont #gMenuInner {
		padding-top: 50px;
	}
}

/* common footer */
:root {
	--pc-foot: 170px;
	--sp-foot: 64px;
}
#footCont {
	color: #fff;
	background: var(--c-blue);
}
#footCont .pageTopLink {
	position: absolute;
}
#footCont .pageTopLink a {
	height: 0;
	display: block;
	overflow: hidden;
	transform: rotate(-45deg);
	background: var(--c-d_blue);
}
#footCont .pageTopLink a::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
#footInner { position: relative; }
#stikyLink {
	right: 0;
	bottom: 0;
	width: 100vw;
	position: fixed;
	color: #fff;
	z-index: 9996;
}
#stikyLink ul { display: flex; }
#stikyLink li { width: 50%; }
#stikyLink a {
	display: block;
	transition-duration: .3s;
	transition-property: background-color;
}
#stikyLinkMypage a { background: #1e326e; }
#stikyLinkEntry a { background: #141e64; }
#stikyLink dt::after {
	content: "";
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}
@media screen and (min-width:769px), print{
	#wrapper:not(.noFootLink) #footCont { padding-bottom: var(--pc-foot); }
	#footInner {
		display: flex;
		margin: 0 auto;
		max-width: 950px;
		padding: 40px 0 60px;
		line-height: 28px;
		align-items: flex-end;
	}
	#footInner > * {
		width: 50%;
		box-sizing: border-box;
	}
	#footLogo img { height: 40px; }
	#footLogo span {
		display: block;
		font-size: 16px;
		margin-top: 30px;
	}
	#footInfo .text small {
		font-size: 12px;
	}
	#footLink {
		display: flex;
		margin-top: 16px;
		padding-left: 30px;
		padding-right: 40px;
		justify-content: space-between;
	}
	#footLink a:hover {
		text-decoration: underline;
	}
	#footCont .pageTopLink {
		top: -30px;
		right: 12px;
		width: 60px;
	}
	#footCont .pageTopLink a {
		padding-top: 60px;
		transition-duration: .3s;
		transition-property: background-color;
	}
	#footCont .pageTopLink a:hover {
		background: var(--c-l_blue);
	}
	#footCont .pageTopLink a::after {
		left: -5px;
		bottom: -5px;
		width: 10px;
		height: 10px;
	}
	#stikyLink a {
		display: flex;
		height: var(--pc-foot);
	}
	#stikyLinkMypage a { justify-content: flex-end; }
	#stikyLinkEntry a { justify-content: flex-start; }
	#stikyLinkMypage a:hover,
	#stikyLinkEntry a:hover { background: var(--c-l_blue); }
	#stikyLink dl {
		width: 400px;
		padding-top: 30px;
	}
	#stikyLinkMypage dl { padding-right: 100px; }
	#stikyLinkEntry dl { padding-left: 100px; }
	#stikyLink dt {
		font-size: 32px;
		margin-bottom: 5px;
		position: relative	;
	}
	#stikyLink dt::after {
		top: 14px;
		right: 4px;
		width: 19px;
		height: 19px;
		display: block;
		position: absolute;
	}
	#stikyLink dd {
		font-size: 14px;
		line-height: 24px;
		color: rgba(255,255,255,0.4);
	}
}
@media screen and (max-width:768px){
	#wrapper:not(.noFootLink) #footCont { padding-bottom: var(--sp-foot); }
	#footInfo {
		padding: 25px;
		line-height: 24px;
	}
	#footLogo {
		display: flex;
		align-items: flex-end;
		margin-bottom: 7px;
	}
	#footLogo img { height: 35px; }
	#footLogo span {
		font-size: 12px;
		line-height: 1;
		margin-left: 0.7em;
	}
	#footInfo .text {
		font-size: 14px;
		letter-spacing: 0.05em;
	}
	#footInfo small { font-size: 10px; }
	#footCont .pageTopLink {
		top: -17px;
		right: 24px;
	}
	#footCont .pageTopLink a {
		width: 35px;
		padding-top: 35px;
	}
	#footCont .pageTopLink a::after {
		top: 2px;
		right: 2px;
		width: 6px;
		height: 6px;
	}
	#stikyLink a {
		display: flex;
		height: var(--sp-foot);
		align-items: center;
		justify-content: center;
	}
	#stikyLink dt {
		font-size: 14px;
	}
	#stikyLink dt::after {
		width: 9px;
		height: 9px;
		margin-left: 7px;
		display: inline-block;
	}
}

/* 404 */
.page_404 { text-align: center; }
.page_404 .title { font-weight: 600; }
.page_404 .text { margin-top: 1em; }
@media screen and (min-width:769px), print{
	.page_404 .title { font-size: 40px; }
}
@media screen and (max-width:768px){
	.page_404 .title { font-size: 30px; }
}

/* contents共通 */
#content { font-size: 15px;}
#content .fs12 { font-size: 12px;}
#content .fs15 { font-size: 15px;}
#content .fs16 { font-size: 16px;}
@media screen and (max-width:768px){
	#content { font-size: 14px;}
	#content .fs12 { font-size: 12px;}
	#content .fs15 { font-size: 14px;}
	#content .fs16 { font-size: 14px;}
}

/* 動画モーダル */
#modalBack {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	position: fixed;
	cursor: pointer;
	display: none;
	background: rgba(0,0,0,0.5);
}
#modalWrap {
	top: 50%;
	left: 50%;
	z-index: 10001;
	position: fixed;
	display: none;
	max-width: calc(100vw - 100px);
	max-height: calc(100vh - 100px);
	transform: translate(-50%, -50%);
	aspect-ratio: 9 / 16;
}
#modalWrap iframe {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}
@media screen and (min-width:769px){
	#modalWrap {
		width: 432px;
		height: 768px;
	}
}
@media screen and (max-width:768px) and (max-aspect-ratio: 9/16){
	#modalWrap {
		width: calc(100vw - 100px);
	}
}
@media screen and (max-width:768px) and (min-aspect-ratio: 9/16){
	#modalWrap {
		height: calc(100vh - 100px);
	}
}