@charset "UTF-8";
@import url(resp.css);


/* 共通部分
------------------------------*/
html{
    font-size: 100%;
}
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #432;
    background-image: url(../images/whole-bg.png);
    background-repeat: repeat;
    background-color: #bbbbbb;
    background-blend-mode: overlay;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}
table{
    font-size: 90%;
}
.wrapper{
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 4%;                    /*スマホ向け余白指定*/
}
.text-outline {
    color: #fff; /* 文字は白 */
    text-shadow: 
        1px 1px 0 #000,
        -1px 1px 0 #000,
        1px -1px 0 #000,
        -1px -1px 0 #000;
}


/* HEADER
------------------------------*/
.logo{
    width: 170px;
    margin: 5px 0 0 80px;
}
.main-nav{
    display: flex;                    /*横並びに配置*/
    font-size: 1.25rem;
    text-transform: uppercase;        /*大文字*/
    list-style: none;                 /*下線なし*/
    margin: 70px 150px 0 0;
}
.main-nav li{
    margin-left: 36px;
    margin-bottom: 10px;
}
#home .main-nav a{
    color: #fff;
}
#home .main-nav a:hover{
    color: #76d4e0;
}
.main-nav a{
    color: #432;
}
.main-nav a:hover{
    color: #76d4e0;
}
.page-header{
    display: flex;                     /*ロゴとナビを横並びに配置*/
    justify-content: space-between;    /*両端に配置*/
    max-width: 100vw;
    padding-bottom: 5px;
    border-bottom: 1px #a7a8a8 solid;
}
#home .page-header{
    border-bottom: none;
}
#news .main-nav,
#link .main-nav,
#reception .main-nav{
    margin-right: 166px;
}



/* HOME
------------------------------*/
.home-content{
    text-align: center;
    margin-top: 10%;
}
.home-content p{
    font-size: 1.3rem;
    margin: 10px 0 42px;
}

/*--背景--*/
#home{
    background-image: url(../images/home-bg.png);
    min-height: 100vh;
    color: black;
}
.big-bg{
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/*--見出し--*/
#home .page-title{
    color: #fff;
    text-transform: none;
    font-family: serif;
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: normal;
    text-shadow: 2px 2px 3px #808080;
}
#home .explain{
    color: #fff;
    align-items: flex-end;
}

/*home-nav*/
#home-nav{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4%;                     /*スマホ向け余白指定*/
}
.sub-header{
    display: flex;
    justify-content: space-between;
    margin-top: 10%;
    padding-bottom: 16px;
    border-bottom: 1px #a7a8a8 solid;
}
#home-nav .sub-title{
    padding: 20px 20px 0;
    font-family: 游ゴシック;
    font-weight: 500;
    font-size: 1.8rem;
    border-bottom: none;
}
.button{
    margin-top: 25px;
    font-size: 1.2rem;
    background: #313131;
    color: #fff;
    border-radius: 20px;
    padding: 5px 18px;
}
.button:hover{
    background: #909090;
}
.sub-contents{
    display: flex;
    justify-content: space-between;
    padding-top: 5%;
    margin-bottom: 10%;
}
.sub-contents p{
    font-size: 1.1rem;
    margin-left: 20px;
    padding-top: 10px;
}
.sub-contents img{
    margin-right: 20px;
    border-radius: 15px;
    width: 370px;
}


/* 概要
------------------------------*/
.common-body{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-bottom: 30px;
}

.com2 img {
    width: 80%;
    max-width: 400px; /* 大きくなりすぎないよう制限 */
    height: auto;
}



