* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 2em;
	font-size: 16px;
	color: #222120;
	font-weight: 400;
}

.gradation01 {
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	/* background-color: #000; */
	z-index: 1;
}
.item {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 50%;
	/* 回転アニメーション */
	transform-origin: 0 0;
	animation-name: rotate-item;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.item-01 {
	z-index: 3;
	animation-duration: 15s;
}
.item-02 {
	z-index: 2;
	left: 45%;
	animation-duration: 50s;
	animation-direction: reverse;
}
.item-03 {
	z-index: 4;
	left: 40%;
	animation-duration: 8s;
}
.item-04 {
	z-index: 1;
	animation-duration: 10s;
}
.round {
	position: relative;
	border-radius: 50%;
  }
  .round-01 {
	z-index: 3;
	top: 0%;
	width: 18vw;
	height: 18vw;
	background: #c499ff;
	filter: blur(50px);
	animation: flash 2s linear infinite;
}
.round-02 {
	top: -20%;
	width: 30vw;
	height: 30vw;
	background-color: #99c2ff;
	filter: blur(80px);
	animation: flash 6s linear infinite;
}
.round-03{
	top: 56%;
	width: 3vw;
	height: 3vw;
	background-color: #ffddb3;
	filter: blur(20px);
	animation: flash 7s linear infinite;
}
.round-04{
	top: -70%;
	left: -60%;
	width: 40vw;
	height: 40vw;
	background-color: #eee6ff30;
	filter: blur(150px);
	animation: flash 8s linear infinite;
}

/* 回転アニメーション */
@keyframes rotate-item {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
/* 点滅アニメーション */
@keyframes flash {
	0%,
	100% {
		opacity: 0.8;
	}
	50% {
		opacity: 0.5;
	}
}

@keyframes bggradient{
	0% {
	  background-position: 0% 50%;
	}
	50% {
	  background-position: 100% 50%;
	}
	100% {
	  background-position: 0% 50%;
	}
}

section, header, footer {
	position: relative;
	z-index: 3;
}

.en-font {
	font-family: "Playfair Display", serif;
	font-weight: 400;
}

.heading {
	display: flex;
	align-items: center;
	column-gap: 40px;
}

h2 {
	font-size: 80px;
	text-align: left;
}

p {
	line-height: 1em;
}

.text {
	text-align: justify;
	line-height: 2em;
}

.inner {
	max-width: 1200px;
	padding-left: 40px;
	padding-right: 40px;
	margin: 0 auto;
}

.flexbox {
	display: flex;
}

header {
	width: 100%;
	height: 120px;
    color: #fff;
    text-align: center;
    padding-left: 40px;
	padding-right: 40px;
    position: relative;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	transition: all .4s ease;
}

header.color {
	color: rgba(34, 33, 32);
}

header.color .icon-button {
	border-color: rgba(34, 33, 32);
}

header.color .icon-button svg {
	stroke: rgba(34, 33, 32);
}

header .logo {
	width: 160px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .logo img {
	width: 100%;
	object-fit: contain;
}

header .logo img.color {
	display: none;
}

header .logo img.white {
	display: block;
}

header.color .logo img.white {
	display: none;
}

header.color .logo img.color {
	display: block;
}

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

.header-content h1 {
    font-size: 1.5em;
}

header nav ul {
    list-style: none;
    display: flex;
	align-items: center;
}

header nav ul li {
    margin-left: 32px;
	font-size: 20px;
	font-weight: 300;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

header .icon-button {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 1px solid #fff;
}

header .icon-button a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .icon-button span {
	display: none;
}

.header-image {
    background: url('../images/header-image.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-image h2 {
    font-size: 2em;
}

#main-visual {
	width: 100%;
	height: 100vh;
	background: url("../images/mv-image.jpg") center/cover no-repeat;
	color: #fff;
}

#main-visual .inner {
	max-width: 1120px;
	width: 100%;
	height: 100%;
	padding-bottom: 4%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#main-visual .inner .en-font {
	font-size: 40px;
	line-height: 1.75;
	font-weight: 400;
	letter-spacing: 0.1em;
}

#main-visual .inner .text {
	margin-top: 32px;
	font-size: 16px;
	letter-spacing: 0.1em;
}

#about {
	padding-top: 240px;
}

#about .inner {
	position: relative;
}

#about h2 {
	position: absolute;
	top: 0;
	left: 80px;
}

#about .flexbox {
	padding-top: 32px;
	column-gap: 32px;
	align-items: center;
}

#about .image-wrap {
	width: 50%;
	margin-left: -24px;
}

#about .image-wrap img {
	width: 100%;
	object-fit: contain;
	/* animation: rotate-item 180s linear infinite; */
}

#about .text {
	width: 50%;
}

#service {
	margin-top: 240px;
	padding-top: 80px;
}

.service-content {
    display: flex;
	align-items: center;
	column-gap: 80px;
}

.service-item {
	width: 55%;
}

.service-item h3 {
	font-weight: 400;
	font-size: 16px;
	text-align: left;
}

.service-item h3 .en-font {
	font-size: 40px;
	margin-right: 24px;
}

.service-item .text {
	margin-top: 16px;
}

