@charset "UTF-8";

/* Global */

@import url("//fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&subset=japanese");
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

* {
  margin: 0;
  border: none;
  border-collapse: collapse;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  background-repeat: no-repeat;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "sans-serif";
  font-feature-settings: "palt";
  text-align: left;
}

a:visited,
a:link,
a:active {
  text-decoration: none;
}

pre,
code,
address,
caption,
th,
figcaption {
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

article,
aside,
footer,
header,
nav,
main,
section,
summary,
details,
hgroup,
figure,
figcaption {
  display: block;
}

audio,
canvas,
video,
progress {
  display: inline-block;
  vertical-align: baseline;
}

button {
  font: inherit;
  vertical-align: middle;
}

li {
  list-style: none;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-size: 10px;
}

a {
  transition: opacity 0.5s;
}

a:hover {
  opacity: 0.7;
}

img {
  vertical-align: bottom;
}

input,
textarea,
select,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media print {
  body {
    color: #000;
  }
  
  a,
  a:link,
  a:visited {
    color: #000;
    text-decoration: none;
  }
}



/* Header */

header {
  width: 100%;
  height: 80px;
  background-color: rgba(255,255,255,0.95);
}

#header-inside {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

#site-logo {
  width: 267px;
}

#site-logo a:hover {
  opacity: 0.7;
}

#site-logo img {
  width: auto;
  height: 80px;
}

@media (max-width: 980px) {
  #main-visual-inside {
    padding: 0 20px;
  }
}



/* Main */

main {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 20px;
}

.title {
  margin-bottom: 60px;
  font-size: 3.6rem;
  font-weight: 500;
  font-family: "Permanent Marker";
  line-height: 4.4rem;
}

@media (max-width: 980px) {
  main {
    padding: 60px 20px;
  }
  
  .title {
    margin-bottom: 40px;
    font-size: 3.2rem;
    line-height: 4rem;
  }
}

@media (max-width: 768px) {
  main {
    padding: 40px 20px;
  }
  
  .title {
    font-size: 3rem;
    line-height: 3.8rem;
  }
}



/* Amazon */

#amazon {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#amazon-img {
  width: 30%;
}

#amazon-img img {
  width: 100%;
}

#amazon-link {
  width: 55%;
}

#amazon-link a {
  display: block;
  margin-bottom: 10px;
  border-bottom: 4px solid #f8991d;
  font-size: 4rem;
  font-weight: 700;
  color: #000;
}

#amazon-link a i {
  margin-right: 2rem;
}

@media (max-width: 980px) {
  #amazon-link a {
    margin-bottom: 9px;
    font-size: 3.6rem;
  }
}

@media (max-width: 768px) {
  #amazon-link a {
    margin-bottom: 8px;
    font-size: 3.2rem;
  }
}

@media (max-width: 560px) {
  #amazon-img {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  
  #amazon-img img {
    width: 60%;
  }
  
  #amazon-link {
    width: 100%;
  }
}



/* Footer */

footer {
  width: 100%;
  background-color: #000;
}

#footer-inside {
  display: table;
  width: 100%;
  max-width: 980px;
  height: 60px;
  margin: 0 auto;
}

#footer-logo {
  display: table-cell;
  vertical-align: middle;
}

#footer-logo img {
  width: auto;
  height: 40px;
}

#copyright {
  display: table-cell;
  font-size: 1.2rem;
  text-align: right;
  vertical-align: middle;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #fff;
}

@media (max-width: 980px) {
  #footer-logo {
    padding-left: 15px;
  }

  #copyright {
    padding-right: 20px;
  }
}  

@media (max-width: 768px) {
  #copyright {
    font-size: 1rem;
  }
}