/* ************************************* */
/* 初期化 */
/* ************************************* */
* {
    box-sizing: border-box;
    font-family: "Noto Sans JP", serif;
    font-family: "Kosugi", sans-serif;
    margin: 0;
    padding: 0;

    /* 検証用コード */
    /* border: red solid 1px; */
}

.kosugi-regular {
    font-family: "Kosugi", sans-serif !important;
    font-style: normal;
    font-weight: 400;
  }

:root{
    /* --grid_box_main_color:linear-gradient(90deg,rgba(237, 240, 242, 0.8) 0%, rgba(246, 249, 247, 0.849) 50%, rgba(240, 240, 240, 0.8) 100%);   */
    --grid_box_main_color:rgba(5, 138, 122, 0.783);
}

/* ****************************************************** */
/* 文字左右のLine描画 */
/* ****************************************************** */
.text_line {
    align-items: center;
    display: flex;
}

.text_line::after,
.text_line::before {
    border-top: 2px solid rgb(1, 106, 78);
    content: "";
    width: 20px;
}

.text_line::after {
    margin-left: 2rem;
}

.text_line::before {
    margin-right: 2rem;
}

.text_base_padding {
    padding: min(1.5rem, 1.5vw);
}


/* ************************************* */
/* メインエリア */
/* メインメッセージとメイングリッド */
/* ************************************* */
.main_contaier {
   background-image: url(/src/assets/images/bg_strong_mainimage_01_pc.png);
   background-position: bottom;
   background-repeat: no-repeat;
   background-size: cover;
   /* min-height: 100vh; */
   height: auto;
   padding: 9vw;
}

.main_messae_contaier {
    display: block;
    text-align: center;
    width: 100%;
}

