@charset "utf-8";

.sp {
	display: none;
}

.pc {
	display: block;
}

/* ---------------------------------------------
　font / icon
------------------------------------------------ */

@font-face {
	font-family: "あおぞら明朝 Bold";
	src: local("あおぞら明朝 Bold"), url("../fonts/AozoraMincho-bold.ttf") format("truetype"), local("IPA P明朝");
}

@font-face {
	font-family: "あおぞら明朝 Medium";
	src: local("あおぞら明朝 Medium"), url("../fonts/AozoraMinchoMedium.ttf") format("truetype"), local("IPA P明朝");
}

@font-face {
	font-family: "あおぞら明朝 Regular";
	src: local("あおぞら明朝 Regular"), url("../fonts/AozoraMinchoRegular.ttf") format("truetype"), local("IPA P明朝");
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}

/* ---------------------------------------------
　base modules
------------------------------------------------ */

.body {
	clear: both;
	/*overflow-x: hidden;*/
	overflow: clip;/* sticky用 */
}

.wrap {
	clear: both;
}



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

.header {
	width: 100%;
	height: 105px;
	margin: 0 auto;
	background: #fff;
	position: fixed;
	z-index: 100;
}

.header > .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.header .logo {
	margin: 0 0 25px;
}

.header-contents {
	display: flex;
	height: 100%;
}

.header-contents__inner {
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	width: calc(100% - 120px);
}

.header .readspeaker {
	display: inline-block;
	margin-left: 15px;
}

.header .readspeaker .rsbtn {
	margin: 0;
}

.header .readspeaker .rs_addtools .rsbtn_toolpanel.vertical,
.header .readspeaker .rsbtn .rsbtn_toolpanel.vertical {
	position: absolute !important;
}

.header .global-navigation {
	margin: 0 auto;
	display: flex;
	width: 100%;
}

.global-navigation__item:hover {
	transition: var(--transition);
	cursor: pointer;
}

.global-navigation__item > a,
.global-navigation__item > span {
	padding: 20px 10px;
	display: block;
	color: var(--color-base2);
	font-size: var(--px16);
	font-weight: bold;
	line-height: 1;
	position: relative;
}

.global-navigation__item > a::after,
.global-navigation__item > span::after {
	content: "";
	display: block;
	visibility: visible;
	width: calc(100% - 20px);
	height: 1px;
	background-color: var(--color-base);
	position: absolute;
	bottom: 13px;
	left: 10px;
	transition: var(--transition);
	opacity: 0;
}

.global-navigation__item > a:hover::after,
.global-navigation__item > span:hover::after
/*,.global-navigation__item.stay > a::after*/ {
	opacity: 1;
}

/*
.global-navigation:before,
.global-navigation:after {
	content: "";
	display: table;
}

.global-navigation:after {
	clear: both;
}
*/

.global-navigation * {
	zoom: 1;
}

.global-navigation__item__inner {
	padding: 0;
	width: auto !important;
	min-width: 900px;
	height: auto;
	background-color: #fff;
	border-radius: 20px;
	color: #fff;
	opacity: 0;
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	overflow: hidden;
	z-index: -1;
	transition: var(--transition);
	visibility: hidden;
}

#header.login {
	top: 99px;
}

/*
#header.login .global-navigation__item__inner {
	top: 223px;
}*/

.global-navigation__item:hover .global-navigation__item__inner {
	padding: 0;
	height: auto;
	top: 105px;
	bottom: unset;
	visibility: visible;
	opacity: 1;
}

.global-navigation__item__inner .link-first {
	width: 100%;
	height: 142px;
}

@media screen and (max-height: 760px) {
	.global-navigation__item__inner .link-first {
		height: 110px;
	}
}
@media screen and (max-height: 690px) {
	.global-navigation__item__inner .link-first {
		height: 90px;
	}
}
@media screen and (max-height: 630px) {
	.global-navigation__item__inner {
    overflow-y: scroll;
    max-height: calc(100vh - 105px);
	}
}

