@charset "UTF-8";
/* ------------------------
    メインビジュアル
------------------------ */
.index-hero {
	position: relative;
	width: 100%;
	height: 100vh;
}
.index-hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}
.index-hero__h1 {
	position: absolute;
	top: calc(50% + 10px);
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.index-hero__h1 h1 {
	padding-top: 95px;
	font-size: 3.8rem;
	font-weight: 400;
	letter-spacing: 8px;
	line-height: 1.7;
	color: #fff;
    white-space: nowrap;
}
.index-hero__h1 h1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 58px;
	background: url(./img/logo.svg) no-repeat center / cover;
}
/* MV 画像スライド */
.index-hero__slide {
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: -1;
}
.index-hero__slide .hero-slide {
	height: 100%;
}
.index-hero__slide .hero-slide .slick-list,
.index-hero__slide .hero-slide .slick-track,
.index-hero__slide .hero-slide .slick-slide,
.index-hero__slide .hero-slide figure {
	height: 100%;
}
.index-hero__slide .slide-animation {
	animation: fadezoom 10s 0s forwards;
}
@keyframes fadezoom {
	0% {
			transform: scale(1);
	}
	100% {
			transform: scale(1.1);
	}
}
.index-hero__slide .hero-slide .hero-slide__item figure {
	display: block;
	overflow: hidden;
}
.index-hero__slide .hero-slide .hero-slide__item figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease;
}
.index-hero__scroll {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	font-family: "EB Garamond", serif;
    font-size: 1.6rem;
    font-weight: 400;
	color: #fff;
	padding-bottom: 70px;
}
.index-hero__scroll::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 60px;
	background-color: #fff;
	opacity: .3;
}
.index-hero__scroll::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 60px;
	background-color: #fff;

	animation: gauge 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes gauge {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media only screen and (max-width: 768px) {
	.index-hero {
		position: relative;
		width: 100%;
		height: 100vh;
	}
	.index-hero::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.2);
	}
	.index-hero__h1 {
		position: absolute;
		top: calc(50% + 10px);
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
	}
	.index-hero__h1 h1 {
		padding-top: 80px;
		font-size: 3rem;
		font-weight: 400;
		letter-spacing: 8px;
		line-height: 1.6;
		color: #fff;
	}
	.index-hero__h1 h1::before {
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 120px;
		height: 50px;
		background: url(./img/logo.svg) no-repeat center / cover;
	}
	/* MV 画像スライド */
	.index-hero__slide {
		position: absolute;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.index-hero__slide .hero-slide {
		height: 100%;
	}
	.index-hero__slide .hero-slide .slick-list,
	.index-hero__slide .hero-slide .slick-track,
	.index-hero__slide .hero-slide .slick-slide,
	.index-hero__slide .hero-slide figure {
		height: 100%;
	}
	.index-hero__slide .slide-animation {
		animation: fadezoom 10s 0s forwards;
	}
	@keyframes fadezoom {
		0% {
				transform: scale(1);
		}
		100% {
				transform: scale(1.1);
		}
	}
	.index-hero__slide .hero-slide .hero-slide__item figure {
		display: block;
		overflow: hidden;
	}
	.index-hero__slide .hero-slide .hero-slide__item figure img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: all .3s ease;
	}
	.index-hero__scroll {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		font-family: "EB Garamond", serif;
		font-size: 1.6rem;
		font-weight: 400;
		color: #fff;
		padding-bottom: 70px;
	}
	.index-hero__scroll::before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 1px;
		height: 60px;
		background-color: #fff;
		opacity: .3;
	}
	.index-hero__scroll::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 1px;
		height: 60px;
		background-color: #fff;

		animation: gauge 2s cubic-bezier(1, 0, 0, 1) infinite;
	}
	@keyframes gauge {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
	}
}











.index-about__back {
	width: 100%;
	max-width: 1500px;
	margin: auto;
	position: relative;
	padding-top: 160px;
}
.index-about__back::before {
	content: '';
	position: absolute;
	top: 0;
	left: -60px;
	width: 800px;
	height: 742px;
	background: url(./img/index-about.svg) no-repeat center / cover;
}
.index-about__content {
	position: relative;
	width: 100%;
	max-width: 1240px;
	margin: auto;
	padding: 0 20px;
}
.index-about__grid {
	position: relative;
	display: flex;
	gap: 160px;
}
.index-about__item {
	position: relative;
	width: calc(50% - 80px);
}
.index-about__item span.en {
	position: absolute;
	right: -60px;
	top: 0;
	font-family: "EB Garamond", serif;
	font-size: 11rem;
	font-weight: 500;
	letter-spacing: 5px;
	color: #C7CFD6;
	line-height: 1;
	z-index: 1;
	white-space: nowrap;
	-webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.index-about__text {
	padding-bottom: 160px;
	margin-top: -10px;
}
.index-about__text h3 {
	font-size: 3.8rem;
	font-weight: 400;
	color: #073058;
	line-height: 1.6;
}
.index-about__text p {
	font-size: 1.7rem;
	margin-top: 30px;
}
.index-about__inner {
	height: 100%;
}
.index-fixed {
	position: sticky;
}
@media only screen and (max-width: 768px) {
	.index-about__back {
		width: 100%;
		max-width: 1500px;
		margin: auto;
		position: relative;
		padding-top: 80px;
		overflow: hidden;
	}
	.index-about__back::before {
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 600px;
		height: 557px;
		background: url(./img/index-about.svg) no-repeat center / cover;
	}
	.index-about__content {
		position: relative;
		width: 100%;
		max-width: 1240px;
		margin: auto;
		padding: 0;
	}
	.index-about__grid {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		gap: 0;
	}
	.index-about__item {
		position: relative;
		width: 100%;
	}
	.index-about__item span.en {
		display: none;
	}
	.index-about__text {
		padding-bottom: 160px;
		margin-top: -10px;
		padding: 0 20px;
	}
	.index-about__text h3 {
		font-size: 2.7rem;
		font-weight: 400;
		color: #073058;
		line-height: 1.6;
	}
	.index-about__text p {
		font-size: 1.7rem;
		margin-top: 30px;
	}
	.index-about__inner {
		height: auto;
	}
	.index-fixed {
		position: static;
	}

	.index-about__img {
		margin-top: 60px;
	}
	.index-about__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 85%;
	}
	.index-about__img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}






.index-service__back {
	width: 100%;
	max-width: 1500px;
	margin: auto;
	position: relative;
	padding-top: 160px;
}
.index-service__content {
	position: relative;
	width: 100%;
	max-width: 1240px;
	margin: auto;
	padding: 0 20px;
}
.index-service__grid {
	position: relative;
	display: flex;
	margin: 0 -80px;
}
.index-service__item {
	position: relative;
	width: 50%;
	padding: 0 80px;
}
.index-service__item span.en {
	position: absolute;
	right: 5px;
	top: 140px;
	font-family: "EB Garamond", serif;
	font-size: 11rem;
	font-weight: 500;
	letter-spacing: 5px;
	color: #C7CFD6;
	line-height: 1;
	z-index: 1;
	white-space: nowrap;
	-webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.index-service__text {
	position: relative;
	color: #fff;
}
.index-service__text::before {
	content: '';
	background-color: #073058;
	position: absolute;
	top: 0;
	left: 0;
	width: 50vw;
	height: 100%;
	z-index: -2;
}
.index-service__text::after {
	content: '';
	background: url(./img/pattern.png) repeat center / auto;
	opacity: .1;
	position: absolute;
	top: 0;
	left: 0;
	width: 50vw;
	height: 100%;
	z-index: -2;
}
.index-service__text h3 {
	font-size: 3.4rem;
	font-weight: 400;
	line-height: 1.6;
}
.index-service__text p {
	font-size: 1.7rem;
	margin-top: 30px;
}
.index-service__text .grid {
	display: flex;
	gap: 30px;
	margin-top: 80px;
}
.index-service__text .grid + .grid {
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, .5);
}
.index-service__text .grid .img {
	width: 100%;
	max-width: 190px;
}
.index-service__text .grid .img figure {
	display: block;
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}
.index-service__text .grid .img figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.index-service__text .grid .text {
	width: calc(100% - 190px);
}
.index-service__text .grid .text h4 {
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.6;
}
.index-service__text .grid .text p {
	margin-top: 10px;
	font-size: 1.5rem;
}
.index-service__inner {
	height: 100%;
	padding: 140px 0;
}
@media only screen and (max-width: 768px) {
	.index-service__back {
		width: 100%;
		max-width: 1500px;
		margin: auto;
		position: relative;
		padding-top: 0;
		overflow: hidden;
	}
	.index-service__content {
		position: relative;
		width: 100%;
		max-width: 1240px;
		margin: auto;
		padding: 0;
	}
	.index-service__grid {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		margin: 0;
	}
	.index-service__item {
		position: relative;
		width: 100%;
		padding: 0;
	}
	.index-service__item span.en {
		display: none;
	}
	.index-service__text {
		position: relative;
		color: #fff;
		padding: 60px 20px;
		order: 1;
	}
	.index-service__text::before {
		content: '';
		background-color: #073058;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.index-service__text::after {
		content: '';
		background: url(./img/pattern.png) repeat center / auto;
		opacity: .1;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.index-service__text h3 {
		font-size: 2.7rem;
		font-weight: 400;
		line-height: 1.6;
	}
	.index-service__text p {
		font-size: 1.7rem;
		margin-top: 30px;
	}
	.index-service__text .grid {
		display: flex;
		flex-wrap: wrap;
		gap: 0;
		margin-top: 60px;
	}
	.index-service__text .grid + .grid {
		padding-top: 30px;
		margin-top: 30px;
		border-top: 1px solid rgba(255, 255, 255, .5);
	}
	.index-service__text .grid .img {
		width: 100%;
		max-width: 100%;
	}
	.index-service__text .grid .img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 60%;
	}
	.index-service__text .grid .img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.index-service__text .grid .text {
		width: 100%;
		margin-top: 20px;
	}
	.index-service__text .grid .text h4 {
		font-size: 2rem;
		font-weight: 400;
		line-height: 1.6;
	}
	.index-service__text .grid .text p {
		margin-top: 10px;
		font-size: 1.5rem;
	}
	.index-service__inner {
		height: auto;
		padding: 0;
	}
	.index-service__img {
		order: 2;
	}
	.index-service__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 85%;
	}
	.index-service__img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}






