@charset "utf-8";

body {
    font-family: "Arial", sans-serif;
    background-color: #EEE2D3;
    color: #4B4B4B;
}

/* フッター固定用 */
.flex-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ヘッダー */
header {
    background-color: #FFFFFF;
    height: 130px;
}

.header_item{
    width: 100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -5px;
    margin-bottom: -5px;
}

.header_logo{
    margin-left: 20px;
}

ul{
    list-style:none;
}

/*.header_list{
    margin: 10px 67px;
}*/

/*.header_tel{
    font-size: 26px;
}

.header_tel span{*/
    /* padding-right: 0; */
    /*letter-spacing: 5px;
    text-align: right;
}*/

.header_reception{
    font-size: 18px;
    text-align: center;
}

.hamburger-menu{
    display: none;
}

/* メイン */

.img{
    background-color: black;
    width: 100%;
    height: 60vh;
    margin: 0;
    box-shadow: 0px 14px 23px 0px #919191;
}
.side-img {
    display: inline-block;
    vertical-align: top;
}

p.side-txt {
    display: inline-block;
    width: 400px;
    margin-left: 15px;
}

/* セクション */
.section_list {
    display: flex;
    justify-content: center;
    padding: 0;
    text-align: center;
    margin: 20px 20px 0 0;
}

.section_navitem {
    /*margin: 0 0 0 0;*/
    transition-duration: .4s;
}

.section_navitem:hover{
    /* background-color: red; */
    transform: translateY(-10px);
    
}

.section_navitem a{
    text-decoration: none;
}

.section_navitem p{
    font-size: 12px;
    margin-top: 5px;
    position: relative;
    color: #4B4B4B;
}

.section_navitem p::before {
    background: #4B4B4B;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}

.section_navitem p:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}



/* フッター固定用 */
.flex-footer {
    margin-top: auto;
}

/* フッター */
.footer {
    display: flex;
    text-align: center;
    justify-content: right;
    padding: 0 10px;
    background-color: #4B4B4B;
    color: #FFFFFF;
    font-size: 15.9px;
    /* width: 100%; */
    /* height: 38.7px; */
}

.footer_text{
    margin: 10px;
}



/* 共通CSS */
.common {
    display: flex;
    justify-content: center;

}

.common_section {
    margin-left: 20px;
}

.side-img {
  display: inline-block;
  vertical-align: top;
}
p.side-txt {
  display: inline-block;
  width: 400px;
  margin-left: 15px;
}



.common_icon{
    width: 40%;
    text-align: center;
    margin-top: 60px;
}

.common_list{
    display: flex;
    justify-content: center;
    padding-left: 0;
}

.common_list_item{
    margin: 40px 10px 0 10px;
    transition-duration: .4s;
}

.common_list_item:hover{
    opacity: 0.8; 
    transform: translateY(-5px);
}

.common_list_item a{
    text-decoration: none;
}

.common_list_item p{
    font-size: 12px;
    margin-top: 5px;
    color: #4B4B4B;
    
}

/* 会社概要 */
.profile_item{
    display: flex;
    border-bottom: 1.5px #4B4B4B solid;
}
.profile_philosophy {
    margin-left: 40px;
}
/* .profile_item::before{
    content: '';
    border-bottom: 2px red solid;
} */

.profile_item_name{
    width: 70px;
    text-align: left;
    margin-right: 40px;
}

.profile_map{
    display: grid;
    margin-bottom: 15px;
    margin-left: 38px;
}

.profile_map a{
    /* text-decoration: none; */
    color: #4B4B4B;
}




/* タブレット対応 ↓ */
@media screen and (mix-width:450px) and (max-width:768px){

    /* トップページ */
    .section_navitem {
        margin: 0 25px;
    }

    .section_navitem img{
        width: 100px;
        height: 100px;
    }

    .section_navitem p{
        font-size: 16.5px;
    }


    /* 共有ページ */


    .hamburger-menu {
        display: none;

    }
   
    .header_list{
        margin: auto;
        margin-right: 25px;
 

    }


    .common {
        display: flex;
        justify-content: center;
    }
    
    .common_section{
        margin-right: 20px;
    }
    
 /*   .common_icon{
        width: 40%;
        text-align: center;
        margin: auto;
        margin-top: 35px;
    }
    
    .common_list{
        display: flex;
        justify-content: center;
        padding-left: 0;
        margin-top: -10px;
    }

    .common_list_item img{
        width: 90px;
        height: 90px;
    }
    
    .common_list_item{
        margin: 40px 20px 0 20px;
        transition-duration: .4s;
    }
    
    .common_list_item:hover{
        opacity: 0.8; 
        transform: translateY(-5px);
    }
    
    .common_list_item a{
        text-decoration: none;
    }
    
    .common_list_item p{
        font-size: 14px;
        margin-top: 5px;
        color: #4B4B4B;
        width: 85px;
    }*/
    
}


