@charset "UTF-8";
/*1400pxMAX*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&display=swap');

/* Global styles
-------------------------------*/
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

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

/* デバイス定義
-------------------------------*/
.pc {
	display: block;
}
br.pc,
span.pc {
	display: inline;
}

.sp {
	display: none;
}
.pc-only {
	display: block;
}
@media (max-width: 1024px) {
	.pc-only {
		display: none!important;
	}
}

@media (max-width: 767px) {
	.pc {
		display: none!important;
	}
	.sp {
		display: block;
	}
	br.sp {
		display: inline;
	}
}


@media screen and (min-width:768px){
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

/* 基本的な骨組み
-------------------------------*/
html {
	height: 100%;
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6;
	letter-spacing: 0;
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
	font-family: 'Noto Sans JP', serif;
}


@media (max-width: 1024px) {
	body {
		font-size: 14px;
		font-size: 1.4rem;
	}
}

.l-inner {
	width: 91.4%;
	max-width: 1170px;
	margin: 0 auto;
}

/* basic settings
-------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
pre,
td,
th,
dt,
dd {
	line-height: 1.5;
}

/* code set
-------------------------------*/
pre,
code,
kbd,
samp,
var {
	font-size: 1.3rem;
	line-height: 1.5;
}

pre {
	box-sizing: border-box;
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	background-color: #f4f4f4;
	overflow-x: auto;
}


/* font
-------------------------------*/
.ave {
	/* Avenirの代替 → Helvetica のGoogleFont代替 → Roboto*/
	font-family: "Roboto", serif;
}
.corporate__color {
	color: #006400;
}


/* aタグ(リンクボタン)の設定
-------------------------------*/
a, a:hover, a::after, a::before {
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	color: #333333;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:link {
	text-decoration: none;
}



/*-------------------------------
 mainSec
-------------------------------*/
.mainSec {
	position: relative;
	z-index: 0;
}


/*-------------------------------
 header
-------------------------------*/
.headerSec {
	position: relative;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0;
	margin: 0;
	z-index: 999;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.headerSec.js-bgDodge {
	position: fixed;
	background: rgb( 255 255 255 / 0.7);
	backdrop-filter: blur(10px) brightness(1.2) saturate(200%);
}
.headerSec__logo {
	display: block;
	height: 100%;
}
.headerSec__logo a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
}
.headerSec__logo img {
	width: 100%;
}
.headerSec__logo .logo__dodge {
	display: none;
}
.headerSec.js-bgDodge .headerSec__logo .logo__normal {
	display: none;
}
.headerSec.js-bgDodge .headerSec__logo .logo__dodge {
	display: block;
}

@media screen and (min-width:768px) {
	.headerSec {
		height: 5.7143vw;
	}
	.headerSec__logo {
		width: 15.5714vw;
		margin: 0 0 0 2.5vw;
	}
	.headerSec__nav {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		height: 5.7143vw;
	}
	.headerSec__navList {
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: space-between;
		width: 100%;
		height: 100%;
	}
	.headerSec__navItem:nth-of-type(1) {
		margin-right: 1.0714vw;
	}
	.headerSec__navItem-parents:nth-of-type(3) {
		margin-right: 1.0714vw;
	}
	.headerSec__navItem:nth-of-type(4) {
		margin-right: 2.1429vw;
	}
	.headerSec__navItem:nth-of-type(5) {
		margin-right: 3vw;
	}
	.headerSec__navItem-parents .navItem__parents {
		padding: 0 1.0714vw;
	}
	.headerSec__navItem a,
	.headerSec__navItem-parents .navItem__parents {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		cursor: pointer;
		font-size: 1.1429vw;
		line-height: 1;
		color: #fff;
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.headerSec__navItem a::after {
		position: absolute;
		left: 0;
		bottom: 0;
		content: "";
		width: 100%;
		height: 1px;
		background: #fff;
		transform: scale(0, 1);
		transform-origin: left top;
		transition: transform 0.3s;
	}

	.headerSec.js-bgDodge .headerSec__navItem a,
	.headerSec.js-bgDodge .headerSec__navItem-parents .navItem__parents,
	.headerSec.js-bgDodge .headerSec__navItem a::after {
		color: #032e6f;
	}
	.headerSec__navItem a:hover::after {
		transform: scale(1, 1);
	}
	.navItem__parents::after {
		content: "";
		width: 1vw;
		height: 0.5vw;
		margin-left: 0.5vw;
		background: url(../img/common/icon__arrow__bottom-w.png) no-repeat;
		background-size: contain;
	}
	.headerSec.js-bgDodge .navItem__parents::after {
		background: url(../img/common/icon__arrow__bottom-mix.png) no-repeat;
		background-size: contain;
	}
	.headerSec__navItem-parents .navItem__parents:hover,
	.headerSec__navItem-parents.active .navItem__parents {
		background-color: rgb( 0 19 81 / 0.8 );
		color: #fff!important;
	}
	.headerSec.js-bgDodge .navItem__parents:hover::after,
	.headerSec.js-bgDodge .headerSec__navItem-parents.active .navItem__parents::after {
		background: url(../img/common/icon__arrow__bottom-w.png) no-repeat;
		background-size: contain;
	}
	.navItem__children {
		position: absolute;
		top: 5.7143vw;
		left: 0;
		visibility: hidden;
		opacity: 0;
		width: 100%;
		height: 14.2857vw;
		background-color: rgb( 0 19 81 / 0.8 );
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.headerSec__navItem-parents:hover .navItem__children {
		visibility: visible;
		opacity: 1;
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.navItem__children .navItem-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 85.71vw;
		max-width: 1200px;
		height: 100%;
		margin: 0 auto;
	}
	.headerSec__navItem-company .navItem-inner {
		background: url(../img/common/header__linkbg__company.png) no-Repeat left top;
		background-size: contain;
	}
	.headerSec__navItem-products .navItem-inner {
		background: url(../img/common/header__linkbg__product.png) no-Repeat left top;
		background-size: contain;
	}
	.navItem__children .navItem__title {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		width: 46.0714vw;
		height: 6.4286vw;
		padding-right: 2.8571vw;
		border-right: 2px solid #8a9cb7;
	}
	.navItem__children .navItem__title a {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-flow: column;
		padding-right: 2.8571vw;
	}
	.navItem__children .navItem__title a::after {
		position: absolute;
		top: calc( 50% - 5px );
		right: 5px;
		content: "";
		width: 5px;
		height: 10px;
		background: url(../img/common/icon__arrow__right-w.png) no-Repeat;
		background-size: contain;
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.navItem__children .navItem__title a:hover::after  {
		right: 0;
	}
	.navItem__children .navItem__title .navItem__title-jp {
		display: block;
		font-size: 1.4286vw;
		font-weight: 700;
		color: #fff;
	}
	.navItem__children .navItem__title .navItem__title-en {
		display: block;
		font-size: 1vw;
		font-weight: 700;
		color: #fff;
	}
	.navItem__children__list {
		position: relative;
		display: flex;
		flex-flow: wrap;
		justify-content: flex-start;
		align-items: flex-start;
		width: 39.6429vw;
		height: 10vw;
		padding-left: 3.8571vw;
	}
	.navItem__children__list li {
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: 16.7857vw;
		border-bottom: 1px solid #8ca0bd;
	}
	.navItem__children__list li:nth-child(1),
	.navItem__children__list li:nth-child(3) {
		margin-right: 2.1429vw;
	}
	.navItem__children__list li:nth-child(1),
	.navItem__children__list li:nth-child(2) {
		margin-bottom: 0.8571vw;
	}
	.navItem__children__list a {
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
		height: 100%;
		padding: 1.7143vw 2.4286vw;
		font-size: 1.1429vw;
		font-weight: 500;
		color: #fff;
		line-height: 1;
	}
	.navItem__children__list a::after {
		position: absolute;
		top: calc( 50% - 5px );
		right: 1.3571vw;
		content: "";
		width: 5px;
		height: 10px;
		background: url(../img/common/icon__arrow__right-w.png) no-Repeat;
		background-size: contain;
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.navItem__children__list a:hover::after {
		right: 1vw;
	}
	.headerSec__navItem-contact {
		width: 13.5714vw;
	}
	.headerSec__navItem-contact img {
		display: none;
	}
	.headerSec__navItem__link-contact {
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.1429vw;
		color: #fff;
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
		z-index:0;
	}
	.headerSec__navItem__link-contact::before {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		left: 0;
		background-image: linear-gradient(90deg, #F4BB21, #FF782B);
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
		z-index: -1;
	}
	.headerSec__navItem__link-contact::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		left: 0;
		background-image: linear-gradient(90deg, #FF782B, #F4BB21);
		z-index: -2;
	}
	.headerSec__navItem__link-contact:hover {
		color: #fff;
	}
	.headerSec__navItem__link-contact:hover::before {
		opacity:0;
	}
}

@media screen and (min-width:1401px) {
	.headerSec {
		height: 80px;
	}
	.headerSec__logo {
		display: block;
		width: 218px;
		margin: 0 0 0 35px;
	}
	.headerSec__nav {
		height: 80px;
	}
	.headerSec__navItem:nth-of-type(1) {
		margin-right: 15px;
	}
	.headerSec__navItem-parents:nth-of-type(3) {
		margin-right: 15px;
	}
	.headerSec__navItem:nth-of-type(4) {
		margin-right: 30px;
	}
	.headerSec__navItem:nth-of-type(5) {
		margin-right: 42px;
	}
	.headerSec__navItem-parents .navItem__parents {
		padding: 0 15px;
	}
	.headerSec__navItem a,
	.headerSec__navItem-parents .navItem__parents {
		font-size: 16px;
	}
	.navItem__parents::after {
		width: 14px;
		height: 7px;
		margin-left: 7px;
	}
	.navItem__children {
		top: 80px;
		height: 200px;
	}
	.navItem__children .navItem__title {
		width: 645px;
		height: 90px;
		padding-right: 40px;
	}
	.navItem__children .navItem__title a {
		padding-right: 40px;
	}
	.navItem__children .navItem__title a::after {
		top: calc( 50% - 5px );
		right: 5px;
		width: 5px;
		height: 10px;
	}
	.navItem__children .navItem__title a:hover::after  {
		right: 0;
	}
	.navItem__children .navItem__title .navItem__title-jp {
		font-size: 20px;
	}
	.navItem__children .navItem__title .navItem__title-en {
		font-size: 14px;
	}
	.navItem__children__list {
		width: 555px;
		height: 140px;
		padding-left: 54px;
	}
	.navItem__children__list li {
		width: 235px;
	}
	.navItem__children__list li:nth-child(1),
	.navItem__children__list li:nth-child(3) {
		margin-right: 30px;
	}
	.navItem__children__list li:nth-child(1),
	.navItem__children__list li:nth-child(2) {
		margin-bottom: 12px;
	}
	.navItem__children__list a {
		padding: 24px 34px;
		font-size: 16px;
	}
	.navItem__children__list a::after {
		top: calc( 50% - 5px );
		right: 19px;
		width: 5px;
		height: 10px;
	}
	.navItem__children__list a:hover::after {
		right: 14px;
	}
	.headerSec__navItem-contact {
		width: 190px;
	}
	.headerSec__navItem__link-contact {
		font-size: 16px;
	}
}

@media screen and (max-width:767px) {
	.headerSec {
		position: fixed;
		height: 13.3333vw;
		overflow: visible;
	}
	.headerSec__contact {
		position: absolute;
		top: 0;
		right:14.9333vw;
		width: 13.3333vw;
		height: 13.3333vw;
		background-image: linear-gradient(90deg, #F4BB21, #FF782B);
		z-index: 10;
	}
	.headerSec__contact a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	.headerSec__contact a img {
		width: 5.3333vw;
		margin-left: 0;
	}
	.headerSec__logo {
		width: 40.5333vw;
		margin-left: 4.2667vw;
		z-index: 10;
	}
	.headerSec__logo a {
		padding-right: 0;
	}
	.headerSec__logo img {
		width: 40.5333vw;
	}
	.headerSec__toggle {
		position: fixed;
		top: 0;
		right: 0;
		width:14.9333vw;
		height: 13.3333vw;
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		z-index: 999;
	}
	.headerSec__toggle span {
		display: block;
		position: absolute;
		right: 4.2667vw;
		border-bottom: solid 2px #8cbad6;
		transition: all 0.6s;
	}
	.headerSec__toggle span:nth-child(1) {
		top: 5.0667vw;
		width: 6.4vw;
	}
	.headerSec__toggle span:nth-child(2) {
		top: 7.7333vw;
		width:  4.8vw;
	}
	.headerSec__toggle.active span {
		border-bottom: solid 1px #fff;
	}
	.headerSec__toggle.active span:nth-child(1) {
		top: 5.8667vw;
		width: 6.6667vw;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.headerSec__toggle.active span:nth-child(2) {
		top: 5.8667vw;
		width: 6.6667vw;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.navi__box {
		position: fixed;
		width: 100%;
		top: 13.3333vw;
		right: -120%;
		z-index: 1;
		opacity: 0;
		background: #032E6F;
		-webkit-transition: all 0.5s ease-in-out 0s;
		transition: all 0.5s ease-in-out 0s;
	}
	.navi__box.active {
		right: 0;
		opacity: 1;
	}
	.navi__wrap {
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		right: -120%;
		opacity: 0;
		z-index: 10;
		background: #032E6F;
		-webkit-transition: all 0.5s ease-in-out 0s;
		transition: all 0.5s ease-in-out 0s;
	}
	.navi__wrap.active {
		right: 0;
		opacity: 1;
	}
	.navi__inner {
		position: fixed;
		top: 0;
		width: 100%;
		max-height: 100vh;
		-webkit-transition: all 0.5s ease-in-out 0s;
		transition: all 0.5s ease-in-out 0s;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	.headerSec__navList {
		display: block;
		padding: 26.1333vw 7.4667vw 0 6.4vw;
	}
	.headerSec__navItem,
	.headerSec__navItem-parents {
		width: 100%;
	}
	.headerSec__navItem a,
	.headerSec__navItem-parents .navItem__parents {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
		height: 9.3333vw;
		margin-bottom: 7.4667vw;
		border-bottom: 1px solid #d2d9e5;
		font-size:  4.8vw;
		font-weight: 500;
		color: #fff;
	}

	.navItem__parents {
		position: relative;
		cursor: pointer;
	}
	.navItem__parents img {
		display: none;
	}
	.navItem__parents::after,
	.navItem__parents::before {
		content: "";
		position: absolute;
		right: 5.3333vw;
		top: 2.6667vw;
		width: 2px;
		height: 4vw;
		background-color: #fff;
		transition: all 0.3s;
	}
	.navItem__parents::after {
		transform: rotate(90deg);
	}
	.headerSec__navItem-parents.active .navItem__parents::before {
		transform: rotate(90deg) !important;
	}
	.navItem__children {
		overflow: hidden;
		width: 100%;
		height: 0;
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.headerSec__navItem-parents.active .navItem__parents {
		margin-bottom: 0;
	}
	.headerSec__navItem-parents.active .navItem__children {
		height: auto;
		margin-bottom: 7.4667vw;
		padding: 1.3333vw 4vw;
	}
	.navItem__children .navItem__title {
		width: 100%;
		border-bottom: 1px solid #8ca0bd;
	}
	.navItem__children .navItem__title a {
		position: relative;
		display: block;
		width: 100%;
		padding: 1.3333vw;
	}
	.navItem__children .navItem__title .navItem__title-jp {
		font-size: 4.2667vw;
		font-weight: 500;
		color: #fff;
	}
	.navItem__children .navItem__title .navItem__title-en {
		display: none;
	}
	.navItem__children__list {
		width: 100%;
		padding-left: 2.6667vw;
	}
	.navItem__children__list li {
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
		border-bottom: 1px solid #8ca0bd;
	}
	.navItem__children__list a {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		padding: 2.6667vw;
		font-size: 3.7333vw;
		font-weight: 500;
		color: #fff;
		line-height: 1;
	}
	.navItem__children .navItem__title a::after,
	.navItem__children__list a::after {
		position: absolute;
		top: calc( 50% - 1.3333vw );
		right: 2.6667vw;
		content: "";
		width: 1.3333vw;
		height: 2.6667vw;
		background: url(../img/common/icon__arrow__right-w.png) no-Repeat;
		background-size: contain;
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}

	.headerSec__navItem-tel,
	.headerSec__navItem-contact {
		width: 100%;
		height: 26.6667vw;
	}
	.headerSec__navItem__link-tel,
	.headerSec__navItem__link-contact {
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #fff;
	}
	.headerSec__navItem-tel {
		margin-top: 11.2vw;
	}
	.headerSec__navItem-tel img {
		width: 66.4vw;
		margin-bottom: 2.1333vw;
	}
	.headerSec__navItem-contact img {
		width: 8.2667vw;
		margin-right: 4.2667vw;
	}
	.headerSec__navItem__link-tel {
		flex-flow: column;
		background-image: linear-gradient(90deg, #032E6F, #76B1D0);
		font-size: 3.2vw;
		font-weight: 700;
	}
	.headerSec__navItem__link-contact {
		background-image: linear-gradient(90deg, #FF782B, #F4BB21);
		font-size: 5.3333vw;
		font-weight: 700;
	}
	.headerSec__navItem__link-contact:hover {
		color: #fff;
	}
	.headerSec__navItem__link-contact:hover::before {
		opacity:0;
	}
}


/*-------------------------------
	footer
-------------------------------*/
.footerSec {
	position: relative;
	display: block;
	background: -moz-linear-gradient(top, #0149B5 0%, #021738 85%);
	background: -webkit-linear-gradient(top, #0149B5 0%, #021738 85%);
	background: linear-gradient(to bottom, #0149B5 0%, #021738 85%);
	padding: 0;
	z-index: 1;
}
.footerSec__upper {
	width: 80.3571vw;
	margin: 0 auto;
	padding: 9.1429vw 0 5.2857vw;
	color: #fff;
}
.footerSec__info {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 5.6429vw;
}
.footerSec__info h2.company__name {
	width: 17.5vw;
	margin-right: 6.2857vw;
}
.footerSec__info .company__address {
	font-size: 1.1429vw;
	font-weight: 400;
	line-height: 1.875;
}
.footerSec__nav {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.footerSec__nav a {
	color: #fff;
}
.footerSec__pageLink {
	width: 17.1429vw;
	margin-right: 2.8571vw;
}
.footerSec__pageLink:nth-child(1) {
	width: 32.8571vw;
}
.pageLinkItem__parentItem {
	position: relative;
	height: 3.9286vw;
	border-bottom: 1px solid #5776a5;
}
.pageLinkItem__parentItem a {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 100%;
	line-height: 1;
}
.pageLinkItem__parentItem a::after {
	position: absolute;
	top: calc( 50% - 7px );
	right: 1.2143vw;
	content: "";
	width: 7px;
	height: 14px;
	background: url(../img/common/icon__arrow__right-w.png) no-Repeat;
	background-size: contain;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.pageLinkItem__parentItem a:hover::after {
	right: 0.7143vw;
}
.pageLinkItem__parentItem .pageLinkItem__parentItem-jp {
	display: inline-block;
	font-size: 1vw;
	font-weight: 300;
}
.pageLinkItem__parentItem .pageLinkItem__parentItem-en {
	display: inline-block;
	margin-right: 1.2857vw;
	font-size: 1.4286vw;
	font-weight: 700;
}
.footerSec__pageLink:nth-child(1) .pageLinkItem__parentItem {
	margin-bottom: 1.1429vw;
}
.footerSec__pageLink:nth-child(2) .pageLinkItem__parentItem:nth-child(1) {
	margin-bottom: 2.5vw;
}
.footerSec__pageLink:nth-child(2) .pageLinkItem__parentItem:nth-child(2) {
	margin-bottom: 1.1429vw;
}
.footerSec__pageLink:nth-child(3) .pageLinkItem__parentItem:nth-child(1) {
	margin-bottom: 2.5vw;
}
.footerSec__pageLink:nth-child(3) .pageLinkItem__parentItem:nth-child(2) {
	margin-bottom: 1.1429vw;
}
.childrenList__wrap {
	display: flex;
}
.footerSec__pageLink:nth-child(1) .pageLinkItem__childrenList {
	width: 17.5vw;
}
.footerSec__pageLink:nth-child(2) .pageLinkItem__childrenList {
	margin-bottom: 1.1429vw;
}
.footerSec__pageLink:nth-child(3) .pageLinkItem__childrenList {
	margin-bottom: 1.1429vw;
}
.pageLinkItem__childrenList .pageLinkItem__childrenItem {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 1.7857vw;
	padding-left: 1.4286vw;
	font-size: 1vw;
	font-weight: 400;
	letter-spacing: .05em;
	line-height: 1;
}
.pageLinkItem__childrenList .pageLinkItem__childrenItem::before {
	position: absolute;
	top:0;
	left: 0;
	content: "－";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1.4286vw;
	height: 1.7857vw;
}
.footerSec__bottom {
	width: 100%;
	height: 4.6429vw;
	background: #aebbcf;
}
.footerSec__bottom .copyright {
	width: 80.3571vw;
	margin: 0 auto;
	font-size: 1vw;
	font-weight: 300;
	line-height: 4.6429vw;
	letter-spacing: 0.2em;
	text-align: left;
	color: #032E6F;
}

@media screen and (min-width:1400px) {
	.footerSec__upper {
		width: 1125px;
		padding: 128px 0 74px;
	}
	.footerSec__info {
		margin-bottom: 79px;
	}
	.footerSec__info h2.company__name {
		width: 245px;
		margin-right: 88px;
	}
	.footerSec__info .company__address {
		font-size: 16px;
	}
	.footerSec__pageLink {
		width: 240px;
		margin-right: 40px;
	}
	.footerSec__pageLink:nth-child(1) {
		width: 460px;
	}
	.pageLinkItem__parentItem {
		height: 55px;
	}
	.pageLinkItem__parentItem a::after {
		right: 17px;
	}
	.pageLinkItem__parentItem a:hover::after {
		right: 10px;
	}
	.pageLinkItem__parentItem .pageLinkItem__parentItem-jp {
		font-size: 14px;
	}
	.pageLinkItem__parentItem .pageLinkItem__parentItem-en {
		margin-right: 18px;
		font-size: 20px;
	}
	.footerSec__pageLink:nth-child(1) .pageLinkItem__parentItem {
		margin-bottom: 16px;
	}
	.footerSec__pageLink:nth-child(2) .pageLinkItem__parentItem:nth-child(1) {
		margin-bottom: 35px;
	}
	.footerSec__pageLink:nth-child(2) .pageLinkItem__parentItem:nth-child(2) {
		margin-bottom: 16px;
	}
	.footerSec__pageLink:nth-child(3) .pageLinkItem__parentItem:nth-child(1) {
		margin-bottom: 35px;
	}
	.footerSec__pageLink:nth-child(1) .pageLinkItem__childrenList {
		width: 245px;
	}
	.footerSec__pageLink:nth-child(2) .pageLinkItem__childrenList {
		margin-bottom: 16px;
	}
	.footerSec__pageLink:nth-child(3) .pageLinkItem__childrenList {
		margin-bottom: 16px;
	}
	.pageLinkItem__childrenList .pageLinkItem__childrenItem {
		height: 25px;
		padding-left: 20px;
		font-size: 14px;
	}
	.pageLinkItem__childrenList .pageLinkItem__childrenItem::before {
		width: 20px;
		height: 25px;
	}
	.footerSec__bottom {
		height: 65px;
	}
	.footerSec__bottom .copyright {
		width: 1125px;
		font-size: 14px;
		line-height: 65px;
	}
}

@media screen and (max-width:767px) {
	.footerSec__upper {
		width: 100%;
		padding: 29.3333vw 0 26.1333vw;
	}
	.footerSec__info {
		justify-content: center;
		flex-flow: column;
		margin-bottom: 12vw;
	}
	.footerSec__info h2.company__name {
		width: 65.3333vw;
		margin-right: 0;
		margin-bottom: 8vw;
	}
	.footerSec__info .company__address {
		font-size: 4.2667vw;
		text-align: center;
	}
	.footerSec__nav {
		display: none;
	}
	.footerSec__upper .footerSec__privacy a {
		display: block;
		width: 100%;
		font-size: 3.7333vw;
		color: #fff;
		letter-spacing: .05em;
		text-align: center;
	}
	.footerSec__bottom {
		height: 10.6667vw;
	}
	.footerSec__bottom .copyright {
		width: 100%;
		font-size: 2.6667vw;
		line-height: 10.6667vw;
		text-align: center;
		letter-spacing: .1em;
	}
}