.index-works {
	background-color: #333;
	padding: 100px 0;
}
.index-works h2 {
	font-family: "EB Garamond", serif;
	font-size: 4.4rem;
	font-weight: 400;
	letter-spacing: 5px;
	text-align: center;
	color: #fff;
	line-height: 1;
}
.index-works .index-works__slide {
	width: 100%;
	margin: 50px auto 0;
}
.index-works .index-works__slide.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.index-works .index-works__slide .index-works__img {
	padding: 0 5px;
	opacity: .4;
	transition: .3s;
}
.index-works .index-works__slide .index-works__img.slick-active {
	opacity: 1;
	transition: .3s;
}
.index-works .index-works__slide .index-works__img figure {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 60%;
}
.index-works .index-works__slide .index-works__img figure img {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-works .index-works__slide .index-works__img figure figcaption {
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #333;
	padding: 10px 20px;
	color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
.index-works__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
}
.index-works__btn button.custom-arrow {
	display: inline-block;
	position: relative;
	width: 35px;
	height: 35px;
}
.index-works__btn button.custom-arrow::before {
	content: '';
    width: 25px;
    height: 25px;
	position: absolute;
	top: 50%;
	left: calc(50% + 7px);
	transform: translate(-50%, -50%) rotate(45deg);
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transition: .3s;
}
.index-works__btn button.custom-arrow.custom-next::before {
	left: calc(50% - 7px);
	transform: translate(-50%, -50%) rotate(-135deg);
}
.index-works__btn .custom-dots {
	margin: 0 15px;
}
.index-works__btn .custom-dots .slick-dots {
	position: relative;
	bottom: unset;
	display: flex;
	align-items: center;
	justify-content: center;
}
.index-works__btn .custom-dots .slick-dots li {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 100%;
	margin: 0 1px;
}
.index-works__btn .custom-dots .slick-dots li button {
	border: 0;
	background: transparent;
	display: block;
	width: 30px;
	height: 3px;
	outline: none;
	padding: 0;
	cursor: pointer; 
}
.index-works__btn .custom-dots .slick-dots li button:before {
	content: '';
	font-family: unset;
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 30px;
	height: 3px;
	text-align: center;
	opacity: 1;
	background-color: rgba(255, 255, 255, .3);
	color: transparent;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.index-works__btn .custom-dots .slick-dots li.slick-active button:before {
	opacity: 1;
	color: black;
	background-color: #fff;
	width: 30px;
	height: 3px;
	transition: .3s;
}
@media only screen and (max-width: 768px) {
	.index-works {
		background-color: #333;
		padding: 60px 0;
	}
	.index-works h2 {
		font-family: "EB Garamond", serif;
		font-size: 3.2rem;
		font-weight: 400;
		letter-spacing: 3px;
		text-align: center;
		color: #fff;
		line-height: 1;
	}
	.index-works .index-works__slide {
		width: 100%;
		margin: 40px auto 0;
	}
	.index-works .index-works__slide.slick-dotted.slick-slider {
		margin-bottom: 0;
	}
	.index-works .index-works__slide .index-works__img {
		padding: 0 5px;
		opacity: .4;
		transition: .3s;
	}
	.index-works .index-works__slide .index-works__img.slick-active {
		opacity: 1;
		transition: .3s;
	}
	.index-works .index-works__slide .index-works__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 70%;
	}
	.index-works .index-works__slide .index-works__img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.index-works .index-works__slide .index-works__img figure figcaption {
		position: relative;
		left: unset;
		bottom: unset;
		background-color: #333;
		padding: 10px 0 0;
		color: #fff;
		font-family: "Zen Kaku Gothic New", sans-serif;
		font-size: 1.2rem;
	}
	.index-works__btn {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 30px;
	}
	.index-works__btn button.custom-arrow {
		display: inline-block;
		position: relative;
		width: 35px;
		height: 35px;
	}
	.index-works__btn button.custom-arrow::before {
		content: '';
		width: 25px;
		height: 25px;
		position: absolute;
		top: 50%;
		left: calc(50% + 7px);
		transform: translate(-50%, -50%) rotate(45deg);
		border-bottom: 2px solid #fff;
		border-left: 2px solid #fff;
		transition: .3s;
	}
	.index-works__btn button.custom-arrow.custom-next::before {
		left: calc(50% - 7px);
		transform: translate(-50%, -50%) rotate(-135deg);
	}
	.index-works__btn .custom-dots {
		margin: 0 10px;
	}
	.index-works__btn .custom-dots .slick-dots {
		position: relative;
		bottom: unset;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.index-works__btn .custom-dots .slick-dots li {
		position: relative;
		display: inline-block;
		width: 15px;
		height: 100%;
		margin: 0 1px;
	}
	.index-works__btn .custom-dots .slick-dots li button {
		border: 0;
		background: transparent;
		display: block;
		width: 15px;
		height: 3px;
		outline: none;
		padding: 0;
		cursor: pointer; 
	}
	.index-works__btn .custom-dots .slick-dots li button:before {
		content: '';
		font-family: unset;
		font-size: 0;
		line-height: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 15px;
		height: 3px;
		text-align: center;
		opacity: 1;
		background-color: rgba(255, 255, 255, .3);
		color: transparent;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	.index-works__btn .custom-dots .slick-dots li.slick-active button:before {
		opacity: 1;
		color: black;
		background-color: #fff;
		width: 15px;
		height: 3px;
		transition: .3s;
	}
}






.page-hero {
	position: relative;
}
.page-hero::after {
	content: '';
	width: 100%;
	height: 100px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .3));
}
.page-hero figure {
	display: block;
	position: relative;
	overflow: hidden;
	height: 540px;
}
.page-hero figure::after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 0;
	left: 0;
}
.page-hero figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
.page-hero__ttl {
	position: absolute;
	left: 150px;
	top: calc(50% + 40px);
	transform: translateY(-50%);
	color: #fff;
    line-height: 1;
	padding: 0 0 5px 40px;
}
.page-hero__ttl::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background-color: #fff;
}
.page-hero__ttl .en {
	font-family: "EB Garamond", serif;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 1px;
	/* text-shadow: 0 0 4px rgba(0, 0, 0, .5); */
	text-transform: uppercase;
}
.page-hero__ttl h1 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 2px;
	white-space: nowrap;
	margin-top: 25px;
	/* text-shadow: 0 0 4px rgba(0, 0, 0, .5); */
}
.page-breadcrumbs {
	display: flex;
	position: absolute;
	left: 150px;
	bottom: 20px;
	z-index: 1;
}
.page-breadcrumbs li:first-child {
	margin-left: 0;
	padding-left: 0;
}
.page-breadcrumbs li {
	position: relative;
	margin-left: 20px;
	padding-left: 20px;
}
.page-breadcrumbs li:first-child:before {
	display: none;
}
.page-breadcrumbs li::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
}
.page-breadcrumbs li a {
	color: #fff;
}
.page-breadcrumbs li:last-child a {
	pointer-events: none;
}
@media only screen and (max-width: 768px) {
	.page-hero {
		position: relative;
	}
	.page-hero::after {
		content: '';
		width: 100%;
		height: 100px;
		position: absolute;
		bottom: 0;
		left: 0;
		background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .3));
	}
	.page-hero figure {
		display: block;
		position: relative;
		overflow: hidden;
		height: 280px;
	}
	.page-hero figure::after {
		content: '';
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.2);
		position: absolute;
		top: 0;
		left: 0;
	}
	.page-hero figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: .3s;
	}
	.page-hero__ttl {
		position: absolute;
		left: 30px;
		top: calc(50% + 10px);
		transform: translateY(-50%);
		color: #fff;
		line-height: 1;
		padding: 0;
	}
	.page-hero__ttl::before {
		display: none;
	}
	.page-hero__ttl .en {
		font-family: "EB Garamond", serif;
		font-size: 1.8rem;
		font-weight: 500;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
	.page-hero__ttl h1 {
		font-size: 3rem;
		font-weight: 400;
		letter-spacing: 0;
		white-space: nowrap;
		margin-top: 15px;
	}
	.page-breadcrumbs {
		display: flex;
		position: absolute;
		left: 20px;
		bottom: 15px;
		z-index: 1;
		font-size: 1.3rem;
	}
	.page-breadcrumbs li:first-child {
		margin-left: 0;
		padding-left: 0;
	}
	.page-breadcrumbs li {
		position: relative;
		margin-left: 15px;
		padding-left: 15px;
	}
	.page-breadcrumbs li:first-child:before {
		display: none;
	}
	.page-breadcrumbs li::before {
		content: '';
		width: 5px;
		height: 5px;
		border-radius: 50%;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		background-color: #fff;
	}
	.page-breadcrumbs li a {
		color: #fff;
	}
}




