@charset "UTF-8";

/* すべてのspanにinline-block
　　レスポンシブ 改行対応用 */
span{
    display: inline-block;
}

/* グローバルメニュー */
.access-menu img{
    opacity: 0.5;
}
.access-menu p{
    opacity: 0.5;
}

/* メイン */
main{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
}

/* 交通案内 */
.access{
    background-color: white;
    padding: 0 40px 40px 40px;
    border-top: solid 6px #FF9D00;
    margin: 150px auto 50px auto;
}

/* 交通案内　タイトル */
.access-title{
    display: flex;
    font-family: 'Zen Maru Gothic', serif;
    margin-top: 35px;
    padding-bottom: 20px;
    border-bottom: solid 1px #707070;
    align-items: flex-end;
}
.access-title img{
    margin-right: 10px;
}
h2{
    font-size: 1.5rem;
}
.access-title p{
    font-size: 0.75rem;
    padding-left: 10px;
}

/* 交通案内 内容 */
.access-in{
    max-width: 800px;
    margin: 30px auto 0 auto;
    line-height: 1.8;
}
.access-in li{
    list-style: disc outside;
    margin-left: 20px;
}
.red{
    color: red;
}

/* Google マップ */
.map {
    max-width: 800px;
    position: relative;
    padding-top: 56.25%;
    margin: 50px auto 50px auto;
  }
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

    /* 交通案内 */
    .access{
        padding: 0 20px 40px 20px;
    }

    /* 交通案内　タイトル */
    h2{
        font-size: 1.375rem;
    }

    /* Google マップ */
    .map {
        margin: 20px auto 0 auto;
    }
    

}