@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400&family=Noto+Serif+JP:wght@100;300;400&display=swap');


/* ==========================
   reset
========================== */

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

html{
    scroll-padding-top: 150px;
    overflow-x: hidden; /* 横スクロールを防止 */
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
    color: #000;
    overflow-x: hidden;
    position: relative;
    line-height: 1.8;
    margin:0px;
	padding:0px;
}

.inner { 
    display:block; 
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

.inner_second { 
    display:block; 
    max-width: 1280px;
    margin: auto;
}
@media (max-width: 760px) {
    .inner{
        padding:0 30px; 
        max-width: 370px;
    }    
}

img{
    width: 100%;
    pointer-events: none; 
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    touch-callout:none;
    user-select:none;
    display: block;
    height: auto;
}

a{
    text-decoration: none;
    color: #000;
}

.a_click{
    display: block;
}


p{
    font-size: 14px; 
    line-height: 38px;
    letter-spacing: 0.05em;
    font-weight:  100;
    font-family: 'Noto Serif JP', serif;
    
}

@media (max-width: 760px) {
    p{
        font-size: 12px; 
        line-height: 22px;
        letter-spacing: 0.12em;
    }    

}

h1{
    font-size: 30px;
    font-weight: 100; /* Medium */
    text-align: center;
    white-space: pre-wrap; /* スペースも改行もそのまま扱う */
    line-height: 1.6em;
}



.pc_vis{
    display:block ;
}
@media (max-width: 760px) {
    .pc_vis{
        display: none;
    } 
    
}

.sp_vis{
    display: none ;
}
@media (max-width: 760px) {
    .sp_vis{
        display: block;
    } 

}

ul{
    list-style: none;
    padding-inline-start: 0px;
}

.position_base{
    position: relative;
}

.position_in{
    position: absolute;
}

.font_sans{
    font-family: 'Noto Sans JP', sans-serif;
}

.font_sans{
    font-family: 'Noto Sans JP', sans-serif;
}

.font_serif{
    font-family: 'Noto Serif JP', serif;
}



/* ==========================
   common
========================== */





/* ==========================
   header
========================== */

.header {
    width: 100%;
    top: 0;
    z-index: 100;
    position: fixed;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: auto;
    
}

.nav {
    position: fixed;
    right: 40px;
    top: 30px;
}

.nav ul {
    display: flex;
    gap: 42px;
}

.nav a {
    font-size: 13px;
    transition: .3s;
}

.nav a:hover {
    color: #000;
}

.hamburger {
    display: none;
}

.logo {
    position: fixed;
    width: 120px;
    left: 40px;
    top: 20px;
}


/* ==========================
   hamburger
========================== */

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

body.menu-open {
    overflow: hidden;
}

/* SP */
@media (max-width: 760px) {

    /* ハンバーガー表示 */
    .hamburger {
        position: fixed;
        top: 26px;
        right: 20px;
        z-index: 9999;
        width: 34px;
        height: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 1px;
        background: #000;
        transition: .3s;
    }

    /* × */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* nav */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;

        width: 100%;
        height: 100vh;

        background: rgba(255,255,255,0.96);

        display: flex;
        justify-content: center;
        align-items: center;

        transition: .4s ease;
        z-index: 9990;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 34px;
        text-align: center;
    }

    .nav a {
        font-size: 20px;
        letter-spacing: .08em;
    }

}



/* ==========================
   main
========================== */

/*** mv ***/

.mv {
	position: relative;
	width: 100%;
	height: 147vh;
	background: linear-gradient(
        to bottom,
        #F0F4F7 0%,
        #F0F4F7 60%,
        rgba(240, 244, 247, 0) 100%
    );
}

/* 丸 */
.mv-circle {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(
		to bottom,
		rgba(141, 191, 227, 0.45) 0%,
		rgba(141, 191, 227, 0) 100%
	);
}

.mv-circle-left {
	width: 600px;
	height: 600px;
	left: -180px;
	top: 260px;
}

.mv-circle-right {
    width: 420px;
    height: 420px;
    right: -190px;
    top: 80px;
}

/* 斜め画像 */
.slash {
	position: absolute;
    left: 139px;
    top: 6%;
}

.mv_in {
	position: relative;
	width: 100%;
	height: 147vh;
	max-width: 1400px;
    margin: auto;
}