.page-heroMin {
	position: relative;
	width: 100%;
	height: 380px;
}
.page-heroMin::before {
	content: '';
    background-color: #073058;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.page-heroMin::after {
    content: '';
    background: url(./img/pattern.png) repeat center / auto;
    opacity: .1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.page-heroMin__ttl {
	position: absolute;
	left: 150px;
	top: calc(50% + 30px);
	transform: translateY(-50%);
	color: #fff;
    line-height: 1;
	padding: 0 0 5px 40px;
}
.page-heroMin__ttl::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background-color: #fff;
}
.page-heroMin__ttl .en {
	font-family: "EB Garamond", serif;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.page-heroMin__ttl h1 {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 2px;
	white-space: nowrap;
	margin-top: 25px;
}
@media only screen and (max-width: 768px) {
	.page-heroMin {
		position: relative;
		width: 100%;
		height: 280px;
	}
	.page-heroMin::before {
		content: '';
		background-color: #073058;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.page-heroMin::after {
		content: '';
		background: url(./img/pattern.png) repeat center / auto;
		opacity: .1;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.page-heroMin__ttl {
		position: absolute;
		left: 30px;
		top: calc(50% + 10px);
		transform: translateY(-50%);
		color: #fff;
		line-height: 1;
		padding: 0;
	}
	.page-heroMin__ttl::before {
		display: none;
	}
	.page-heroMin__ttl .en {
		font-family: "EB Garamond", serif;
		font-size: 1.8rem;
		font-weight: 500;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
	.page-heroMin__ttl h1 {
		font-size: 3rem;
		font-weight: 400;
		letter-spacing: 0;
		white-space: nowrap;
		margin-top: 15px;
	}
}





p.catch {
	font-size: 2.4rem;
	font-weight: 400;
	color: #073058;
	letter-spacing: 2px;
	line-height: 2;
	margin-top: 80px;
	text-align: center;
}
@media only screen and (max-width: 768px) {
	p.catch {
		font-size: 2rem;
		font-weight: 400;
		color: #073058;
		letter-spacing: 0;
		line-height: 2;
		margin-top: 60px;
		text-align: center;
	}
}



.about-message {
	position: relative;
}
.about-message::before {
	content: '';
    background-color: #073058;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.about-message::after {
    content: '';
    background: url(./img/pattern.png) repeat center / auto;
    opacity: .1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.about-message__content {
	position: relative;
	width: 100%;
	max-width: 1500px;
	margin: auto;
}
.about-message__content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -60px;
    width: 800px;
    height: 742px;
    background: url(./img/index-about.svg) no-repeat center / cover;
	transform: scaleY(-1);
	opacity: .075;
	z-index: -1;
}
.about-message__grid {
	display: flex;
	padding: 120px 0;
	gap: 0;
	z-index: 1;
}
.about-message__text {
	width: 55%;
	color: #fff;
}
.about-message__inner {
	width: 100%;
	max-width: 580px;
	padding: 0 40px;
	margin: auto;
}
.about-message__text h2 {
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 1.7;
}
.about-message__text p {
	font-size: 1.7rem;
	margin-top: 50px;
}
.about-message__img {
	width: 45%;
}
.about-message__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 120%;
}
.about-message__img figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 1200px) {
	.about-message__text {
		width: 50%;
		color: #fff;
	}
	.about-message__img {
		width: 50%;
	}
}
@media only screen and (max-width: 768px) {
	.about-message {
		position: relative;
	}
	.about-message::before {
		content: '';
		background-color: #073058;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.about-message::after {
		content: '';
		background: url(./img/pattern.png) repeat center / auto;
		opacity: .1;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.about-message__content {
		position: relative;
		width: 100%;
		max-width: 1500px;
		margin: auto;
		overflow: hidden;
	}
	.about-message__content::before {
		content: '';
		position: absolute;
		bottom: unset;
        top: 0;
        left: 50%;
        width: 600px;
        height: 557px;
		background: url(./img/index-about.svg) no-repeat center / cover;
		transform: translateX(-50%) scaleY(-1);
		opacity: .075;
		z-index: -1;
	}
	.about-message__grid {
		display: flex;
		flex-wrap: wrap;
		padding: 0;
		z-index: 1;
		gap: 0;
	}
	.about-message__text {
		width: 100%;
		color: #fff;
		padding: 60px 0;
	}
	.about-message__inner {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		margin: auto;
	}
	.about-message__text h2 {
		font-size: 2.7rem;
		font-weight: 400;
		line-height: 1.6;
	}
	.about-message__text p {
		font-size: 1.7rem;
		margin-top: 30px;
	}
	.about-message__img {
		width: 100%;
	}
	.about-message__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 85%;
	}
	.about-message__img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}










.about-company {
	padding: 140px 0;
}
.about-company__content {
	width: 100%;
	max-width: 1080px;
	padding: 0 20px;
	margin: auto;
}
.about-company__grid {
	display: flex;
	justify-content: space-between;
	gap: 0;
}
.about-company h2 {
	-webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	font-size: 3.8rem;
	font-weight: 400;
	color: #073058;
	letter-spacing: 10px;
}
.about-company__table {
	width: calc(100% - 160px);
}
.about-company__table table {
	width: 100%;
	margin-top: -25px;
}
.about-company__table table tr {
	vertical-align: top;
}
.about-company__table table tr td:first-child {
	border-bottom: 1px solid #073058;
}
.about-company__table table tr td {
	padding: 20px 0;
	border: none;
	border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 768px) {
	.about-company {
		padding: 60px 0;
	}
	.about-company__content {
		width: 100%;
		max-width: 1080px;
		padding: 0 20px;
		margin: auto;
	}
	.about-company__grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: unset;
		gap: 0;
	}
	.about-company h2 {
		width: 100%;
		-webkit-writing-mode: unset;
		-ms-writing-mode: unset;
		writing-mode: unset;
		font-size: 2.7rem;
		font-weight: 400;
		line-height: 1.6;
		color: #073058;
		letter-spacing: 0;
		text-align: center;
	}
	.about-company__table {
		width: 100%;
	}
	.about-company__table table {
		width: 100%;
		margin-top: 15px;
	}
	.about-company__table table tr {
		vertical-align: top;
	}
	.about-company__table table tr td:first-child {
		border-bottom: none;
		padding-bottom: 0;
		padding-top: 15px;
		font-weight: 600;
		color: #073058;
	}
	.about-company__table table tr td {
		display: block;
		padding-bottom: 15px;
		padding-top: 0;
		border: none;
		border-bottom: 1px solid #073058;
	}
}







