@charset "utf-8";

/******* リセット記載 ******/
* {
  padding: 0;
  margin: 0;
}

body {
  font-family: sans-serif;
  line-height: 1;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  display: block;
}


img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/******* リセット記載終了 ******/


/******* 共通CSS *******/

.container{
  width: 960px;
  margin: 0 auto;
}

.wrap{
  display: flex;
  justify-content: space-between;
}

header,h3,footer{
  background: #365699;
  color: #fff;
}

h2{
  border-left: 1em solid #365699;
  padding-left: 0.3em;
  margin-bottom: 20px;
}

/******* 共通CSS記載終了 *******/

main,.side_bar{
padding: 50px 0;
}

main{
  width: calc(100% * (630/960));
}

.side_bar{
  width: calc(100% * (300/960));
}

header{
  padding: 20px 0;
}

h1{
  background: url(../img/logo.png) no-repeat left center;
  line-height: 50px;
  padding-left: 50px;
}

header p{
  font-weight: bold;
  padding-left: 50px;
}

/******* ナビゲーション *******/

nav{
  background: linear-gradient(#dedefd,#aeb5e3);
}

nav li{
  text-align: center;
  width: 20%;
  line-height: 50px;
}

nav a{
  color: #365699;
}

nav a:hover{
  background: linear-gradient(#aeb5e3, #dedefd);
}


h3{
  padding: 10px 0 10px 10px;
  margin-bottom: 10px;
}



/******* メイン *******/

main img{
  float: left;
  margin-right: 10px;
}

main section+section {
  margin-top: 30px;
}


main section p{
  overflow: hidden;
  line-height: 1.5;
}

section .more a{
  background: #f00;
  color: #fff;
  width: 7em;
  float: left;
  padding: 5px 5px 5px 10px;
  margin-top: 10px;
}

.more a:hover{
background: #900;
}

main span{
  padding-left: 10px;
}


/******* キービジュアル *******/

.key_visual{
  background: url(../img/mall_bg2.jpg) no-repeat center top/cover;
  text-align: center;
  color: #fff;
  padding: 100px 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 45px;
  line-height: 1.2;
}

/******* サイドバー *******/

.side_bar dl>dd{
  margin: 10px 0;
  line-height: 1.5;
  
}

.side_bar dt{
  color: #900;
  font-weight: bold;
}

.side_bar dl a{
  text-decoration: underline;
  color: #00f;
  margin-left: 30px;
}


footer{
  padding: 30px 0;
}



