@charset "UTF-8";


.pc {
	display: none !important;
}

#menu-modal {
	display: none;
}





#common-header {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 80px;
	left: 0;
	top: 0;
	z-index: 10000;
}
#common-header::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid #e6e6e6;
}

#common-header .inner {
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	padding: 18px 16px 0;
}

#common-header .logo {
	position: relative;
	display: flex;
	align-items: center;
	width: 86px;
	height: 40px;
	z-index: 100;
}

#common-header .menu {
	position: absolute;
	box-sizing: border-box;
	overflow: auto;
	width: 100%;
	height: calc(100vh - 80px);
	height: calc(100dvh - 80px);
	left: 0;
	top: 80px;
	padding: 40px 44px 40px;
	background: #f4f4f4;
}

#common-header .menu ul {
}
#common-header .menu > ul:nth-child(1) > li + li {
	margin-top: 35px;
}
#common-header .menu > ul:nth-child(1) > li > a {
	position: relative;
	display: block;
	padding: 16px 40px 16px 0;
	border-bottom: 1px solid #e6e6e6;
}
#common-header .menu > ul:nth-child(1) > li strong {
	display: block;
	font-size: 25px;
	font-weight: 400;
	font-family: "Josefin Sans", sans-serif;
}
#common-header .menu > ul:nth-child(1) > li em {
	display: block;
	margin: 3px 0 0;
	font-size: 13px;
	font-weight: 500;
}


#common-header .menu > ul:nth-child(1) li {
	position: relative;
}
#common-header .menu > ul:nth-child(1) > li > a span {
	position: absolute;
	box-sizing: border-box;
	display: inline-block;
	width: 22px;
	height: 22px;
	right: 0;
	top: calc(50% - 11px);
	border: 1px solid #dc1010;
	border-radius: 11px;
	transition: all 300ms ease-out;
}
#common-header .menu > ul:nth-child(1) > li > a span::after {
	position: absolute;
	display: block;
	content: "";
	width: 12px;
	height: 10px;
	left: calc(50% - 6px);
	top: calc(50% - 5px);
	background: url(/img/arrow.svg) 50% 50% no-repeat;
	background-size: 12px auto;
	transition: all 150ms ease-out; 
}

#common-header .menu > ul:nth-child(1) > li > a:active span {
	background: #dc1010;
}
#common-header .menu > ul:nth-child(1) > li > a:active span::after {
	filter: brightness(0) invert(1);
}


#common-header .menu ul ul {
	margin: 15px 0 0;
}
#common-header .menu ul ul li::before {
	content: "- ";
}
#common-header .menu ul ul li + li {
	margin-top: 10px;
}
#common-header .menu ul ul li a {
	font-size: 14px;
	font-weight: 500;
}





/*
#common-header .menu ul:nth-child(1) a::after {
	position: absolute;
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	left: calc(50% - 20px);
	bottom: -12px;
	background: #dc1010;
	visibility: hidden;
}
*/

#common-header .menu > ul:nth-child(2) {
	max-width: 400px;
	margin: 40px auto 0;
}
#common-header .menu > ul:nth-child(2) li + li {
	margin-top: 16px;
}
#common-header .menu > ul:nth-child(2) li a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	font-size: 15px;
	font-weight: 500;
	border: 1px solid #dc1010;
	border-radius: 25px;
}
#common-header .menu .download a {
	color: #dc1010;
	background: #fff;
}
#common-header .menu .contact a {
	color: #fff;
	background: #dc1010;
}



#common-header .menu {
	visibility: hidden;
	transform: translateY(-100vh);
	transition: all 300ms ease-out;
}

body.opened-menu {
	overflow: hidden;
}
body.opened-menu #common-header .menu {
	visibility: visible;
	transform: translateY(0);
}



/*
body.business #common-header li.business a::after,
body.technology #common-header li.technology a::after,
body.company #common-header li.company a::after,
body.sustainability #common-header li.sustainability a::after,
body.recruit #common-header li.recruit a::after,
body.news #common-header li.news a::after
{
	visibility: visible;
}
*/





#menu-button {
	position: absolute;
	width: 80px;
	height: 80px;
	right: 0;
	top: 0;
	z-index: 100;
}
#menu-button button {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
}
#menu-button i {
	position: absolute;
	display: block;
	width: 26px;
	height: 1px;
	left: calc(50% - 13px);
	top: 50%;
	background: #000;
	transition: all 200ms ease-out;
}

#menu-button i:nth-child(1) {
	margin-top: -10px;
}
#menu-button i:nth-child(2) {
}
#menu-button i:nth-child(3) {
	margin-top: 10px;
}

body.opened-menu #menu-button i:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}
body.opened-menu #menu-button i:nth-child(2) {
	opacity: 0;
}
body.opened-menu #menu-button i:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}




body:not(.index) #common-header {
	position: absolute;
}
body:not(.index) #wrap {
	padding-top: 80px;
}

body.fix-menu #common-header {
	position: fixed;
	top: -80px;
	transition: transform 400ms ease-out;
}
body.fix-menu.show-menu #common-header {
	transform: translateY(80px);
}