.about-history {
	padding: 140px 0;
	position: relative;
}
.about-history::before {
	content: '';
    background-color: #073058;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.about-history::after {
    content: '';
    background: url(./img/pattern.png) repeat center / auto;
    opacity: .1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.about-history__content {
	width: 100%;
	max-width: 1080px;
	padding: 0 20px;
	margin: auto;
}
.about-history__grid {
	display: flex;
	justify-content: space-between;
	gap: 0;
}
.about-history h2 {
	-webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	font-size: 3.8rem;
	font-weight: 400;
	color: #fff;
	letter-spacing: 10px;
}
.about-history__table {
	width: calc(100% - 160px);
	color: #fff;
}
.about-history__table table {
	width: 100%;
	margin-top: -25px;
}
.about-history__table table tr {
	position: relative;
	vertical-align: top;
}
.about-history__table table tr::before {
	content: '';
	position: absolute;
	top: 0;
	left: 105px;
	width: 1px;
	height: 100%;
	background-color: #fff;
}
.about-history__table table tr:first-of-type:before {
	top: 40px;
	height: calc(100% - 40px);
}
.about-history__table table tr:last-of-type:before {
	top: 0;
	height: 40px;
}
.about-history__table table tr td:first-child strong {
	position: relative;
	display: block;
	width: 110px;
	font-family: "EB Garamond", serif;
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1;
	text-align: left;
}
.about-history__table table tr td:first-child strong::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 9px;
	height: 9px;
	background-color: #fff;
	border-radius: 50%;
}
.about-history__table table tr td {
	padding: 30px 0;
	border: none;
	border-bottom: 1px solid #fff;
}
.about-history__table table tr td strong:first-of-type {
	padding-top: 0;
}
.about-history__table table tr td strong {
	width: 100px;
	padding-top: 25px;
	display: inline-block;
	text-align: center;
	font-weight: 500;
}
.about-history__table table tr td em:first-of-type {
	padding-top: 0;
}
.about-history__table table tr td em {
	width: calc(100% - 100px);
	padding-top: 25px;
	display: inline-block;
	line-height: 1.8;
}
.about-history__table table tr td strong,
.about-history__table table tr td em {
	vertical-align: top;
}
@media only screen and (max-width: 768px) {
	.about-history {
		padding: 60px 0;
		position: relative;
	}
	.about-history::before {
		content: '';
		background-color: #073058;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.about-history::after {
		content: '';
		background: url(./img/pattern.png) repeat center / auto;
		opacity: .1;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.about-history__content {
		width: 100%;
		max-width: 1080px;
		padding: 0 20px;
		margin: auto;
	}
	.about-history__grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: unset;
		gap: 0;
	}
	.about-history h2 {
		width: 100%;
		-webkit-writing-mode: unset;
		-ms-writing-mode: unset;
		writing-mode: unset;
		font-size: 2.7rem;
		font-weight: 400;
		line-height: 1.6;
		color: #fff;
		letter-spacing: 0;
		text-align: center;
	}
	.about-history__table {
		width: 100%;
		color: #fff;
	}
	.about-history__table table {
		width: 100%;
		margin-top: 0;
	}
	.about-history__table table tr {
		position: relative;
		vertical-align: top;
	}
	.about-history__table table tr::before {
		content: '';
		position: absolute;
		top: 0;
		left: 55px;
		width: 1px;
		height: 100%;
		background-color: #fff;
	}
	.about-history__table table tr:first-of-type:before {
		top: 45px;
		height: calc(100% - 45px);
	}
	.about-history__table table tr:last-of-type:before {
		top: 0;
		height: 45px;
	}
	.about-history__table table tr td:first-child strong {
		position: relative;
		display: block;
		width: 55px;
		font-family: "EB Garamond", serif;
		font-size: 2.2rem;
		font-weight: 400;
		line-height: 1.4;
		padding-left: 0;
	}
	.about-history__table table tr td:first-child strong::before {
		content: '';
		position: absolute;
		top: 50%;
		right: -5px;
		transform: translateY(-50%);
		width: 9px;
		height: 9px;
		background-color: #fff;
		border-radius: 50%;
	}
	.about-history__table table tr td {
		padding: 30px 0;
		border: none;
		border-bottom: 1px solid #fff;
	}
	.about-history__table table tr td strong:first-of-type {
		padding-top: 0;
	}
	.about-history__table table tr td strong {
		width: 100%;
		padding-top: 25px;
		padding-left: 15px;
		display: inline-block;
		text-align: left;
		font-weight: 500;
	}
	.about-history__table table tr td em:first-of-type {
		padding-top: 0;
	}
	.about-history__table table tr td em {
		width: 100%;
		padding-top: 0;
		padding-left: 15px;
		display: inline-block;
		line-height: 1.8;
	}
	.about-history__table table tr td b,
	.about-history__table table tr td em {
		vertical-align: top;
	}
}
















.service-message {
	position: relative;
}
.service-message__content {
	position: relative;
	width: 100%;
	max-width: 1500px;
	margin: auto;
}
.service-message__grid {
	display: flex;
	gap: 0;
	align-items: center;
	padding: 120px 0;
	z-index: 1;
}
.service-message__text {
	width: 50%;
}
.service-message__inner {
	width: 100%;
	max-width: 580px;
	padding: 0 40px;
	margin: auto;
}
.service-message__text h2 {
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 1.7;
	color: #073058;
}
.service-message__text p {
	font-size: 1.7rem;
	margin-top: 40px;
}
.service-message__img {
	width: 50%;
}
.service-message__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 75%;
}
.service-message__img figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 768px) {
	.service-message {
		position: relative;
	}
	.service-message__content {
		position: relative;
		width: 100%;
		max-width: 1500px;
		margin: auto;
	}
	.service-message__grid {
		display: flex;
		gap: 0;
		flex-wrap: wrap;
		align-items: unset;
		padding: 0;
		z-index: 1;
	}
	.service-message__text {
		width: 100%;
		padding: 60px 0;
	}
	.service-message__inner {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		margin: auto;
	}
	.service-message__text h2 {
		font-size: 2.7rem;
		font-weight: 400;
		line-height: 1.6;
		color: #073058;
	}
	.service-message__text p {
		font-size: 1.7rem;
		margin-top: 30px;
	}
	.service-message__img {
		width: 100%;
	}
	.service-message__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 75%;
	}
	.service-message__img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}





.service-illustration {
	display: block;
	position: relative;
	overflow: hidden;
	height: 550px;
}
.service-illustration img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 768px) {
	.service-illustration {
		display: block;
		position: relative;
		overflow: hidden;
		height: unset;
		padding-top: 100%;
	}
	.service-illustration img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}





.service-approach {
	position: relative;
	padding: 120px 0;
	color: #fff;
}
.service-approach::before {
	content: '';
    background-color: #073058;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.service-approach::after {
    content: '';
    background: url(./img/pattern.png) repeat center / auto;
    opacity: .1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.service-approach h2 {
	font-size: 3.6rem;
	text-align: center;
	font-weight: 400;
}
.service-approach__content {
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
	margin: auto;
}
.service-approach__grid {
	display: flex;
	gap: 30px;
	margin-top: 60px;
}
.service-approach__item {
	position: relative;
	width: 50%;
	padding: 50px 60px 60px;
    background-color: rgba(0, 0, 0, .4);
}
.service-approach__text {
	padding: 0;
}
.service-approach__text h3 {
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1.3;
	display: flex;
	align-items: center;
	height: 70px;
	text-align: center;
}
.service-approach__text h3 strong {
	width: 100%;
	font-weight: 400;
}
.service-approach__text h3 strong em {
	font-size: 1.8rem;
}
.service-approach__text p {
	margin-top: 20px;
}
.service-approach__img {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 65%;
	margin-top: 30px;
}
.service-approach__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 768px) {
	.service-approach {
		position: relative;
		padding: 60px 0;
		color: #fff;
	}
	.service-approach::before {
		content: '';
		background-color: #073058;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.service-approach::after {
		content: '';
		background: url(./img/pattern.png) repeat center / auto;
		opacity: .1;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.service-approach h2 {
		font-size: 2.7rem;
		line-height: 1.6;
		text-align: center;
		font-weight: 400;
	}
	.service-approach__content {
		width: 100%;
		max-width: 1240px;
		padding: 0 20px;
		margin: auto;
	}
	.service-approach__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		margin: 30px -10px 0;
	}
	.service-approach__item {
		position: relative;
		width: 100%;
		padding: 0;
		background-color: rgba(0, 0, 0, .4);
	}
	.service-approach__text {
		padding: 35px 20px;
	}
	.service-approach__text h3 {
		font-size: 2.4rem;
		font-weight: 400;
		line-height: 1.3;
		display: block;
		align-items: unsafe;
		height: auto;
		text-align: center;
	}
	.service-approach__text h3 strong {
		width: 100%;
		font-weight: 400;
	}
	.service-approach__text h3 strong em {
		font-size: 1.6rem;
	}
	.service-approach__text p {
		margin-top: 20px;
	}
	.service-approach__img {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 70%;
		margin-top: 30px;
	}
	.service-approach__img img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}