/* スマホ対応 ↓ */
@media screen and (max-width:450px){


    /* 共有のヘッダーとフッター */
    header{
        height: 130px;
    }

    .header_logo {
        margin-left: 20px;
    }

    .header_list{
        margin: 0;
        padding-left: 10px;
        margin-top: 38px;
    }
    
    .header_tel{
        font-size: 15px;
    }

    .header_tel span{
        font-size: 12px;
    }

    .header_reception{
        font-size: 10px;
    }


    .footer {
        display: block;
        font-size: 12.5px;
        width: 100%;
        height: 50px;
        padding: 8px 0;

    }

    .footer_text{
        margin: 0;
    }


    /* 共有の遷移アイコン */
    /* .common_icon{
        display: flex;
        margin: 0;
    } */

/*    .common_icon_main{
        text-align: center;
        display: block;
        margin: 15px auto;
    }

    .common_list{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }*/

    /* 共通CSS */
.common {
    display: block;
}

.common_section{
    margin: 10px;
}


p.side-txt {
    font-size: 14px;
      
}


    /*.common_icon{
    width: 40%;
    text-align: center;
    margin-top: 60px;
    display: contents;
}

.common_list{*/
    /* display: flex;
    justify-content: center;
    /* padding-left: 0; */
    /* margin: 0;
    margin-top: -40px; */ 
    /*display: none;
}

.common_list_item{
    margin: 40px 10px 0 10px;
    transition-duration: .4s;
}

.common_list_item:hover{
    opacity: 0.8; 
    transform: translateY(-5px);
}

.common_list_item a{
    text-decoration: none;
}

.common_list_item p{
    font-size: 12px;
    margin-top: 5px;
    color: #4B4B4B;
    
}*/



    /* ハンバーガーバー */
    .hamburger-menu {
        display: block;

    }

    .menu-btn {
        position: fixed;
        top: 20px;
        right: 20px;
        display: flex;
        height: 55px;
        width: 55px;
        justify-content: center;
        align-items: center;
        z-index: 90;
        background-color: #4B4B4B;
    }

        .menu-btn span,
        .menu-btn span:before,
        .menu-btn span:after {
            content: '';
            display: block;
            height: 3px;
            width: 25px;
            border-radius: 3px;
            background-color: #ffffff;
            position: absolute;
        }

    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }

    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }

    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    
    #menu-btn-check {
        display: none;
    }

    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 80;
        background-color: #4B4B4B;
    }

    .menu-content ul {
        padding: 70px 10px 0;
    }

    .menu-content ul li {
        border-bottom: solid 1px #ffffff;
        list-style: none;
    }

    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 15px;
        box-sizing: border-box;
        color:#ffffff;
        text-decoration: none;
        padding: 9px 15px 10px 0;
        position: relative;
    }

    .menu-content ul li a::before {
        content: "";
        width: 12px;
        height: 12px;
        border-top: solid 2px #ffffff;
        border-right: solid 2px #ffffff;
        transform: rotate(45deg);
        position: absolute;
        right: 11px;
        top: 28px;
    }

    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;/*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color: #4B4B4B;
        transition: all 0.5s;/*アニメーション設定*/
    }

    #menu-btn-check:checked ~ .menu-content {
        left: 0;/*メニューを画面内へ*/
    }

    .menu-content  p {
        position: absolute;
        top: 5px;
        left: 100px;
        font-size: 18px;
    }



    /* トップページ */
    /* .section_list{
        display: block;
        margin: 25px 20px;
    }

    .section_navitem {
        margin: 0 ;
    }

    .section_navitem a{
        display: flex;
        justify-content: space-between;
        /* text-align: center; */
        /* margin: 18px;
    }

    .section_navitem p{
        text-align: center;
        margin: auto;
        font-size: 20px;
        margin-left: 45px;
    }
 */ 
    .section{
        display: none;
    }

    .img{
        height: 78vh;
    }    

    /* 会社概要ページ */
    .profile_map iframe{
        width: 344px;
        height: 220px;
    }

    .profile_list{
        padding-left: 10px;
    }

    .profile_item {
        display: -webkit-box;
        border-bottom: 1.5px #4B4B4B solid;
        justify-content: space-between;
        font-size: 14px;
    }

    .profile_philosophy {
        font-size: 14px;
    }
    .profile_item_name {
        /* width: 70px;
        text-align: left; */
        margin-right: 5px;
    }

    .profile_item_object_A{
        width: 250px;
    }

    .profile_map {
        margin-left: 10px;
    }


}