@charset "utf-8";

/* ==========================================================================
   Reset
   ========================================================================== */

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,
main,
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;
}

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

ul,
ol {
   list-style: none;
}

blockquote,
q {
   quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
   content: none;
}

a {
   margin: 0;
   padding: 0;
   font-size: 100%;
   vertical-align: baseline;
   background: transparent;
}

ins {
   background-color: #ff9;
   color: #000;
   text-decoration: none;
}

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;
}

hr {
   display: block;
   height: 1px;
   border: 0;
   border-top: 1px solid #cccccc;
   margin: 1em 0;
   padding: 0;
}

input,
select {
   vertical-align: middle;
   font: inherit;
}

img {
   vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-weight: normal;
}

body {
   margin: 0;
   font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'UD Shin Go Light', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
   background: #fff;
   color: #000;
   font-size: 20px;
   font-weight: 400;
   line-height: 1.4;
}

#container {
   position: relative;
   overflow: hidden;
   width: 100%;
   min-width: 375px;
   height: auto !important;
   height: 100%;
   min-height: 100%;
}

#header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px;
   background: #fff;
   max-width: 1920px;
   margin: auto;
}

.under768,
.under500 {
   display: none;
}

/* animation style*/

@keyframes fadeIn {
   0% {
      opacity: 0;
      transform: translateY(100px);
   }

   100% {
      opacity: 1;
      transform: translateY(0);
   }
}

.fadeIn {
   opacity: 0;
}

.fadeIn.is-active {
   animation: fadeIn .6s forwards;
}

/*END animation style*/

@media (max-width: 768px) {
   body {
      font-size: 16px;
   }

   .under768 {
      display: block;
   }

   #header {
      padding: 10px;
   }

   #header .header__logo {
      width: 100px;
      height: auto;
   }

   #header .header__logo img {
      width: 100%;
      height: auto;
   }

   .section_inner {
      padding: 0 40px;
   }
}

@media (max-width: 500px) {

   .under500 {
      display: block;
   }

   .over500 {
      display: none;
   }

   .section_inner {
      padding: 0 10px;
   }
}

#footer {
   font-family: 'Noto Sans JP', 'Yu Gothic', 'UD Shin Go Light', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
   padding: 30px 0 20px;
   margin: auto;
   background: #fff;
   text-align: center;
   font-size: 14px;
}

.section_inner {
   max-width: 1920px;
   margin: auto;
}

a {
   color: #000;
   text-decoration: none;
}