#common-footer {
	position: relative;
	z-index: 10;
	padding: 80px 24px 24px;
	color: #fff;
	background: #000;
}
#common-footer a {
	color: #fff;
}
#common-footer .inner {
}



#common-footer #return-top {
	position: absolute;
	width: 28px;
	right: 15px;
	top: 15px;
	overflow: hidden;
}
#common-footer #return-top a {
	box-sizing: border-box;
	display: block;
	width: 28px;
	height: 28px;
	font-size: 0;
	border: 1px solid #fff;
	border-radius: 14px;
}
#common-footer #return-top a::before {
	position: absolute;
	content: "";
	display: block;
	width: 14px;
	height: 12px;
	left: calc(50% - 7px);
	top: calc(50% - 6px);
	z-index: 1;
	background: url(../img/arrow_top.svg) 50% 50% no-repeat;
	background-size: 12px auto;
}
#common-footer #return-top a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #fff;
	border-radius: 14px;
	transform: scale(0);
	transition: all 200ms ease;
}



#common-footer .menu {
	display: flex;
	flex-wrap: wrap;
}
#common-footer .box {
	width: calc(50% - 10px);
}
#common-footer .box:nth-child(2n) {
	margin-left: 20px;
}
#common-footer .box:nth-child(n + 3) {
	margin-top: 50px;
}

#common-footer .menu .parent strong {
	display: block;
	font-size: 19px;
	font-weight: 400;
	font-family: "Josefin Sans", sans-serif;
}
#common-footer .menu .parent span {
	display: block;
	margin-top: 3px;
	font-size: 12px;
	font-weight: 500;
}

#common-footer .menu .mailmagazine .parent {
	font-size: 16px;
	font-weight: 500;
}


#common-footer .menu .group + .group {
	margin-top: 40px;
}




#common-footer .menu ul {
	position: relative;
	margin: 20px 0 0;
}
#common-footer .menu li {
	padding-left: 0.75em;
	text-indent: -0.75em;
}
#common-footer .menu li::before {
	display: inline-block;
	content: "-";
	width: 0.75em;
	text-indent: 0;
}
#common-footer .menu li + li {
	margin-top: 6px;
}
#common-footer .menu li a {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.8;
}

#common-footer .menu li a .popup {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 3px;
	top: 2px;
	background: url(/img/icon_popup_white.svg) 0 0 no-repeat;
	background-size: 100% auto;
}




#common-footer .another-site {
	width: 100%;
	margin: 40px 0 -20px;
	padding-top: 10px;
	border-top: 1px solid #505050;
}
#common-footer .another-site ul {
}
#common-footer .another-site li {
	padding: 0 !important;
	text-indent: 0 !important;
}
#common-footer .another-site li::before {
	display: none !important;
}
#common-footer .another-site li + li {
	margin-top: 12px !important;
	margin-left: 0;
}
#common-footer .another-site a:hover {
	text-decoration: underline !important;
}
#common-footer .another-site a {
	font-size: 14px !important;
	font-weight: 500;
}
#common-footer .another-site a span {
	font-size: 14px;
	font-weight: 400;
	font-family: "Josefin Sans", sans-serif;
}
#common-footer .another-site a i {
	position: relative;
	display: inline-block;
	width: 15px;
	height: 15px;
	z-index: 10;
	top: 3px;
	margin-left: 2px;
	background: url(../img/icon_popup_white.svg) 50% 50% no-repeat;
	background-size: 100% auto;
}
#common-footer .another-site .gurilabo a i {
	margin-left: -3px;
}




#common-footer .extra {
	width: 100%;
	margin: 60px 0 0;
	padding: 60px 0 0;
	border-top: 1px solid #505050;
}


#common-footer .logo {
	width: 180px;
	margin: 0 auto;
}

#common-footer .extra .links {
	max-width: 400px;
	margin: 50px auto 0 ;
}

#common-footer .extra .links li + li {
	margin-top: 10px;
}
#common-footer .extra .links a {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	font-size: 15px;
	font-weight: 500;
	border: 1px solid #dc1010;
	border-radius: 25px;
}
#common-footer .extra .links .download a {
	color: #dc1010;
	background: #fff;
}
#common-footer .extra .links .contact a {
	color: #fff;
	background: #dc1010;
}

#common-footer .extra .links a {
	transition: all 300ms ease-out;
}
#common-footer .extra .links a:hover {
	opacity: 0.7;
	text-decoration: none;
}


#common-footer .extra .download i {
	position: absolute;
	display: inline-block;
	width: 15px;
	height: 15px;
	right: 16px;
	top: calc(50% - 7px);
	background: url(../img/icon_download.svg?2) 50% 50% no-repeat;
	background-size: 100% auto;
	transition: all 150ms ease-out;
	will-change: filter;
}
#common-footer .extra .contact i {
	position: absolute;
	display: inline-block;
	width: 6px;
	height: 12px;
	right: 20px;
	top: calc(50% - 6px);
	background: url(../img/arrow_mini_white.svg) 50% 50% no-repeat;
	background-size: 100% auto;
	transition: all 150ms ease-out;
	will-change: filter;
}







