@charset "UTF-8";
/* ==============================================================
*  BASE
* ============================================================ */
/*
*  reset
* ----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Poppins:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap");
*, ::before, ::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, 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;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

/*
*  font
* ----------------------------------------*/
@font-face {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: 'Noto Serif', serif;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSerif-Regular.ttf") format("truetype");
  font-display: swap;
}
/*
*  base
* ----------------------------------------*/
*:focus {
  outline: none;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  font-feature-settings: "pkna" 1;
}

body {
  color: #333333;
  font-size: 1.36rem;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: none;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
}
@media only screen and (max-width: 1023.98px) {
  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

a {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
}

a, button, input[type=button], input[type=reset], input[type=submit] {
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
}

.wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

main {
  margin-top: 60px;
}
@media only screen and (min-width: 1024px) {
  main {
    margin-top: 80px;
  }
}

.inner {
  max-width: 960px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1023.98px) {
  .inner {
    min-width: inherit;
    width: 90%;
  }
}
@media only screen and (min-width: 1024px) {
  .inner {
    width: 100%;
  }
}