.service-duties {
	position: relative;
	padding: 120px 0;
}
.service-duties__content {
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
	margin: auto;
}
.service-duties h2 {
	font-size: 3.6rem;
	text-align: center;
	font-weight: 400;
	color: #073058;
}
.service-duties .service-duties__grid:first-of-type {
	margin-top: 60px;
	padding-top: 0;
	border: none;
}
.service-duties__grid {
	display: flex;
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid #ccc;
	gap: 80px;
}
.service-duties__img {
	width: 100%;
	max-width: 480px;
}
.service-duties__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	height: 330px;
}
.service-duties__img figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.service-duties__text {
	width: calc(100% - 560px);
}
.service-duties__text h3 {
	font-size: 3rem;
	font-weight: 400;
	color: #073058;
	line-height: 1.6;
}
.service-duties__text p {
	font-size: 1.7rem;
	margin-top: 20px;
}
.service-duties__slide {
	position: relative;
}
.service-duties__slide.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.service-duties__slide .slick-dots {
	position: relative;
	bottom: unset;
	display: flex;
	align-items: center;
	justify-content: center;
    margin-top: 25px;
}
.service-duties__slide .slick-dots li {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 100%;
	margin: 0 1px;
}
.service-duties__slide .slick-dots li button {
	border: 0;
	background: transparent;
	display: block;
	width: 30px;
	height: 3px;
	outline: none;
	padding: 0;
	cursor: pointer; 
}
.service-duties__slide .slick-dots li button:before {
	content: '';
	font-family: unset;
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 30px;
	height: 3px;
	text-align: center;
	opacity: 1;
	background-color: rgba(7, 48, 88, .3);
	color: transparent;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.service-duties__slide .slick-dots li.slick-active button:before {
	opacity: 1;
	color: black;
	background-color: rgba(7, 48, 88, 1);
	width: 30px;
	height: 3px;
	transition: .3s;
}
@media only screen and (max-width: 768px) {
	.service-duties {
		position: relative;
		padding: 60px 0;
	}
	.service-duties__content {
		width: 100%;
		max-width: 1240px;
		padding: 0 20px;
		margin: auto;
	}
	.service-duties h2 {
		font-size: 2.7rem;
		text-align: center;
		font-weight: 400;
		line-height: 1.6;
		color: #073058;
	}
	.service-duties .service-duties__grid:first-of-type {
		margin-top: 30px;
		padding-top: 0;
		border: none;
	}
	.service-duties__grid {
		display: flex;
		flex-wrap: wrap;
		margin-top: 30px;
		padding-top: 30px;
		border-top: 1px solid #ccc;
		gap: 0;
	}
	.service-duties__img {
		width: 100%;
		max-width: 100%;
	}
	.service-duties__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		height: 220px;
	}
	.service-duties__img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.service-duties__text {
		width: 100%;
	}
	.service-duties__text h3 {
		font-size: 2.4rem;
		font-weight: 400;
		color: #073058;
		line-height: 1.6;
		margin-top: 30px;
	}
	.service-duties__text p {
		font-size: unset;
		margin-top: 20px;
	}
	.service-duties__slide {
		position: relative;
	}
	.service-duties__slide.slick-dotted.slick-slider {
		margin-bottom: 0;
	}
	.service-duties__slide .slick-dots {
		position: relative;
		bottom: unset;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 15px;
	}
	.service-duties__slide .slick-dots li {
		position: relative;
		display: inline-block;
		width: 30px;
		height: 100%;
		margin: 0 1px;
	}
	.service-duties__slide .slick-dots li button {
		border: 0;
		background: transparent;
		display: block;
		width: 30px;
		height: 3px;
		outline: none;
		padding: 0;
		cursor: pointer; 
	}
	.service-duties__slide .slick-dots li button:before {
		content: '';
		font-family: unset;
		font-size: 0;
		line-height: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 30px;
		height: 3px;
		text-align: center;
		opacity: 1;
		background-color: rgba(7, 48, 88, .3);
		color: transparent;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	.service-duties__slide .slick-dots li.slick-active button:before {
		opacity: 1;
		color: black;
		background-color: rgba(7, 48, 88, 1);
		width: 30px;
		height: 3px;
		transition: .3s;
	}
}






.service-side {
	position: relative;
	padding: 120px 0;
	color: #fff;
}
.service-side::before {
	content: '';
    background-color: #073058;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.service-side::after {
    content: '';
    background: url(./img/pattern.png) repeat center / auto;
    opacity: .1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.service-side__content {
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
	margin: auto;
}
.service-side__grid {
	display: flex;
	align-items: center;
	gap: 0;
}
.service-side__grid + .service-side__grid {
	margin-top: 80px;
}
.service-side__item {
	width: 50%;
}
.service-side__text {
	padding-right: 80px;
}
.service-side .service-side__grid:nth-child(2n) .service-side__text {
	padding-right: 0;
	padding-left: 80px;
}
.service-side__text h3 {
	font-size: 3.6rem;
	font-weight: 400;
	line-height: 1.6;
}
.service-side__text p {
	font-size: 1.7rem;
	margin-top: 25px;
}
.service-side__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 70%;
}
.service-side__img figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 768px) {
	.service-side {
		position: relative;
		padding: 60px 0;
		color: #fff;
	}
	.service-side::before {
		content: '';
		background-color: #073058;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.service-side::after {
		content: '';
		background: url(./img/pattern.png) repeat center / auto;
		opacity: .1;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.service-side__content {
		width: 100%;
		max-width: 1240px;
		padding: 0 20px;
		margin: auto;
	}
	.service-side__grid {
		display: flex;
		flex-wrap: wrap;
		align-items: unset;
		gap: 0;
	}
	.service-side__grid + .service-side__grid {
		margin-top: 60px;
	}
	.service-side__item {
		width: 100%;
	}
	.service-side__text {
		padding-right: 0;
		order: 1;
	}
	.service-side .service-side__grid:nth-child(2n) .service-side__text {
		padding-right: 0;
		padding-left: 0;
	}
	.service-side__text h3 {
		font-size: 2.4rem;
		font-weight: 400;
		line-height: 1.6;
	}
	.service-side__text p {
		font-size: unset;
		margin-top: 20px;
	}
	.service-side__img {
		order: 2;
		margin-top: 30px;
	}
	.service-side__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 70%;
	}
	.service-side__img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}