#common-footer .sns {
	margin: 50px 0 0;
}
#common-footer .sns ul {
	display: flex;
	justify-content: center;
}
#common-footer .sns li {
	width: 40px;
}
#common-footer .sns li + li {
	margin-left: 20px;
}


#common-footer .sub {
	margin: 50px 0 0;
	padding: 40px 0 0;
	border-top: 1px solid #505050;
}
#common-footer .sub ul {
}
#common-footer .sub li {
	position: relative;
}
#common-footer .sub li + li {
	margin-top: 10px;
}
#common-footer .sub a {
	font-size: 12px;
}



#common-footer .copyright {
	margin: 30px 0 0;
	font-size: 9px;
	line-height: 1.3;
}





a.button {
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	color: #dc1010;
	font-weight: 500;
	border: 1px solid #dc1010;
	border-radius: 25px;
	background: #fff;
	transition: all 300ms ease-out;
}
a.button:active {
	color: #fff;
	background: #dc1010;
}
a.button .popup {
	position: absolute;
	display: inline-block;
	width: 15px;
	height: 15px;
	right: 20px;
	top: calc(50% - 7px);
	background: url(../img/icon_popup.svg?2) 50% 50% no-repeat;
	background-size: 100% auto;
	transition: all 150ms ease-out;
	will-change: filter;
}
a.button:active .popup {
	filter: brightness(0) invert(1);
}

a.button .arrow-mini {
	position: absolute;
	display: inline-block;
	width: 6px;
	height: 12px;
	right: 20px;
	top: calc(50% - 6px);
	background: url(../img/arrow_mini.svg) 50% 50% no-repeat;
	background-size: 100% auto;
	transition: all 150ms ease-out;
	will-change: filter;
}
a.button:active .arrow-mini {
	filter: brightness(0) invert(1);
}

a.button .download {
	position: absolute;
	display: inline-block;
	width: 15px;
	height: 15px;
	right: 20px;
	top: calc(50% - 7px);
	background: url(../img/icon_download.svg?2) 50% 50% no-repeat;
	background-size: 100% auto;
	transition: all 150ms ease-out;
	will-change: filter;
}
a.button:active .download {
	filter: brightness(0) invert(1);
}

a.button .arrow-down {
	position: absolute;
	display: inline-block;
	width: 15px;
	height: 15px;
	right: 20px;
	top: calc(50% - 7px);
	background: url(../img/arrow_down.svg) 50% 50% no-repeat;
	background-size: 100% auto;
	transition: all 150ms ease-out;
	will-change: filter;
}
a.button:active .arrow-down {
	filter: brightness(0) invert(1);
}






a.button-bg {
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	color: #fff;
	font-weight: 500;
	border-radius: 25px;
	background: #dc1010;
	transition: all 300ms ease-out;
}
a.button-bg:active {
	color: #dc1010;
	background: #fff;
}
a.button-bg .arrow-mini {
	position: absolute;
	display: inline-block;
	width: 6px;
	height: 12px;
	right: 20px;
	top: calc(50% - 6px);
	background: url(../img/arrow_mini.svg) 50% 50% no-repeat;
	background-size: 100% auto;
	transition: all 150ms ease-out;
	will-change: filter;
	filter: brightness(0) invert(1);
}
a.button-bg:active .arrow-mini {
	filter: brightness(1) invert(0);
}



a.button-bg-white {
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	color: #dc1010;
	font-weight: 500;
	border-radius: 25px;
	background: #fff;
	transition: all 300ms ease-out;
}
a.button-bg-white .arrow-mini {
	position: absolute;
	display: inline-block;
	width: 6px;
	height: 12px;
	right: 20px;
	top: calc(50% - 6px);
	background: url(../img/arrow_mini.svg) 50% 50% no-repeat;
	background-size: 100% auto;
	transition: all 150ms ease-out;
	will-change: filter;
	filter: brightness(1) invert(0);
}
/*
a.button-bg-white:active {
	color: #dc1010;
	background: #fff;
}
a.button-bg-white:active .arrow-mini {
	filter: brightness(1) invert(0);
}
*/





main {
	position: relative;
	z-index: 100;
}

/*
body.content {
	padding-top: 112px;
}
*/






#content-links {
	position: relative;
	padding: 60px 24px;
	background: #fff;
	border-top: 1px solid #e6e6e6;
}
#content-links .inner {
}
#content-links ul {
	max-width: 400px;
	margin: 0 auto;
}
#content-links li {
}
#content-links li + li {
	margin-top: 30px;
}
#content-links .thumb {
	overflow: hidden;
	border: 1px solid #e6e6e6;
	border-radius: 7px;
	transition: all 300ms ease-out;
}
#content-links dl {
	margin: 14px 0 0;
}
#content-links dt {
	display: inline-block;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: underline;
}
#content-links dd {
	margin: 5px 0 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	color: #909090;
}











#topics-links {
	position: relative;
	padding: 60px 24px;
	background: #fff;
	border-top: 1px solid #e6e6e6;
}
#topics-links .inner {
}

