@charset "utf-8";

/*共通*/
main {
	max-width: 1000px;
	width: 95%;
	margin: 100px auto;
}

dl {
	margin-bottom: 100px;
}

.mini-title {
	font-size: 2rem;
	letter-spacing: 0.08em;
	font-weight: 300;
}

.title-wrap {
	display: flex;
	justify-content: space-between;
	max-width: 960px;
	margin: auto;
}

.sub-title {
	font-size: 1.4rem;
}


.no-scroll {
	overflow: hidden;
}

/*画像拡大*/
.zoomin img {
	overflow: hidden;
	transition: transform 0.5s ease-out;
}

.zoomin:hover img {
	transform: scale(1.05);
}

/*スライドマスク*/
.hover-item {
	position: relative;
}

.hover-item p {
	display: block;
	height: 17%;
	overflow: hidden;
	transition: height 0.5s ease;
	position: absolute;
	width: 100%;
	bottom: 0;
	font-size: 1.8rem;
	font-weight: 700;
}

.hover-item:hover p {
	/*opacity: 0.8;*/
	height: 100%;
}

.hover-item:hover p span {
	display: block;
}

.hover-item p span {
	font-size: 1.6rem;
	font-weight: 500;
	display: none;
}

/*フェードイン*/
/* 2025.4.16 delete */
section {
	/* opacity: 0; 
	transition: .9s;
	position: relative;
	top: 50px; */
}

section:nth-child(1) {
	opacity: 1;
	top: 0;
}

section.active {
	opacity: 1;
	top: 0;
}

@media (max-width: 768px) {
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}

	.title-wrap {
		display: block;
	}

	.mini-title {
		font-size: 3.73vw;
	}

	.title-text {
		margin-top: 8vw;
	}
}

/*ボタン*/
.btn {
	width: 276px;
	text-align: center;
}

.btn a {
	display: block;
	padding: 20px 0;
}

.square-btn {
	width: 260px;
	background-color: white;
	text-align: center;
	position: absolute;
	bottom: 10%;
	right: 10%;
}

.square-btn a {
	display: block;
	padding: 20px 0;
	font-weight: 400;
	position: relative;
}

.square-btn--hover .square-btn {
	display: none;
}

.square-btn--hover .square-btn.active {
	display: block;
}

.btn a {
	color: white;
	position: relative;
	font-weight: 400;
}

.btn a::after {
	background: url(../img/common/arrow-white.png);
	background-repeat: no-repeat;
	background-size: 100%, contain;
	content: '';
	position: absolute;
	top: 50%;
	right: 40px;
	width: 10px;
	height: 17px;
	transform: translateY(-50%);
}

.btn.btn--white a::after,
.square-btn a::after {
	background: url(../img/common/black-arrow.png);
	background-repeat: no-repeat;
	background-size: 100%, contain;
	content: '';
	position: absolute;
	right: 15px;
	width: 10px;
	top: 50%;
	height: 17px;
	transform: translateY(-50%);
}

.btn.btn--white a::after {
	right: 40px;
}

.btn--white {
	position: relative;
	clip-path: unset;
	background-image: url(../img/btn-white.png);
	background-repeat: no-repeat;
	background-size: 100% 100%, contain;
	transition: ease .5s;
}

.btn--white:hover {
	background-image: url(../img/btn-white-hover.png);
}

.btn--top-about {
	position: relative;
	background-image: url(../img/btn-top-about.webp);
	background-repeat: no-repeat;
	background-size: 100% 100%, contain;
	transition: ease .5s;
}

.btn--top-about:hover {
	background-image: url(../img/btn-top-about--hover.webp);
}

.btn--lightblue {
	position: relative;
	clip-path: unset;
	background-image: url(../img/btn-product.png);
	background-repeat: no-repeat;
	background-size: 100% 100%, contain;
	transition: ease .5s;
}

.btn--lightblue:hover {
	background-image: url(../img/btn-service-hover.png);
}

.btn--lightgreen {
	position: relative;
	clip-path: unset;
	background-image: url(../img/btn-service.png);
	background-repeat: no-repeat;
	background-size: 100% 100%, contain;
	transition: ease .5s;
}

.btn--lightgreen:hover {
	background-image: url(../img/btn-product-hover.png);
}

.btn--white.btn--darkblue:hover a {
	color: white;
}