.service-reason {
	position: relative;
	color: #fff;
	padding-top: 120px;
}
.service-reason__content {
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
	margin: auto;
}
.service-reason h2 {
	font-size: 3.6rem;
	text-align: center;
	font-weight: 400;
	color: #073058;
}
.service-reason__grid {
	position: relative;
	display: flex;
	margin-top: 60px;
	gap: 0;
	overflow: hidden;
}
.service-reason__grid::before {
	content: '';
    background-color: #073058;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.service-reason__grid::after {
    content: '';
    background: url(./img/pattern.png) repeat center / auto;
    opacity: .1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.service-reason__grid + .service-reason__grid {
	margin-top: 30px;
}
.service-reason__img {
	width: 40%;
}
.service-reason__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 70%;
    height: 100%;
	margin: 0;
}
.service-reason__img figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.service-reason__text {
	width: 60%;
	padding: 30px 60px;
	color: #fff;
	display: flex;
	align-items: center;
}
.service-reason__text h3 {
	position: relative;
	display: flex;
	font-family: "EB Garamond", serif;
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1.3;
	padding-bottom: 10px;
}
.service-reason__text h3::before {
	content: '';
	width: calc(100% + 60px);
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
.service-reason__text h3 strong {
	display: inline-block;
	font-size: 4rem;
	font-weight: 400;
	margin-right: 10px;
	margin-top: -5px;
	line-height: 1;
}
.service-reason__text h4 {
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 30px;
}
.service-reason__text p {
	margin-top: 20px;
}
@media only screen and (max-width: 768px) {
	.service-reason {
		position: relative;
		color: #fff;
		padding-top: 60px;
	}
	.service-reason__content {
		width: 100%;
		max-width: 1240px;
		padding: 0 20px;
		margin: auto;
	}
	.service-reason h2 {
		font-size: 2.7rem;
		text-align: center;
		font-weight: 400;
		line-height: 1.6;
		color: #073058;
	}
	.service-reason__grid {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		margin-top: 30px;
		gap: 0;
		overflow: hidden;
	}
	.service-reason__grid::before {
		content: '';
		background-color: #073058;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.service-reason__grid::after {
		content: '';
		background: url(./img/pattern.png) repeat center / auto;
		opacity: .1;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.service-reason__grid + .service-reason__grid {
		margin-top: 30px;
	}
	.service-reason__img {
		width: 100%;
	}
	.service-reason__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 60%;
		height: unset;
		margin: 0;
	}
	.service-reason__img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.service-reason__text {
		width: 100%;
		padding: 30px 20px;
		color: #fff;
		display: flex;
		align-items: center;
	}
	.service-reason__text h3 {
		position: relative;
		display: flex;
		font-family: "EB Garamond", serif;
		font-size: 2.4rem;
		font-weight: 400;
		line-height: 1.3;
		padding-bottom: 0;
	}
	.service-reason__text h3::before {
		display: none;
	}
	.service-reason__text h3 strong {
		display: inline-block;
		font-size: 3rem;
		font-weight: 400;
		margin-right: 10px;
		margin-top: 0;
		line-height: 1;
	}
	.service-reason__text h4 {
		font-size: 2rem;
		font-weight: 400;
		line-height: 1.5;
		margin-top: 25px;
	}
	.service-reason__text p {
		margin-top: 15px;
	}
}





.wood-message {
	position: relative;
}
.wood-message__content {
	position: relative;
	width: 100%;
	max-width: 1500px;
	margin: auto;
}
.wood-message__grid {
	display: flex;
	gap: 0;
	align-items: center;
	padding: 120px 0;
	z-index: 1;
}
.wood-message__text {
	width: 50%;
}
.wood-message__inner {
	width: 100%;
	max-width: 580px;
	padding: 0 40px;
	margin: auto;
}
.wood-message__text h2 {
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 1.7;
	color: #073058;
}
.wood-message__text p {
	font-size: 1.7rem;
	margin-top: 40px;
}
.wood-message__img {
	width: 50%;
}
.wood-message__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 95%;
}
.wood-message__img figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 768px) {
	.wood-message {
		position: relative;
	}
	.wood-message__content {
		position: relative;
		width: 100%;
		max-width: 1500px;
		margin: auto;
	}
	.wood-message__grid {
		display: flex;
		gap: 0;
		flex-wrap: wrap;
		align-items: unset;
		padding: 0;
		z-index: 1;
	}
	.wood-message__text {
		width: 100%;
		padding: 60px 0;
	}
	.wood-message__inner {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		margin: auto;
	}
	.wood-message__text h2 {
		font-size: 2.7rem;
		font-weight: 400;
		line-height: 1.6;
		color: #073058;
	}
	.wood-message__text p {
		font-size: 1.7rem;
		margin-top: 30px;
	}
	.wood-message__img {
		width: 100%;
	}
	.wood-message__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 75%;
	}
	.wood-message__img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}








.wood-service__back {
	width: 100%;
	max-width: 1500px;
	margin: auto;
	position: relative;
}
.wood-service__content {
	position: relative;
	width: 100%;
	max-width: 1240px;
	margin: auto;
	padding: 0 20px;
}
.wood-service__grid {
	position: relative;
	display: flex;
	gap: 0;
	margin: 0 -80px;
}
.wood-service__item {
	position: relative;
	width: 50%;
	padding: 0 80px;
}
.wood-service__text {
	position: relative;
	color: #fff;
}
.wood-service__text::before {
	content: '';
	background-color: #073058;
	position: absolute;
	top: 0;
	left: 0;
	width: 50vw;
	height: 100%;
	z-index: -2;
}
.wood-service__text::after {
	content: '';
	background: url(./img/pattern.png) repeat center / auto;
	opacity: .1;
	position: absolute;
	top: 0;
	left: 0;
	width: 50vw;
	height: 100%;
	z-index: -2;
}
.wood-service__text h3 {
	line-height: 1.2;
	font-family: "EB Garamond", serif;
	font-size: 8rem;
	font-weight: 500;
	white-space: nowrap;
}
.wood-service__text p {
	font-size: 1.7rem;
	margin-top: 50px;
}
.wood-service__inner {
	height: 100%;
	padding: 100px 0;
}
@media only screen and (max-width: 768px) {
	.wood-service__back {
		width: 100%;
		max-width: 1500px;
		margin: auto;
		position: relative;
		padding-top: 0;
		overflow: hidden;
	}
	.wood-service__content {
		position: relative;
		width: 100%;
		max-width: 1240px;
		margin: auto;
		padding: 0;
	}
	.wood-service__grid {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		margin: 0;
		gap: 0;
	}
	.wood-service__item {
		position: relative;
		width: 100%;
		padding: 0;
	}
	.wood-service__text {
		position: relative;
		color: #fff;
		padding: 60px 20px;
		order: 1;
	}
	.wood-service__text::before {
		content: '';
		background-color: #073058;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.wood-service__text::after {
		content: '';
		background: url(./img/pattern.png) repeat center / auto;
		opacity: .1;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -2;
	}
	.wood-service__text h3 {
		line-height: 1.2;
		font-family: "EB Garamond", serif;
		font-size: 5rem;
		font-weight: 500;
		white-space: nowrap;
	}
	.wood-service__text p {
		font-size: 1.7rem;
		margin-top: 30px;
	}
	.wood-service__inner {
		height: auto;
		padding: 0;
	}
	.wood-service__img {
		order: 2;
	}
	.wood-service__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 75%;
	}
	.wood-service__img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}




.wood-works {
	margin-top: 120px;
}
@media only screen and (max-width: 768px) {
	.wood-works {
		margin-top: 0;
	}
}








