@charset "UTF-8";
 
 /* すべてのページに適用される　*/
 
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
	font-family: sans-serif;
}
html * {
	box-sizing: border-box;
}
body {
  margin: 0 0 0 0;
  background-color:rgb(255, 255, 255);
}

/* メイン */
.wrapper {
	margin: 0 auto 0 auto;
	max-width: 960px;
}

li {
  margin-left:40px;
}

h1{
  font-size: 22px;
  margin: 8px auto 0 auto;
  text-align: left;
  color:#000000;
}
h2{
  font-size: 30px;
  margin: auto auto 15px;
  text-align: left;
  color:#000000;
}

p {
  text-align:left;
  font-size: 15px;
  margin: 0;
  color: #000000;
}

img {
	max-width: 80%;
  height: auto;
}

.mailimage{
  max-width: 38%;
  margin: 30px 0 0 0;
}
hr {
  height: 1px;
  background-color: rgb(207, 207, 207);
  margin: 0 auto 10px auto;
  width: auto;
  border: none;
}



/* フッター内容 */
.footermenu{
  display: flex;  /*横並びにする*/
  justify-content: center;  /*左によってしまうので中央に寄せる*/
  margin: 15px 0 5px 0;
}
ul.footer {
  list-style: none;
  display: flex;
}
a.footersub{
  font-size: 13px;
  font-weight: normal;
}
.copyright{
  text-align: center;
  font-size: 12px;
}
/*　リンクしている文字アンダーバー（青）を消す*/
a {	
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 20px;
}
a:hover{
  /*background: #94b4fa; （色を変える場合） */
  opacity:0.3;  /*（不透明度50％の場合）*/
}

@media screen and (max-width: 930px){
  header{
    flex-direction: column; /*縦に並べる*/
    padding:0.5% 2%;  /* ロゴ上下に4%の余白　左右に2%の余白*/
    align-items: center;  /*ロゴ、メニューの文字を垂直中央に並べる*/
    margin: 0 0 0 0;
  }
  
  /* スライダーはじめ */
 .container {
    position: relative;
    margin:5px auto 20px auto;
  }
}

/* スマートフォン向けCSS 767px以下になると表示が下のように変わる */
@media screen and (max-width: 767px) {
  /*全体　-ナビゲーション- */
  .wrapper {
	margin: 0;
  overflow:hidden;
  }


  /* サポートメール　大きさ */
  .mailimage{
    max-width: 90%;
    margin: 30px 0 0 0;
  }
}