.btn--white.btn--darkblue:hover a::after {
	background: url(../img/common/arrow-white.png);
	width: 10px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: contain;
}

.btn--white a {
	color: #182E40;
	font-weight: 400;
}

@media (max-width: 768px) {
	.btn {
		margin: auto;
		width: 65.2%;
	}

	.btn a,
	.square-btn a {
		padding: 2.66vw;
		font-size: 3.73vw;
	}
}

/*SLICK*/

.slick-prev,
.slick-prev:focus,
.slick-prev:hover,
.slick-next,
.slick-next:focus,
.slick-next:hover {
	left: 35px;
	background-image: url(../img/common/arrow-prev-gray.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 18px;
	height: 12px;
	/*transform: rotate(180deg);*/
	z-index: 50;
}

.slick-next,
.slick-next:focus,
.slick-next:hover {
	left: auto;
	right: 35px;
	background-image: url(../img/common/arrow-gray.png);
}

.slick-next:before,
.slick-prev:before {
	display: none;
}

.slick-num {
	margin-top: 10px;
	margin-left: auto;
	width: 80%;
	margin-right: 0px;
	text-align: right;
	color: #C2C2C2;
}

.slick-prev,
.slick-prev:focus,
.slick-prev:hover,
.slick-next,
.slick-next:focus,
.slick-next:hover {
	left: 160px;
	width: 20px;
	height: 20px;
}

.slick-next,
.slick-next:focus,
.slick-next:hover {
	left: auto;
	right: 160px;
}

@media (max-width: 768px) {
	.btn__inner-slide {
		display: none !important;

	}

	.slick-prev,
	.slick-prev:focus,
	.slick-prev:hover,
	.slick-next,
	.slick-next:focus,
	.slick-next:hover {
		left: 15px;
		width: 20px;
		height: 20px;
	}

	.slick-next,
	.slick-next:focus,
	.slick-next:hover {
		left: auto;
		right: 35px;
	}

	.slick-num {
		font-size: 3.2vw;
	}
}

/*slickslider*/
.product-slider {
	opacity: 0;
	transition: .4s;
}

.product-slider.slick-initialized {
	opacity: 1;
}

/*Header*/
header {
	width: 100%;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: white;
}
/* 2025.5.14 add */
header::before {
    display: block;
    position: absolute;
    content: "";
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(rgba(0, 0, 0, .08), rgba(255, 255, 255, 0));
    z-index: -1;
    pointer-events: none;
}
.header__content {
	max-width: 1200px;
	margin: 0 auto;
	/*margin: auto;*/ /* 20250916 */
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	min-height: 64px;
}

.header-nav {
	flex: 1;
}

.header-nav a {
	cursor: pointer;
}

.header-logo {
	width: 300px;
	/*width: 230px;*/ /* 20250916 */
	height: auto;
}

.header-logo a {
	display: block;
	width: 100%;
}

.header-list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-list li {
	text-align: center;
	font-size: 1.3rem;
}

.header-list li:first-child:hover {
	background-color: white;
}

.header-list li:nth-child(-n + 7) {
	padding-left: 2.0rem;
	padding-top: 6px;
    padding-bottom: 4px;
	/*padding-right: 1.6rem;
	padding-top: 20px;
	padding-bottom: 20px;*/ /* 20250916 */
	cursor: pointer;
}

.header-list li p {
	font-size: 1.4rem;
    font-weight: 600;
	/*font-size: 1.3rem;*/ /* 20250916 */
}

.header-list li p > span {
	position: relative;
}

.header-list li p > span::before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	height: 1px;
	width: 0;
	background: #000;
	transition: width 0.3s ease;
}

.header-list li p > span:hover::before {
	width: 106%;
}

.language-btn {
	margin-left: 50px;
	margin-right: 30px;
	position: relative;
}

.language-btn select {
	width: 120px;
	text-align: center;
	padding: 2px 0;
	font-size: 1.4rem;
}

