@charset "utf-8";
/* PCファースト */
/* 960px以下でSP */

/* ========== 全体の設定 ========== */
html {
	scroll-behavior: smooth;
}
html, body {
	font-family: sans-serif;
	font-size: 16px;
	line-height: 1.7778;
	font-feature-settings: "palt";
	overflow-x: hidden;
}
.wrapper {
	display: flex;
	justify-content: center;
	width: 100vw;
}
.wrapper__inner {
	width: 100%;
	min-width: 1920px;
}
p {
	text-align: justify;
}
img, picture {
	width: 100%;
	height: auto;
}
.container {
	position: relative;
}
@media screen and (max-width: 960px) { /* sp */
	.wrapper {
		display: block;
	}
	.wrapper__inner {
		min-width: auto;
	}
}
/* ========== コンテンツ関連 ========== */
.contents-before-deco {
	position: absolute;
	left: 0;
	top: 70px; /* .contents-hの位置調整に合わせて */
	width: 100%;
}
.contents-before-deco--policy {
	top: 0; /* .contents-hがないページなため */
}
.contents {
	position: relative;
	width: 100vw;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	z-index: 2;
}
.contents-h {
	padding-top: calc(2em + 70px);
	margin-top: -70px; /* アンカリンクの位置調整 header 70px */
	margin-bottom: 2em;
	line-height: 1.2;
}
.contents-h__eng {
	font-family: Arial, Helvetica, "sans-serif";
	font-style: italic;
	font-size: 72px;
	color: #E8380D;
	transform-origin: left bottom;
}
.contents-h__jp {
	font-size: 26px;
	color: #B3B3B3;
	margin-left: 1em;
}
.contents-copy {
	font-size: 22px;
	font-weight: bold;
	line-height: 2;
	color: #10004E;
	margin-top: 30px;
	margin-bottom: 1em;
}
.contents-copy p {
	transform-origin: left bottom;
	transform: skewX(-10deg);
}
.contents-end-deco {
	margin-bottom: min(-80px, calc(-80 / 1920 * 100vw));
}
@media screen and (max-width: 960px) { /* sp */
	.contents-before-deco {
		position: static;
		margin-bottom: calc(20 / 750 * 100vw);
	}
	.contents {
		max-width: 750px;
		padding: 0 calc(25 / 750 * 100vw);
	}
	.contents-h {
		padding-top: calc(2em + 120 / 750 * 100vw);
		margin-top: calc(-120 / 750 * 100vw); /* header 750pxの時120px */
		margin-bottom: 2em;
		line-height: 1.2;
	}
	.contents-h__eng {
		font-size: calc(80 / 750 * 100vw);
	}
	.contents-h__jp {
		font-size: calc(32 / 750 * 100vw);
	}
	.contents-copy {
		font-size: min(18px, calc(18 / 375 * 100vw));
		margin-top: 30px;
		margin-bottom: 1em;
	}
	.contents-end-deco {
		margin-bottom: max(-100px, calc(-100 / 750 * 100vw));
	}
}
/* PC・SPで表示・非表示 */
.sp-visible {
	display: none;
}
@media screen and (max-width: 960px) { /* sp */
	.sp-visible {
		display: block;
	}
	.sp-none {
		display: none;
	}
}