.flow__content {
	width: 100%;
	max-width: 1160px;
	padding: 0 20px;
	margin: auto;
}
.flow__frame {
	position: relative;
	background-color: #fff;
	padding: 0 50px 50px;
	margin-top: 80px;
}
.flow__frame + .flow__frame {
	margin-top: 60px;
}
.flow__frame + .flow__frame::before {
	content: '';
	border-style: solid;
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	border-top: 20px solid #073058;
	border-bottom: 0;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
}
.flow__grid {
	display: flex;
	gap: 0;
}
.flow__grid .number {
	position: relative;
	font-family: "EB Garamond", serif;
	font-size: 5rem;
	font-weight: 500;
	color: #073058;
	line-height: 1;
	letter-spacing: -1px;
	padding-top: 40px;
	white-space: nowrap;
}
.flow__grid .number::before {
	content: '';
	background-color: #073058;
	width: 60px;
	height: 2px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.flow__grid .detail {
	margin-left: 45px;
	font-size: 1.6rem;
}
.flow__grid .detail h3 {
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.6;
	color: #073058;
	margin-top: 40px;
}
.flow__grid .detail .text {
	margin-top: 15px;
}
.flow__grid .detail .list {
	line-height: 1.6;
	margin-top: 20px;
	list-style: none;
}
.flow__grid .detail .list li {
	position: relative;
	margin-top: 15px;
	padding-left: 20px;
}
.flow__grid .detail .list li::before {
	content: '';
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 3px solid #073058;
	position: absolute;
	top: 7px;
	left: 0;
}
@media only screen and (max-width: 768px) {
	.flow__content {
		width: 100%;
		max-width: 1160px;
		padding: 0 10px;
		margin: auto;
	}
	.flow__frame {
		position: relative;
		background-color: #fff;
		padding: 0 20px 25px;
		margin-top: 60px;
	}
	.flow__frame + .flow__frame {
		margin-top: 60px;
	}
	.flow__frame + .flow__frame::before {
		content: '';
		border-style: solid;
		border-right: 20px solid transparent;
		border-left: 20px solid transparent;
		border-top: 20px solid #073058;
		border-bottom: 0;
		position: absolute;
		top: -40px;
		left: 50%;
		transform: translateX(-50%);
	}
	.flow__grid {
		display: flex;
		gap: 0;
	}
	.flow__grid .number {
		position: absolute;
		font-family: "EB Garamond", serif;
		font-size: 3.2rem;
		font-weight: 500;
		color: #073058;
		line-height: 1;
		letter-spacing: -1px;
		top: 0;
		left: 20px;
		padding-top: 28px;
		white-space: nowrap;
	}
	.flow__grid .number::before {
		content: '';
		background-color: #073058;
		width: 30px;
		height: 2px;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.flow__grid .detail {
		margin-left: 0;
		font-size: 1.6rem;
	}
	.flow__grid .detail h3 {
		font-size: 2.4rem;
		font-weight: 400;
		line-height: 1.6;
		color: #073058;
		margin-top: 25px;
		padding-left: 50px;
	}
	.flow__grid .detail .text {
		margin-top: 15px;
	}
	.flow__grid .detail .list {
		line-height: 1.6;
		margin-top: 20px;
		list-style: none;
	}
	.flow__grid .detail .list li {
		position: relative;
		margin-top: 15px;
		padding-left: 20px;
	}
	.flow__grid .detail .list li::before {
		content: '';
		width: 12px;
		height: 12px;
		border-radius: 50%;
		border: 3px solid #073058;
		position: absolute;
		top: 7px;
		left: 0;
	}
}











.faq h2 {
	font-size: 2.8rem;
	font-weight: 400;
	text-align: center;
	color: #073058;
	margin-top: 100px;
}
.faq__content {
	width: 100%;
	max-width: 1080px;
	padding: 0 20px;
	margin: auto;
}
.faq__item {
	margin-top: 30px;
}
.faq__item + .faq__item {
	margin-top: 20px;
}
.faq__quest,
.faq__answer {
	position: relative;
	display: flex;
	padding: 30px;
	cursor: pointer;
	background-color: #fff;
}
.faq__quest {
	padding-right: 80px;
}
.faq__quest .open {
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	transition: .3s;
}
.faq__quest .open::before,
.faq__quest .open::after {
	content: '';
	width: 100%;
	height: 2px;
	background-color: #073058;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq__quest .open::after {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: .3s;
}
.faq__quest.js-open .open::after {
	/* transform: translate(-50%, -50%) rotate(0); */
	transition: .3s;
	opacity: 0;
}
.faq__item .faq__answer {
	background-color: #fff;
	padding-top: 0;
}
.faq__item .faq__quest::before {
	content: 'Q';
}
.faq__item .faq__answer::before {
	content: 'A';
}
.faq__item .faq__quest::before,
.faq__item .faq__answer::before {
	display: block;
	width: 50px;
	font-size: 3rem;
	font-family: "EB Garamond", serif;
	font-weight: 500;
	text-align: center;
	line-height: 1;
	color: #073058;
}
.faq__item .faq__quest p,
.faq__item .faq__answer p {
	width: calc(100% - 50px);
}
.faq__item .faq__quest p {
	padding-left: 15px;
	font-size: 2rem;
	font-weight: 400;
}
.faq__item .faq__answer p {
	padding-left: 15px;
	color: #333;
	font-size: 1.7rem;
}
@media only screen and (max-width: 768px) {
	.faq h2 {
		font-size: 2rem;
		font-weight: 400;
		text-align: center;
		color: #073058;
		margin-top: 60px;
	}
	.faq__content {
		width: 100%;
		max-width: 1080px;
		padding: 0 10px;
		margin: auto;
	}
	.faq__item {
		margin-top: 20px;
	}
	.faq__item + .faq__item {
		margin-top: 15px;
	}
	.faq__quest,
	.faq__answer {
		position: relative;
		display: flex;
		padding: 20px 15px;
		cursor: pointer;
		background-color: #fff;
	}
	.faq__quest {
		padding-right: 50px;
	}
	.faq__quest .open {
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		width: 18px;
		height: 18px;
		transition: .3s;
	}
	.faq__quest .open::before,
	.faq__quest .open::after {
		content: '';
		width: 100%;
		height: 2px;
		background-color: #073058;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.faq__quest .open::after {
		transform: translate(-50%, -50%) rotate(90deg);
		transition: .3s;
	}
	.faq__quest.js-open .open::after {
		/* transform: translate(-50%, -50%) rotate(0); */
		transition: .3s;
		opacity: 0;
	}
	.faq__item .faq__answer {
		background-color: #fff;
		padding-top: 0;
	}
	.faq__item .faq__quest::before {
		content: 'Q';
	}
	.faq__item .faq__answer::before {
		content: 'A';
	}
	.faq__item .faq__quest::before,
	.faq__item .faq__answer::before {
		display: block;
		width: 30px;
		font-size: 2.5rem;
		font-family: "EB Garamond", serif;
		font-weight: 500;
		text-align: center;
		line-height: 1;
		color: #073058;
	}
	.faq__item .faq__quest p,
	.faq__item .faq__answer p {
		width: calc(100% - 30px);
		line-height: 1.6;
	}
	.faq__item .faq__quest p {
		padding-left: 12px;
		font-size: 1.7rem;
		font-weight: 400;
	}
	.faq__item .faq__answer p {
		padding-left: 12px;
		color: #333;
		font-size: 1.5rem;
	}
}





/* お問い合わせフォーム */
.form .form__content {
	width: 100%;
	max-width: 1000px;
	padding: 0 20px;
	margin: 40px auto 0;
}
.form .form__table {
	display: flex;
	flex-wrap: wrap;
}
.form .form__table dt {
	width: 280px;
	padding: 48px 0 0;
	line-height: 1.5;
	font-weight: 500;
}
.form .form__table dd {
	width: calc(100% - 280px);
	padding: 30px 0 0;
}
.form .form__table dt:last-of-type,
.form .form__table dd:last-of-type {
	border-bottom: none;
}
.form .form__table dt p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-right: 30px;
}
.form .form__table dt p.req::after {
	content: '必須';
	display: inline-block;
	color: #fff;
	background-color: #073058;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
	padding: 3px 12px 4px;
}
.form .form__table .input__grid {
	display: flex;
	flex-wrap: wrap;
	margin: -10px -5px 0;
}
.form .form__table .input__grid .input__item {
	width: 50%;
	padding: 0 5px;
	margin-top: 10px;
}
.form .form__table .input__number {
	position: relative;
	padding-left: 25px;
}
.form .form__table .input__number::before {
	content: '〒';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.form__grid {
	display: flex;
	gap: 10px;
}
.form__grid .form__item {
	width: calc(50% - 5px);
}

/* contactform7　ラジオボタン */
.wpcf7-form-control-wrap .form-radio {
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	margin-top: 12px;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item {
	margin: 0;
	width: calc(50% - 10px);
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"] {
	display: none;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item .wpcf7-list-item-label {
	position: relative;
	padding-left: 42px;
	cursor: pointer;
	display: inline-block;
	line-height: 1.5;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label {
	color: #073058;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label::before {
	background-color: #073058;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item .wpcf7-list-item-label::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	background-color: #fff;
	border-radius: 50%;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition: all .5s ease;
	border: 1px solid #ccc;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label::after {
	transform: translateY(-50%);
	opacity: 1;
	transition: .3s;
}
.wpcf7-form-control-wrap .form-radio .wpcf7-list-item .wpcf7-list-item-label::after {
	content: '';
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0;
	transition: .3s;
}

/* プライバシーポリシー */
.form-policy {
	margin-top: 20px;
	font-size: 1.7rem;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item {
	margin: 0;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item input[type="checkbox"] {
	display: none;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-list-item-label {
	position: relative;
	cursor: pointer;
	display: block;
	padding-left: 42px;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-list-item-label::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	background-color: #fff;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition: all .5s ease;
	border: 1px solid #ccc;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::before {
	background-color: #073058;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-list-item-label::after {
	content: '';
	position: absolute;
	top: calc(50% - 4px);
	left: 15px;
	width: 16px;
	height: 8px;
	border-bottom: 2.5px solid #fff;
	border-left: 2.5px solid #fff;
	transform: rotate(0) scale(0);
	transition: .3s;
	opacity: 0;
}
.form-policy .wpcf7-form-control-wrap .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
	transform: rotate(-45deg) scale(1) translateY(-50%);
	opacity: 1;
}
.form-policy a {
	color: #073058;
	text-decoration: underline;
}

.form .input__btn {
	display: block;
	position: relative;
	width: 100%;
	max-width: 300px;
	height: 70px;
	line-height: 70px;
	background-color: #333;
	color: #fff;
	margin-top: 40px;
	font-size: 1.6rem;
	transition: .3s;
}
.form .input__btn::after {
	content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 33px;
    height: 9px;
    background: url(./img/arrow-w.svg) repeat center / cover;
	transition: .3s;
}
.form .input__btn:hover {
	background-color: #073058;
	transition: .3s;
}
.form .input__btn:hover::before {
	right: 14px;
	width: 48px;
	height: 48px;
	transition: .3s;
}
.form .input__btn input[type="submit"] {
	display: block;
	width: 100%;
	max-width: 300px;
	height: 70px;
	line-height: 70px;
	color: #fff;
	font-size: 1.6rem;
	text-align: left;
	padding: 0 25px;
	font-family: "Shippori Mincho", serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.custom-file-upload input[type="file"] {
	display: none;
}
.custom-file-upload label {
	position: relative;
	display: inline-block;
	background-color: #073058;
	color: #fff;
	padding: 0 20px;
	cursor: pointer;
	transition: .3s;
	width: 50%;
	height: 65px;
	line-height: 63px;
}
.custom-file-upload label::before {
	content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 20px;
    height: 18px;
    background: url(./img/ico-clip.svg) repeat center / cover;
}
@media only screen and (max-width: 768px) {
	.form .form__content {
		margin: 0 auto;
	}
	.form .form__table {
		display: flex;
		flex-wrap: wrap;
	}
	.form .form__table dt {
		width: 100%;
		padding: 40px 0 0;
		line-height: 1.5;
		font-weight: 500;
	}
	.form .form__table dt p {
		margin-right: 0;
	}
	.form .form__table dd {
		width: 100%;
		padding: 15px 0 0;
	}
	.form__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	.form__grid .form__item {
		width: 100%;
	}
	.form-policy {
		margin-top: 0;
		text-align: center;
	}
	.form .input__btn {
		margin: 40px auto 0;
	}
}


.privacy {
	counter-reset: section;
	width: 100%;
	max-width: 1000px;
	padding: 0 20px;
	margin: auto;
}
.privacy p {
	margin-top: 80px;
}
.privacy h3 {
	position: relative;
	font-size: 3rem;
    font-weight: 400;
    line-height: 1.6;
    color: #073058;
    margin-top: 60px;
	border-bottom: 1px solid #073058;
	padding-bottom: 10px;
	padding-left: 30px;
}
.privacy h3::before {
	counter-increment: section;
	content: counter(section) ". ";
    position: absolute;
    left: 0;
    top: 0;
}
.privacy h4 {
	font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.6;
    color: #073058;
    margin-top: 40px;
}
.privacy h3 + p,
.privacy h4 + p {
	margin-top: 20px;
}
.privacy a {
	text-decoration: underline;
}
@media only screen and (max-width: 768px) {
	.privacy {
		counter-reset: section;
		width: 100%;
		max-width: 1000px;
		padding: 0 20px;
		margin: auto;
	}
	.privacy p {
		margin-top: 60px;
	}
	.privacy h3 {
		font-size: 2.4rem;
		font-weight: 400;
		line-height: 1.6;
		color: #073058;
		margin-top: 40px;
		border-bottom: 1px solid #073058;
		padding-bottom: 10px;
		padding-left: 25px;
	}
	.privacy h3::before {
		counter-increment: section;
		content: counter(section) ". ";
		position: absolute;
		left: 0;
		top: 0;
	}
	.privacy h4 {
		font-size: 2rem;
		font-weight: 400;
		line-height: 1.6;
		color: #073058;
		margin-top: 30px;
	}
	.privacy h3 + p,
	.privacy h4 + p {
		margin-top: 20px;
	}
	.privacy a {
		text-decoration: underline;
	}
}


.thanks {
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
	margin: auto;
}
.thanks p.text {
	text-align: center;
	margin-top: 30px;
}
.thanks .btn-01 {
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.thanks {
		width: 100%;
		max-width: 1240px;
		padding: 0 20px;
		margin: auto;
	}
	.thanks p.text {
		text-align: left;
		margin-top: 30px;
	}
	.thanks .btn-01 {
		text-align: center;
	}
}


.btn-01 a,
.btn-02 a {
	display: inline-block;
	position: relative;
	width: auto;
	height: 70px;
	line-height: 70px;
	padding: 2px 60px 0 30px;
	margin: 60px auto 0;
	font-family: "EB Garamond", serif;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: .5px;
	background-color: transparent;
}
.btn-01.jp a,
.btn-02.jp a {
	font-size: 1.7rem;
}
.btn-01 a::before,
.btn-02 a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 70px;
	height: 70px;
	z-index: -1;
}
.btn-01 a::after,
.btn-02 a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 33px;
	height: 9px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.btn-01 a {
    color: #073058;
}
.btn-01 a::before {
	background-color: #073058;
	opacity: .1;
}
.btn-01 a::after {
	background-image: url(./img/arrow.svg);
}
.btn-01 a em {
	display: inline-block;
	line-height: 1em;
    overflow: hidden;
    color: transparent;
    text-shadow: 0 0 #073058, 0 1em #073058;
	transition: .3s;
}
.btn-01 a:hover em {
    text-shadow: 0 -1em #073058, 0 0 #073058;
	transition: .3s;
}

.btn-02 a {
	color: #fff;
}
.btn-02 a::before {
	background-color: #073058;
}
.btn-02 a::after {
	background-image: url(./img/arrow-w.svg);
}
.btn-02 a em {
	display: inline-block;
	line-height: 1em;
    overflow: hidden;
    color: transparent;
    text-shadow: 0 0 #fff, 0 1em #fff;
	transition: .3s;
}
.btn-02 a:hover em {
    text-shadow: 0 -1em #fff, 0 0 #fff;
	transition: .3s;
}
.btn-01 a:hover::after,
.btn-02 a:hover::after {
	right: -5px;
}
@media only screen and (max-width: 768px) {
	.btn-01 a,
	.btn-02 a {
		margin: 40px auto 0;
	}
}

.normal-list {
	margin-top: 20px;
}
.normal-list li {
	position: relative;
    padding-left: 20px;
    margin-top: 5px;
}
.normal-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #073058;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 13px;
}



.recruit-message {
	position: relative;
}
.recruit-message__content {
	position: relative;
	width: 100%;
	max-width: 1500px;
	margin: auto;
}
.recruit-message__grid {
	display: flex;
	gap: 0;
	align-items: center;
	padding: 120px 0 0;
	z-index: 1;
}
.recruit-message__text {
	width: 50%;
}
.recruit-message__inner {
	width: 100%;
	max-width: 580px;
	padding: 0 40px;
	margin: auto;
}
.recruit-message__text h2 {
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 1.7;
	color: #073058;
	letter-spacing: -2px;
}
.recruit-message__text p {
	font-size: 1.7rem;
	margin-top: 40px;
}
.recruit-message__text .btn-01 a {
	margin-top: 40px;
}
.recruit-message__img {
	width: 50%;
}
.recruit-message__img figure {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 75%;
}
.recruit-message__img figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 768px) {
	.recruit-message {
		position: relative;
	}
	.recruit-message__content {
		position: relative;
		width: 100%;
		max-width: 1500px;
		margin: auto;
	}
	.recruit-message__grid {
		display: flex;
		gap: 0;
		flex-wrap: wrap;
		align-items: unset;
		padding: 0;
		z-index: 1;
	}
	.recruit-message__text {
		width: 100%;
		padding: 60px 0;
	}
	.recruit-message__inner {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		margin: auto;
	}
	.recruit-message__text h2 {
		font-size: 2.7rem;
		font-weight: 400;
		line-height: 1.6;
		color: #073058;
		letter-spacing: 0;
	}
	.recruit-message__text p {
		font-size: 1.7rem;
		margin-top: 30px;
	}
	.recruit-message__img {
		width: 100%;
	}
	.recruit-message__img figure {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 75%;
	}
	.recruit-message__img figure img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}






.loading {
	pointer-events: all;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	background: linear-gradient(45deg, #024D89, #073058);
	z-index: 9999;
	transition: .3s;
}
.loading.is-hide {
    opacity: 0;
    pointer-events: none;
	transition: .3s;
}
.loading__item {
	content: '';
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
}
.loading__item figure {
	width: 100%;
	max-width: 240px;
	padding-right: 5px;
	margin: auto;
	animation: logo .6s ease .1s both;
}
@keyframes logo {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.loading__item figure img {
	width: 100%;
}
.loading__item p {
	font-size: 2rem;
	margin-top: 15px;
	color: #fff;
	animation: text .6s ease .7s both;
	white-space: nowrap;
}
@keyframes text {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 768px) {
	.loading__item figure {
		max-width: 180px;
	}
	.loading__item p {
		font-size: 1.6rem;
	}
}