/* 左縦コピー */
.mv-copy {
	position: absolute;
	left: 239px;
    top: 13%;
	writing-mode: vertical-rl;
	font-size: 56px;
	font-weight: 300;
	letter-spacing: 0.12em;
	line-height: 1.5;
	color: #2E2E2E;
}

/* 右テキスト */
.mv-text {
	position: absolute;
    right: 157px;
    bottom: 36%;
    font-size: 9px;
    font-weight: 100;
    line-height: 2.8;
}

.mv-text p {
	margin: 0 0 10px;
}



/*** about ***/

.mission-vision {
	position: relative;
	padding: 96px 0 240px;
	background: #fff;
	overflow: hidden;
}

/* 丸 */
.mv-circle {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(
		to bottom,
		rgba(141, 191, 227, 0.45) 0%,
		rgba(141, 191, 227, 0) 100%
	);
}

.mv-circle-top {
	width: 125px;
	height: 125px;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.mv-circle-right {
	width: 350px;
	height: 350px;
	right: -120px;
	top: 350px;
	background: linear-gradient(
		to bottom,
		rgba(141, 191, 227, 0.28) 0%,
		rgba(141, 191, 227, 0) 100%
	);
}

/* 斜め帯 */
.diagonal {
	position: absolute;
	pointer-events: none;
}

/* 上の帯 */
.diagonal-top {
	width: 2600px;
    height: 100px;
    top: 224px;
    left: -220px;
    transform: rotate(-17deg);
    background: linear-gradient(
        -135deg,
        rgba(240, 244, 247, 0.95) 0%,
        rgba(240, 244, 247, 0.4) 70%,
        rgba(240, 244, 247, 0) 100%
    );
}

/* 下の帯 */
.diagonal-bottom {
	width: 2600px;
	height: 100px;
	bottom: -24px;
	left: -220px;
    transform: rotate(17deg);
    background: linear-gradient(135deg, rgba(240, 244, 247, 0.95) 0%, rgba(240, 244, 247, 0.004) 40%, rgba(240, 244, 247, 0) 100%);
}

/* 左 Mission */
.mission-box {
	position: relative;
	width: 720px;
	z-index: 2;
}

.mission-box h2 {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 50px;
}

.title-en {
	font-size:  53px;
	font-weight: 400;
	line-height: 1;
}

.slash {
	font-size: 74px;
	font-weight: 100;
    width: 200px;
}

.title-ja {
	font-size: 24px;
	font-weight: 100;
}

.mission-text {
	max-width: 720px;
}

.mission-text p {
	font-size: 14px;
	line-height: 3;
	font-weight: 100;
	margin-bottom: 12px;
}

/* 右 Vision */
.vision-box {
	position: relative;
	width: 720px;
	margin: 26px 0 0 auto;
	text-align: right;
	z-index: 2;
}

.vision-box h2 {
	display: flex;
	justify-content: flex-end;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 50px;
}

.vision-text p {
	font-size: 14px;
	line-height: 3;
	font-weight: 100;
	margin-bottom: 12px;
}

/* ==========================
   mission vision circle
========================== */

.mission-circle {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

/* 上の小さい丸 */
.mission-circle-top {
	width: 125px;
	height: 125px;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(141, 191, 227, 0.22);
}

/* 右の大きい丸 */
.mission-circle-right {
	width: 350px;
	height: 350px;
	right: -120px;
	top: 350px;
	background: linear-gradient(
		to bottom,
		rgba(141, 191, 227, 0.45) 0%,
		rgba(141, 191, 227, 0) 100%
	);
}


/* ==========================
   value
========================== */

.value-section {
    position: relative;
    padding: 0px 0 220px;
    overflow: hidden;
    margin-top: -156px;
}

/* 背景斜めオブジェクト */
.value-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}


/* 見出し */
.value-head {
    margin-bottom: 90px;
    position: relative;
    z-index: 2;
}

.value-head h2 {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.value-en {
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
}

.value-ja {
    font-size: 24px;
    font-weight: 300;
}

/* グリッド */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px 90px;
    position: relative;
    z-index: 2;
}

/* カード */
.value-card {
    max-width: 540px;
}

.value-card-wide {
    width: 100%;
}

/* 線 */
.value-line {
    width: 100%;
    height: 1px;
    background: #C1C1C1;
    margin-bottom: 50px;
    position: relative;
}

/* 右端だけ濃い線 */
.value-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 54px;
    height: 1px;
    background: #707070;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 38px;
    line-height: 1.8;
}

.number {
    margin-right: 18px;
}

