*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

ol,
ul,
li {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

a {
	text-decoration: none;
}

img {
	vertical-align: bottom;
}

button {
	background: transparent;
	color: #000;
}

html {
	font-size: 100%;
}

img {
	max-width: 100%;
}

a {
	color: inherit;
	display: inline-block;
	text-decoration: none;
	transition: 0.5s;
}

a:hover {
	cursor: pointer;
}

span {
	display: inline-block;
}

.hidden-sp {
	display: none !important;
}

.hidden-pc {
	display: block !important;
}

.header {
	background: #375ab3;
	height: auto;
	left: 0;
	padding-inline: 40px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.header__inner {
	align-items: center;
	display: grid;
	grid-template-columns: 150px 1fr;
	padding-block: 17px;
}

.header__logo {
	display: block; /* 念のため */
	height: auto;
	width: 200px; /* 親枠も固定 */
}

.header__logo img {
	height: auto;
	width: 200px; /* 好きな固定サイズ */
}

.header__nav {
	align-items: center;
	display: flex;
	justify-content: end;
	-moz-column-gap: 60px;
	column-gap: 60px;
}

.header__list {
	align-items: center;
	display: flex;
	-moz-column-gap: 16px;
	column-gap: 16px;
}

.header__list li a {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	padding-inline: 8px;
}

.header__btn {
	background: #fff;
	border: 1px solid #fff;
	color: #001a75;
	font-size: 16px;
	font-weight: 400;
	padding: 8px 26px;
	transition: all 0.3s ease;
}

.drawer__icon {
	display: flex;
	flex-direction: column;
	height: 16px;
	justify-content: space-between;
	position: fixed;
	right: 20px;
	top: 19px;
	width: 24px;
	z-index: 102;
}

.drawer__icon-bar {
	background: #fff;
	height: 1px;
	transition: all 0.3s ease;
	width: 100%;
}

.drawer__icon.js-show .drawer__icon-bar:nth-of-type(1) {
	rotate: 45deg;
	translate: 0 7.5px;
}

.drawer__icon.js-show .drawer__icon-bar:nth-of-type(2) {
	display: none;
}

.drawer__icon.js-show .drawer__icon-bar:nth-of-type(3) {
	rotate: -45deg;
	translate: 0 -7.5px;
}

.drawer {
	background: #375ab3;
	height: 100vh;
	height: 100svh;
	overflow-y: scroll;
	position: fixed;
	right: 0;
	top: 0;
	transition: translate 0.3s ease;
	translate: 0 -101%;
	width: 100%;
	z-index: 101;
}

.drawer.js-show {
	translate: 0;
}

.drawer__body {
	height: -moz-fit-content;
	height: fit-content;
	padding-block: 88px 40px;
	padding-inline: 34px;
	width: 100%;
}

.drawer__data-list {
	color: #fff;
	display: flex;
	flex-direction: column;
	font-family: Inter;
	font-size: 13px;
	font-weight: 400;
	gap: 15px;
	line-height: normal;
	margin-top: 40px;
}

.drawer__list {
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
	margin-top: 60px;
	row-gap: 32px;
	text-align: center;
}

.drawer__list li a {
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
}

.drawer__button {
	color: #333;
	margin-inline: auto;
	margin-top: 120px;
	width: 264px;
}

.drawer__button .btn__link {
	background: #fff;
	color: #333;
}

.drawer__button .btn__link::after {
	background: #b0c4de;
	content: "";
	inset: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s ease;
	z-index: 1;
}

.drawer__button .btn__link-text,
.drawer__button .btn__link-insta {
	color: #333 !important;
}

.fv {
	padding-top: 76px;
}

.fv__inner {
	display: flex;
	position: relative;
}

.fv__title-wrap {
	left: px;
	position: absolute;
	top: 100px;
	width: 40%;
}

.fv__title {
	color: #333;
	font-family: "Kiwi Maru";
	font-size: 80px;
	font-weight: 500;
	line-height: normal;
}

.fv__title span {
	color: #375ab3;
}

.fv__sub-title {
	color: #333;
	font-family: "Kiwi Maru";
	font-size: 32px;
	font-weight: 400;
	line-height: normal;
	position: relative;
}

.fv__sub-title::after {
	background: #6a6a6a;
	content: "";
	height: 1px;
	position: absolute;
	right: 20%;
	top: 26px;
	width: 120px;
}

.fv__catchcopy {
	background: linear-gradient(90deg, #b0c4de 50%, rgba(176, 196, 222, 0) 100%);
	color: #fff;
	font-family: "Playfair Display";
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	margin-top: 19px;
	padding: 10px;
	width: 100%;
}

.fv__img {
	background: #375ab3;
	width: 50%;
}

.fv__swiper {
	width: 50%;
}

.fv__swiper-container,
.fv__swiper,
.fv__swiper-wrapper,
.fv__swiper-slide {
	position: relative;
}

.intro {
	background: #b0c4de;
	padding-block: 94px;
}

.intro__title {
	color: #fff;
	font-family: Inter;
	font-size: 32px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
}

.intro__text {
	color: #333;
	font-family: Inter;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.96px;
	line-height: 1.8;
	margin-inline: auto;
	max-width: 680px;
	text-align: center;
}

.about {
	padding-block: 100px;
}

.inner {
	margin-inline: auto;
	max-width: 691px;
	padding-inline: 20px;
}

.animated__fadeIn {
	opacity: 0;
	transition: opacity 0.3s ease, translate 0.3s ease;
	translate: 0 40px;
}

.animated__fadeIn.js-show {
	opacity: 1;
	translate: 0 0;
}

.section-title__en {
	color: #333;
	font-family: "Playfair Display";
	font-size: 32px;
	font-weight: 700;
	line-height: 1.8;
	position: relative;
	text-align: center;
}

.section-title__en::before {
	background: linear-gradient(-90deg, #b0c4de 0%, rgba(176, 196, 222, 0) 100%);
	content: "";
	height: 14px;
	left: -10px;
	position: absolute;
	top: 24px;
	width: 244px;
}

.section-title__en::after {
	background: linear-gradient(90deg, #b0c4de 0%, rgba(176, 196, 222, 0) 100%);
	content: "";
	height: 14px;
	position: absolute;
	right: -10px;
	top: 24px;
	width: 244px;
}

.section-title__en.--white::before {
	background: linear-gradient(-90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.section-title__en.--white::after {
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.section-title__ja {
	color: #333;
	font-family: "Kiwi Maru";
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
}

.about__cards {
	margin-top: 80px;
}

.work {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 92.48%, #fff 98.46%), linear-gradient(180deg, rgba(255, 255, 255, 0) 87.17%, #fff 95.78%), url("../img/work-bg.webp") no-repeat center center/cover;
	padding-block: 100px;
}

.work__text {
	align-items: center;
	color: #333;
	display: flex;
	flex-direction: column;
	font-family: Inter;
	font-size: 24px;
	font-weight: 700;
	gap: 5px;
	line-height: 1.6;
	margin-block: 60px 100px;
	text-align: center;
}

.animated__colorBox {
	clip-path: inset(0 100% 0 0);
	color: #000;
	position: relative;
	white-space: nowrap;
	width: -moz-fit-content;
	width: fit-content;
}

.animated__colorBox::after {
	background-color: #b0c4de;
	bottom: 0;
	content: "";
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: 0 50%;
	z-index: 2;
}

.animated__colorBox.js-show {
	animation: 1.2s forwards ease-in-out textView;
}

.animated__colorBox.js-show::after {
	animation: 1.5s forwards ease-in-out colorBox;
}

.work__inner {
	display: flex;
	gap: 80px;
	margin-inline: auto;
	max-width: 1180px;
	padding-inline: 20px;
}

.work__card {
	box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.25);
	position: relative;
}

.work__card::after {
	background: url(../../assets/img/Polygon\ 1.svg) no-repeat center center/contain;
	bottom: 0;
	content: "";
	height: 30px;
	position: absolute;
	right: 0;
	width: 30px;
}

.work-card__title {
	color: #333;
	font-family: Inter;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.8;
	padding-inline: 16px;
	padding-top: 16px;
}

.work-card__text {
	color: #333;
	font-family: Inter;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	padding-bottom: 16px;
	padding-inline: 16px;
}

.work__button {
	margin-inline: auto;
	margin-top: 120px;
	width: 264px;
}

.btn__link {
	align-items: center;
	background: #575757;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding: 10px 60px;
	position: relative;
	text-align: center;
}

.btn__link::after {
	background: #333;
	content: "";
	inset: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.3s ease;
	z-index: 1;
}

.btn__link .btn__link-text,
.btn__link .btn__link-insta {
	color: #fff;
	font-family: Inter, sans-serif;
	font-weight: 500;
	line-height: normal;
	position: relative;
	transition: color 0.2s ease;
	z-index: 2;
}

.btn__link .btn__link-text {
	font-size: 24px;
}

.btn__link .btn__link-insta {
	font-size: 14px;
}

.recruit {
	padding-bottom: 100px;
}

.recruit__swiper {
	height: 400px;
}

.recruit__swiper-container {
	margin-bottom: 120px;
}

.recruit__swiper-wrapper {
	transition-timing-function: linear;
}

/* スライド全体の高さを固定 */

.recruit__swiper-slide {
	align-items: center;
	display: flex;
	justify-content: center;
	overflow: hidden; /* 画像のはみ出しを隠す */
}

/* 画像共通スタイル */

.recruit__slide-inner img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.recruit__title {
	align-items: center;
	color: #333;
	display: flex;
	flex-direction: column;
	font-family: Inter;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	margin-block: 60px 100px;
	text-align: center;
}

.recruit__text {
	color: #333;
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.32px;
	line-height: 1.8;
	margin-inline: auto;
	max-width: 504px;
	text-align: center;
}

.recruit__text:nth-of-type(2) {
	margin-bottom: 60px;
	margin-top: 20px;
}

.recruit__inner {
	align-items: center;
	display: flex;
	margin-inline: auto;
}

.recruit__data {
	border-radius: 8px;
	margin-inline: auto;
	max-width: 1040px;
	padding-block: 40px 60px;
	padding-inline: 20px;
}

.recruit__heading {
	color: #333;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.32px;
	line-height: 1.8;
	text-align: center;
}

.recruit__list {
	display: grid;
	grid-template-columns: auto 1fr;
	justify-content: center; /* グリッド全体を中央寄せ */
	row-gap: 16px;
	-moz-column-gap: 16px;
	column-gap: 16px;
	margin: 0 auto;
	text-align: left; /* 内容は左寄せに戻す */
}

.recruit__list dt {
	color: #333;
	font-weight: bold;
	margin-inline: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.recruit__list dd {
	color: #555;
	line-height: 1.6;
	margin: 0;
}

.recruit__list dt,
.recruit__list dd {
	margin: 0;
	text-align: left;
}

.recruit__img {
	width: 50%;
}

.recruit__button {
	margin-inline: auto;
	margin-top: 60px;
	width: 264px;
}

.company {
	background: url(../../assets/img/company-bg.webp) no-repeat center center/cover;
	color: #fff;
	padding-block: 100px;
}

.company__contents {
	align-items: center;
	display: flex;
	gap: 50px;
	margin-top: 37px;
	padding-left: 30px;
}

.company__message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-inline: auto;
	width: 568px;
}

.company__message-title {
	color: #333;
	font-family: Inter;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.8;
}

.company__message-position {
	color: #333;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.8;
}

.company__message-name {
	color: #333;
	font-family: Inter;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.8;
}

.company__message-text {
	color: #333;
	font-family: Inter;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
}

.company__img {
	width: 38.75%;
}

.company__profile {
	margin-top: 50px;
	position: relative;
}

.company__list {
	display: grid;
	grid-template-columns: auto 1fr;
	justify-content: center;
	position: absolute;
	right: 100px;
	row-gap: 16px;
	top: 109px;
	-moz-column-gap: 16px;
	column-gap: 16px;
	margin: 0 auto;
	text-align: left;
}

.company__list dt {
	color: #333;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
}

.company__list dd {
	color: #333;
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
}

.contact {
	background: url(../../assets/img/contact-bg.webp) no-repeat top center/cover;
	padding-block: 132px;
}

.contact__title {
	color: #fff;
	font-family: Inter;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
}

.contact__text {
	color: #fff;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.8;
	margin-top: 25px;
	text-align: center;
}

.contact__button {
	margin-inline: auto;
	margin-top: 60px;
	width: 264px;
}

.map iframe {
	border: none;
	height: 563px;
	width: 100%;
}

.--movie-color {
	color: #fff;
}

.movie {
	background: #6a6a6a;
	padding-block: 117px;
}

.movie__inner {
	margin-inline: auto;
	padding-inline: 20px;
}

.movie__contents {
	display: flex;
	justify-content: center;
	margin-inline: auto;
	margin-top: 81px;
}

.movie__contents iframe {
	aspect-ratio: 640/360;
	height: auto;
	width: 640px;
}

.footer {
	background: #6a6a6a;
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	margin-inline: auto;
	padding-inline: 20px;
	width: min(1220px, 100%);
}

.footer__data-list {
	color: #fff;
	display: flex;
	flex-direction: column;
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	gap: 15px;
	line-height: normal;
	margin-top: 54px;
}

.footer__nav {
	display: flex;
	gap: 61px;
	margin-top: 63px;
}

.footer__list {
	color: #fff;
	display: flex;
	flex-direction: column;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	gap: 32px;
	line-height: normal;
}

.footer__btn {
	align-items: center;
	background: #fff;
	border: 1px solid #fff;
	color: #333;
	display: flex;
	font-family: "Noto Sans JP";
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	height: 51px;
	line-height: normal;
	padding: 8px 26px;
	transition: all 0.3s ease;
}

.copyright {
	color: #fff;
	display: block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.28px;
	line-height: normal;
	margin-top: 80px;
	text-align: center;
}

@media (any-hover: hover) {

.header__btn:hover {
	background: transparent;
	color: #fff;
}

.btn__link:hover::after {
	transform: scaleX(1);
}

.btn__link:hover .btn__link-text,
.btn__link:hover .btn__link-insta {
	color: #fff;
}

.footer__btn:hover {
	background: transparent;
	color: #fff;
}

}

@media screen and (min-width: 768px) {

.drawer__icon {
	display: none;
}

}

@media (max-width: 1199px) {

.company__list {
	right: 80px;
	top: 109px;
}

.company__list dt,
.company__list dd {
	font-size: 13px;
}

}

@media (max-width: 1000px) {

.header__nav {
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.header__list li a {
	font-size: 16px;
}

.header__btn {
	font-size: 16px;
}

.header__btn {
	font-size: 16px;
}

}

@media (max-width: 900px) {

.header__list li a {
	font-size: 11px;
}

}

@media screen and (max-width: 767px) {

.hidden-sp {
	display: block !important;
}

.hidden-pc {
	display: none !important;
}

.header {
	padding-inline: 0;
}

.header__inner {
	padding: 13.5px 20px;
}

.header__nav {
	display: none;
}

.fv {
	padding-top: 57px;
}

.fv__inner {
	flex-direction: column;
}

.fv__title-wrap {
	left: 50px;
	top: 40px;
	width: 100%;
}

.fv__title {
	font-size: 45px;
}

.fv__sub-title {
	font-size: 20px;
}

.fv__sub-title::after {
	right: 40%;
	top: 14px;
	width: 48px;
}

.fv__img {
	width: 100%;
}

.fv__swiper {
	width: 100%;
}

.intro__title {
	font-size: 20px;
}

.intro__text {
	font-size: 13px;
	letter-spacing: 0.52px;
}

.inner {
	width: calc(100% - 40px);
}

.section-title__en {
	font-size: 24px;
	line-height: normal;
}

.section-title__en::before {
	left: -20px;
	width: 80px;
}

.section-title__en::after {
	right: -20px;
	width: 80px;
}

.section-title__ja {
	font-size: 13px;
	line-height: normal;
}

.work__text {
	font-size: 14.5px;
	font-weight: 700;
	line-height: 160%; /* 25.6px */
}

.work__inner {
	flex-direction: column;
	gap: 40px;
}

.recruit {
	padding-top: 0;
}

.recruit__title {
	font-size: 14.5px;
	font-weight: 700;
	line-height: 160%; /* 25.6px */
}

.recruit__inner {
	flex-direction: column-reverse;
}

.recruit__list dt {
	color: #333;
	font-family: Inter;
	font-size: 13px;
	font-weight: 700;
	line-height: normal;
}

.recruit__list dd {
	color: #333;
	font-family: Inter;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.26px;
	line-height: 1.8;
}

.recruit__img {
	width: 100%;
}

.company__contents {
	flex-direction: column-reverse;
	padding: 20px;
}

.company__message {
	margin-top: 40px;
	width: 100%;
}

.company__img {
	width: 375px;
}

.company__list {
	left: 0px;
	padding-inline: 20px;
	top: 837px;
	width: 459px;
}

.company__list dt {
	font-size: 20px;
}

.movie__contents iframe {
	aspect-ratio: 345/194;
	height: auto;
	max-width: 100%;
	vertical-align: top;
	width: 345px;
}

.footer__inner {
	flex-direction: column;
}

.footer__nav {
	flex-direction: column;
}

.footer__btn {
	margin-inline: auto;
	width: 150px;
}

}

@media screen and (max-width: 767px) and (max-width: 767px) {

.company__list dd {
	font-size: 20px;
}

}

@media (max-width: 600px) {

.company__list {
	top: 700px;
}

}

@media (max-width: 500px) {

.fv__sub-title::after {
	right: 26%;
}

.company__list dt,
.company__list dd {
	font-size: 13px;
}

.company__list {
	top: 390px;
	width: 390px;
}

}

@keyframes textView {

from {
	clip-path: inset(0 100% 0 0);
}

to {
	clip-path: inset(0 0 0 0);
}

}

@keyframes colorBox {

0%,50% {
	transform-origin: 0 50%;
}

60%,100% {
	transform-origin: 100% 50%;
}

60% {
	transform: scaleX(1);
}

100% {
	transform: scaleX(0);
}

}