.global-navigation__item__inner .link-first a {
	padding: 20px 55px;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: var(--color-base2);
	color: #fff;
	font-size: var(--px20);
	font-weight: bold;
	text-decoration: none;
	position: relative;
	z-index: 2;
}

.global-navigation__item__inner .link-first a::before {
	content: "";
	display: inline-block;
	background-image: url(../images/bg_header_nav.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: var(--transition);
}

.global-navigation__item__inner .link-first.--product a::before {
	background-image: url(../images/bg_header_nav_product.jpg);
}
.global-navigation__item__inner .link-first.--company a::before {
	background-image: url(../images/bg_header_nav_company.jpg);
}

.global-navigation__item__inner .link-first a::after {
	content: "";
	margin-left: 10px;
	display: block;
	width: 12px;
	height: 12px;
	background-image: url(../images/icon/icon_arrow_white.png);
	background-size: contain;
	background-repeat: no-repeat;
	visibility: visible;
}

.global-navigation__item__inner .link-first a:hover:before {
	opacity: 0.7;
}

.global-navigation__item__inner .nav-inner {
	padding: 0 45px 25px;
}

.global-navigation__item__inner .nav-inner.--type2 {
	display: flex;
	align-items: flex-start;
}

.global-navigation__item__inner .link-list {
	margin-top: 15px;
	display: grid;
	grid-template-columns: repeat(2,1fr);
}

.global-navigation__item__inner .link-list.--grid3 {
	grid-template-columns: repeat(3,1fr);
}
.global-navigation__item__inner .link-list.--grid-about {
	grid-template-columns: repeat(1,180px 1fr 1fr);
}
.global-navigation__item__inner .link-list.--grid4 {
	grid-template-columns: repeat(4,1fr);
}

.global-navigation__item__inner .link-list li {
	text-align: left;
}

.global-navigation__item__inner .link-list li a {
	padding: 12px 0;
	display: flex;
	align-items: flex-start;
	color: var(--color-base2);
	font-size: var(--px16);
	font-feature-settings: "palt";
	line-height: 1.5;
	position: relative;
}

.global-navigation__item__inner .link-list li a::before {
	content: "";
	margin-top: 5px;
	margin-right: 10px;
	display: block;
	width: 12px;
	height: 12px;
	background-image: url(../images/icon/icon_arrow_blue.png);
	background-size: contain;
	background-repeat: no-repeat;
	visibility: visible;
}

.global-navigation__item__inner .link-list li a:hover {
	color: var(--color-base);
}

.global-navigation__item__inner .link-list li a.--win::after {
	content: "";
	margin: 4px 0 0 4px;
	display: block;
	width: 13px;
	height: 13px;
	background-image: url(../images/icon/icon_win_blue.png);
	background-size: contain;
	background-repeat: no-repeat;
	visibility: visible;
}

.global-navigation__item__inner .link-second {
	display: block;
}

.global-navigation__item__inner .link-second a {
	margin-top: 10px;
	padding: 14px 0;
	display: flex;
	align-items: flex-start;
	width: 100%;
	border-bottom: 1px solid #dce6f3;
	color: var(--color-base);
	font-size: var(--px20);
	font-weight: bold;
}

.global-navigation__item__inner .link-second a::after {
	content: "";
	margin-top: 10px;
	margin-left: 15px;
	display: block;
	width: 12px;
	height: 12px;
	background-image: url(../images/icon/icon_arrow_blue.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.global-navigation__item__inner .link-second a:hover {
	border-color: var(--color-base);
}

.global-navigation__item__inner .link-box {
	margin-top: 30px;
	padding-left: 20px;
	padding-left: 15px;
}

.global-navigation__item__inner .link-box__title {
	display: flex;
	align-items: flex-start;
	color: var(--color-text);
	line-height: 1;
	text-align: left;
	position: relative;
}

.global-navigation__item__inner .link-box__title::before {
	content: "";
	margin-top: 2px;
	margin-right: 10px;
	display: block;
	width: 12px;
	height: 12px;
	background-image: url(../images/icon/icon_arrow_blue.png);
	background-size: contain;
	background-repeat: no-repeat;
	visibility: visible;
}

.global-navigation__item__inner .link-box ul {
	margin-top: 8px;
	padding-left: 20px;
	text-align: left;
}

.global-navigation__item__inner .link-box ul li {
	font-size: 85%;
	line-height: 1.6;
}

.global-navigation__item__inner .link-box ul li a {
	color: var(--color-text);
}

.global-navigation__item__inner .link-box ul li a:hover {
	color: var(--color-base);
}

/* header-operation__font */

.header-operation {
	display: flex;
	align-items: center;
}

.header-operation__font {
	display: flex;
	align-items: center;
	flex-direction: row;
	font-size: var(--px13);
}

.header-operation__font dt {
	color: #2e5f80;
	font-size: var(--px13);
	font-weight: bold;
	opacity: 0.6;
}

.header-operation__font dd {

}

.header-operation__font dd ul {
	display: flex;
	flex-direction: row;
}

.header-operation__font dd ul li {
	margin-left: 5px;
	padding: 9px 17px;
	background: #eaeef1;
	border: 1px solid #eaeef1;
	border-radius: 60px;
	color: var(--color-text);
	line-height: 1;
}

.header-operation__font dd ul li:hover {
	border-color: var(--color-base);
	cursor: pointer;
}

.header-operation__font dd ul li.active {
	background: var(--color-base);
	border-color: var(--color-base);
	color: #fff;
}

.header .language {
	margin-left: 15px;
	position: relative;
}

.language__title {
	padding: 0 15px 0 9px;
	display: flex;
	align-items: center;
	width: 130px;
	height: 30px;
	background-color: #eaeef1;
	border-radius: 30px;
	font-size: var(--px13);
	font-weight: bold;
	position: relative;
	cursor: pointer;
}

.language__title::before {
	content: "";
	margin-right: 11px;
	display: inline-block;
	background: url(../images/icon/icon_lang.png) no-repeat left center;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
	width: 15px;
	height: 15px;
	position: relative;
	top: 0;
	left: 0;
}

.language__title::after {
	visibility: visible;
	width: 7px;
	height: 5px;
	background-color: var(--color-base);
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	position: absolute;
	top: 13px;
	right: 9px;
}

.language__title .item-txt {
	line-height: 1;
}

.language__list {
		display: none;
    padding: 6px 0 10px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
}

.language__list__item .item-link {
	padding: 0 15px 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 30px;
	background-color: #eaeef1;
	border: 1px solid #eaeef1;
	border-radius: 30px;
	color: var(--color-text) !important;
	font-size: var(--px13);
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.language__list__item + .language__list__item {
	margin-top: 6px;
}

.language__list__item .item-link:hover {
	border-color: var(--color-base2);
}

.language__list__item .item-link.current {
	background-color: var(--color-base2);
	border-color: var(--color-base2);
	color: #fff !important;
	pointer-events: none;
}


.header .contact-btn {
	width: 120px;
	height: 95px;
}

.header .contact-btn a {
	display: flex;
	flex-direction: column;
  align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: var(--color-base2);
	border: 1px solid var(--color-base2);
	border-top: none;
	border-radius: 0 0 10px 10px;
	color: #fff;
	font-size: var(--px14);
	font-weight: bold;
	text-align: center;
	position: relative;

}

.header .contact-btn a::before {
	content: "";
	margin-bottom: 6px;
	display: inline-block;
	background-image: url(../images/icon/icon_mail_white.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
	width: 23px;
	height: 17px;
	position: relative;
	transition: var(--transition);
}

.header .contact-btn a:hover {
	background-color: #fff;
	color: var(--color-base2);
}

.header .contact-btn a:hover:before {
	background-image: url(../images/icon/icon_mail_blue_b.png);
}

/* ---------------------------------------------
　container
------------------------------------------------ */

.container {
	width: 100%;
	padding-top: 105px;
	margin: 0 auto;
	/*padding-top:135px;*/
}


.container.open,
.related-area.open,
.footer.open,
.pagetop.open {
	-ms-filter: blur(2px);
  filter: blur(2px);
}

.header.login + .wrap .container,
.header.login + .container {
	padding-top: 194px;
}

/* ------ title -------------------------------- */

.page-title {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 180px;
	background: url(../images/bg_page_title.jpg) no-repeat center 0;
	background-size: cover;
}

.page-title.inner {
	padding: 0;
}


.page-title.inner.--products{ background: url(../images/bg_page_title_product.jpg) no-repeat center 0;background-size:cover;}
.page-title.inner.--company{ background: url(../images/bg_page_title_company.jpg) no-repeat center 0;background-size:cover;}

/*
.page-title.what{ background: url(../images/bg_title_what.jpg) no-repeat center 0;background-size:cover;}
.page-title.company{ background: url(../images/bg_title_company.jpg) no-repeat center 0;background-size:cover;}
.page-title.products{ background: url(../images/bg_title_products.jpg) no-repeat center 0;background-size:cover;}
.page-title.news{ background: url(../images/bg_title_news.jpg) no-repeat center 0;background-size:cover;}
.page-title.medical{ background: url(../images/bg_title_medical.jpg) no-repeat center 0;background-size:cover;}
*/

.page-title__txt {
	padding-top: 40px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: var(--color-text);
	font-size: var(--px30);
	font-weight: bold;
	text-align: center;
	letter-spacing: 2px;
}

.page-title__txt span {
	display: block;
	color: var(--color-base);
	font-family: var(--font-inter);
	font-size: 53%;
}

/* ------ topic-path --------------------------- */

.topic-path {
	margin-left: auto;
	padding: 10px 22px;
	width: fit-content;
	max-width: 1150px;
	background: #fff;
	border-radius: 10px 0 0 0;
}

.topic-path ul {
	margin: 0 auto;
	text-align: left;
}

.topic-path li {
	float: left;
	font-size: var(--px15);
	line-height: 1.5;

}

.topic-path li a {
	display: block;
	position: relative;
	padding-right: 20px;
}

.topic-path li a::after {
	display: block;
	content: '';
	position: absolute;
	top: 30%;
	right: 7px;
	width: 6px;
	height: 6px;
	border-right: 1px solid #53546d;
	border-bottom: 1px solid #53546d;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.topic-path li:last-child a {
	padding-right: 0;
}

.topic-path li:last-child a::after {
	display: none;
}

.topic-path a,
.topic-path a:link,
.topic-path a:hover,
.topic-path a:visited,
.topic-path a:active {
	color: #53546d;
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.topic-path {
		padding: 10px 22px;
	}
	.topic-path li {
		font-size: 13px;
	}
}

/* ------ pagetop ------------------------------ */

.pagetop {
	display: block;
	width: 80px;
	height: 80px;
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 100;
}

.pagetop a {
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: 1px solid var(--color-base2);
	border-radius: 50%;
	overflow: hidden;
	text-align: center;
	font-size: 93%;
	position: relative;
}

.pagetop a::before {
	content: "";
	display: block;
	width: 15px;
	height: 21px;
	background-image: url(../images/icon/icon_arrow_pagetop.png);
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transition: var(--transition);
}

.pagetop a:hover {
	background-color: var(--color-base2);
	border-color: #fff;
}

.pagetop a:hover::before {
	background-image: url(../images/icon/icon_arrow_pagetop_hover.png);
}

.pagetop a,
.pagetop a:link,
.pagetop a:hover,
.pagetop a:visited,
.pagetop a:active {
	display: block;
	text-decoration: none;
}

/* content
------------------------------------------------ */

.content {
	width: 100%;
	margin: 0 auto 100px;
	text-align: left;
	overflow-x: paint;
}

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

.inner::after {
	display: none;
}

.content__has-column {
	margin-top: 7rem;
	display: flex;
}

.content__side {
	width: 330px;
}

.content__side.--sticky {
	position: sticky;
	top: 0;
}

.content__main {
	width: calc(100% - 330px);
}

.content__main>*:first-child,
.content__side>*:first-child,
.content__main>*:first-child>*:first-child,
.content__side>*:first-child>*:first-child {
	margin-top: 0 !important;
}

.content__main hr {
	margin-top: 30px;
	display: block;
	height: 1px;
	background-color: var(--color-base) !important;
	border: none;
}

/* sidebar
------------------------------------------------ */

.lower-links {
	padding-right: 30px;
	position: sticky;
	top: 105px;
}

.lower-links .lower-links__parent {
	margin-top: 0;
}

.lower-links .lower-links__parent a,
.blog .content__side .lower-links .lower-links__parent {
	padding: 4px 10px;
	display: block;
	width: 100%;
	background-color: #eaeef1;
	border-radius: 30px;
	color: var(--color-text);
	font-size: var(--px16);
	font-feature-settings: "palt";
	letter-spacing: 1px;
	text-align: center;
}

.lower-links .lower-links__parent a:hover {
	opacity: 0.7;
}

.lower-links__child__item > a,
.lower-links__child__item > label  {
	padding: 10px 0 10px 30px;
	display: block;
	color: var(--color-text);
	font-size: var(--px15);
	line-height: 1.4;
	position: relative;
	cursor: pointer;
}

.lower-links__child__item > a.current {
	text-decoration: underline;
	pointer-events: none;
}

.lower-links__child__item > a::before,
.lower-links__child__item > label::before  {
	content: "";
	display: inline-block;
	background-image: url(../images/icon_side_link.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
	width: 22px;
	height: 23px;
	position: absolute;
	top: 10px;
	left: 0;
}

.lower-links__child__item > a:hover,
.lower-links__child__item > label:hover {
	text-decoration: underline;
	opacity: 0.7;
}

.lower-links__child__item .anchor-nav {
	margin: 16px 0;
	border-left: 1px solid #ebeff2;
}

.lower-links__child__item .anchor-nav__item:not(:first-child) {
	margin-top: 15px;
}

.lower-links__child__item .anchor-nav__item .link {
	padding-left: 30px;
	display: block;
	color: #adc0ce;
	position: relative;
}

.lower-links__child__item .anchor-nav__item .link::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #ddd;
	border-radius: 100%;
	position: absolute;
	top: 16px;
	left: 13px;
}

.lower-links__child__item .anchor-nav__item .link.active {
	color: var(--color-base);
}

.lower-links__child__item .anchor-nav__item .link.active::before {
	background-color: var(--color-base);
}

.lower-links__child__item .anchor-nav__item .link .num {
	font-size: var(--px12);
}

.lower-links__child__item .anchor-nav__item .link .txt {
	font-size: var(--px15);
}


.lower-links__child.--column2 .lower-links__child {
	display: flex;
	flex-wrap: wrap;
}

.lower-links__child.--column2 .lower-links__child__item {
	width: 50%;
}

.lower-links__child.--column2 {
	display: flex;
	flex-wrap: wrap;
}

.lower-links__child.--column2 .lower-links__child__item {
	width: 50%;
}

.lower-links__child__item .toggle{
	display: none;
}
.lower-links__child__item .toggle:checked + .label + .btn-content{
	height: auto;
    opacity: 1;
    transition: var(--transition);
	padding: 5px 10px;
}
.lower-links__child__item .btn-content{
	width: auto;
    overflow: hidden;
	height: 0;
    border: 1px solid var(--color-base);
    border-radius: 10px;
    line-height: 1.4;
    /* position: absolute;
    top: 100%;
    left: 0; */
    z-index: 1;
    opacity: 0;
}
.lower-links__child__item .btn-content ul{
	margin: 0;
}


/* ------ local-navigation --------------------- */

.l-navi.top {
	display: block;
}

.l-navi.bottom {
	display: block;
}

.local-navigation {
	width: 100%;
	margin: 10px auto 0;
	position: relative;
	z-index: 0;
}

.local-navigation:before {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #e5e5ee;
	z-index: -1;
}

.local-navigation dl {
	width: 1024px;
	margin: 0 auto;
	display: table;

}

.local-navigation dt {
	width: 15%;
	height: 50px;
	display: table-cell;
	font-size: var(--px20);
	text-align: center;
	border-bottom: 4px solid #082687;
	color: #333;
}

.local-navigation dt a {
	text-decoration: none;
	color: #333;
}

.local-navigation dd {
	width: 85%;
	display: table-cell;

}

/*
.local-navigation ul {
	display: table;
	width: 100%;
}

.local-navigation ul li {
	display: table-cell;
	border-left: 1px solid #d9d9e7;
	position: relative;
}

.local-navigation ul li:first-child {
	border: none;
}

.local-navigation li a {
	display: block;
	position: relative;
}


.local-navigation li a:visited {
	color: #333;
}

.local-navigation li a:hover,
.local-navigation li a:active {
	text-decoration: none;
	color: #4860AE;
}

.local-navigation li:hover:after,
.local-navigation li:active:after,
.local-navigation li.stay:after {
	content: '';
	display: block;
	width: 100%;
	height: 4px;
	background: #54649F;
	position: absolute;
	bottom: -9px;
	left: 0;
}
*/
/*IE10以降*/
/*@media all and (-ms-high-contrast:none) {

	.local-navigation li:hover:after,
	.local-navigation li:active:after,
	.local-navigation li.stay:after {
		bottom: -6px;
	}
}
*/
/*Edge*/
@supports (-ms-ime-align: auto) {

	.local-navigation li:hover:after,
	.local-navigation li:active:after,
	.local-navigation li.stay:after {
		bottom: -6px;
	}
}

.local-navigation li.stay a {
	color: #4860AE;
}

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

.related-area {
	background: #f1f4f8;
	padding: 35px 0 60px;
}

.related-area__title {
	font-size: var(--px24);
	font-weight: bold;
	text-align: center;
}

.related-area .inner {
	margin-top: 30px;
	position: relative;
}

.related-slide {
	margin: 0 auto;
	width: 100%;
	max-width: 945px;
	overflow: hidden;
	position: relative;
}

.related-slide__list__item a:hover {
	opacity: 0.7;
}

.related__button {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.related__button__prev,
.related__button__next {
	padding: 0;
	width: 40px;
	height: 40px;
	background-color: var(--color-base);
	border: none;
	border-radius: 50%;
	position: absolute;
	top: 16px;
	transition: var(--transition);
}

.related__button__prev:hover,
.related__button__next:hover {
	background-color: var(--color-base2);
}

.related__button__prev {
	margin-right: 6px;
	left: 0;
}

.related__button__next {
	right: 0;
}

.related__button__prev::before,
.related__button__next::before {
	content: "";
	display: block;
	width: 16px;
	height: 12px;
	background-image: url(../images/icon/icon_arrow_white2.png);
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
}

.related__button__prev::before {
	transform: rotate(180deg) translate(8px, 6px);
}


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

.footer {
	padding: 38px 0;
	background-color: var(--color-base2);
	clear: both;
}

.footer .inner {
	display: flex;
	color: #fff;
}

.footer-contents {
	width: 43%;
	text-align: left;
}

.footer .footer__contact {
	margin-top: 18px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 60px;
	background-color: #fff;
	border-color: #fff;
	color: var(--color-base);
	font-size: var(--px14);
	font-weight: bold;
	position: relative;
}

.footer .footer__contact::before {
	content: "";
	margin-right: 6px;
	display: inline-block;
	background-image: url(../images/icon/icon_mail_blue.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
	width: 23px;
	height: 17px;
	position: relative;
	transition: var(--transition)
}

.footer .footer__contact::after {
	display: none;
}

.footer .footer__contact:hover {
	color: #fff;
}

.footer .footer__contact:hover::before {
	background-image: url(../images/icon/icon_mail_white.png);
}

.footer-navigation {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	width: 57%;
}

.footer-navigation::after {
	display: none;
}

.footer-navigation--inner {
	width: calc(50% - 25px);
}

.footer-navigation__wrap__title {
	display: block;
	width: 100%;
	text-align: left;
	position: relative;
}

.footer-navigation__wrap__title a,
.footer-navigation__wrap__title span {
	padding: 16px 0;
	display: block;
	border-bottom: 1px solid #5e6a7b;
	color: #fff;
	font-size: var(--px18);
	line-height: 1;
	pointer-events: none;
}

.footer-navigation__wrap__title a:hover {
	border-color: #fff;
}

.footer-navigation__wrap__title button {
	padding-right: 12px;
	/*width: 30%;*/
	width: 100%;
	height: 100%;
	background-color: unset;
	border: none;
	color: #fff;
	font-size: var(--px14);
	font-weight: bold;
	text-align: right;
	position: absolute;
	top: 0;
	right: 0;
}

.footer-navigation__wrap__title button[aria-expanded="false"] {
	padding-right: 10px;
	font-size: var(--px20);
}

.footer-navigation__wrap__list {
	padding: 10px 0 15px;
	text-align: left;
	display: none;
}

.footer-navigation__wrap__list[aria-hidden="true"] {}


.footer-navigation__wrap__list li {
	position: relative;
}

.footer-navigation__wrap__list li a {
	padding: 10px 0 10px 20px;
	display: flex;
	width: 100%;
	text-align: left;
	color: #fff;
	font-size: var(--px15);
	line-height: 1;
	position: relative;
}


.footer-navigation__wrap__list li a::before {
	content: "";
	display: inline-block;
	background-image: url(../images/icon/icon_arrow_white2.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
	width: 8px;
	height: 6px;
	position: absolute;
	top: 15px;
	left: 0;
	transition: var(--transition);
}

.footer-navigation__wrap__list li a.--win::after {
	content: "";
	margin: 3px 0 0 4px;
	display: block;
	width: 10px;
	height: 10px;
	background-image: url(../images/icon/icon_win_white.png);
	background-size: contain;
	background-repeat: no-repeat;
	visibility: visible;
}

.footer-navigation__wrap__list a:hover::before {
	left: 4px;
}

.footer-navigation__solo a {
	padding: 20px 0 20px 20px;
	display: block;
	width: 100%;
	text-align: left;
	color: #fff;
	font-size: var(--px18);
	line-height: 1;
	position: relative;
}

.footer-navigation__solo a::before {
	content: "";
	display: inline-block;
	background-image: url(../images/icon/icon_arrow_white2.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
	width: 8px;
	height: 6px;
	position: absolute;
	top: 25px;
	left: 0;
	transition: var(--transition);
}

.footer-navigation__solo a:hover::before {
	left: 4px;
}

.footer-navigation__wrap+.footer-navigation__solo {
	margin-top: 12px;
}

.footer .inner {
	z-index: 2;
	position: relative;
}

.footer .logo {
	margin-bottom: 38px;
	width: 369px;
	height: 48px;
}

.footer .logo img {
	width: 100%;
	height: 100%;
}

.footer-contents .address {}

.footer-contents .address li {
	font-size: var(--px16);
	line-height: 2;
	text-align: left;
}

.footer-contents .address li a {
	color: #fff;
}

.footer-contents .address li .title {
	font-size: var(--px18);
}

.footer-contents .address li.tel {
	margin-top: 10px;
}

.footer-contents .address li:first-child,
.utility-navigation li:first-child {
	border: none !important;
}

.utility-navigation {
	margin-top: 90px;
}

.utility-navigation li {
	display: inline;
	padding: 0 10px;
	border-left: 1px solid #afb3b9;
}

.utility-navigation li:first-child {
	padding-left: 0;
}

.utility-navigation a,
.utility-navigation a:link,
.utility-navigation a:hover,
.utility-navigation a:visited,
.utility-navigation a:active {
	color: #fff;
}

.utility-navigation a:hover {
	text-decoration: underline;
}

.copyright {
	margin-top: 20px;
	color: #fff;
	font-size: var(--px12);
	font-weight: 300;
	letter-spacing: 1px;
	opacity: 0.6;
}