/* ========== header ========== */
.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;	
}
.header-container {
	width: 100%;
	transition: 0.5s;
}
.header-inner {
	display: flex;
}
@media screen and (max-width: 960px) { /* SP */
	.contents.contents--header {
		max-width: none;
		width: 100%;
		padding: 0;
	}
}
/* header-logo */
.header-logo-box {
	position: relative;
	display: flex;
	align-items: center;
	background: #FFFFFF;
	margin-right: auto;
	margin-left: calc(50% - 50vw);
	padding-left: calc(50vw - 50%);
	transition: 0.5s;
}
.header-logo-box::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	transform-origin: right bottom;
	transform: skew(-51.77deg);
	z-index: 1;
	transition: 0.5s;
}
.header-logo {
	position: relative;
	width: 150px;
	height: 70px;
	z-index: 2;
}
.header-logo img {
	position: absolute;
	left: 0;
	top: 9px;
	transition: 0.5s;
}
@media screen and (max-width: 960px) { /* SP */
	.header-logo-box {
		margin-left: 0;
		padding-left: 15px;
	}
	.header-logo {
		width: calc(210 / 750 * 100vw);
		height: calc(120 / 750 * 100vw);
	}
	.header-logo img {
		top: calc(25 / 750 * 100vw);
	}
}
/* header-pc-nav */
.header-pc-nav {
	display: flex;
	height: 100%;
}
.header-pc-nav-ul {
	display: flex;
	color: #FFFFFF;
}
.header-pc-nav-ul > li {
	position: relative;
	display: flex;
}
.header-pc-nav-ul a {
	position: relative;
	display: block;
	align-items: center;
	padding: 20px 20px;
	margin-left: 15px;	
}
.header-pc-nav-ul a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 50%;
	width: calc(100% - 40px);
	height: 2px;
	transform: translate(-50%,1em) scale(0,1);
	transition: 0.3s;
}
.header-pc-nav-ul a:hover::after {
	background: #E8380D;
	transform: translate(-50%,1em) scale(1,1);
}
.header-pc-nav-ul__dropdown {
	width: 300px;
    position: absolute;
    top: 70px;
    left: 50%;
	padding: 10px 20px;
	background-color: #10004E;
	border-bottom: 7px solid #E8380D;
	transform: translate(-50%,0) scaleY(0);
    transform-origin: center top;
    transition: all .3s;
}
.header-pc-nav-ul > li:hover .header-pc-nav-ul__dropdown {
	transform: translate(-50%,0) scaleY(1);
}
.header-pc-nav-ul__dropdown a {
	padding-top: 10px;
	padding-bottom: 10px;
}
.header-nav-contact {
	position: relative;
	width: 70px;
	height: 70px;
	margin-left: 40px;
	z-index: 2;
}
.header-nav-contact img {
	position: absolute;
	left: 0;
	top: 0;
	transition: 0.3s;
}
.header-nav-contact:hover img:last-of-type {
	opacity: 0;
}
.header-sp-nav {
	display: none;
}
@media screen and (max-width: 960px) { /* SP */
	.header-pc-nav-ul {
		display: none;
	}
	.header-nav-contact {
		width: calc(120 / 750 * 100vw);
		height: calc(120 / 750 * 100vw);
		margin-left: 0;
	}
	.header-sp-nav {
		position: absolute;
		top: calc(120 / 750 * 100vw);
		left: 0;
		width: 100%;
		padding: 20px;
		color: #FFFFFF;
		background: #10004E;
		border-bottom: 5px solid #E8380D;
		z-index: 99;
	}
	.header-sp-nav li {
		margin-bottom: 0.3em;
	}
	.header-sp-nav__sub {
		font-size: 0.8em;
		padding-left: 2em;
	}
	.header-sp-nav__sub li {
		margin: 0.3em 0;
	}
}
/* ハンバーガー */
.header-hamburgerMenu {
	display: none;
	position: relative;
	cursor: pointer;
	width: 70px;
	height: 70px;
	background: #10004E;
}
@media screen and (max-width: 960px) {
	.header-hamburgerMenu {
		display: block;
		width: calc(120 / 750 * 100vw);
		height: calc(120 / 750 * 100vw);
	}
}
.header-hamburgerMenu__inner {
	position: relative;
	width: 32px;
	height: 42px;
	margin: 0 auto;
}
.header-hamburgerMenu span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 0;
	height: 3px;
	border-radius: 2px;
	background: #FFFFFF;
	width: 100%;
}
.header-hamburgerMenu span:nth-of-type(1) {
	top: 10px;
}
.header-hamburgerMenu span:nth-of-type(2) {
	top: 20px;
}
.header-hamburgerMenu span:nth-of-type(3) {
	top: 30px;
}
.header-hamburgerMenu-active span:nth-of-type(1) {
	top: 14px;
	left: 0;
	transform: translateY(6px) rotate(-45deg);
	width: 100%;
}
.header-hamburgerMenu-active span:nth-of-type(2) {
	opacity: 0;
}
.header-hamburgerMenu-active span:nth-of-type(3) {
	top: 26px;
	left: 0;
	transform: translateY(-6px) rotate(45deg);
	width: 100%;
}
/* header-fixed 追従時 */
.header-fixed .header-container {
	background: #10004E;
}
.header-fixed .header-logo-box {
	background: #10004E;
}
.header-fixed .header-logo-box::after {
	background: #10004E;
}
.header-fixed .header-logo img:last-of-type {
	opacity: 0;
}

