/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

body {
  line-height:1.5;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
  display:block;
}

nav ul {
  list-style:none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000; 
  font-style:italic;
   font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;   
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}

html{
    font-size: 62.5%;
}

body{
background-color: #cca65f;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.note-link {
  display: inline-block;
  margin: 1em 0; /* 前後のスペース */
  padding: 0.6em 1em; /* 文字周りの余白 */
  color: #FFF; /* テキストカラー */
  font-size: 0.95em; /* フォントサイズ */
  text-decoration: none; /* 下線を消す */
  background: #41C9B3; /* 背景色 */
  border-radius: 3px; /* 角の丸み */
  transition: 0.3s; /* ホバーの変化を滑らかに */
}

/* ホバー時の見た目 */
.note-link:hover {
  background: #FFF; /* 背景色 */
  color: #41C9B3; /* テキストカラー */
}


.lp-link {
  display: inline-block;
  margin: 1em 0; /* 前後のスペース */
  padding: 0.6em 1em; /* 文字周りの余白 */
  color: #FFF; /* テキストカラー */
  font-size: 0.95em; /* フォントサイズ */
  text-decoration: none; /* 下線を消す */
  background: #1D2088; /* 背景色 */
  border-radius: 3px; /* 角の丸み */
  transition: 0.3s; /* ホバーの変化を滑らかに */
}

/* ホバー時の見た目 */
.lp-link:hover {
  background: #FFF; /* 背景色 */
  color: #1D2088; /* テキストカラー */
}


/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
body { 
    font-size: 1.8rem; 
    line-height:1.5;
}
h1 {
    font-size: 3.6rem;
}
h2 {
　  font-size: 2.4rem;
}


/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:479px) and (max-width:768px) {
    body { 
        font-size: 1.8rem; 
        line-height:1.5;
    }
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.4rem;
    }
}


スマホ用のMedia Queries
/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 479px) {
    body { 
        font-size: 1.6rem; 
        line-height:1.5;
    }
    h1{
        font-size: 2.4rem;
    }
    h2 {
        font-size: 2rem;
    }
}