@charset "UTF-8";

/* 共通部分
-----------------------------------------*/
html {
    font-size: 100%;
}

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

body {
    background-color: #fff;
    background-image: url(../images/bg.svg);
    background-repeat: repeat-y;
    background-position: center;
    background-size: 100% auto;


    font-family: "Zen Kaku Gothic New", "YuGothic", "游ゴシック体", sans-serif;
    line-height: 1.7;
    color: #000000;

    margin: 0;
    padding: 0;
    margin-top: 0;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 48px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 32px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 24px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    padding: 0;
}

h4 {
    font-size: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

small {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    margin: 0;
    padding: 0;
   
}

span {
    display: inline-block;
}

.maincopy{
    
    margin-left: -3%;
}

.heightfrom40to24{
    height: 40px;
}

    .heightfrom48to24{
    height: 48px;
}

.company-text{
    line-height: 1.4;
}

.textwrap{
    display: none;
}

.philosophy-text{
    width:440px;
}

/* MAIN
-----------------------------------------*/

.wrapper-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
    box-sizing: border-box;
}

.wrapper-1440{
    max-width: 1360px;
    margin-right:0;
    margin-left: auto;
    padding: 0 auto 0 3%;
    box-sizing: border-box;
}

.left-content {
    text-align: left;
}

img {
    pointer-events: none; 
    max-width: 100%;
    object-fit: cover;
    -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}

.yokonarabi {
    display: flex;
    justify-content: space-between;
    gap:24px;
}

.yokonarabi2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.yokonarabi3 {
    display: flex;
    justify-content: space-between;
    gap:24px;
}

.vision-back {
    width: 100%;
    background-color: rgba(228, 206, 157, 0.2);
}