.language-btn::before {
	content: '';
	background-image: url(../img/common/icon-jp.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 15px;
	height: 15px;
	display: block;
	position: absolute;
	top: 7px;
	left: 8px;
}

.header-list--contact a {
	position: relative;
	overflow: hidden;
	text-decoration: none;
	display: inline-block;
	background: #044687;
	border: 1px solid #044687;
	padding: 8px 12px;
	line-height: 1;
	text-align: center;
	font-weight: 700;
	outline: none;
	transform: skewX(-15deg);
}

.header-list--contact a:hover {
	border: 1px solid #044687;
}

.header-list--contact a span {
	position: relative;
	display: inline-block;
	z-index: 3;
	color: #fff;
	transform: skewX(15deg);
}

.header-list--contact a:hover span {
	color: #044687;
}

.header-list--contact a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -130%;
	background: #fff;
	width: 120%;
	height: 100%;
	transition: left 0s;
}

.header-list--contact a:hover::before {
	left: -10%;
	transition: left 0.3s;
}

.header-list__hover {
	position: absolute;
	width: 100%;
	left: 0;
	top: 86px;
	/*top: 64px;*/ /*20250916*/
	background-color: #182e40fa;
	z-index: 100;
	padding-top: 35px;
	padding-bottom: 55px;
	display: none;
	cursor: auto;
}

.header-list__inner {
	max-width: 880px;
	margin: auto;
	width: 100%;
	display: none;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 0;
	margin-bottom: 35px;
	text-align: left;
}

.header-list__inner a {
	color: white;
	display: block;
	width: 270px;
	word-break: break-all;
	padding-left: 20px;
	position: relative;
	cursor: pointer;
}

.header-list li.active .header-list__inner {
	display: flex;
}

.header-list__inner a {
	display: block;
	color: white;
}

.header-hover-bg:hover {
	display: block;
}

.header-list li.active .header-list__hover {
	display: block;
}

.header-list__hover h2 {
	margin-bottom: 20px;
	text-align: left;
	font-size: 2.2rem;
	width: 100%;
	margin: auto;
	max-width: 880px;
	margin-bottom: 2rem;
	color: #fff;
}

.header-list__hover h2 a {
	color: white;
	position: relative;
}

.header-list--hover li {
	display: none;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 0;
	margin-bottom: 35px;
}

.header-list--hover li.active {
	display: flex;
}

.header-list--hover li a {
	color: white;
	display: block;
	width: 270px;
	padding-left: 20px;
	position: relative;
}

.header-list--hover li a::before {
	content: '';
	background-image: url(../img/common/arrow-white.png);
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top: 4px;
}

.header-inner__btn {
	max-width: 880px;
	margin: auto;
}

.header-nav--sp,
.header-subnav--sp {
	display: none;
}

@media (max-width: 768px) {
	header {
		position: relative;
		z-index: 1500;
	}

	.header__content {
		min-height: 70px;
	}

	.header-nav {
		display: none;
	}

	header .header-logo img {
		height: 6vw;
		width: auto;
	}

	.sub_menu {
		display: none;
	}

	.sub_spmenu {
		background-color: #333;
		height: 50px;
		position: relative;
		display: block;
	}

	.openbtn1,
	.openbtn2 {
		position: relative;
		cursor: pointer;
		width: 34px;
		height: 29px;
		border: 1px solid #000;
	}

	.openbtn2 {
		float: right;
	}

	.openbtn1 span,
	.openbtn2 span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 5px;
		height: 3px;
		background: #182E40;
		width: 70%;
	}

	.openbtn2 span {
		background-color: white;
	}

	.openbtn1 span:nth-of-type(1),
	.openbtn2 span:nth-of-type(1) {
		top: 5px;
	}

	.openbtn1 span:nth-of-type(2),
	.openbtn2 span:nth-of-type(2) {
		top: 12px;
	}

	.openbtn1 span:nth-of-type(3),
	.openbtn2 span:nth-of-type(3) {
		top: 19px;
	}

	.openbtn1.active span:nth-of-type(1),
	.openbtn2.active span:nth-of-type(1) {
		top: 6px;
		left: 5px;
		transform: translateY(6px) rotate(-45deg);
		width: 70%;
	}

	.openbtn1.active span:nth-of-type(2),
	.openbtn2.active span:nth-of-type(2) {
		opacity: 0;
	}

	.openbtn1.active span:nth-of-type(3),
	.openbtn2.active span:nth-of-type(3) {
		top: 18px;
		left: 5px;
		transform: translateY(-6px) rotate(45deg);
		width: 70%;
	}
}

/*SECTION*/
.section-block {
	max-width: unset;
	width: 50%;
	position: relative;
	height: fit-content;
}

