@charset "UTF-8";

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

.hero,
.features,
.members,
.history {
    background: var(--background-main);
    color: var(--text-sub);
}
.features h1,
.members h1,
.history h1 {
    background: var(--background-light);
	letter-spacing: 0.08em;
}

.mission h1,
.about h1 {
    background: #f3f3f3;
	letter-spacing: 0.08em;
}

.hero h2,
.features h2,
.members h2,
.history h2 {
    color: var(--text-sub);
	letter-spacing: 0.08em;
}

.mission,
.about {
    background: var(--background-sub);
    color: #ffffff;
}

.description {
	line-height: 1.7;
	letter-spacing: 0.1em;
	font-weight: 400;
	text-align: left;
}

.hiw,
.contact {
    background: var(--background-light);
    color: var(--text-main);
}

/* =============== アニメーション ===============  */

.slidein {
    opacity: 0;
}

.slidein-up.is-show {
    animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.slidein-left.is-show {
    animation: fadeleft 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.slidein-right.is-show {
    animation: faderight 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeleft {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes faderight {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.zoomin {
    opacity: 0;
}

.zoomin.is-show {
    animation: zoomin 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomin {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hilight {
    background: linear-gradient(transparent 70%,
            var(--color-accent) 70%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: left bottom;
    transition: background-size 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hilight.is-show {
    background-size: 100% 100%;
}

/* =============== hero ===============  */
.hero_wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.hero h1 {
	z-index: 0;
	width: 71vw;
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
	font-size: 42px;
	line-height: 1.4em;
	background: var(--background-light);
	border-radius: 0 10px 10px 0;
}

.no-break {
	white-space: nowrap;
}

.hero h2 {
	font-size: 36px;
}

.hero_text {
    flex: 5;
	position: relative;
	max-width: 50%
}

.hero_img {
    flex: 5;
    margin-right: -40px;
    overflow: hidden;
	margin-top: 41px;
}

.hero_img img {
    object-fit: contain;
}

.hero_title {
    width: 100%;
    margin: 0;
}

.hero_title.is-show::before {
    animation: bg 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero_title_wrap {
    position: relative;
    display: block;
    z-index: 1;
}

.hero_title_wrap .inn {
    display: block;
    margin: 1rem 0;
}

@keyframes bg {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* =============== mission ===============  */

.mission .container {
    padding-inline: 160px;
}

.mission {
    text-align: center;
    position: relative;
	padding-bottom: 50px;
}

.mission h1 {
    background: #f3f3f3;
    text-align: center;
	line-height: 1.3 !important;
    border-radius: 10px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	padding: 36px;
	font-size: 35px;
}

.mission h2,
.mission h3 {
	color: #ffffff;
	margin: 0;
	margin: 16px 0;
}

.mission h2 {
    display: inline-block;
}

.mission h3 {
	margin-top: 50px;
}

.mission_description {
    margin-top: 36px;
    color: var(--text-sub);
	font-size: 18px;
	text-align: left;
}

.mission::after {
	content: "";
	display: block;
	width: 100%;
	height: 101px;
	background: var(--background-sub);
	position: absolute;
	bottom: -100px;
	clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}

/* =============== features ===============  */
.features {
    text-align: center;
    margin-top: 70px;
}

.features h1 {
    width: 60%;
    border-radius: 10px;
	font-size: 24px;
}

.features h2 {
	margin-bottom: 100px;
}

.features h3 {
    color: #ffffff;
    margin: 0;
	font-size: 20px;
}

.features-wrapper {
    display: flex;
    gap: 12px;
    margin-top: 80px;
}

.features-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.features-item h1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin: 0;
    white-space: nowrap;
}

.features_contents_description {
	font-size: clamp(14px, 1.4vw, 16px);
    text-align: left;
	line-height: 1.5;
}

.hiw-text .description {
	text-align: center;
	font-size: 24px;
}

.features_contents_remark {
    text-align: left;
	font-size: 12px;
	letter-spacing: 0px;
}

.features-border {
    position: relative;
    height: 100%;
    padding: 70px 32px 17px 32px;
	border-radius: 10px;
}
/* ===== stroke ===== */
.stroke .border {
    position: absolute;
    opacity: 0;
}

.stroke .border.top,
.stroke .border.bottom {
    width: 100%;
}

.stroke .border.top {
    border-top: 4px solid var(--background-light);
    right: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
}

.stroke .border.bottom {
    border-bottom: 4px solid var(--background-light);
    left: 0;
    bottom: 0;
    border-radius: 0 0 10px 10px;
}

.stroke .border.right,
.stroke .border.left {
    height: 100%;
}

.stroke .border.right {
    border-right: 4px solid var(--background-light);
    right: 0;
    top: 0;
    border-radius: 0 10px 10px 0;
}

.stroke .border.left {
    border-left: 4px solid var(--background-light);
    left: 0;
    bottom: 0;
    border-radius: 10px 0 0 10px;
}

.stroke.is-show .border {
    opacity: 1;
}

.stroke.is-show .border.top,
.stroke.is-show .border.bottom {
    animation: stroke-width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stroke.is-show .border.right,
.stroke.is-show .border.left {
    animation: stroke-height 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes stroke-width {
    0% {
        width: 0;
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes stroke-height {
    0% {
        height: 0;
        opacity: 1;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}

/* =============== How It Works ===============  */
.hiw h1 {
	margin-bottom: 10px;
}

.hiw h2 {
	margin-bottom: 80px;
}

.hiw-text .description {
	font-size: 20px;
	margin-top: 0;
}

.hiw .container {
    padding-inline: 160px;
}

.hiw {
    text-align: center;
}

.hiw-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.hiw-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    position: relative;
}

.hiw-text h1 {
    position: relative;
    display: inline-block;
}

.step {
    position: absolute;
    top: -117px;
    left: -180px;
    transform: rotate(-8deg);
	padding-right: 5px;
}

.hiw-item:nth-child(2) {
    flex-direction: row-reverse;
}

.hiw-item:nth-child(2) .step {
    left: auto;
    right: 100px;
}

/* =============== Company Members ===============  */
.members h3 {
    color: #ffffff;
    margin: 0;
	padding: 8px 0;
}

.members .caveat {
	padding-bottom: 40px;
}

.members-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.members-item {
    display: flex;
    gap: 20px;
    border: 4px solid var(--background-light);
    border-radius: 10px;
    padding: 28px;
}

.members_text {
    display: flex;
    flex-direction: column;
}

.members_contents_career {
    font-size: 18px;
}

.members .description {
	font-size: 16px;
	line-height: 1.5;
}
	

.members_img {
    width: 30%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    align-self: center;
}

.members-item p {
    margin: 0;
}


/* =============== Company About ===============  */
.about .caveat {
	padding-bottom: 40px;
}

.about-item .container {
    padding-inline: 160px;
}

.about-item {
    display: flex;
    border-bottom: 3px solid #B5C2CB;
    padding: 12px 0;
}

.about-wrapper .about-item:first-child {
    border-top: 3px solid #B5C2CB;
}

.about-label {
    width: 40%;
    text-align: center;
}

.about-value {
    width: 60%;
}

.about_map {
    text-align: center;
    padding-top: 80px;
}

.about_map iframe {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}


/* =============== Company History ===============  */
.history-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 80px 0 100px;
}

.history h2 {
    text-align: center;
}

.history .description {
	margin-left: 36px;
}

.history_img {
    flex: 4;
}

.history_img img {
    border-radius: 10px;
}

.history_text {
    flex: 6;
    color: var(--text-sub);
}

/* =============== NEWS ===============  */

.news-wrapper {
    background: #ffffff;
    border-radius: 10px;
    padding: 68px;
    padding-top: 30px;
}

.news-wrapper h3 {
    margin: 0;
    font-weight: normal;
}

.news-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: inherit;
}

.news_date {
    color: var(--text-main);
}

.news-button {
    display: flex;
    justify-content: center;
    margin-top: 68px;
}

/* =============== Contact Us ===============  */
.contact-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
/*     text-align: center; */
    padding: 34px 34px;
    border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.contact .caveat {
	padding-top: 50px;
}

.contact h2 {
	text-align: center;
	font-size: 30px;
    font-weight: bold;
	color: var(--background-main);
    line-height: 1.3;
    letter-spacing: 0.08em;
    max-width: 100%;
/*     word-break: keep-all; */
	margin: 0;
}

.contact .desctiption {
	text-align: center;
	margin-bottom: 28px;
}

@media (min-width: 768px) and (max-width: 1024px) {
	
	.description {
		font-size: 16px;
		line-height: 1.5;
		letter-spacing: 0.2em;
		font-weight: 400;
		text-align: left;
	}

    /* =============== hero ===============  */
    .hero_wrapper {
        flex-direction: column-reverse;
        gap: 0;
    }
	
	.hero_text {
		max-width: 100%;
	}

    .hero_img {
		width: 100%;
        margin: 0;
        margin-left: -32px;
        margin-right: -32px;
    }
	
	.hero_img img {
		margin: 40px 0;
	}

    .hero h1,
    .hero h2 {
        text-align: center;
    }

	.hero h1 {
		width: 100vw;
		margin-left: -32px;
		padding-left: 0;
		font-size: 42px;
		line-height: 1.4em;
		border-radius: 0;
	}

    /* =============== Mission ===============  */
	.mission .container {
		padding-inline: 32px;
	}

	.mission_description {
		margin: 32px !important;
	}

    /* =============== Freatures ===============  */
    .features-wrapper {
        align-items: center;
        flex-direction: column;
        gap: 60px;
    }
	
	.features h1 {
		font-size: 40px;
		width: 50%;
	}
	
	.features h3 {
		font-size: 24px;
	}

    .features-item {
        max-width: 700px;
    }

    .features-border {
        padding: 50px 40px 20px;
    }


    /* =============== How It Works ===============  */

    .hiw .container {
        padding-inline: 16px;
    }

    .hiw-text {
        flex: 5;
		padding: 0 12px;
    }
	
	.hiw .description {
		font-size: 18px;
	} 

    .hiw_img {
        flex: 5;
		padding: 0 12px;
    }

    .step {
        position: absolute;
        top: -66px;
        left: -100px;
        transform: rotate(-8deg);
    }

    .hiw-item:nth-child(2) .step {
        left: auto;
        right: 60px;
    }


    /* =============== Company Members ===============  */
    .members-item {
        flex-direction: column;
        gap: 0;
    }
	
	.members-item .description {
        font-size: 14px;
    }

    .members_img {
        width: 60%;
    }

    /* =============== Company History ===============  */
    .history-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
	
	.history .description {
		margin-left: 0;
	}

    .contact p {
        color: var(--background-sub);
    }

    .history img {
        width: 100%;
        aspect-ratio: 2 / 1;
        object-fit: cover;
    }
	
    /* =============== Contact Us ===============  */
	.contact-wrapper {
		padding: 40px 60px 20px;
	}
	
	.contact .caveat {
		margin: 30px 0;
	}
	
	.contact h2 {
		font-size: 24px;
	}
}

@media screen and (max-width: 767px) {
     .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
	
	.description {
		font-size: 14px;
		line-height: 1.5;
		letter-spacing: 0.1em;
		font-weight: 300;
	}
	
	section {
		padding: 0px 0 48px;
	}

    /* =============== hero ===============  */
    .hero_wrapper {
        flex-direction: column-reverse;
        gap: 0;
		margin-top: 0;
	}
	
	.hero_title_wrap .inn {
		margin: 0;
		font-size: 25px;
		letter-spacing: 0.05em;
	}
	
	.hero_text {
		max-width: 100%;
	}

    .hero_img {
		width: 100%;
		text-align: center;
        height: auto;
		margin: 20px;
    }

    .hero h1,
    .hero h2 {
        text-align: center;
    }

    .hero h1 {
		width: 100vw;
        padding: 0 0 0 16px;
		margin-top: 12px;
		font-size: 24px;
		border-radius: 0;
		padding-left: 0;
		padding-left: 8px;
    }
	
	.hero h2 {
		font-size: 20px;
    }

    .hero_title {
        width: 100%;
        margin-left: calc(50% - 50vw);
    }

    /* =============== Mission ===============  */
    .mission {
        padding-bottom: 40px;
    }

    .mission .container {
        padding-inline: 16px;
    }

    .mission h1 {
		margin-top: 0;
		padding: 18px 24px;
		font-size: 21px;
		border-radius: 5px;
    }

    .mission h2 {
        margin: 0;
		font-size: 22px;
    }
	
	.mission h3 {
		margin-top: 24px;
	}
	
	.mission .description {
		margin-top: 18px;
    }
	
	.mission::after {
		height: 51px;
		bottom: -50px;
	}
	

    /* =============== Freatures ===============  */
    .features-wrapper {
        align-items: center;
        flex-direction: column;
        gap: 40px;
        margin-top: 0;
    }
	
	.features .caveat-dark {
		padding-top: 0;
	}

    .features h2 {
		margin-top: 0;
        margin-bottom: 4rem;
    }

    .features-item {
        max-width: 500px;
        position: relative;
    }

    .features-item h1 {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0.5rem 0.75rem;
        border-radius: 5px;
        z-index: 2;
        white-space: nowrap;
    }

    .features-border {
        position: relative;
        padding: 40px 16px 0;
    }


    /* =============== How It Works ===============  */
	.hiw .container {
        padding-inline: 16px;
    }

    .hiw-wrapper {
        gap: 32px;
    }
	
	.hiw-item {
        flex-direction: column;
        gap: 0;
    }
	
	.hiw .hiw-title {
/* 		font-size: 28px; */
		margin-bottom: 12px !important;
	}
	
	.hiw .caveat {
		margin-top: -20px;
	}

    .hiw h1 {
        font-size: clamp(24px, 5.6vw, 28px);
		margin-bottom: 0;
    }
	.hiw h2 {
		margin-top: 0;
		margin-bottom: 40px;
    }
	
	.members h3 {
        text-align: center;
        font-size: clamp(16px, 5vw, 20px);
    }
	
	.hiw .description {
		font-size: 14px;
		padding: 0 16px;
		letter-spacing: 0.08em;
	}
	
    .step {
        position: absolute;
        top: -40px;
        left: -80px;
        transform: rotate(-8deg);
    }
	
    .hiw-item:nth-child(2) {
        flex-direction: column;
    }

    .hiw-item:nth-child(2) .step {
        left: auto;
		right: 60px;
    }
	
	.hiw .slidein-up.is-show {
		margin-top: 0;
		margin-bottom: 32px;
	}
	
	.hiw_img img {
		margin: 0 auto;
		padding-bottom: 24px;
		width: 80%;
	}



    /* =============== Company Members ===============  */
    .members-wrapper {
        grid-template-columns: repeat(1, 1fr);
		gap: 12px;
    }

    .members-item {
        flex-direction: column;
        gap: 0;
        border-radius: 5px;
		padding: 20px;
    }

    .members_contents_career {
        font-size: 14px;
    }

    .members_img {
		width: 70%;
    }
	
	.members h3 {
		padding: 12px 0;
	}
	
	.members .description {
		font-size: 13px;
	}

    /* =============== Company About ===============  */

    .about-item {
        flex-direction: column;
        text-align: center;
    }
	
	.about .caveat {
		padding-bottom: 20px;
	}

    .about-label {
        font-weight: bold;
        width: 100%;
    }

    .about-value {
        width: 100%;
    }

    .about_map {
        padding-top: 28px;
    }

    .about_map iframe {
        width: 100% !important;
        height: auto !important;
        width: 100%;
        border-radius: 5px;
        aspect-ratio: 16 / 9;
    }

    /* =============== Company History ===============  */
    .history-wrapper {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
		margin: 40px 0 40px;
    }

    .contact p {
        color: var(--background-sub);
    }

    .history img {
        width: 100%;
        aspect-ratio: 2 / 1;
        object-fit: cover;
        border-radius: 5px;
    }

    .news-wrapper {
		padding: 0 20px 20px;
        border-radius: 5px;
    }

    .news-button {
        margin-top: 20px;
    }
	
	 /* =============== Contact Us ===============  */
    .contact-wrapper {
        border-radius: 5px;
		padding: 20px;
    }
	
	.contact .caveat {
		padding-top: 36px;
	}
	
	.contct-title {
		padding: 20px 0;
	}
	
	.contact .description {
		text-align: left;
	}
	
	.contact h2 {
		font-size: 16px;
	}
}