.main_flex_contaier {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.main_background_image{
    height: 700px;
    opacity: 0.5;
    position: absolute;
    right: 10%;
    top:10px;
    width: 700px;
}

.main_background_image img{
    height: auto;
    max-width: 40vw;
}

.main_grid_area {
    column-gap: 20px;
    display: grid;
    grid-template:
        "box1 box2 box3" auto
        "box4 box5 box6" auto /
        20vw 20vw 20vw;
    margin-top: 5vh;
    row-gap: 20px;
}

.main_block_box1 {
    align-items: center;
    background: var(--grid_box_main_color);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    display: flex;
    grid-area: box1;
    position: relative;
}

.main_block_box2 {
    align-items: center;
    background: var(--grid_box_main_color);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    display: flex;
    display: flex;
    grid-area: box2;
    position: relative;
}

.main_block_box3 {
    align-items: center;
    background: var(--grid_box_main_color);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    display: flex;
    grid-area: box3;
    position: relative;
}

.main_block_box4 {
    align-items: center;
    align-items: center;
    background: var(--grid_box_main_color);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    display: flex;
    display: flex;
    grid-area: box4;
    position: relative;
}

.main_block_box5 {
    align-items: center;
    background: var(--grid_box_main_color);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    display: flex;
    grid-area: box5;
    position: relative;
}

.main_block_box6 {
    align-items: center;
    background: var(--grid_box_main_color);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    display: flex;
    grid-area: box6;
    position: relative;
}

.main_message_text{
    color:rgb(5, 138, 123);
    font-size: min(2rem,2vw);
    font-weight: bold;
}

/* グリッドボックス */
.main_block_boxcontent{
    padding: 1rem;
    text-align: center;
}

.main_block_boxcontent h3{
    color:rgb(2, 84, 74);
    font-size: min(1.5vw, 1.5rem);
    font-weight: bold;
}

.main_block_boxcontent p{
    color: white;
    font-size: min(1.1vw, 1.5rem);
    font-weight: bold;
    padding: 1rem;
}


.main_block_boxcontent img{
    bottom: 1rem;
    height: 5vw;
    opacity: 0.4;
    position: absolute;
    right: 1rem;
    width: 5vw;
}

/* ************************************* */
/* サブメッセージコンテナ */
/* サブメッセージの表示に利用 */
/* ************************************* */
.sub_text_message_contaier {
    /* margin-bottom: 3vw; */
    margin-top: 3vw;
    text-align: center;
    justify-content: center;
    display: flex;
    width: 100%;
}

.copy_message_contaier{
    display: block;
    text-align: center;
    margin-bottom: 3vw;
}

.sub_text_message_contaier h2{
    /* font-size: 1.5rem; */
    font-size: min(2vw, 2rem);
    font-weight: bold;
}
.sub_text_message_contaier p {
    /* font-size: 1rem; */
    font-size: min(1.5vw, 1rem);
    font-weight: 400;
}


/* ************************************* */
/* サイト中央のバックグラウンド領域 */
/* 背景画像を指定するエリア */
/* ************************************* */
/* .center_background_area{
    background-blend-mode: lighten;
  
} */

/* ************************************* */
/* 理由説明領域 */
/* グリッド表記 */
/* ************************************* */
.reason_point_contaier {
    display: flex;
    /* height: 500px; */
    justify-content: center;
}

.reason_grid_area {
    column-gap: 50px;
    display: grid;
    grid-template:
        "rbox1 rbox2 rbox3" auto /
        20vw 20vw 20vw;
    text-align: center;
}

.reason_area_rbox1 {
    align-items: start;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    display: flex;
    grid-area: rbox1;
    /* margin: 1rem; */
}

.reason_area_rbox2 {
    align-items: start;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    display: flex;
    grid-area: rbox2;
    /* margin: 1rem; */
}

.reason_area_rbox3 {
    grid-area: rbox3;
    align-items: start;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    display: flex;
}

.reason_grid_area h2{
    color: #069d7a;
    /* font-size: 1.5rem; */
    font-size: min(2vw, 2rem);
    font-weight:bold;
    margin: 1rem;
}

.reason_grid_area h3{
    color:#069d7a;
    /* font-size: 1.8rem; */
    font-size: min(1.8vw, 1.8rem);
    font-weight: 400;
}

.reason_grid_area p{
    /* font-size: 0.8rem; */
    font-size: min(1.2vw, 1rem);
    font-weight: 400;
    line-height:min(1.5rem,6vw);
    margin: 1rem;
}

.reason_image_box{
    align-items: center;
    background-color: #ddf8f1;
    display: flex;
    justify-content: center;
  
}

.reason_image_box img{
    /* height: auto; */
    max-width: 150px;
    object-fit: cover;
}

/* ************************************* */
/* ストロングポイント領域 */
/* グリッド表記 */
/* ************************************* */
.strong_point_contaier {
    /* align-items: center; */
    display: flex;
    justify-content: center;
}

.strong_grid_area {
    column-gap: 20px;
    /* align-items: center; */
    display: grid;
    grid-template:
        "sbox1 sbox2 sbox3" auto /
        23vw 23vw 23vw;
    padding: 1rem;
    text-align: center;
}

.storong_area_sbox1 {
    background-color: white;
    border: 1px solid rgb(197, 193, 193);
    grid-area: sbox1;
    padding: 0.5rem;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

.storong_area_sbox2 {
    background-color: white;
    border: 1px solid rgb(197, 193, 193);
    grid-area: sbox2;
    padding: 0.5rem;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

.storong_area_sbox3 {
    background-color: white;
    border: 1px solid rgb(197, 193, 193);
    grid-area: sbox3;
    padding: 0.5rem;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

.strong_grid_area h2{
    color: #069d7a;
    /* font-size: 1.3rem; */
    font-size: min(2vw, 1.3rem);
    font-weight: bold;
    padding: 0.5rem;
}

.storong_list_area{
    display:flex;
    justify-content: center;
}

.strong_list_text{
    color: #09b68e;
    font-size: min(1.5vw, 1.3rem);
    font-weight: 500;
    margin-top: 1.2rem;
    text-align: start;
    width: 80%;
}

.strong_list_text li{
    padding: min(0.2vw,4px);
}

/* 疑似要素アイコン指定 */
.strong_list_text li::before{
    background-image: url(/src/assets/images/icon_strongArea_check_02_pc.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 15px;
    padding-right: 0.4rem;
    width: 15px;
}

.strong_grid_area p{
    color: #0c0c0c;
    /* font-size: 1rem; */
    font-size: min(3vw, 1.2rem);
    font-weight: 500;
    margin-top: 1rem;
    padding: 1rem;
}

.strong_area_image{
    height: auto;
    max-width: 20vw;
    padding: 1rem;
}

/* ************************************* */
/* スライダー領域 */
/* splider利用 */
/* ご利用事例領域 */
/* ************************************* */
.slider_area_contaier{
    margin: 2% 1% 4% 1%;
    padding: 1%;
}

.contaier_splider_block{
  height: auto;
  width: 100%;
}

.case_study_contaier{
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    height: auto;
    padding: 1rem;
    width: auto;
}

.case_image_are{
    position: relative;
}

.case_image_are img{
    height: auto;
    padding: 0.5rem;
    width: 100%;
}

.case_logo_area{
    align-items: center;
    background-color: #ffffff;
    bottom: 0;
    color: rgb(3, 160, 97);
    display: flex;
    font-weight: 600;
    height: min(3vw,300px);
    justify-content: center;
    left: 0;
    position: absolute;
    width: max(7vw,100px);
    
}

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

.case_head_message h3{
    color: #3d3c3c;
    font-size: min(1rem,1.5vw);
    font-weight: bold;
}

.case_head_message p{
    color: #545252;
    font-weight: 300;
}

.case_message_text{
    font-size: min(1rem,1.5vw);
    font-weight: 400;
    line-height: min(1.8rem,8vw);
    margin: min(1rem,1vw);
}

.case_message_detail_text{
    color: #1b1b1b;
    font-size: min(0.8rem,1.2vw);
    font-weight: 300;
    line-height: min(1.5rem,6vw);
    margin: min(1.1rem,1.1vw);
}

.case_detal_btn{
    align-items: center;
    background: var(--green_gradation_color);
    border-radius: 10px;
    color: white;
    display: flex;
    height: min(2vw,45px);
    justify-content: center;
    margin: 1rem;
}

  
/* ************************************* */
/* バナー遷移領域 */
/* グリッド表記 */
/* ************************************* */
.bunnerlink_point_contaier {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
}

.bunnerlink_grid_area {
    column-gap: 30px;
    display: grid;
    grid-template:
        "bbox1 bbox2 bbox3" min(50vh,320px) /
        300px 300px 300px;
}

.bunnerlink_area_rbox1 {
    background: var(--green_gradation_color);
    grid-area: bbox1;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

.bunnerlink_area_rbox2 {
    background: var(--green_gradation_color);
    grid-area: bbox2;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

.bunnerlink_area_rbox3 {
    background: var(--green_gradation_color);
    grid-area: bbox3;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

.bunnerlink_grid_area h2{
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem;
    padding: 0.5rem;
    /* border-bottom: 1px solid white; */
}

.bunnerlink_grid_area p{
    color: white;
    font-size: 1rem;
    font-weight: 200;
    padding: 0.5rem;
}

.bunnerlink_grid_area img{
    max-height: 50px;
    max-width: 50px;
    padding: 0.1rem;
}

/* ************************************* */
/* ページ内利用のボタンパーツ*/
/* ************************************* */
.btn_link_are{
    position: relative; 
}

.btn-box{
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50px;
    transform: translate(-50%, -50%);
  }
  
  .btn {
    /* background-color: #07faad; */
    color: #f8f6f5;
    cursor: pointer;
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 78px;
    min-height: 78px;
    min-width: 230px;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .btn:hover:before {
    border: 3px solid #fbf9f9;
    border-width: 3px 0 0 3px;
    content: "";
    height: 25px;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    width: 25px;
  }
  
  .btn:hover::after {
    border: 3px solid #faf9f9;
    border-width: 0 3px 3px 0;
    content: "";
    height: 25px;
    left: 174px;
    position: absolute;
    top: 53px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    width: 25px;
  }
  
  .btn:before {
    border: 3px solid #fffdfd;
    border-width: 3px 0 0 3px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
  }
  
  .btn:after {
    border: 3px solid #faf9f9;
    border-width: 0 3px 3px 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
  }

/* ************************************* */
/* レスポンシブ記述 */
/* ************************************* */
@media screen and (max-width: 481px) {

    .main_grid_area {
        column-gap: 5px;
        display: grid;
        grid-template:
            "box1 box2" 43vw
            "box3 box4" 43vw
            "box5 box6" 43vw /
            170px 170px;
        row-gap: 5px;
    }
    
    .main_background_image{
        height: 500px;
        left: 1vw;
        opacity: 0.5;
        overflow: hidden;
        position: absolute;
        right: 0px;
        top:4vh;
        width: auto;
    }
    
    .main_background_image img{
        max-height: auto;
        max-width: 100vw;
    }
    
    /* メインメッセージモバイル */
    .main_message_text{
        /* color: white; */
        font-size: 1.5rem;
        font-weight: 300;
    }

    .sub_text_message_contaier {
        margin-bottom: 1vh;
        margin-top: 3vh;
    }

    /* サブメッセージモバイル */
    .sub_text_message_contaier h2{
        font-size: 1.2rem;
        font-weight: 600;
        padding: 0rem;
    }
    .copy_message_contaier p {
        font-size: 1rem;
        font-weight: 500;
        padding: 1rem 2rem 1rem 2rem;
    }

    /* メインブロック６モバイル */
    .main_contaier {
        min-height: 200vw;
        padding-top: 28vw;
     }

    .main_block_boxcontent h3{
        font-size: 1.2rem;
        font-weight: 500;
    }
    
    .main_block_boxcontent p{
        font-size: 0.8rem;
        font-weight: 300;
        line-height: min(2rem,5vw);
    }

    .center_background_area{
        background-blend-mode: lighten;
        background-color: rgba(255, 255, 255, 0.7);
        background-position: center;
        background-size: contain;
    }


    /* 理由訴求ブロックモバイル */
    .reason_point_contaier {
        /* align-items: center; */
        display: flex;
        height: auto;
        justify-content: center
    }
    
    .reason_grid_area {
        column-gap: 0px;
        display: grid;
        grid-template:
            "rbox1" auto
            "rbox2" auto
            "rbox3" auto /
            100% ;
            text-align: center;
    }

    .reason_area_rbox1 {
        padding: 1rem;
    }
    
    .reason_area_rbox2 {
        padding: 1rem;
    }
    
    .reason_area_rbox3 {
        padding: 1rem;
    } 
    
    .reason_grid_area h2{
        font-size: 2rem;
        font-weight: 500;
    }
    
    .reason_grid_area h3{
        font-size: 1.8rem;
        font-weight: 400;
    }
    
    .reason_grid_area p{
        font-size: 0.9rem;
        font-weight: 300;
        line-height: 1.5rem;
    }
    
    .reason_image_box{
        /* background: var(--green_gradation_color); */
        margin-bottom: 1rem;
        margin-top: 1rem;
        min-height: 150px;
        min-width: 200px;
    }
    
    .reason_image_box img{
        height: auto;
        max-width: 100px;
        object-fit: contain;
    }

    /* ストロンググリッドモバイル */
    .strong_grid_area {
        grid-template:
            "sbox1" 130vw 
            "sbox2" 111vw
            "sbox3" 130vw /
            92vw ;
        row-gap: 10px;
    }

    .strong_grid_area h2{
        font-size: 1.8rem;
        padding: 0.1rem;
    }
    
    .strong_grid_area span p{
        font-size: 1.1rem;
    }
    
    .strong_grid_area p{
        font-size: 1rem;
    }

    .storong_list_area{
       width: 100;
    }
    
    .strong_list_text{
        font-size: 5vw;   
        width: 80%;
    }
    
    .strong_list_text li{
        padding: 0.4vw;
    }

    .strong_grid_area p{
        font-size: 0.8rem;
        margin-top: 0.5rem;
        padding: 0.8rem;
    }

    .strong_area_image{
        height: auto;
        max-width: 80vw;
        padding: 0.5rem;
    }

    /* Splider */
    /* スライダーエリア */
    .slider_area_contaier{
        margin: 1%;
    }
          
    .splide__slide img{
      height: auto;
      width: 90vw;
    }

    .case_logo_area{
        height:20vw;
        width: 35vw;
    }

    .case_image_are img{
        height: auto;
        padding: 0.5rem;
        width: 80vw
    }

    .case_head_message h3{
        font-size: 4vw;
        margin: 1vw;
    }
     
    .case_message_text{
        font-size: 5vw;
        margin: min(1rem,1vw);
    }
    
    .case_message_detail_text{
        font-size: 3vw;
        font-weight: 300;
        margin: 1vw;
    }

    .case_detal_btn{
        height: 10vw;
    }

    /* バナーグリッドエリアモバイル */
    .bunnerlink_grid_area {
        column-gap: 2px;
        grid-template:
            "bbox1 bbox1" 150px 
            "bbox2 bbox3" 200px /
            45vw 45vw;
        row-gap: 5px;
    }

    .bunnerlink_grid_area h2{
        font-size: 1rem;
        font-weight: 400;
        margin: 0.5rem;
        padding: 0.1rem;
    }
    
    .bunnerlink_grid_area p{
        font-size: 0.8rem;
        font-weight: 200;
        padding: 0.5rem;
    }

    .bunnerlink_grid_area img{
        max-height: 50px;
        max-width: 50px;
        padding: 0.1rem;
    }

    /* モバイルでは非表示 */
    .btn_link_are{
        display:none; 
    }

}