.section-wrap {
	display: flex;
	position: relative;
	justify-content: flex-start;
}

.product .section-wrap {
	margin-top: 86px;
	margin-bottom: 60px;
}

.section-group {
	display: none;
	color: white;
	position: absolute;
	top: 45%;
	left: 45%;
	transform: translate(-50%, -50%);
}

.section-group.section-group-integrated {
	left: 35%;
	top: 40%;
}

.section-group.active {
	display: block;
}

.section-group p {
	padding-top: 25px;
}

.section-group__inner {
	display: flex;
	align-items: center;
	padding-bottom: 15px;
	position: relative;
}

.section-group__inner::after {
	content: '';
	display: block;
	height: 1px;
	width: 390px;
	background-color: white;
	bottom: 0;
	position: absolute;
	left: 0;
}

.top-section-list {
	flex: 1;
	max-width: 510px;
	width: 50%;
	padding: 0 20px;
	margin-right: 6.66%;
}

.top-section-list li {
	display: flex;
	align-items: center;
	padding: 25px 0;
	border-bottom: 1px solid #CCCCCC;
}

.top-section-list li:not(:last-child):hover {
	background-color: #f6f6f6;
	padding-left: 15px;
}

.top-section-list li .top-section-list__item {
	margin-left: 18px;
}

.title-number {
	font-size: 4rem;
	font-weight: 300;
}

.block-title {
	font-size: 2rem;
}

.section-group--title {
	margin-left: 18px;
}

.list-number {
	font-size: 3rem;
	color: #C2C2C2;
}

.top-section-list__item p {
	font-size: 2rem;
}

.list-name--tiny {
	font-size: 1.2rem;
}

.product .btn {
	margin-left: auto;
}

.top-section-list li:last-child {
	padding: 0;
	border-bottom: none;
	margin-top: 60px;
}

.hover-img-wrapper img {
	display: none;
}

.hover-img-wrapper img.active {
	display: block;
}

@media (max-width: 1300px) {
	.section-block {
		flex: 1;
	}
}

@media (max-width: 768px) {
	.product .btn.sp-only {
		margin-top: 60px;
	}

	.section-wrap {
		display: block;
	}

	.section-block {
		width: 100%;
	}

	.service .square-btn {
		display: block;
	}

	.section-group {
		top: 20%;
		left: 10%;
	}

	.section-group--title {
		margin-left: 0;
	}

	.section-group__inner::after {
		width: 68vw;
	}

	.top-section-list {
		margin-top: 25px;
	}

	.top-section-list li {
		padding: 4.66vw 0;
		border-top: 1px solid #CCCCCC;
	}

	.top-section-list li:last-child {
		margin-top: 0;
	}

	.product .section-wrap {
		margin-top: 13.33vw;
	}

	.block-title {
		font-size: 4.26vw;
	}

	.sub-title {
		font-size: 2.66vw;
	}

	.top-section-list li .top-section-list__item {
		margin-left: 50px;
	}

	.hover-img-wrapper img {
		display: none;
	}

	.hover-img-wrapper img.active {
		display: block;
	}

	.hover-img-wrapper.sp-only {
		display: block;
	}

	.hover-img-wrapper.sp-only img.active {
		display: block;
	}

	.section-group p {
		padding-top: 3.33vw;
		line-height: 5.6vw;
	}

	.top-section-list__item p {
		font-size: 3.73vw;
	}

	.list-name--tiny {
		font-size: 2.66vw;
	}
}

/*グロナビ追加スタイル*/
.header-h2-white {
	color: white;
}

@media (max-width: 768px) {
	.hover-item:hover p {
		height: 17%;
	}

	.detail-subtitle {
		margin: 0 10px;
		padding: 10px 0px;
		position: relative;
		border-bottom: 1px solid #182E40;
	}
}

/* font-color-black */
.color-b {
	color: #000000;
}

/* FIX */

/* 20250730 add */
main.main-contents {
	max-width: 1200px;
}

/* 20250916 globalnavigation 2段 */
.header-icon {
    padding-top: 6px;
    padding-bottom: 4px;
}
.header__inner {
    margin: 10px 0;
	width: 70%;
}
.header__inner__box {
	display: flex;
}

.header-icon a {
	cursor: pointer;
	font-size: 1.4rem;
    font-weight: 600;
	padding-left: 1.8rem;
	text-align: center; 
	vertical-align: top;
}

