@charset "UTF-8";

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

body {
    font-size: clamp(17px, 1.6vw, 24px);
}

.lang-switch {
    display: flex;
    justify-content: flex-end;
    gap: 0;
    list-style: none;
    margin-bottom: 1rem;
}

.lang-switch a {
    transition: 0.3s;
}

.lang-switch a:hover {
    color: #67E8F9;
}

.lang-switch li:not(:last-child)::after {
    content: "|";
    margin: 0 8px;
    color: white;
}

.hero,
.features,
.members,
.history {
    background: var(--background-main);
    color: var(--text-sub);
}

.features h1,
.members h1,
.history h1 {
    background: var(--background-light);
}

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

h2 {
	font-size: clamp(32px, 2.9vw, 36px);
}

.description {
	line-height: 1.6;
	letter-spacing: 0.1em;
	font-size: 20px;
	font-weight: 300;
	text-align: left;
}

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

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

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

.mission h1,
.about h1 {
    background: #f3f3f3;
}

.en_textalign {
	text-align: justify;
}

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

.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;
/*     justify-content: space-between; */
    gap: 40px;
	margin-top: 40px;
}

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

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

.hero h1 {
	z-index: 0;
	width: 71vw;
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
	padding-right: 24px;
	font-size: clamp(18px, 3.5vw, 32px);
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 2px;
	background: var(--background-light);
	border-radius: 0 10px 10px 0;
}

.hero h2 {
    font-size: 28px;
	font-weight: 700;
	letter-spacing: 2px;
}

.en_textalign {
	text-align: left;
	font-size: 20px;
}

.hero_img {
    flex: 5;
    margin-right: -40px;
/* 	padding: 10px; */
/*     height: 800px; */
    overflow: hidden;
	margin-top: 41px;
}

.hero_img img {
/*     width: 81%; */
/*     height: 100%; */
    object-fit: contain;
}

.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: 0;
}


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

    to {
        transform: scaleX(1);
    }
}

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

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

.mission {
    text-align: center;
    position: relative;
}

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

.mission h2 {
    display: inline-block;
}

.mission h3 {
    margin: 60px 0 0;
	font-size: 32px;
}

.mission_description {
    margin-top: 32px;
	text-align: justify;
	color: var(--text-sub);
}

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

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

.features h1 {
    width: 75%;
    border-radius: 10px;
    font-size: clamp(23px, 2.2vw, 33px);
}

.features h2 {
	margin: 0 0 80px;
	line-height: 1.3;
}

.features h3 {
    color: #ffffff;
    margin: 0;
    font-size: clamp(18px, 1.7vw, 22px);
	letter-spacing: 0.05em;
}

.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;
	padding: 4px 0;
    white-space: nowrap;
}

.features_contents_description {
	margin: 12px 0;
    font-size: clamp(12px, 1.4vw, 18px);
    text-align: left;
	line-height: 1.5;
	letter-spacing: 0.08em;
}

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

.features-border {
    position: relative;
    height: 100%;
    padding: 48px 28px 28px 28px;
}

/* ===== 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-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.hiw {
    text-align: center;
}

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

.hiw h1 {
    font-size: clamp(41px, 4vw, 60px);
}

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

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

.hiw-title {
	font-size: 50px;
}

.hiw .description {
	text-align: center;
	font-size: 20px;
	margin: -30px 0 0;
}

.step {
    position: absolute;
    top: -100px;
    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: 280px;
}


/* =============== Company Members ===============  */
.members h3 {
    color: #ffffff;
    margin: 4px 0 8px;
	font-size: clamp(20px, 3vw, 28px);
	
}

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

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

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

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

.members_contents_career {
    font-size: clamp(13px, 1.4vw, 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-top: 60px;
    margin-bottom: 5rem;
}

.history h2 {
    text-align: center;
}

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

.history_img {
    flex: 4;
}

.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;
	letter-spacing: 0.08em;
}

