@charset "utf-8";

body {
    background-color: #E3E3E3;
}

.title_box {
    display: flex;
    justify-content: space-between;
}

.title {
    position: absolute;
    top: 20px;
    left: 30%;
}

@media screen and (min-width: 1201px) {
    .title {
        display: none;
    }
}

/* .title h2 {
    margin: 10px 0 0 20px;
    font-size: 20px;
} */


.orifior_img {
    width: 150px;
    margin: 20px;
    margin-left: 50%;
}

@media screen and (min-width: 1201px) {
.orifior_img {
    display: block;
    width: 180px;
    margin-top: 20px;
    margin-left: 40px;
}
}

/* -----------------ナビゲーション------------------ */

/* nav {
    position: fixed;
    top: 0;
}  */


.nav ul {
    width: 1000px;
    background-color: #4E5471;
    margin: 20px 0;
    padding: 10px 5px;
    display: flex;
    justify-content: space-around;
}

.nav ul li {
    list-style: none;
    color: #D9CECE;
}


.nav li a{
    display: block;
    /* padding: 1.3em 20px; */
    color: #D9CECE;
    text-decoration: none;
    font-size: 14px;
    /* font-family: 'Imprima', sans-serif; */
    line-height: 1.5rem;
  }
  
  li a {
    position: relative; /*アンダーラインの位置を決めるための基準 */
  }
    
  li a::after {
    position: absolute; /*親要素であるaタグを基準に位置を指定*/
    left: 0;            /*アンダーラインを各メニュー（aタグ）の左端に指定*/
    content: '';        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
    width: 100%;        /*アンダーラインを各aタグの幅に合わせる*/
    height: 2px;        /*アンダーラインの高さ（太さ）*/
    background: #000000;/*アンダーラインの色*/
  }
  
  li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1.5px;
    background: #e4e0e0;
    top: 25px;               /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
  }
  
  li a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
  }

  @media screen and (min-width: 1201px) {
    .hnav {
        display: none;
    }
    }

/* -------------フォーム------------- */
/* iframe {
    display: block;
    margin: 0 auto;
    width: 390px;
}

@media screen and (min-width: 1201px) {
iframe {
    display: block;
    margin: 0 auto;
}
} */

/* -----------------フッター-------------------- */

.contact_title {
    text-align: center;
}

@media screen and (min-width: 1201px) {
    .contact_comment {
        text-align: center;
        margin: 40px 0 40px;
    }
}

.contact_comment {
    text-align: center;
    margin: 40px 0 40px;
}

.line_box {
    text-align: center;
    margin-bottom: 100px;
}

@media screen and (min-width: 1201px) {
    .line_box {
        text-align: center;
        margin-bottom: 70px;
    }
    }

.line_box img {
        width: 350px;
        border-radius: 10%;
    }

@media screen and (min-width: 1201px) {
        .line_box img {
            width: 350px;
            border-radius: 10%;
        }
    }

.qr_box {
    text-align: center;
    margin-bottom: 70px;
}

.qr_box img {
    width: 350px;
}

.qr_box h3 {
    margin: 30px 0;
}

.btn_tel {
    margin: 20px 0;
}

@media screen and (min-width: 1201px) {
.qr_box {
    text-align: center;
    margin-bottom: 70px;
}

.qr_box img {
    width: 350px;
}

.qr_box h3 {
    margin: 30px 0;
}

.btn_tel {
    margin: 20px 0;
}

}

/* ---------------tel------------------- */

    /* ボタン共通設定 */
    .btn03{
        /*影の基点とするためrelativeを指定*/
        position: relative;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;
        text-align: center;
        background: transparent;
        border-radius: 25px;
        border: solid 1px #333;
        outline: none;
        /*アニメーションの指定*/
        transition: all 0.2s ease;
    }
    
    /*hoverをした後のボタンの形状*/
    .btn03:hover{
        border-color:transparent;	
    }
    
    /*ボタンの中のテキスト*/
    .btn03 span {
        position: relative;
        z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
        /*テキストの形状*/
        display: block;
        padding: 10px 30px;
        background:#fff;
        border-radius: 25px;
        color:#333;
        /*アニメーションの指定*/
        transition: all 0.3s ease;
    }
    
    /*== 右下に押し込まれる（立体が平面に） */
    
    /*影の設定*/
    .pushright:before {
        content: "";
        /*絶対配置で影の位置を決める*/
        position: absolute;
        z-index: -1;
        top: 4px;
        left: 4px;
        /*影の形状*/
        width: 100%;
        height: 100%;
        border-radius: 25px;
        background-color: #333;
    }
    
    /*hoverの際にX・Y軸に4pxずらす*/
    .pushright:hover span {
        background-color: #333;
        color: #fff;
        transform: translate(4px, 4px);
    }
    
    @media screen and (min-width: 1201px) {
        /* ボタン共通設定 */
    .btn03{
        /*影の基点とするためrelativeを指定*/
        position: relative;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;
        text-align: center;
        background: transparent;
        border-radius: 25px;
        border: solid 1px #333;
        outline: none;
        /*アニメーションの指定*/
        transition: all 0.2s ease;
    }
    
    /*hoverをした後のボタンの形状*/
    .btn03:hover{
        border-color:transparent;	
    }
    
    /*ボタンの中のテキスト*/
    .btn03 span {
        position: relative;
        z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
        /*テキストの形状*/
        display: block;
        padding: 10px 30px;
        background:#fff;
        border-radius: 25px;
        color:#333;
        /*アニメーションの指定*/
        transition: all 0.3s ease;
    }
    
    /*== 右下に押し込まれる（立体が平面に） */
    
    /*影の設定*/
    .pushright:before {
        content: "";
        /*絶対配置で影の位置を決める*/
        position: absolute;
        z-index: -1;
        top: 4px;
        left: 4px;
        /*影の形状*/
        width: 100%;
        height: 100%;
        border-radius: 25px;
        background-color: #333;
    }
    
    /*hoverの際にX・Y軸に4pxずらす*/
    .pushright:hover span {
        background-color: #333;
        color: #fff;
        transform: translate(4px, 4px);
    }
    
    }


/* -----------------フッター-------------------- */

.footer_contact {
    text-align: center;
}

.tel {
    font-size: 13px;
    color: #D9CECE;
    text-decoration: none;
}

.mail {
    font-size: 13px;
    color: #D9CECE;
    text-decoration: none;
}

.footer_box {
    padding: 40px;
   background-color: #4E5471;
}

.copyright {
    margin: 0;
    color: white;
    text-align: center;
}

@media screen and (min-width: 1201px) {
.footer_contact {
    display: flex;
    justify-content: center;
}

.tel {
    color: #D9CECE;
    text-decoration: none;
}

.mail {
    margin-left: 20px;
    color: #D9CECE;
    text-decoration: none;
}

.footer_box {
    padding: 40px;
   background-color: #4E5471;
}

.copyright {
    margin: 0;
    color: white;
    text-align: center;
}
}

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

.sns_logo img {
    margin: 30px;
}

@media screen and (min-width: 1201px) {
    .sns_logo {
        display: flex;
        justify-content: center;
    }

    .sns_logo img {
        margin: 30px;
    }
}

/* .footer_box {
    padding: 5px;
   background-color: #4E5471;
}

.copyright {
    margin: 0;
    color: white;
    text-align: center;
} */