#topics-links .title {
	margin: 0 0 35px;
	font-size: 25px;
	font-family: "Josefin Sans", sans-serif;
}

#topics-links ul {
	display: flex;
	flex-wrap: wrap;
}
#topics-links li {
	width: calc(50% - 7px);
}
#topics-links li:nth-child(2n) {
	margin-left: 14px;
}
#topics-links li:nth-child(n + 3) {
	margin-top: 25px;
}

#topics-links li a {
	display: block;
}
#topics-links .thumb {
	overflow: hidden;
	border: 1px solid #e6e6e6;
	border-radius: 7px;
	transition: all 300ms ease-out;
}
#topics-links .text {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;

	overflow: hidden;
	
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}












#library-links {
	position: relative;
	padding: 60px 24px;
	background: #f4f4f4;
	border-top: 1px solid #e6e6e6;
}
#library-links .inner {
}

#library-links .title {
	margin: 0 0 40px;
	font-size: 27px;
	font-family: "Josefin Sans", sans-serif;
}

#library-links ul {
}
#library-links li + li {
	margin-top: 35px;
	padding-top: 35px;
	border-top: 1px solid #e6e6e6;
}
#library-links li a {
	display: block;
}
#library-links .thumb {
	position: relative;
	overflow: hidden;
	max-width: 400px;
	border: 1px solid #e6e6e6;
	border-radius: 7px;
	transition: all 300ms ease-out;
}
#library-links .text {
	margin: 15px 0 0;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.6;

	overflow: hidden;
	
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
#library-links a .play {
	position: absolute;
	width: 50px;
	height: 50px;
	left: calc(50% - 25px);
	top: calc(50% - 25px);
	background: #dc1010 url(/img/icon_play.svg) 58% 50% no-repeat;
	background-size: 16px auto;
	border-radius: 25px;
}

#library-links nav {
	margin-top: 35px;
	padding-top: 35px;
	border-top: 1px solid #e6e6e6;
}












.other-site {
	position: relative;
	padding: 50px 0;
}
.other-site .inner {
}

#other-site1 {
	background: #f4f4f4;
	border-top: 1px solid #e6e6e6;
}
#other-site2 {
	background: #fcfcfc;
}
#other-site-sp {
	background: #fcfcfc;
}
#other-site-sp + #other-site2 {
	background: #f4f4f4;
	border-top: 1px solid #e6e6e6;
}
#other-site-sp + #other-site2 + #other-site1 {
	background: #fcfcfc;
}

.other-site h2 {
	position: relative;
	font-size: 22px;
	font-family: "Josefin Sans", sans-serif;
	color: #dc1010;
	text-align: center;
}

#other-site2 .box:nth-child(3) h2 {
}
#other-site2 .box:nth-child(3) ul {
	margin: 0;
}


.other-site .inner {
}

.other-site .inner .box {
	padding: 0 24px;
}
.other-site .inner .box + .box {
	margin-top: 45px;
	padding-top: 45px;
	border-top: 1px solid #e6e6e6;
}

.other-site .inner ul {
	max-width: 400px;
	margin: 35px auto 0;
}
.other-site .inner li + li {
	margin-top: 15px;
}


#other-site1 .inner li a {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#other-site1 .thumb {
	width: calc(50% - 7px);
	overflow: hidden;
	border: 1px solid #e6e6e6;
	border-radius: 7px;
}
#other-site1 dl {
	width: calc(50% - 7px);
}


#other-site2 .inner li a {
}
#other-site2 .inner li + li {
	margin-top: 30px;
}

#other-site2 .thumb {
	overflow: hidden;
	border: 1px solid #e6e6e6;
	border-radius: 7px;
}
#other-site2 .thumb img {
	aspect-ratio: 326 / 124;
	object-fit: cover;
}
#other-site2 dl {
	margin: 15px 0 0;
}
#other-site-sp dl {
	margin: 15px 0 0;
}



.other-site dt {
	display: inline;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: underline;
}
.other-site dd {
	margin: 6px 0 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
}














.main-title {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 105vw;
	padding: 50px 0;
	text-align: center;
	border-bottom: 1px solid #e6e6e6;
}
.main-title h1 {
	margin: 0 24px;
	word-break: break-all;
	font-size: 40px;
	font-family: "Josefin Sans", sans-serif;
}
.main-title .lead {
	max-width: 480px;
	margin: 15px auto 0;
	font-size: 18px;
	font-weight: 500;
}
.main-title .caption {
	box-sizing: border-box;
	margin: 40px 0 0;
	padding: 0 24px;
	text-align: left;
}
.main-title .caption p {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}
.main-title .caption p br {
	display: none;
}



@media screen and (orientation:landscape) {
	.main-title .caption {
		max-width: calc(480px + 48px);
		text-align: center;
	}
}




.compact-title {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	min-height: 90px;
	border-bottom: 1px solid #e6e6e6;
}
.compact-title .inner {
	padding: 0 24px;
}
.compact-title .inner h1 {
	font-size: 24px;
	font-weight: 500;
}
.compact-title .inner h1 em {
	margin-left: 10px;
	font-size: 14px;
}