.value-card p {
    font-size: 15px;
    line-height: 33px;
    font-weight: 300;
    color: #2E2E2E;
    margin-left: 78px;
}


/* ==========================
   value object
========================== */

/* 左下の丸 */
.value-circle {
    position: absolute;
    left: -45px;
    bottom: 60px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(141, 191, 227, 0.35) 0%,
        rgba(141, 191, 227, 0) 100%
    );

    z-index: 1;
}

/* 左の斜め四角 */
.value-slash {
    position: absolute;
    

    width: 720px;
    height: 96px;

    background: linear-gradient(-135deg, rgba(240, 244, 247, 0.95) 0%, rgba(240, 244, 247, 0.6) 50%, rgba(240, 244, 247, 0) 100%);

    

    pointer-events: none;
    z-index: 1;
}


.value-slash_top{
    right: -180px;
    bottom: 180px;
    transform: rotate(14deg);
}

.value-slash_bottom{
    right: -180px;
    bottom: 348px;
    transform: rotate(-14deg);
}




/* ==========================
   company
========================== */

.company-section {
    position: relative;
    background: #434343;
    padding: 99px 0 170px;
    overflow: hidden;

    clip-path: polygon(
        0 12%,     /* 左上 */
        100% 0,    /* 右上 */
        100% 100%, /* 右下 */
        0 88%      /* 左下 */
    );
}

/* 斜め背景 */
.company-bg {
    position: absolute;
    top: -220px;
    left: -5%;
    width: 110%;
    height: 320px;
    background: #434343;
    transform: rotate(-7deg);
    transform-origin: left top;
}

.company-section .inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
}

/* タイトル */
.company-title {
    text-align: right;
    margin-bottom: 80px;
}

.company-title h2 {
    font-size: 82px;
    font-weight: 400;
    color: #fff;
}

/* テーブル */
.company-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 行 */
.company-row {
    display: grid;
    grid-template-columns: 320px 1fr;
    column-gap: 40px;
}

/* 左 */
.company-label {
    position: relative;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 300;

    padding: 42px 24px;
}

/* 左の線 */
.company-label::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 1px;
    background: #707070;
}

/* 右 */
.company-value {
    position: relative;
    color: rgba(255,255,255,0.96);
    font-size: 15px;
    font-weight: 300;
    line-height: 2;

    padding: 42px 28px;
}

/* 右の線 */
.company-value::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 1px;
    background: #C1C1C1;
}

.company-table {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 一番下 左線 */
.company-table::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 320px;
    height: 1px;
    background: #707070;
}

/* 一番下 右線 */
.company-table::after {
    content: "";
    position: absolute;
    left: 360px; /* 320 + gap40 */
    right: 0;
    bottom: 0;

    height: 1px;
    background: #C1C1C1;
}


.company-label {
    padding: 28px 24px;
}

.company-value {
    padding: 28px 28px;
}

    .company-value_bottom img{
        width: 227px;
    }


/* ==========================
   footer
========================== */

.footer {
    max-width: 1280px;
    position: relative;
    background: #fff;
    overflow: hidden;
    margin: 0px 40px 20px;
}



.footer-inner {
    position: relative;
    z-index: 2;

    max-width: 1280px;
    margin: auto;

    padding: 0px 0 34px;
}

