@import url('https://fonts.googleapis.com/css?family=Saira+Condensed:wght@100|Noto+Sans+JP&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-weight: normal;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 共通設定 */
body {
  text-align: justify;
  word-break: break-all;
  line-height: 1.7;
  letter-spacing: 0.1em;
  background: #e9dacb;
  font-size: 13px;
  color: #943C46;
  /* 全画面表示 */
  height: 100vh; 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /* ロード */
  overflow-x: hidden;
  opacity: 1.0;
  -webkit-transition: 2s opacity;
  -moz-transition: 2s opacity;
  -ms-transition: 2s opacity;
  -o-transition: 2s opacity;
  transition: 2s opacity;
}

body.load-in {
  opacity: 0;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

/* リンク */
a {
  transition: .8s color;
  text-decoration: none;
  color: #943c46;
  font-family: 'Saira Condensed', 'Noto Sans JP', sans-serif;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}

footer a {
  font-weight: bold;
}

/* ホバー */
a:hover {
  color: #cfa946;
}

::selection
{
  background: #f5d789;
}
/* for Firefox */
::-moz-selection
{
  background: #f5d789;
}

/* メインコンテンツ */
main {
  margin: 5em auto 3em;
  width: 75%;
}

/*コンテンツ*/
.top_img {
  padding: 2em 6em;
  text-align: center;
}

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

/*フッター*/
footer {
  margin: 1em auto;
  text-align: center;
}