.compact-title.wide {
	height: 136px;
}
.compact-title.wide .inner h1 {
	line-height: 1.4;
}



@media screen and (orientation:landscape) {
	.main-title {
		min-height: calc(100vh - 80px);
	}
	.main-title .caption {
		margin-top: 30px;
	}
}





#path-info {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	min-height: 50px;
	padding: 0 24px;
	background: #f4f4f4;
	border-bottom: 1px solid #e6e6e6;
}
#path-info * {
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}
#path-info * + *::before {
	content: "〉";
	margin-left: 10px;
	color: #909090;
}
#path-info span {
	color: #909090;
	overflow: hidden;
	
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	white-space: normal;
}
#path-info em {
	margin-left: 6px;
	font-size: 11px;
}




#third-layout {
}
#sidemenu {
	display: none;
}
#primary {
}
#primary .container {
}












.simple-column {
	padding: 40px 0 60px;
}
.simple-column .inner {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.simple-column h2 {
	margin: 0 0 -10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.simple-column * + h2 {
	margin-top: 50px;
}

.simple-column * + p,
.simple-column * + dl,
.simple-column * + ul {
	margin-top: 30px;
}

.simple-column p {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}
.simple-column p + p {
	margin-top: 15px;
}

.simple-column dt,
.simple-column dd {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}
.simple-column dt {
	margin-bottom: 8px;
	font-weight: 700;
}
.simple-column dd + dd {
	margin-top: 15px;
}
.simple-column span.note {
	font-size: 14px;
}

.simple-column a {
	text-decoration: underline;
}
.simple-column a:hover {
	text-decoration: none;
}


.simple-column ul.marker {
	margin: 10px 0 0;
}
.simple-column ul.marker li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.9;
}
.simple-column ul.marker li::before {
	content: "・";
	text-indent: 0;
}



.simple-column ol.marker {
	margin: 10px 0 0 0.4em;
	counter-reset: order;
}
.simple-column ol.marker > li {
	padding-left: 1.0em;
	text-indent: -1.0em;
	line-height: 1.9;
	counter-increment: order;
}
.simple-column ol.marker > li + li {
	margin-top: 10px;
}
.simple-column ol.marker > li::before {
	box-sizing: border-box;
	display: inline-block;
	content: counter(order) ".";
	width: 1.0em;
	text-indent: 0;
}

.simple-column ol.marker.indent {
	margin-left: 0.5em;
}
.simple-column ol.marker.indent > li {
	padding-left: 1.6em;
	text-indent: -1.6em;
}
.simple-column ol.marker.indent > li::before {
	box-sizing: border-box;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	content: counter(order);
	width: 1.3em;
	height: 1.3em;
	top: -1px;
	margin-right: 0.3em;
	padding: 0 0 2px 1px;
	font-size: 14px;
	text-indent: 0;
	line-height: 1;
	border: 1px solid #000;
	border-radius: 0.65em;
}
.simple-column ol.marker .child {
	margin: 5px 0 0;
	text-indent: 0;
	font-size: 14px;
	line-height: 1.7;
}
.simple-column ol.marker .child + .child {
	margin-top: 10px;
}
.simple-column ol.marker .child a {
	word-break: break-all;
}

.simple-column ol.marker .extra {
	margin-top: 1em;
	text-indent: 0;
	line-height: 1.7;
}

.simple-column ol.marker ul.marker {
	margin-top: 0;
}

.simple-column ol.marker .subtitle {
	text-indent: 0;
	font-size: 15px;
	line-height: 1.9;
}
.simple-column ol.marker * + .subtitle {
	margin-top: 10px;
}

.simple-column .quote {
	margin: 15px 0 20px;
	padding: 10px 15px;
	font-size: 14px;
	line-height: 1.9;
	color: #666;
	border: 1px solid #eee;
}
.simple-column .quote .head {
	line-height: 1.9;
	text-align: center;
}

.simple-column .source {
	margin: 15px 0 0;
	font-size: 13px;
	line-height: 1.9;
	text-indent: 0;
	word-break: break-all;
}


.simple-column .address {
	margin: 15px 0;
	padding: 10px 15px;
	font-size: 13px;
	line-height: 1.9;
	border: 1px solid #999;
}
.simple-column .address strong {
	display: block;
	margin: 0 0 5px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.9;
	text-align: center;
}




/* ---------------------------------------------------------------------------------------------------- */
/* FORM */


#form-section {
	box-sizing: border-box;
	position: relative;
	padding: 40px 24px;
	background: #f4f4f4;
}
#form-section .inner {
}

#form-section .form-container {
}

.form-caption {
	margin: -10px 0 30px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.9;
}



body.form #path-info > *:nth-child(n + 3) {
	display: none;
}

body.form .compact-title .inner h1 {
	font-size: 20px;
	line-height: 1.5;
}






#form-group {
	/*
	padding: 50px 0 0;
	*/
	background: #f4f4f4;
}
body.download #form-group {
	padding: 40px 0 0;
	background: #fff;
}

#form-group .inner {
}