.header-icon .icon-search::before {
    background-image: url(/ja-jp/img/common/icon-search.png);
    background-repeat: no-repeat;
    background-size: cover;
	content: "";
	display: inline-block;
    height: 34px;
	margin-top: -7px;
	vertical-align: top;
	width: 34px;
}
.header-icon .icon-mail::before {
    background-image: url(/ja-jp/img/common/pictogram-mail-black.png);
    background-repeat: no-repeat;
    background-size: cover;
	content: "";
	display: inline-block;
    height: 28px;
	margin-top: -3px;
	vertical-align: top;
	width: 28px;
}
@media (max-width: 768px) {
	.header__pc-only {
		display: none;
	}
	.header__inner {
		margin: 10px 0;
		width: 30%;
	}
	.header__inner__box {
		justify-content: flex-end;
		padding-right: 1.2rem;
	}
	.header-icon a {
		padding-left: 0;
	}
	.header-icon .icon-search::before {
		height: 48px;
		margin-top: 5px;
		width: 48px;
		vertical-align: unset;
	}
	.header-icon .icon-mail::before {
		height: 48px;
		margin-top: 5px;
		width: 48px;
		vertical-align: unset;
	}
}
/* 20250911 add */
.header-list-icon__hover {
	position: absolute;
	width: 100%;
	left: 0;
	top: 64px;
	background-color: #182e40fa;
	z-index: 100;
	padding-top: 35px;
	padding-bottom: 55px;
	display: none;
	cursor: auto;
}
.header-list li.active .header-list-icon__hover {
	display: block;
}
.header-list-icon__hover h2 {
	margin-bottom: 20px;
	text-align: left;
	font-size: 2.2rem;
	width: 100%;
	margin: auto;
	max-width: 880px;
	margin-bottom: 2rem;
	color: #fff;
}

.header-list-icon__hover h2 a {
	color: white;
	position: relative;
}
.header-list-icon__inner {
	max-width: 880px;
    margin: auto;
    width: 100%;
    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 0;
    margin-bottom: 35px;
    text-align: left;
}
.header-list-icon__inner a {
    color: white;
    display: block;
    width: 270px;
    word-break: break-all;
    padding-left: 20px;
    position: relative;
    cursor: pointer;
}



/* search */

.header-child-menu {
  width: 100%;
  position: absolute;
  top: 97px;
  left: 0;
  padding: 40px 0;
  /*background: #ffffff;*/
	background-color: #182e40fa;
  display: none;
  /*z-index: 1100;*/
}

.header-child-menu-click {
	background-color: #182e40fa;
  width: 100%;
  position: absolute;
  top: 86px;
  left: 0;
  padding: 80px 0;
  /*background: #ffffff;*/
  visibility: hidden;
  /*z-index: 1200;*/
}

.header-child-menu-click .l-inner {
 display: block !important;
}

.js-open.header-child-menu-click {
  visibility: visible;
}
.header-search-box-wrap {
	margin: 0 auto;
	max-width: 1200px;
	/*
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;*/
}
.mf-search-results_body_result_texts_title {
	text-align: start;
}

/*
.header-search-input {
  width: calc(100% - 100px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 21px 64px;
  background-color: #f5f5f5;
  height: 60px;
  border-radius: 30px 0 0 30px;
}
*/
/*
.header-search-btn {
  width: 100px;
  background: #E60039;
  color: #ffffff;
  height: 60px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 0 30px 30px 0;
}

.header-search-btn:hover {
  cursor: pointer;
  opacity: .8;
}
*/
@media (min-width: 768px) {
	.search-window__size .mf-search-box .mf-search-bar .mf-search-bar_input {
		padding: 30px!important;
	}
	.search-window__size .mf-search-box .mf-search-bar .mf-search-bar_button {
		padding: 30px!important;
	}
}
@media (max-width: 768px) {
	.header-search-box-wrap {
		max-width: 90%;
	}
	.header-child-menu-click {
		top: 70px;
		padding: 30px 0;
	}
}












.sp-only {
	display: none;
}

.pc-only {
	display: block;
}
@media (max-width: 768px) {
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}
}
/* 20260521 ストライト　更新時ロゴへフォーカス　削除 */
.header-logo a:focus ,.p-logo a:focus {
outline: none;
}
