@charset"UTF-8";

/*---共通部分---*/

html{
    font-size: 100%;
}

body{
    font-family:"Yu Gothic Medium","游ゴシック","ヒラギノ角ゴ Pro W3",sans-serif;
    line-height: 1.7;
    color:#432;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%; /*親要素より多きくなるのを防ぐ*/
}

/*---header部分---*/
.logo{
    width:150px;
    margin-top: 14px;
}
.main-nav{
    display: flex;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-top: 60px;
    list-style: none;
}
.main-nav li{
    padding:0 15px;
}
.main-nav a{
    color: #0bd;
}
.main-nav a:hover{
    color: #0090aa;
    transition: 1s;
}

.page-header{
    display: flex;
    justify-content:space-between
}
.wrapper{
    max-width: 1100px; /*要素が離れすぎないようにする*/
    margin: 0 auto;
    padding: 0 4%; /*端に余白ができて見やすさアップ*/
}

/*---home-content---*/

.home-content{
    text-align: center;
    margin-top: 3%;
}

.home-content p{
    color:#fff;
    font-size: 1.125rem;
    margin: 10px 0 42px;
	text-shadow:0 0 20px #000,0 0 30px #000;

}

/*見出し*/
.page-title{
    font-size: 5rem;
    font-family: 'Philosopher',serif;
    text-transform: uppercase;
    font-weight: normal;
}
.page-title span{
    color:#fff;
	text-shadow:0 0 20px #000;
}

/*ボタン*/
.button{
    font-size: 1.375rem;
    background: #0bd;
    color: #fff;
    padding: 18px 32px;
    border-radius: 5px;
}

.button:hover{
    background: #0090aa;
    transition: 1s;
}

/*大きな背景画像*/
.big-bg{
background-size: cover;
background-position: center top;
}

#home{
    background-image: url(../img/top.jpg);
    min-height: 100vh; /*vh ビューポートを基準にした高さ*/
}

#home .page-title{
text-transform: none;
}

/*News*/
#news{
    background-image: url(../img/news-bg.jpg);
    height: 260px;
    margin-bottom: 40px;
}

#news .page-title{
    text-align: center;
}

#news .logo{
    margin-top: 15px;
}

/*footer*/
footer{
    background: #432;
    text-align: right;
    padding: 26px;
}

footer p{
    color: #0bd;
}

/*news-content*/
.news-content{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

/*記事部分*/
article{
    width: 74%;
}

.post-info{
    position: relative;
    padding-top: 4px;
    margin-bottom: 40px;
}

.post-date{
    background: #0bd;
    border-radius: 50px;
    color: #fff;
    width: 100px;
    height: 100px;
    font-size: 1.625rem;
    text-align: center;
    position: absolute;
    top:0;
    padding-top: 10px;
}

.post-date span{
    font-size: 1rem;
    border-top: 1px solid rgba(255,255,255,.5);
    padding-top: 6px;
    display: block;
    width: 60%;
    margin:0 auto;
}

.post-title{
    font-family: "Yu Mincho",serif;
    font-size: 2rem;
    font-weight: normal;
}

.post-title,.post-cat{
    margin-left: 120px;
}

article img{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

article p{
    margin-bottom: 1rem;
}
/*サイドバー*/
aside{
    width:22%;
}

.sub-title{
    font-size: 1.375rem;
    padding:0 8px 8px;
    border-bottom: 2px solid #0bd;
    font-weight: normal;
}

aside p{
    padding: 12px 10px;
}

.sub-menu{
    margin-bottom: 60px;
    list-style: none;
}

.sub-menu li{
    border-bottom: 1px dotted #ddd;
}

.sub-menu a{
    color: #432;
    padding: 10px;
    display: block; /*インラインからブロックにすることでクリックできる範囲を拡大*/
}

.sub-menu a:hover{
    color: #0bd;
}

/*Menu*/
#menu{
    background-image: url(../img/menu-bg.jpg);
    min-height: 100vh;
}

#menu .page-title{
    text-align: center;
    color: #fff;
}