#form-group .notice {
	padding: 30px 24px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	background: #fff;
}
#form-group .notice br {
	display: none;
}

#form-group h2 {
	margin-left: 15px;
	margin-right: 15px;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
}
#form-group * + h2 {
	/*
	margin-top: 10px;
	*/
	padding-top: 50px;
	border-top: 1px solid #e6e6e6;
}
#form-group .form-list + h2 {
	margin-top: 10px;
}


#form-group .lead {
	margin: 30px 24px 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}



#form-group .form-list {
	margin: 40px 24px 0;
	padding: 0 0 50px;
}

#form-group .form-list ul {
}
#form-group .form-list li {
}
#form-group .form-list li:nth-child(2n) {
}
#form-group .form-list li:nth-child(n + 2) {
	margin-top: 20px;
}

#form-group .form-list li a {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 90px;
	text-align: center;
	color: #dc1010;
	font-size: 16px;
	font-weight: 500;
	border: 1px solid #dc1010;
	border-radius: 45px;
	background: #fff;
	overflow: hidden;
	will-change: transform;
}
#form-group .form-list li a em {
	position: relative;
	z-index: 10;
	line-height: 1.5;
}
#form-group .form-list li a span {
	display: block;
	margin: 6px 0 0;
	font-size: 13px;
}
#form-group .form-list li a::after {
	position: absolute;
	content: "";
	display: block;
	width: 102%;
	height: 100%;
	left: -1%;
	top: 0;
	z-index: 1;
	background: #dc1010;
	transform: scaleX(0);
	transform-origin: left center;
	transition: all 400ms ease;
}
#form-group .form-list li a:active {
	color: #fff;
}
#form-group .form-list li a:active::after {
	transform: scaleX(1);
}

#form-group a.button-bg em {
	position: relative;
	z-index: 10;
	text-align: center;
	line-height: 1.5;
}



#form-group .cc-list + h2 {
	border-top: none;
}


#form-group .cc-list {
	margin: 40px 24px 0;
	padding: 30px 20px;
	background: #fff;
}

#form-group .cc-list > dl {
}
#form-group .cc-list > dl dt {
	text-align: center;
}
#form-group .cc-list > dl dt strong {
	display: none;
}
#form-group .cc-list > dl dt span {
	font-size: 20px;
	font-weight: 500;
}

#form-group .cc-list > dl dd {
	margin: 20px 0 0;
	line-height: 1.6;
}
#form-group .cc-list > dl dd strong {
	font-size: 15px;
	font-weight: 500;
	color: #dc1010;
}
#form-group .cc-list > dl dd span {
	margin-left: 12px;
	font-size: 15px;
	font-weight: 500;
}


#form-group .cc-list .box {
	box-sizing: border-box;
	margin: 40px 0 0;
}
#form-group .cc-list .box dl {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#form-group .cc-list .box dl + dl {
	margin-top: 30px;
}
#form-group .cc-list .box dt {
	display: flex;
	padding: 10px 12px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	background: #dc1010;
}
#form-group .cc-list .box dd {
	display: flex;
	margin: 15px 0 0;
	font-size: 16px;
	font-weight: 500;
}
#form-group .cc-list .box p {
	width: 100%;
	margin: 40px 0 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.7;
}

#form-group .cc-list .box .logo {
	width: 100px;
	margin: 30px auto 0;
}












#form-group .link {
	padding: 50px 24px;
	background: #fff;
	border-top: 1px solid #e6e6e6;
}
#form-group .link h3 {
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
}
#form-group .link nav {
	width: 100%;
	margin: 30px auto 0;
}
#form-group .link nav a {
	height: 70px;
	border-radius: 35px;
	border: 1px solid #dc1010;
}



#form-group .download-list {
	margin: 30px 0 0;
	padding: 30px 24px 20px;
	background: #f4f4f4;
	border-top: 1px solid #e6e6e6;
}
.download-list .filter {
	margin: 0 0 30px;
}
.download-list .filter dl {
	padding: 0 0 20px;
	border-bottom: 1px solid #e6e6e6;
}
.download-list .filter dt {
	font-size: 14px;
	font-weight: 500;
}
.download-list .filter dd {
	display: flex;
	flex-wrap: wrap;
	margin: 25px 0 0;
}
.download-list .filter a {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 32px;
	margin: 0 8px 8px 0;
	padding: 0 14px;
	font-size: 14px;
	font-weight: 500;
	color: #dc1010;
	border: 1px solid #dc1010;
	border-radius: 16px;
	background: #fff;
	overflow: hidden;
	will-change: transform;
}
.download-list .filter a em {
	position: relative;
	z-index: 10;
}
.download-list .filter a::after {
	position: absolute;
	content: "";
	display: block;
	width: 102%;
	height: 100%;
	left: -1%;
	top: 0;
	z-index: 1;
	background: #dc1010;
	transform: scaleX(0);
	transform-origin: left center;
	transition: all 400ms ease;
}
.download-list .filter a:active,
.download-list .filter a.active {
	color: #fff;
}
.download-list .filter a:active::after,
.download-list .filter a.active::after {
	transform: scaleX(1);
}