/* ロゴ */
.footer-logo {
    width: 245px;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

/* コピーライト */
.copyright {
    font-size: 11px;
    line-height: 1;
    color: #4D4D4D;
    letter-spacing: 0.03em;
    font-family: 'Noto Sans JP', sans-serif;
}




/* ==========================
   SP
========================== */

@media (max-width: 760px) {

/* ---------- common ---------- */

html{
    scroll-padding-top: 80px;
}

.inner{
    padding: 0 24px;
    max-width: 100%;
}

p{
    font-size: 13px;
    line-height: 2.2;
}

/* ---------- header ---------- */

.logo{
    width: 86px;
    left: 20px;
    top: 18px;
    
    z-index: 9999;
}

/* ---------- mv ---------- */

.mv{
    height: 100vh;
    min-height: auto;
    padding: 77px 0 80px;
}

.mv_in{
    height: 100vh;
    min-height: auto;
}

/* 丸 */
.mv-circle-left{
    width: 250px;
    height: 250px;
    left: -100px;
    top: 220px;
}

.mv-circle-right{
    width: 180px;
    height: 180px;
    right: -70px;
    top: 80px;
}

/* 画像 */
/* SP */
.slash{
    position: absolute;
    width: 200px;
    left: 34px;
    top: 49px;
}

/* コピー */
.mv-copy{
    position: absolute;
    left: 56px;
    top: 40px;
    font-size: 24px;
    letter-spacing: 0.08em;
}

.mv-copy h1{
    font-size: 24px;
}

/* テキスト */
.mv-text {
    position: absolute;
    left: inherit;
    right: -7px;
    bottom: 97px;
    font-size: 9px;
    font-weight: 100;
    line-height: 2.8;
    padding: 0 20px;
    width: 100%;
    text-align: right;
}

.mv-text p{
    font-size: 13px;
    line-height: 2.1;
}

/* ---------- mission vision ---------- */

.mission-vision{
    padding: 133px 0 120px;
}

/* 斜め帯 */
.diagonal-top{
    width: 1200px;
    height: 70px;
    top: 372px;
}

.diagonal-bottom{
    width: 1200px;
    height: 70px;
    bottom: -24px;
}

/* circles */
.mission-circle-top{
    width: 70px;
    height: 70px;
    left: inherit;
    right: 43px;
    transform: none;
}

.mission-circle-right{
    width: 180px;
    height: 180px;
    right: -80px;
    top: 60%;
}

/* 共通 */
.mission-box,
.vision-box{
    width: 100%;
}

.mission-box h2,
.vision-box h2{
    gap: 8px;
    margin-bottom: 20px;
}

.title-en{
    font-size: 36px;
}

.title-ja{
    font-size: 16px;
}

.slash_write{
    font-size: 22px;
}

.mission-text p,
.vision-text p{
    font-size: 13px;
    line-height: 2.3;
}

/* vision */
.vision-box{
    margin-top: 80px;
    text-align: left;
}

.vision-box h2{
    justify-content: flex-start;
}
    
   .vision-box {
        width: 100%;
        margin: 85px 0 0 auto;

        display: flex;
        flex-direction: column;
        align-items: flex-end;

        text-align: right;
    }

    .vision-box h2 {
        justify-content: flex-end;
    }

    .vision-text {
        text-align: right;
    }

/* ---------- value ---------- */

.value-section{
    margin-top: -40px;
    padding: 40px 0 76px;
}

.value-head{
    margin-bottom: 32px;
}

.value-en{
    font-size: 40px;
}

.value-ja{
    font-size: 16px;
}

.value-head h2{
    gap: 8px;
    flex-wrap: wrap;
}

.value-line {
    margin-bottom: 32px;

}
    
/* grid → 1列 */
.value-grid{
    grid-template-columns: 1fr;
    gap: 33px;
}

.value-card{
    max-width: 100%;
}

.value-card h3{
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 9px;
}

.number{
    display: inline-block;
    margin-right: 10px;
}

.value-card p{
    margin-left: 0;
    font-size: 13px;
    line-height: 2.2;
}

/* object */
.value-circle{
    width: 70px;
    height: 70px;
    left: -20px;
    bottom: 40px;
}

.value-slash{
    width: 280px;
    height: 44px;
}

.value-slash_top{
    right: -100px;
    bottom: 120px;
}

.value-slash_bottom{
    right: -80px;
    bottom: 220px;
}

/* ---------- company ---------- */

.company-section{
    padding: 80px 0 70px;

    clip-path: polygon(
        0 5%,
        100% 0,
        100% 100%,
        0 95%
    );
}

.company-title{
    text-align: left;
    margin-bottom: 40px;
}

.company-title h2{
    font-size: 44px;
}

/* table */
.company-row{
    grid-template-columns: 1fr;
    row-gap: 8px;
}

.company-label{
    padding: 15px 0 0;
    font-size: 13px;
}

.company-value{
    padding: 16px 0 17px;
    font-size: 13px;
    line-height: 1.9;
}

/* 線 */
.company-table::before,
.company-table::after{
    display: none;
}

.company-value::before{
    top: 4px;
    background: #707070;
}

.company-label::before{
    width: 100%;
    background: #C1C1C1;
}

    .company-value_bottom img{
        width: 180px;
    }
    
/* ---------- footer ---------- */

.footer{
    margin: 0 24px 20px;
}

.footer-inner{
    padding: 0 0 20px;
}

.footer-logo{
    width: 130px;
    margin-bottom: 10px;
}

.copyright{
    font-size: 10px;
    line-height: 1.6;
}

}