/*メニュー*/
aside{
    width: 25%;
}
.sub-title{
    font-size: 1.6rem;
    font-weight: normal;
    padding: 0 15px 3px;
    border-bottom: 1px #559cec solid;
}
.sub-menu{
    list-style: none;
    list-style-image: url(../images/arrow.png);
}
.sub-menu li{
    margin-left: 20px;
}
.sub-menu a{
    color: #432;
    margin: 10px 0 0;
    display: block;
}
.sub-menu a:hover{
    color: #76d4e0;
}
.sub-menu .en{
    font-size: 0.9rem;
}
.lang-change{
    margin: 50px 0 0 20px;
}
.lang-change a{
    color: #432;
}
.lang-change a:hover{
    color: #76d4e0;
}


/*本文*/
article{
    width: 75%;
    padding-left: 15px;
}
.sub-heading{
    font-size: 1.2rem;
    margin: 20px 0 0 15px;
}
.main-contents{
    list-style-type: decimal;
    margin: 0 0 30px 50px;
}
.main-contents li{
    margin-top: 15px;
}
.main-contents img{
    margin-top: 15px;
}
.pimg{
    display: flex;
    justify-content: space-between;
}
.pimg p{
    width: 40%;
}
.pimg img{
    width: 58%;
}
.img-con{
    display: flex;
    justify-content: space-between;
    margin: 0 10px 0;
}
.img-con img{
    height: 300px;
}
.img1{
    width: 90%;
    margin-bottom: 10px;
}
.img2{
    display: flex;
    justify-content: space-between;
}
.img2 .com1{
    width: 105%;
}
.img2 .ear1 img,.ear2 img{
    height: 300px;
}
.img-memb{
    display: flex;
    justify-content: space-between;
    margin: 0 60px 0;
}
.img-memb img{
    height: 200px;
}
table{
    width: 80%;
    border-collapse: collapse;
    border-spacing: 0;
    border-top: solid 1px #bbbbbb;
    border-bottom: solid 1px #bbbbbb;
    margin-top: 10px;
}
table tr:nth-child(odd){
    background-color: #d1d3d3
}
table td{
    text-align: center;
    padding: 3px 0;
}
table td:nth-child(n+2){
    padding: 0 10px;
    border-left: solid 1px #bbbbbb;
}
.link{
    color: #432;
    border-bottom: solid 1px #432;
}
.link:hover{
    color: #76d4e0;
    border-bottom: solid 1px #76d4e0;
}



/* NEWS
------------------------------*/
.news-contents{
    display: flex;
    font-size: 1.3rem;
    padding: 30px 20px;
    border-bottom: 1px #808080 solid;
}
.date{
    width: 20%;
}
.news-contents p{
    width: 60%
}
.news-contents p_1{
    width: 80%;
}
.news-contents p_1 .comment{
    font-size: 1rem;
    padding-top: 5px;
}
.news-contents img{
    width: 20%;
    border-radius: 10px;
}



/* ABOUT
------------------------------*/
.common-contents{
    margin-bottom: 50px;
}
.common-contents .sub-title{
    font-weight: 600;
    margin: 30px 0 10px 15px;
    border-bottom: none;
}
.common-contents .sub-heading{
    font-size: 1.3rem;
    margin: 20px 0 5px 50px;
}
.miya{
    display: flex;
    margin-bottom: 10px;
}
.miya img{
    height: 290px;
    width: 420px;
    margin-left: 60px;
    border-radius: 5px;
}
.miya p{
    margin-left: 35px;
}
.name{
    font-size: 1.4rem;
    font-weight: bolder;
    margin-bottom: 5px;
}
.about-main h4{
    margin-left: 60px;
}
.about-main p{
    margin-left: 75px;
}
.about-map{
    display: flex;
    justify-content: space-between;
}
.map{
    border-radius: 5px;
}
.about-contact{
    display: flex;
}
.email{
    width: 50%;
    padding-left: 60px;
}
.email p{
    margin-left: 15px;
}
.twitter{
    width: 50%;
}
.twitter p{
    margin-top: 10px;
    width: 400px;
}



/* フッター
------------------------------*/
footer{
    background:black;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}
footer p{
    color: #fff;
    font-size: 0.875rem;
}