.text-wrapper {
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.philosophy {
    background-color: #80d3d9;
    background-image: linear-gradient(90deg, #80d3d9, #b0d0e0);
}

.fadeUp {
    will-change: transform;
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeUp2 {
    will-change: transform;
    animation-name: fadeUpAnime2;
    animation-duration: 3.0s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime2 {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.heightfrom80to24{
    height: 80px;
}

.flow-chart{
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.flow-card{
    width:20%;
}

.vision-text{
    width: 520px;
    max-width: 60%;
}



/* 要素の設定（見出し、ボタン、画像）
-----------------------------------------*/
/* 見出し -------------------*/
.wrapper-title {
    padding: 0 3%;
}

.section-title h1 {
    font-family: "helvetica", sans-serif;
    font-style: bold;
    margin: 0;
    height: 64px;
}

.section-title h4 {
    margin: 0;
}

.section-title h3 {
    font-family: "helvetica", sans-serif;
    font-weight: bold;
    margin: 0;
    height: 32px;
}

.section-title p {

    margin: 0;
}

/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
    overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
    display: inline-block;

}

/*左右のアニメーション*/
.leftAnime {
    opacity: 0;
    /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
    animation-name: slideTextX100;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
    from {
        transform: translateX(-100%);
        /*要素を左の枠外に移動*/
        opacity: 0;
    }

    to {
        transform: translateX(0);
        /*要素を元の位置に移動*/
        opacity: 1;
    }
}

.slideAnimeRightLeft {
    animation-name: slideTextX-100;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
    from {
        transform: translateX(100%);
        /*要素を右の枠外に移動*/
        opacity: 0;
    }

    to {
        transform: translateX(0);
        /*要素を元の位置に移動*/
        opacity: 1;
    }
}

/* ライン -------------------*/
.line {
    width: 100%;
    height: 160px;
    border-bottom: 1px solid #000000;
}

.line2 {
    width: 100%;
    height: 110px;
    border-bottom: 1px solid #000000;
}

/*色*/
.blue-gra {
    background-color: rgba(228, 206, 157, 1.0);
    background-image: linear-gradient(-60deg, #00cdacdd 0%, #8ddad5dd 100%);
}

/* 画像 -------------------*/
img {
    max-width: 100%;
    object-fit: cover;
}

.cover1 img {
    width: 100%;
    height: 100vh;

}

.cover-philosophy  {
    width: 680px;
    aspect-ratio: 3/2;
    height: 100%;

    margin-right:-120px;
    border-radius: 8px;
}

.cover-philosophy img  {
    width: 100%;
    border-radius: 8px;
}

.cover3 img {
    width: 480px;
    height: 480px;
    border-radius: 8px;
}

.cover4 img {
    width: 480px;
    height: 320px;
    border-radius: 8px;
}

.cover-vision{
    max-width: 100%;
    overflow: hidden;
}

.cover-vision img {
    width:520px;
    max-width: 100%;
    aspect-ratio: 3/2;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.cover9 img {
    width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------*/


.value {
    display: flex;
    /* 横並び */
    flex-wrap: wrap;
    /* 幅が足りない場合は折り返す */
    gap: 16px;
    /* カード間の余白 */

}

.value-box {
    flex: 1 1 400px;
    border-radius: 0px;
    padding: 0;
    border-bottom: 1px solid #000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.value-box2 {
    flex: 1 1 400px;
    padding: 16px;
}

.number {
    padding: 6%;
}

.value-text {
    padding: 3%;
}

.value-text h4{
    font-weight: 500;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------*/

.white-bg {
    background-color: #ffffff50;

}

.message-text {
    width: 536px;
    max-width: 100%;

}

/*========= レイアウトのためのCSS ===============*/

.bgextend {
    width: 100%;
    height: 100vh;

    box-sizing: border-box;
}

/*========= 背景色の動きのCSS ===============*/

/*背景色が伸びて出現 共通*/
.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    /*　はみ出た色要素を隠す　*/
    opacity: 0;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*中の要素*/
.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*--------- 下から --------*/
.bgDUextend::before {
    animation-name: bgDUextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/about/_DSF6978_.jpg);
    background-repeat: repeat-y;
    background-position: center;
    background-size: cover;

}

@keyframes bgDUextendAnime {
    0% {
        transform-origin: bottom;
        transform: scaleY(0);
    }

    50% {
        transform-origin: bottom;
        transform: scaleY(1);
    }

    50.001% {
        transform-origin: top;
    }

    100% {
        transform-origin: top;
        transform: scaleY(0);
    }
}



/*=========================== ヘッダーCSS =================================*/
.logo {
    max-width: 100%;
    height:40px;
    margin-top: 8px;
}

.blue {
    background-color: rgba(228, 206, 157, 1.0);
    background-image: linear-gradient(-60deg, #00cdacbb 0%, #8ddad5bb 100%);
    border-radius: 8px;
}

.orange {
    background-color: rgba(228, 206, 157, 1.0);
    background-image: linear-gradient(-60deg, #fc6076bb 0%, #ff9a44bb 100%);
    border-radius: 8px;
    color: #fff;
}

.text-white {
    color: #fff;
}

/*==ナビゲーション全体の設定*/
/*ナビゲーションを横並びに*/
nav ul {
    list-style: none;
    display: flex;

    justify-content: center;
}

/*2階層目以降は横並びにしない*/
nav ul ul {
    display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
    position: relative;
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    margin: 0 4px;
    padding: 0;
}

/*ナビゲーションのリンク設定*/
nav ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 10px 16px;
    transition: all .3s;
}

nav ul li li a {
    padding: 4px 16px;
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}

nav ul li a:hover {
    color: rgba(228, 206, 157, 1.0);
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 20px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(135deg);
}

/*下の階層ulの指定*/
nav li.has-child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    left: -70px;
    top: 70px;
    z-index: 4;
    /*形状を指定*/
    background-color: rgba(228, 206, 157, 1.0);
    background-image: linear-gradient(-60deg, #00cdacbb 0%, #8ddad5bb 100%);
    border-radius: 8px;
    width: 240px;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
    text-align: left;
    padding: 0 0 8px 8px;
}

/*hoverしたら表示*/
nav li.has-child:hover>ul,
nav li.has-child ul li:hover>ul,
nav li.has-child:active>ul,
nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
    color: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
    padding: 8px;
    width: 220px;
}

nav li.has-child ul li:last-child>a {
    border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
    color: #432;
}

/*===========================（終了） ヘッダーCSS =================================*/

/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/

#header {
    /*fixedで上部固定*/
    position: fixed;
    height: 70px;
    width: 100%;
    z-index: 999;
    /*最前面へ*/
    /*以下はレイアウトのためのCSS*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../images/bg.svg);
    background-position: center;
    background-size: 100% auto;
    color: #000;
    text-align: center;
    padding: 16px;
    margin: 0;
}

/*　上に上がる動き　*/
#header.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/*　下に下がる動き　*/
#header.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(-0px);
    }
}

/*========= （終了）スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/

/*===========================ヘッダーCSS =================================*/
.logo-footer {
    max-width: 100%;
    height: 40px;
    margin: 0;
    padding: 0;
}

.icon-footer {
    width: 40px;
    margin: 0;
    padding: 0;
}

.footer-icon {
    display: flex;
    flex-direction: row;

    gap: 24px;
    margin: 0;
    padding: 0;

}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    text-transform: uppercase;
    list-style: none;

}

.footer-nav a {
    font-size: 14px;
    color: #ffffff;
    padding: 0;
    margin: 8px 0 8px 16px;
}

.footer-nav a:hover {
    color: rgba(228, 206, 157, 1.0);
}

.fullsize-footer {
    width: 100%;
    height: 160px;
    background-color: rgba(228, 206, 157, 1.0);
    background-image: linear-gradient(-60deg, #00cdacbb 0%, #8ddad5bb 100%);
    padding: 0;
    margin: 0;
}

.page-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrapper-footer {
    height: 160px;
    margin: 0 auto;
    padding: 0 3%;
}

/*===========================（終了） ヘッダーCSS =================================*/


/*==820px以下のheader・footer形状=================================================================================================*/

@media screen and (max-width:1348px) {
.cover-philosophy  {
    width: 640px;
    max-width: 100%;
    aspect-ratio: 3/2;
    height: 100%;
    margin-right:0;
    padding-left: 3%;
}
}

@media screen and (max-width:1024px) {
.yokonarabi2 {
    display: flex;
flex-direction: column-reverse;
    justify-content: space-between;
    align-items: flex-start;
}

.philosophy-text{
     width: 100%;
}

.cover-philosophy  {
    width: 100%;
    aspect-ratio: 3/2;
    height: 100%;
    overflow: hidden;
    margin-right:0;
    padding-left: 0;
    margin-bottom: 40px;
}



}

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

    /*-----------全ページ共通-----------------------------------------------------------------------------*/
    body {
        line-height: 1.7;
    }

    a {
        text-decoration: none;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }

    p {
        font-size: 14px;
    }

    small {
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        margin: 0;
        padding: 0;
        
    }

    .wrapper-1200 {
    padding: 0 5%;
}


    /* 要素の設定（見出し、ボタン、画像）
-----------------------------------------*/
    /* 見出し -------------------*/

    .section-title h1 {
        margin: 0;
        height: 32px;
        font-size: 24px;
    }

    .section-title h4 {
        margin: 0;
    }

    .section-title h3 {
   height: 24px;
}

    /* ボタン -------------------*/
    .button-link {
        padding: 20px 20px;
        margin-top: 32px;
        width: 440px;
        max-width: 100%;
    }

    .icon {
        font-size: 20px;
    }

    .title {
        font-size: 18px;
    }


    
    /*-----------（終了）全ページ共通-----------------------------------------------------------------------------*/

    .maincopy{
    
    margin-left: -4%;
}

    .heightfrom80to24{
    height: 24px;
}

    .heightfrom48to24{
    height: 24px;
}

    .yokonarabi{
        flex-direction: column;
    }

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

    .textwrap{
    display:block;
}

.message-text {
    width:100%;
    max-width: 100%;
}

.heightfrom40to24{
    height: 24px;
}

.flow-card{
    width:33%;
    margin-bottom: 24px;
}

.vision-text{
    width: 100%;
    max-width: 100%;
}

.value {
    display: flex;
    /* 横並び */
    flex-wrap: wrap;
    /* 幅が足りない場合は折り返す */
    gap: 8px;
    /* カード間の余白 */

}
    


    nav li.has-child ul {
        display: none;
        /*JSのslidetoggleで表示させるため非表示に*/
    }

    nav ul li a {
        display: block;
        text-decoration: none;
        color: #000;
        padding: 16px 32px;
        transition: all .3s;
        border-bottom: 1px solid #94cba9;
        margin-left: 16px;
        margin-right: 16px;
    }

    nav ul li.has-child::before {
        display: none;
    }

    .blue {
        background: transparent;
    }

    .orange {
        background: transparent;
    }

    .text-white {
        color: #000;
    }

    .margin-about {
        margin-top: 80px;
    }

    nav li.has-child:hover>ul,
    nav li.has-child ul li:hover>ul,
    nav li.has-child:active>ul,
    nav li.has-child ul li:active>ul {
        visibility: hidden;

    }

    /*========= ボタンのためのCSS ===============*/

    /*ボタン全体の形状*/
    .openbtn {
        /*ボタンの位置*/
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 999;
        /*ボタンの形状*/
        background-color: rgba(228, 206, 157, 1.0);
        background-image: linear-gradient(-60deg, #00cdacbb 0%, #8ddad5bb 100%);
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    /*ボタンのアイコン設定*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    /*activeクラスが付与された後のボタンのアイコン設定*/
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }


    /*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/


    /*sp版ヘッダーのテキストナビゲーションの形状*/
    #header #g-navi {
        /*固定位置にして最背面に*/
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        /*高さと幅*/
        width: 100%;
        height: 100vh;
        /*天地中央＆テキスト中央揃え*/
        display: block;
        justify-content: start;
        align-items: center;
        text-align: center;
        /*はじめは透過0に*/
        opacity: 0;
        transition: all 0.4s;
        background-image: url(../images/bg.svg);
        background-repeat: repeat-y;
        background-position: center;
        background-size: 100% auto;
    }

    /*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
    #header.panelactive #g-navi {
        opacity: 1;
        /*不透明に*/
        z-index: 3;
        /*最前面に*/
    }

    #header.panelactive #g-navi ul {
        display: block;
        /*flexの横並びをblockにして縦並びに*/
    }

    #header.panelactive #g-navi {
        pointer-events: auto;
        /*flexの横並びをblockにして縦並びに*/
    }

    /*========= （終了）ボタンのためのCSS ===============*/

    #g-navi {
        display: none;
        opacity: 0;
        pointer-events: none;
        /*透過0にして非表示に*/
    }

    #header.panelactive {
        position: relative;
        z-index: 100;
        opacity: 1;
        /*不透明にして出現*/
    }


    /*非表示機能をリセット*/
    #header.panelactive.UpMove {
        animation: none;
    }

    #header.panelactive.DownMove {
        animation: none;
    }

    /*========= FOOTERのためのCSS ===============*/
    .fullsize-footer {
        position: relative;
        z-index: 1000;
        width: 100%;
        height: 100%;
        background-color: rgba(228, 206, 157, 1.0);
        background-image: linear-gradient(-60deg, #00cdacbb 0%, #8ddad5bb 100%);
        padding: 0;
        margin: 0;
    }

    .wrapper-footer {
        height: 100%;
        margin: 0 auto;
        padding: 0 3%;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        text-transform: uppercase;
        list-style: none;
        padding: 0;
        margin: 32px 0;
        text-align: center;
    }

    .footer-nav ul li a {
        display: block;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-footer {
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: wrap-reverse;
        justify-content: center;
        align-content: center;
    }

    .footer-icon {
        justify-content: center;
        margin-bottom: 16px;
    }

    .footer-nav a {
        padding: 0;
        margin: 0 0 16px 0;
        border-bottom: none;
    }

    /*========= （終了）FOOTERのためのCSS ===============*/
}

@media screen and (max-width:575px){
    .flow-card{
    width:100%;
    margin-bottom: 0px;
}
}


/*==（終了）820px以下の形状=================================================================================================*/