.download-list h3 {
	width: 100%;
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}
.download-list * + h3 {
	margin-top: 40px;
}
.download-list .filter + h3 {
	margin-top: 40px;
}


.download-list .extra {
	width: 100%;
	margin: -10px 0 30px;
	text-align: center;
}
.download-list .extra a {
	width: 240px;
	height: 40px;
	margin: 0 auto;
	font-size: 14px;
}


.download-list .list {
}
.download-list .list-item {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	margin-bottom: 50px;
}
.download-list h3 + .list-item {
	margin-top: 20px;
}
.download-list .list-item + .list-item {
}
.download-list .thumb {
	border: 1px solid #e6e6e6;
	border-radius: 7px;
	overflow: hidden;
}
.download-list .list-item dl {
	margin: 12px 0 0;
}
.download-list .list-item dt {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}
.download-list .list-item dt + dd {
	margin: 12px 0 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
	color: #777;
}
.download-list .list-item dd + dd {
	margin: 12px 0 0;
}


.download-list .list-item.hidden {
	display: none;
}

.download-list.filtered h3,
.download-list.filtered .extra {
	display: none;
}





/* ---------------------------------------------------------------------------------------------------- */
/* WP FORM */

body.contact-form #path-info > *:nth-child(n + 3) {
	display: none;
}

body.contact-form .compact-title .inner h1 {
	font-size: 20px;
	line-height: 1.5;
}



#wp-form {
}
#wp-form .inner  {
}
#wp-form .form-container {
	padding: 40px 24px;
	background: #f4f4f4;
}


#wp-form .form-notice {
	margin: 0 0 50px;
}
#wp-form .form-notice  p {
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
}
#wp-form .form-notice a {
	color: #dc1010;
	text-decoration: underline;
}
#wp-form .form-notice a:hover {
	text-decoration: none;
}


#wp-form .form-header {
	margin: 20px;
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
}
#wp-form .form-header p {
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
}
#wp-form .form-header dl {
	display: block;
}
#wp-form .form-header dt {
	font-size: 14px;
	font-weight: 500;
}
#wp-form .form-header dd {
	margin: 4px 0 0;
	font-size: 14px;
	font-weight: 500;
}

#wp-form .form-header a {
	color: #dc1010;
	text-decoration: underline;
}
#wp-form .form-header a:hover {
	text-decoration: none;
}





#wp-form dl {
	width: 100%;
}
#wp-form dl + dl {
	margin-top: 30px;
}
#wp-form dt {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}
#wp-form dd {
	margin: 10px 0 0;
	line-height: 1.5;
}

#wp-form dt .required {
	font-size: 0;
}
#wp-form dt .required::after {
	position: relative;
	display: inline-block;
	content: "*";
	margin-left: 4px;
	top: -2px;
	font-size: 14px;
	font-weight: 500;
	color: #dc1010;
}

#wp-form dt .note {
	display: block;
	margin: 6px 0 0;
	font-size: 13px;
}


#wp-form .submit {
	margin: 40px 0 0;
	text-align: center;
}

#wp-form input[type="text"],
#wp-form input[type="email"],
#wp-form textarea {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 8px;
	font-size: 16px;
	font-weight: 500;
	border: 1px solid #ccc;
}

#wp-form input[type="submit"] {
	box-sizing: border-box;
	min-width: 150px;
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	border: 1px solid #dc1010;
	border-radius: 30px;
	background: #dc1010;
	cursor: pointer;
	transition: opacity 300ms ease-out;
}
#wp-form input[type="submit"]:hover {
	opacity: 0.8;
}

#wp-form select {
	min-height: 30px;
	font-size: 16px;
}



#wp-form span.wpcf7-not-valid-tip {
	display: inline-block;
	margin: 12px 0 0;
	font-size: 13px;
	font-weight: 500;
	color: #dc1010;
}

#wp-form .wpcf7-validation-errors {
	display: none;
}


#wp-form span.radio .wpcf7-list-item {
	display: block;
	margin: 0 0 0 15px;
	padding: 0;
}
#wp-form span.radio .wpcf7-list-item + .wpcf7-list-item {
	margin-top: 10px;
}
#wp-form span.radio .wpcf7-list-item-label {
	font-size: 13px;
	font-weight: 500;
}
#wp-form span.radio .wpcf7-list-item input {
	width: 15px;
	height: 15px;
	margin: 0;
}


#wp-form .form-note {
	margin: 20px 0 0;
}
#wp-form .form-note dd {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.8;
}


#wp-form .form-agree {
	margin: 40px 0 0;
}
#wp-form .form-agree .policy {
	border: 1px solid #e6e6e6;
	background: #fff;
}
#wp-form .form-agree .policy-inner {
	padding: 15px 20px;
}
#wp-form .form-agree .policy-inner,
#wp-form .form-agree .policy-inner p {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.6;
}
#wp-form .form-agree .policy-inner p + p {
	margin-top: 15px;
}

#wp-form .form-agree .policy-inner strong {
	display: inline-block;
	margin: 0 0 10px;
}