.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 {
    background: #ffffff;
    text-align: center;
    padding:40px 100px 28px;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.contact h2 {
    margin-top: 0;
}

.contact-subtitle {
	max-width: 100%;
	margin: 0;
	font-size: 30px !important;
    font-weight: bold;
	color: var(--background-main);
    word-break: keep-all;	
}

.contact .description {
	margin: 12px 0 40px;
	text-align: center;
	letter-spacing: 0.08em;
}

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

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

    .hero_img {
        margin: 0;
    }
	
	.hero_img img {
		margin-top: 40px;
	}

    .hero h1,
    .hero h2 {
        text-align: center;
    }
	
	.hero h1 {
		width: 100vw;
		margin: 40px 0 0 -32px;
		padding: 0;
		font-size: 36px;
		line-height: 1.4em;
		border-radius: 0;
	}
	
	.hero_text {
		max-width: 100%;
	}
	
	.en_textalign {
		margin: 0 32px;
	}
	
    /* =============== Mission ===============  */

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


    /* =============== Freatures ===============  */
    .features-wrapper {
        align-items: center;
        flex-direction: column;
        gap: 50px;
    }

    .features-item {
        max-width: 700px;
		gap: 20px;
    }
	
	.features h1 {
		font-size: 32px;
    }
	
	.features h2 {
		font-size: 28px;
    }
	
	.features h3 {
		font-size: 28px;
    }

    .features-border {
        border-radius: 10px;
    }
	
	.features-item h1 {
		letter-spacing: 0;
	}


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

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

    .hiw-text {
        flex: 5;
    }
	
    .hiw-title {
        font-size: 32px;
    }
	
	.hiw .description {
		padding-top: 16px;
		font-size: 16px; 
		letter-spacing: 0.1em;
	}

    .hiw_img {
        flex: 5;
	}

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

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

    /* =============== Company Members ===============  */
	
    .members-item {
        flex-direction: column;
		margin-bottom: 0;
		padding: 20px;
        gap: 0;
    }
	
	.members h3 {
		text-align: center;
	}
	
	.members .description {
		font-size: 16px;
	}

    .members_img {
        max-width: 60%;
    }

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

    .history img {
        width: 100%;
        aspect-ratio: 2 / 1;
        object-fit: cover;
        border-radius: 10px;
    }
	
	/* =============== Contact Us ===============  */
	.contact-wrapper {
		padding: 40px 60px 20px;
	}
	
	.contact p {
        color: var(--background-sub);
    }	
	
	.contact-subtitle {
        font-size: 24px !important;
    }

}

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

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    body {
        font-size: clamp(14px, 3vw, 18px);
    }

    h1 {
        font-size: clamp(18px, 5.6vw, 28px);
		letter-spacing: 0.08em;
    }

    h2 {
        font-size: clamp(18px, 5vw, 24px);
		letter-spacing: 0.08em;
    }

    h3 {
        font-size: clamp(14px, 4vw, 20px);
		letter-spacing: 0.05em;
    }

	.description {
		letter-spacing: 0.08em;
		font-size: clamp(14px, 2vw, 16px);
		text-align: left;
		font-weight: 300;
	}

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

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

    .hero h1,
    .hero h2 {
        text-align: center;
    }
	
	.hero h1 {
		width: 100vw;
        padding: 0;
		margin:  24px 0 24px -16px;
		padding: 0;
		font-size: 18px;
		border-radius: 0;
    }
	    
	.hero h2 {
        font-size: 16px;
		margin-top: 0; 
		line-height: 1.5;
    }
	
	.hero_text {
		max-width: 100%;
		padding: 0;
	}

    .hero_title {
        max-width: 100vw;
    }
	
	.en_textalign {
		text-align: left;
		font-weight: 300;
		letter-spacing: 0.05em;
		padding: 0;
	}

    /* =============== Mission ===============  */
    .mission {
        margin-bottom: 80px;
    }

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

    .mission h1 {
        border-radius: 5px;
		margin-top: 0;
		padding: 16px 12px !important;
		font-size: 18px;
		line-height: 1.3;
    }

    .mission h2 {
        margin: 0 0 20px;
    }
	
	.mission h3 {
		margin: 20px 0 12px;
		font-size: 17px;
		letter-spacing: 0.08em;
	}
	
	.mission .description {
		margin-top: 0;
	}
	
	.mission .slidein-up.is-show {
		margin-bottom: 0;
	} 
	
    /* =============== Freatures ===============  */
    .features-wrapper {
        align-items: center;
        flex-direction: column;
        gap: 40px;
        margin-top: 0;
    }

    .features h2 {
		font-size: 16px;
		margin-bottom: 50px;
    }

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

    .features h3 {
        font-size: clamp(16px, 5vw, 26px);
    }

    .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;
        font-size: clamp(18px, 5.6vw, 30px);
    }

    .features-border {
        position: relative;
        border-radius: 5px;
        padding: 40px 20px 20px;
    }

    .features_contents_description {
        font-size: clamp(14px, 3vw, 18px);
    }


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

    .hiw-wrapper {
        gap: 32px;
    }
	
	.hiw-item {
        flex-direction: column;
        gap: 0;
    }
	
	.hiw .caveat {
		padding: 8px 0 20px;
	}
	
	.hiw .hiw-title {
		margin-bottom: 12px !important;
	}

    .hiw h1 {
        font-size: clamp(20px, 5.6vw, 24px);
		margin-bottom: 0;
    }
	.hiw h2 {
		margin: 0 0 40px;
    }
	
	.members h3 {
        text-align: center;
        font-size: clamp(16px, 5vw, 26px);
    }
	
	.hiw .description {
		font-size: 15px;
		padding: 0 16px;
		letter-spacing: 0.01em;
	}
	
    .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: 160px;
    }
	
	.hiw .slidein-up.is-show {
		margin-top: 0;
		padding-top: 0;
		margin-bottom: 32px;
	}
	
	.hiw_img img {
		margin: 0 auto;
		width: 80%;
		margin-bottom: 24px;
	}

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

    .members-item {
        flex-direction: column;
        gap: 0;
		padding: 18px;
        border-radius: 5px;
/* 		margin-bottom: 0; */
    }

    .members_contents_career {
        font-size: clamp(14px, 3vw, 18px);
    }
	
	.members h3 {
		margin: 8px 0;
	}

    .members_img {
        width: 70%;
    }
	
	.members-item p {
		font-size: 13px;
	}
	
	.members .slidein-up.is-show {
		margin-bottom: 0;
	}

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

    .about-item {
        flex-direction: column;
        text-align: center;
    }

    .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;
    }
	
	.about .caveat {
		margin-bottom: 0;
	}

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

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

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

    .news-wrapper h3 {
        font-size: clamp(14px, 4vw, 20px);
    }

    .news-button {
        margin-top: 20px;
    }
	
	.history_text {
		letter-spacing: 1.5px;
	} 

    /* =============== Company History ===============  */
	
	.history-wrapper {
		margin-top: 0;
	}
	
	/* =============== Contact Us ===============  */
    .contact-wrapper {
        border-radius: 5px;
		padding: 16px 14px;
    }
	
	.caveat-light {
		padding-top: 40px;
	}
	
    .contact-subtitle {
        font-size: 18px !important;
		letter-spacing: 0.05em;
		margin: 16px 0 !important;
    }
	
	.contact .description {
        color: var(--background-sub);
		letter-spacing: 0.08em;
    }

}