.service-item .bg-text {
	margin-top: 24px;
	font-size: 80px;
	color: #F7F0E9;
	text-align: right;
}

.service-images {
	margin-top: -80px;
	display: flex;
	width: 50%;
	column-gap: 32px;
}

.service-images .image-wrap {
	width: 50%;
	height: 480px;
	border-radius: 24px;
	overflow: hidden;
}

.service-images .image-wrap:nth-of-type(1) {
	margin-top: 80px;
}

.service-images img {
    width: 100%;
	height: 100%;
    object-fit: cover;
}

.service-images .image-wrap:nth-of-type(1) img {
	object-position: 70%;
}

.service-images .image-wrap:nth-of-type(2) img {
	object-position: 42%;
}

#company {
	margin-top: 240px;
	padding-bottom: 240px;
}

#company table {
    width: 100%;
    max-width: 720px;
	margin-top: 80px;
	margin-left: auto;
	margin-right: auto;
	border-collapse: collapse;
}

#company th, #company td {
	height: 64px;
}

#company th {
	width: 240px;
	border-bottom: 1px solid #222120;
}

#company td {
	padding-left: 80px;
    border-bottom: 1px solid #DED8D1;
}

#contact {
	padding-top: 80px;
	background-color: #222120;
    color: #fff;
}

#contact .heading {
	justify-content: center;
}

.footer-main {
	padding-top: 80px;
	background-color: #222120;
    color: #fff;
}

.contact-button {
	width: 400px;
	height: 80px;
	margin: 0 auto;
	padding: 8px 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 24px;
	border-radius: 100px;
	background-color: #fff;
	color: #222120;
	text-decoration: none;
	font-size: 40px;
}

.contact-button svg {
	width: 40px;
	height: 40px;
}

.form-wrap {
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
	max-width: 600px;
}

.wpcf7 input, .wpcf7 textarea {
	width: 100%;
	padding: 0 8px;
	border: none;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 6px;
}

.wpcf7 input[type="submit"] {
	width: 240px;
	margin: 24px auto 0;
	display: block;
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	border-radius: 100px;
	height: 48px;
}

.form-wrap label {
	line-height: 2.6;
}

.footer-logo {
    margin-top: 64px;
	text-align: right;
	color: rgba(255, 255, 255, 0.1);
	font-weight: 400;
	font-size: 80px;
}

small {
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.grecaptcha-badge {
	z-index: 10;
}

@media (max-width: 960px) {
	header {
		padding-left: 20px;
		padding-right: 20px;
	}
	header.color {
		background-color: transparent;
		color: #222120;
		/* opacity: 0.7; */
		mix-blend-mode: multiply;
	}
	.header-content {
		align-items: start;
	}
    .header-content h1 {
		align-self: center;
    }
    header nav ul {
        flex-direction: column;
        align-items: end;
    }
    header nav ul li {
        margin: 10px 0;
    }
	header .icon-button {
		width: auto;
		height: auto;
		border: none;
	}
	header .icon-button span {
		display: block;
	}
	header .icon-button svg {
		display: none;
	}
    .header-image {
        height: 300px;
    }
	h2 {
		font-size: 64px;
	}
	.inner {
		max-width: 640px;
	}
	#main-visual .inner .en-font {
		font-size: 4.8vw;
	}
	#about {
		padding-top: 80px;
	}
	#about h2 {
		position: static;
	}
	#about .flexbox {
		padding-top: 0;
		flex-direction: column;
	}
	#about .image-wrap {
		width: 70%;
		margin-left: 0;
		margin-top: -80px;
		align-self: flex-end;
		z-index: -1;
	}
	#about .text {
		/* margin-top: -20px; */
		width: 100%;
	}
    .service-content {
        flex-direction: column-reverse;
    }
	.service-images {
		width: 240px;
		margin-top: -80px;
		align-self: flex-end;
	}
	.service-images .image-wrap {
		height: 320px;
	}
	.service-item {
		width: 100%;
		margin-top: -40px;
	}
    .service-images img {
        max-width: 100%;
    }
	#company th {
		width: 120px;
	}
	.footer-logo {
		font-size: 8vw;
	}
}

@media (max-width: 520px) {
	header nav {
		position: absolute;
		top: 20px;
		right: 20px;
	}
	header nav ul {
		row-gap: 8px;
	}
	header nav ul li {
		margin: 0;
	}
	.heading {
		flex-direction: column;
		align-items: start;
		row-gap: 8px;
	}
	#main-visual .inner {
		padding-left: 20px;
		padding-right: 20px;
	}
	#service .heading {
		mix-blend-mode: luminosity;
	}
	.service-item {
		margin-top: 0;
	}
	.service-images {
		margin-top: -120px;
		column-gap: 24px;
	}
	.service-images .image-wrap {
		height: 280px;
	}
	#company tr {
		display: flex;
		flex-direction: column;
	}
	#company th {
		width: 100%;
		height: auto;
		padding-top: 16px;
		text-align: left;
		border: none;
	}
	#company td {
		height: auto;
		padding-left: 0;
		padding-bottom: 8px;
	}
	.contact-button {
		width: 320px;
	}
}