@charset "utf-8";

/*
ブレイクポイント768px
タブレットとPC用最大幅800px
*/

/*------------------------------
 ▼共通デザイン（モバイル向け）
 -------------------------------*/
 
/*-------------------------------------
▼中型画面向けデザイン（タブレットなど）
--------------------------------------*/
@media screen and (min-width: 768px) {
}

/*-------------------------------------
▼フォントサイズ
16px=1.6rem
18px=1.8rem
--------------------------------------*/

/*:root {
    --color-primary: #4D84F4;
    --color-secondary: #f5414f;
 
    --color-text: #2e2e31;
    --color-border: #d1d0d2;
 
    --color-success: #88c459;
    --color-error: #f5414f;
    --color-warning: #ffd137;

    --primary: #ddd;
    --dark: #333;
    --light: #fff;
    --shadow: 0 1px 5px rgba(104, 104, 104, 0.8);

  }*/

/*スペース*/
.mt0 {
    margin-top: 0px!important;
}

.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}

.pt20 {
    padding-top: 20px;
}
.pt30 {
    padding-top: 30px;
}
.pt40 {
    padding-top: 40px;
}

.tit_orange {
    font-weight: 600;
    color: #B5621B;
}
.tit_green {
    font-weight: 600;
    color: #688830;
}

.display_none {
    display: none;
}


html {
    font-size: 62.5%;
    /*default＝10px*/
  }
*{
    box-sizing:border-box;
}
*,
::before,
::after{
    padding: 0;
    margin: 0;
}

body{
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1.6rem;
    /*1rem=10px*/
    font-weight: 400;
    color: #404040;
    line-height: 1;
    background-color: #E4E4E4;
}
@media screen and (min-width: 768px) {
    body {
        font-size: 1.8rem;
    }
}

img{
    max-width: 100%;
    height: auto;
}
a img:hover{ 
	opacity:0.5;
	transition:0.3s;
}

ul,
ol{
    list-style: none;
}

/*ふわっとホバー*/
a{
    color: #8CB542;
    text-decoration: none;
    transition: .2s ease-in-out;
}
a:hover{
    color: #8CB542;
    text-decoration: dashed underline;
    transition: .2s ease-in-out;
}

/*サイトの標準横幅と内部余白*/
.container{
    width:100%;
    margin: 0 auto;
    background: #FBF5E7;
    }
.container_inner{
    padding: 0 5%;
    }
/*タブレット、PC*/
@media screen and (min-width:768px) {
    .container{
        width:800px;
        max-width:100%;
        }
    .container_inner{
        padding: 0 25px;
    }
}


/*PC非表示／SP非表示*/
@media screen and (min-width:481px) {
    .pc_none_s{
    display: none;
    }
    }
    @media screen and (min-width:768px) {
    .pc_none{
    display: none;
    }
    }
    @media screen and (max-width:767px) {
    .sp_none{
    display: none;
    }
    }
    @media screen and (max-width:480px) {
    .sp_none_s{
    display: none;
    }
    }

/*PC表示で電話番号リンクを無効*/
@media screen and (min-width: 768px){
    a[href^=”tel:”] {
    pointer-events: none;
    cursor: default;
    }
    }

/*PC表示のみFREX*/
@media screen and (min-width:768px) {
    .pc-row{
    display: flex;
    }
    }

/*表示範囲に合わせて言語関係なく改行*/
p{
    word-break: break-all;
    }

/*------------------------------
 ▼共通デザイン
 -------------------------------*/

/*Header*/
#fixheader {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
}
#header {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    background: #FFFFFF;
    border-bottom: 6px solid #EDEBEB;
}
.header_inner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:space-between;
    text-align: center;
    padding: 2.5%;
}
.heder_title {
    display: flex;
    align-items: center;
    margin: 0 auto;
}
.hd_corplogo img{
    height: 38px; 
    width: auto;
}
.hd_title {
    font-size: 18px;
    margin-left: 10px;
    color: #707070;
}
.hd_member img.hd_btn_member{
width:38px;
height:38px;
background:url('../images/nav_member.png');
background-size: contain;
background-repeat: no-repeat;
}
.hd_member img.hd_btn_member:hover{
    background:url('../images/nav_member_over.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/*stay表示js用*/
.result04{
    background:url('../images/nav_member_over.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/*GlovalNavi*/
#glonavi {
    width: 100%;
    background-color: #EDEBEB;       
}
.g-navi {
    display: table;
    text-align: center;
    font-size: 13px;
    color: #707070;
    font-weight: 600;
    width: 100%;        
}
.g-navi li {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 33.333%;
    height:48px;
}

.g-navi li:hover {
    background-color: #FBF5E7;
    cursor: pointer;
}
.g-navi li a {
    display: block;
    width: 100%;
    line-height: 3;
}

/*stay表示js用*/
.g-navi .result01,
.g-navi .result02,
.g-navi .result03 {
    background-color: #EDEBEB;
    cursor: pointer;
}

.g-navi li span.menu_txtG{
    font-size: 16px;
    font-weight: 600;
    color: #688830;
}
.g-navi li span.menu_arrow {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border: 3px solid;
    border-color: #B2B1B1 #B2B1B1 transparent transparent;
    transform: rotate(45deg);
    top: 19px;
}

/*Staff Name*/
.hd_name {
    font-size: 16px;
    color:#688830;
    font-weight: 600;
    text-align: center;
    padding: 17px 2.5%;
}

#main_contents {
    margin-top: 158px;
}
#profile #main_contents {
    margin-top: 109px;
}
#topLogin #main_contents {
    margin-top: 60px;
}

/*Footer*/
footer .small {
    text-align: center;
    font-size: 1.3rem;
    color: #949494;
    padding: 20px;
}