/* common */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family:'Noto Sans JP', sans-serif, 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', 'Yu Gothic', YuGothic, 'MS PGothic', Osaka, arial, sans-serif;
    color:#333;
    line-height:1.5;
    text-align: justify;
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
}

h1{
    font-size:2.5rem;
    font-weight:300;
    text-align:center;
    padding-top:50px;
    margin-bottom:50px;
}

h2{
    font-size:1.8rem;
    font-weight:500;
    margin-bottom:30px;
}

h3{
    font-size:1.3rem;
    font-weight:500;
    margin-bottom:15px;
}


p{
    margin-bottom:2em;
}

p:last-child{
    margin-bottom:0;
}

li{
    list-style: none;
}

.wrap{
    margin:0 auto;
    max-width:1000px;
}

.flex{
    display:flex;
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}

.anchor{
    position:relative;
    top:-220px;
}

.bg-gray{
    background:#eee;
}

.pd{
    padding:50px 0;
}


/* header */
header{
    width:100%;
    height:110px;
    padding:20px 0px 16px;
    background:#fff;
    position:fixed;
    top: 0;
    left: 0;
    z-index:999;
    border-bottom:1px solid #eee;
}

.site-logo{
    padding:0 0 13px;
}

.site-logo img{
    width:220px;
}


/* menu */
.menu-content {
    margin-bottom: 0;
    z-index: 1;
    width:100%;
}
.menu-content ul {
    list-style:none;
    justify-content: space-between;
}

.menu-content ul li a {
    position: relative;
    display: inline-block;
    padding: 0 0 14px;
    color: #333;
    vertical-align: middle;
    text-decoration: none;
    font-size: 16px;
}

/* hover */
.menu-content ul li a::after{
    border-bottom:5px solid #e4cc9a;
    bottom:0;
    content: "";
    display:block;
    position:absolute;
    left:50%;
    transition:all .3s ease;
    -webkit-transition:all .3s ease;
    width:0;
}

.menu-content ul li a:hover::after {
    width:100%;
    left:0;
}



/* スマホ時のみ表示 */
.sp-navi{
    display:none;
}

/* メニューオープン用のチェックボックスを非表示にする */
#menu-btn-check {
    display: none;
}

/* main-contents */
.main-content{
    margin-top:110px; /* headerの高さに合わせる */
}

/* contact */
.contact{
    text-align:center;
    background:#e4cc9a;
    padding:30px 0;
}

.contact .wrap{
    background:#fff;
    padding:10px;
    width:600px;
}

.contact h2{
    font-size:1.2rem;
    font-weight:500;
    margin-bottom:15px;
    background:#130f58;
    padding:3px 10px;
    color:#fff;
}

.contact p{
    margin-bottom:1rem;
}

.contact ul{
    justify-content: center;
}

.contact ul li{
    font-size:1.25rem;
    font-weight:500;
    margin:0 10px 10px;
}

.contact ul li span:first-child{
    font-size:0.9rem;
    border:1px solid #000;
    width:100px;
    text-align:center;
    display:inline-block;
    margin-right:10px;
}

.contact ul li img{
    width:40px;
    vertical-align:middle;
    margin-right:5px;
}

.contact ul li a{
    color:#333;
}

.tanto{
    font-size:0.9rem;
}

.sp-fb{
    display: none;
}

/* attention */
.attention-corona{
    border:1px solid #ccc;
    padding:20px;
    text-align:center;
    margin-bottom:50px;
    }
    
.attention-corona h3{
    font-size:1rem;
}

.attention-corona p{
    margin:0;
    font-size:0.9rem;
}


/* 2nd */
.page-ttl{
    position:relative;
    margin-bottom:20px;
    background:#130f58;
    height:250px;
    padding:0;
}

.page-ttl h1{
    color:#fff !important;
    font-weight:300;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px  10px #000,
    -2px -2px  10px #000,
    -2px 2px  10px #000,
    2px -2px  8px #000;
    position:absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
    width:100%;
}

.page-ttl img{
    width:100%;
    height:250px;
    object-fit:cover;
    filter: opacity(60%);
}

/* footer */
footer{
    padding:30px 0;
    background:#111;
    color:#fff;
    font-size:0.9rem;
}

.copyright{
    width:100%;
    text-align:center;
}




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

h1{
    font-size:1.7rem;
}

h2{
    font-size:1.2rem;
    margin-bottom:20px;
}

h3{
    font-size:1rem;
    font-weight:normal;
    margin-bottom:20px;
}

h4{
    font-size:1rem;
    margin-bottom:12px;
}

.anchor{
    position:relative;
    top:-100px;
}

input[type="textbox"]{
    -webkit-appearance: none;
}

input[type="submit"]{
    -webkit-appearance: none;
}

input[type="button"]{
    -webkit-appearance: none;
}

.wrap{
    padding:0 20px;
    width:100%;
}

.pd{
    padding-top:30px;
    padding-bottom:30px;
}

/* header */
header{
    height:60px;
    padding:18px 0 10px 0;
}

.site-logo{
    padding-left:50px;
    width:100%;
}
.site-logo img{
    width:150px;
}

.company-name{
    width:100%;
}

.company-name li{
    background:none;
    padding:0;
    padding-left:50px;
}


/* スマホ時のみ表示 */
.sp-navi{
    display:inherit;
}

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

.menu-content ul {
    display:block;
}
.menu-content ul li {
    border-bottom: solid 1px #ccc;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color:#666;
    text-decoration: none;
    padding: 9px 15px 10px 15px;
    position: relative;
}

/* ホバー時の下矢印を非表示 */
.menu-content ul li a::before, .menu-content ul li a::after{
    display:none;
}
.menu-content ul li a::after{
    display:none;
}
.menu-content ul li a:hover::after {
    display:none;
}

/* メニューボタン */
.menu-btn {
    position: fixed;
    top: 5px;
    left: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #fff;
}

/* メニュークローズ時の三本線 */
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 30px;
    background-color: #333;
    position: absolute;
    transition:.2s;
}
.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);
    transition:.2s;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    transition:.2s;
}

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

/* main-contents */
.main-content{
    margin-top:60px;
}

.contact .wrap{
    background:#fff;
    padding:10px;
    width:90%;
    margin:0 5%;
}

.contact ul{
    justify-content: left;
    text-align:left;
    margin-bottom:30px;
}

.contact ul li{
    font-size:1rem;
}

.contact ul li img{
    float:left;
    margin-top:-5px;
}

.contact ul li:last-child{
    margin-top:-10px;
}

.contact ul li:last-child img{
    margin-top:8px;
}



/* attention */
.attention-corona{
    margin-bottom:30px;
    }
    
    .attention-corona h3{
    font-size:0.9rem;
    }
    
    .attention-corona p{
    font-size:0.8rem;
    }

/* 2nd */
.page-ttl{
    margin-bottom:30px;
    height:150px;
}

.page-ttl img{
    width:100%;
    height:150px;
    object-fit:cover;
    filter: opacity(70%);
}

/* footer */
footer{
    padding:20px 0;
}


}