/* ========== hero ========== */
.section-hero {
	position: relative;
	z-index: 2;
}
.hero-parallelogram {
	position: absolute;
	right: 0;
	top: 0;
	width: calc(1900 / 1920 * 100%);
	height: 100%;	
	background: #10004E;
	transform-origin: left bottom;
	transform: skewX(-51.77deg);
}
.hero-img {
	width: max(calc(1100 / 1920 * 100%), calc(1100 / 1920 * 100vw));
	margin-left: auto;
	transform-origin: right bottom;
	transform: skewX(-51.77deg);
	overflow: hidden;
}
.hero-img img {
	transform-origin: right bottom;
	transform: skewX(51.77deg);
}
@media screen and (max-width: 960px) { /* sp */
	.hero-parallelogram {
		width: calc(1110 / 750 * 100vw); 
	}
	.hero-img {
		padding-top: calc(120 / 750 * 100vw);
		width: calc(673 / 750 * 100vw);
	}
}
/* deco */
.hero-deco-left {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 2;
	transform: translateX(-100%);
	animation: slideIn-Left 1s forwards;
}
.hero-deco-left-01 {
	animation-delay: 0; 
}
.hero-deco-left-02 {
	animation-delay: 0.4s; 
}
.hero-deco-left-03 {
	animation-delay: 0.2s; 
}
@keyframes slideIn-Left {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0);
	}
}
.hero-deco-right {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 2;
	transform: translateX(100%);
	animation: slideIn-Right 1s forwards;
}
.hero-deco-right-01 {
	animation-delay: 0; 
}
.hero-deco-right-02 {
	animation-delay: 0.4s; 
}
.hero-deco-right-03 {
	animation-delay: 0.2s; 
}
.hero-deco-right-04 {
	animation-delay: 0;
}
@keyframes slideIn-Right {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(0);
	}
}
@media screen and (max-width: 960px) {
	.hero-deco-right-03 {
		display: none;
	}
	.hero-deco-right-04 {
		display: none;
	}
}
.hero-deco-red-line {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 2;
	transform-origin: left bottom;
	transform: translate(58.7%, -100%);
	animation: slideIn-RedLine 1s forwards;
	animation-delay: 0.8s;
}
@keyframes slideIn-RedLine {
	0% {
		transform: translate(58.7%, -100%);
	}
	100% {
		transform: translate(0, 0);
	}
}
.hero-red-line {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
@media screen and (max-width: 960px) { /* sp */
	.hero-deco-red-line {
		transform: translate(87.5%, -100%);
		animation: slideIn-RedLine-sp 0.5s forwards;
		animation-delay: 0.8s;
	}
}
@keyframes slideIn-RedLine-sp {
	0% {
		transform: translate(87.5%, -100%);
	}
	100% {
		transform: translate(0, 0);
	}
}
.contents--hero-text {
	position: absolute;
	left: 50%;
	top: 148px;
	transform: translateX(-50%);
	opacity: 0;
	animation: HeroTextIn 1s forwards;
	animation-delay: 0.5s;
}
@keyframes HeroTextIn {
	0% {
		transform: translateX(-55%);
		opacity: 0;
	}
	100% {
		transform: translateX(-50%);
		opacity: 1;
	}
}
@media screen and (max-width: 960px) { /* sp */
	.contents--hero-text {
		left: 0;
		top: calc(255 / 750 * 100vw);
		transform: translateX(0);
		animation: HeroTextIn-sp 1s forwards;
		animation-delay: 1.0s;
	}
}
@keyframes HeroTextIn-sp {
	0% {
		transform: translateX(-5%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
.hero-page-name {
	display: inline-block;
	font-size: 26px;
	background: #D8E1ED;
	padding: 0.1em 2em;
	margin-left: -1.9em;
	transform: skewX(-51.77deg);
}
.hero-page-name div {
	transform: skewX(46.77deg);
}
.hero-main-copy {
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 69px;
	line-height: 1.1594;
	color: #FFFFFF;
	margin: 0.5em 0 0.2em;
	transform-origin: left bottom;
	transform: skewX(-10deg);
}
.hero-sub-copy {
	font-size: 22px;
	color: #FFFFFF;
}
@media screen and (max-width: 960px) { /* sp */
	.hero-page-name {
		font-size: calc(26 / 750 * 100vw);
	}
	.hero-main-copy {
		font-size: calc(69 / 750 * 100vw);
		margin: 0.4348em 0 0.1em;
		white-space: nowrap;
	}
	.hero-sub-copy {
		font-size: calc(40 / 750 * 100vw);
	}
}

/* ========== パンくずリスト ========== */
.container-breadcrumb {
	background: #10004E;
}
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	color: #FFFFFF;
	padding: 20px 0;
}
.breadcrumb li:not(:last-of-type)::after {
	content: ">";
	margin: 0 0.6em;
}
.breadcrumb li:first-of-type {
	margin-left: auto;
}
.breadcrumb a {
	text-decoration: underline;
	transition: 0.3s;
}
.breadcrumb a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 960px) { /* sp */

}

/* ========== anchor ========== */
.section-anchor {
	background: #10004E;
}
.anchor-ul {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	padding-bottom: 3em;
}
.anchor-ul li {
	width: 32%;
	margin-bottom: 1em;
}
.anchor-ul li:nth-child(3n - 2) {
	margin-right: 2%;
}
.anchor-ul li:nth-child(3n) {
	margin-left: 2%;
}
.anchor-ul li a {
	display: block;
	text-align: center;
	color: #FFFFFF;
	background: rgba(255,255,255,0.35);
	border: 1px solid #FFFFFF;
	padding: 0.5em 1em;
}
.anchor-ul li a::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	width: 0.5em;
	height: 0.5em;
	border: 2px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: translateY(-40%) rotate(135deg);
	margin-right: 0.5em;
}
.anchor-ul li a:hover {
	color: #10004E;
	background: rgba(255,255,255,1);
}
@media screen and (max-width: 960px) { /* sp */
	.anchor-ul {
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		padding-bottom: 1.5em;
	}
	.anchor-ul li {
		width: 100%;
		margin-bottom: 1em;
	}
	.anchor-ul li:nth-child(3n - 2) {
		margin-right: 0;
	}
	.anchor-ul li:nth-child(3n) {
		margin-left: 0;
	}
	.anchor-ul li a {
		font-size: 14px;
	}
	.anchor-ul li a:hover {
		color: #10004E;
		background: rgba(255,255,255,1);
	}
}

/* ========== contact-btn ========== */
.contact-btn-deco {
	position: absolute;
	left: 0;
	top: min(-250px, calc(-250 / 1920 * 100vw));
	width: 100%;
	z-index: 2;
}
.contact-btn {
	position: relative;
	display: flex;
	align-items: center;
	background: #FFFFFF;
	border: 2px solid #CCCCCC;
	transition: 0.3s;
	overflow: hidden;
	width: 840px;
	height: 200px;	
	margin: 0 auto;
	z-index: 2;
}
.contact-btn_inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;	
	padding: 0 50px;
}
.contact-btn_inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../images/contact-btn_hover-light.svg") left / contain no-repeat;
	transform: translate(-100%,0);
	transition: 1.0s;
}
.contact-btn_inner-text {
	width: 500px;
}
.contact-btn_inner-arrow {
	width: 82px;
	transition: 0.3s
}
.contact-btn:hover {
	border: 2px solid #E6E6E6;
}
.contact-btn:hover .contact-btn_inner::before {
	transform: translate(100%,0);
}
.contact-btn:hover .contact-btn_inner-arrow {
	transform: translate(20%,0);
}
@media screen and (max-width: 960px) { /* sp */
	.contact-btn-deco {
		top: calc(-110 / 750 * 100vw);
	}
	.contact-btn {
		width: min(700px ,calc(700 / 750 * 100vw));
		height: min(200px, calc(200 / 750 * 100vw));

	}
	.contact-btn_inner {
		padding: 0 min(50px, calc(50 / 750 * 100vw));
	}
	.contact-btn_inner-text {
		width: min(493px, calc(493 / 750 * 100vw));
	}
	.contact-btn_inner-arrow {
		width: min(82px, calc(82 / 750 * 100vw));
	}
}
/* ========== footer 01 ========== */
.footer-container-01 {
	position: relative;
	padding-top: 110px;
}
.footer-deco-left {
	position: absolute;
	left: 0;
	bottom: 0;
}
.footer-deco-right {
	position: absolute;
	right: 0;
	top: 0;
}
.footer-info {
	max-width: 480px;
	margin: 0 auto;
	padding-bottom: 2em;
}
.footer-logo {
	width: 200px;
	margin: 0 auto 25px;
}
.footer-address {
	display: flex;
	justify-content: center;
}
.footer-address p:first-of-type{
	margin-right: 1em;
}
.footer-tel {
	display: flex;
	justify-content: center;
	margin-top: 0.5em;
}
.footer-tel__border {
	width: 1px;
	height: 2em;
	background: #000000;
	margin: 0 1em;
}
@media screen and (max-width: 960px) { /* sp */
	.footer-container-01 {
		padding-top: calc(250 / 750 * 100vw);
	}
	.footer-deco-left {
		left: 0;
		top: 25vw;
	}
	.footer-deco-right {
		right: 0;
		top: 3vw;
	}
	.footer-info {
		font-size: 14px;
	}
	.footer-tel {
		flex-direction: column;
		align-items: center;
	}
	.footer-tel__border {
		display: none;
	}
}
/* ========== footer 02 ========== */
.footer-container-02 {
	position: relative;
	background: #10004E;
}
.footer-deco-line {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
}
.footer-nav {
	display: flex;
	justify-content: space-between;
	color: #FFFFFF;
	padding-top: 50px;
	padding-bottom: 20px;
}
.footer-nav dt {
	font-size: 30px;
	font-weight: normal;
	line-height: 1.2;
	color: #E8380D;
	border-bottom: 1px solid #4C407A;
	margin-bottom: 0.5em;
	padding-bottom: 0.1em;
}
.footer-nav dt.footer-nav-dt-small {
	font-size: 1rem;
	color: #FFFFFF;
	border-bottom: none;
	padding-top: 0.8em;
}
.footer-nav li {
	padding: 0.25em 0;
}
.footer-nav a {
	transition: 0.3s;
}
.footer-nav a:hover {
	opacity: 0.7;
}
/* コピーライト */
.footer-copyright {
	font-size: 12px;
	text-align: center;
	color: #FFFFFF;
	padding: 1em 0;
}
@media screen and (max-width: 960px) { /* sp */
	.footer-deco-line {
		display: none;
	}
	.footer-nav {
		flex-flow: column;
		text-align: center;
	}
	.footer-nav dt {
		margin-top: 1em;
	}
}