#wp-form .form-agree > p {
	margin: 15px 0 0;
}
#wp-form .form-agree > p a {
	font-size: 14px;
	font-weight: 500;
	color: #dc1010;
	text-decoration: underline;
}
#wp-form .form-agree > p a:active {
	text-decoration: none;
}

#wp-form .accept-box {
	margin: 40px 0 30px;
	text-align: center;
}
#wp-form .accept-box .wpcf7-list-item {
	display: block;
	margin: 0;
	padding: 0;
	text-align: center;
}
#wp-form .accept-box .wpcf7-list-item-label {
	font-size: 15px;
	font-weight: 500;
}
#wp-form .accept-box .wpcf7-list-item input {
	position: relative;
	width: 18px;
	height: 18px;
	margin: 0 2px 0 -8px;
	top: 2px;
}

#wp-form input[type="file"] {
	width: 100%;
	font-size: 14px;
	font-weight: 500;
}
#wp-form ::file-selector-button,
#wp-form ::-webkit-file-upload-button {
	margin-right: 0.75em;
	padding: 6px 0.75em;
	font-size: 14px;
	font-weight: 500;
	font-family: "Zen Kaku Gothic New", sans-serif;
	border: 1px solid #ccc;
	color: #000;
	background-color: #fff;
	cursor: pointer;
}




#form-thanks {
	padding: 50px 0;
	background: #fff;
}
#form-thanks .inner {
	padding: 0 20px;
}
#form-thanks h2 {
	margin: 0 0 30px;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}
#form-thanks p {
	line-height: 2;
	font-size: 15px;
	font-weight: 500;
}
#form-thanks nav {
	width: 240px;
	margin: 50px auto 0;
}
#form-thanks nav a {
}

div.wpcf7-response-output {
	border: none !important;
}









/* ---------------------------------------------------------------------------------------------------- */
/* Library */

#library-entries {
	position: relative;
	padding: 40px 24px 60px;
	background: #f4f4f4;
}
#library-entries .inner {
}

#library-entries ul {
}
#library-entries li + li {
	margin-top: 35px;
	padding-top: 35px;
	border-top: 1px solid #e6e6e6;
}
#library-entries li a {
	display: block;
}
#library-entries .thumb {
	position: relative;
	overflow: hidden;
	max-width: 400px;
	border: 1px solid #e6e6e6;
	border-radius: 7px;
	transition: all 300ms ease-out;
	will-change: transform;
}
#library-entries .text {
	margin: 15px 0 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;

	overflow: hidden;
	
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
#library-entries a .play {
	position: absolute;
	width: 50px;
	height: 50px;
	left: calc(50% - 25px);
	top: calc(50% - 25px);
	background: #dc1010 url(/img/icon_play.svg) 58% 50% no-repeat;
	background-size: 16px auto;
	border-radius: 25px;
}






#video-overlay {
	position: fixed;
	width: 100%;
	height: 100vh;
	height: 100lvh;
	left: 0;
	top: 0;
	z-index: 10000;
	background: rgba(0,0,0,0.8);
}
#video-player {
	position: fixed;
	width: 100vw;
	height: 56.25vw;
	left: 0;
	top: 50%;
	z-index: 10010;
	transform: translate(0%, -50%);
}
#video-player iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
#video-close-button {
	position: fixed;
	width: 40px;
	height: 40px;
	right: 10px;
	top: calc(50% - 28.125vw - 50px);
	z-index: 10000;
}
#video-close-button::before,
#video-close-button::after {
	position: absolute;
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	left: 5px;
	top: calc(50% - 1px);
	background: #fff;
}
#video-close-button::before {
	transform: rotate(45deg);
}
#video-close-button::after {
	transform: rotate(-45deg);
}


#video-overlay,
#video-player,
#video-close-button {
	opacity: 0;
	transition: all 400ms ease-out;
}
body.video-player #video-overlay,
body.video-player #video-player,
body.video-player #video-close-button {
	opacity: 1;
}







.form-inner-link {
	padding: 10px 20px 40px;
	background: #fff;
}
.form-inner-link ul {
}
.form-inner-link li {
}
.form-inner-link li:nth-child(n + 2) {
	margin-top: 30px;
}

.form-inner-link dl {
	padding-left: 24px;
}
.form-inner-link dt {
	position: relative;
	display: inline-block;
	font-size: 17px;
	font-weight: 500;
}
.form-inner-link dd {
	margin: 8px 0 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.8;
}

.form-inner-link a dt::before {
	box-sizing: border-box;
	position: absolute;
	display: inline-block;
	content: "";
	width: 18px;
	height: 18px;
	left: -24px;
	top: 1px;
	z-index: 10;
	transform: rotate(90deg);
	background: url(../img/arrow_mini.svg) 55% 50% no-repeat;
	background-size: 4px auto;
	border: 1px solid #dc1010;
	border-radius: 10px;
}







.password-form {
	margin: 100px 30px 0;
}
.password-form p {
	margin-bottom: 30px;
	font-weight: 700;
	line-height: 1.8;
}
.password-form input {
	font-family: sans-serif;
}