#menu .logo{
    margin-top: 15px;
}

.menu-content{
    max-width: 560px;
    margin-top: 10%;
}

.menu-content p{
    font-size: 1.125rem;
    margin: 10px 0 0;
    color: #fff;
}

.grid{
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    /*画像が240px未満にならない、画面に収まりきらないと改行してくれる*/
    margin-top: 16px;
    margin-bottom: 50px;
}

.big-box{
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.item img{
    height:300px;
    width:300px;
    object-fit: cover; /*指定した部分を自動でトリミング*/
}

.big-box img{
    height: 100%;
    width: 100%;
    object-fit: cover; /*指定した部分を自動でトリミング*/
}

/*Contact*/
#contact{
/* background-image: url(../img/contact-bg.jpg); */
    min-height: 100vh;
    background-color: rgb(255, 184, 85);
    background-blend-mode: hard-light;
}

#contact .page-title{
    color: #fff;
    text-shadow:0 0 5px #000000;
}

/*フォーム*/

form .div{
 margin-bottom: 14px;
}

label{
    font-size: 1.125rem;
    margin-bottom: 10px;
    display: block;
    color: #000;
}

input[type="text"],input[type="email"],
textarea{
    background: rgba(255,255,255,0.8);
    border:2px #696969 solid;
    border-radius: 10px;
    font-size: 1rem;
}
input[type="text"],input[type="email"]{
    width: 100%;
    max-width: 240px;
}
textarea{
    width: 100%;
    max-width: 480px;
    height: 6rem;
}
input[type="submit"]{
    border: none;
    cursor: pointer;
    line-height: 1;
    margin-bottom: 50px;
}

#location{
    padding:4% 0 ;
}

#location .wrapper{
    display: flex;
    justify-content: space-between;
}

.location-info{
    display: flex;
    flex-direction: column;
    width: 22%;
    background-color: rgba(255,255,255,.8);
}

.location-info p{
    padding: 12px 10px;
}
.twitter-info{
    margin: auto;
}

.twitter-icon{
    height: 60px;
    width: 60px;
    background-color:#0bd;
border-radius: 20px;
border: #fff 1px solid;
}

.link-twitter{
    display: block;
    color: #0bd;
    font-weight: bold;
}

.location-map{
    width: 74%;
}

iframe{
width: 100%;
}

/*モバイル用メディアクエリ*/

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

.page-title{
        font-size: 2.5rem;
    }

.main-nav{
    margin-top: 0;
}

.page-header{
    flex-direction: column;
    align-items: center;
}

.logo{
    height: 150px;
    width: 150px;
}

.home-content{
    margin-top: 20px;
}

/*記事部分*/
#news .page-title{
    margin-top: 30px;
}
.news-content{
flex-direction: column;
}
article,aside{
    margin-top: 60px;
    width:100%;
}
.post-date{
    margin-bottom: 30px;
}
.post-date{
    width: 70px;
    height: 70px;
    font-size: 1rem;
}
.post-date span{
    font-size: 0.875rem;
    padding-top: 2px;
}
.post-title{
    font-size: 1.375rem;
}
.post-cat{
    font-size: 0.875rem;
    margin-top: 10px;
}

.post-title,.post-cat{
    margin-left: 80px;
}

/*menu*/
.big-box{
    grid-column:auto;
    grid-row:auto;
}

.big-box img{
    height: 300px;
    width: 300px;
}

#location .wrapper{
flex-direction: column;
}

.location-info{
    width: 100%;
    /* max-width: 500px; */
    padding:0 4%;
    flex-direction: row;
    justify-content: space-around;
    height: auto;
}

.twitter-info{
    margin-top: 35px;
}

.location-map{
    width: 100%;
    margin-top: auto;
}
}