@charset "UTF-8";
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;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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 {
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  word-break: break-all;
  padding-top: 20px;
}
body.is_fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

a:active {
  text-decoration: none;
  color: #212121;
}

a {
  text-decoration: none;
  color: #212121;
}
a:hover {
  opacity: 0.8;
}

div,
a {
  box-sizing: border-box;
}

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

.e_enTxt {
  font-family: "League Spartan", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

[id] {
  scroll-margin-top: 40px;
}

.header {
  box-sizing: border-box;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #f52626;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 3.2vw 4vw;
  }
}
.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__logo {
  display: block;
  width: -moz-max-content;
  width: max-content;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 34.6666666667vw;
  }
}
.header__center {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .header__center {
    top: 21px;
  }
}

/* スマホのみ表示 */
#hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 20px;
  cursor: pointer;
  position: relative;
}

#hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  transition: 0.3s ease;
}

/* ナビ初期非表示 */
#navMenu {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 450px;
  height: 100vh;
  background: #f52626;
  transition: 0.4s ease;
  z-index: 99;
  padding: 80px 40px;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  #navMenu {
    width: 100%;
    padding: 21.3333333333vw 8vw;
  }
}

/* 開いた時 */
#navMenu.active {
  right: 0;
}

#hamburger span:nth-child(2) {
  width: 100%;
  margin-left: auto;
}

#hamburger span:nth-child(3) {
  width: 100%;
  margin-left: auto;
}

/* ×に変形 */
#hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(30deg);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-30deg);
  width: 100%;
}

.hamburger__nav--main > li > a {
  padding: 20px 0;
  display: block;
  border-bottom: 1px solid #fff;
  font-size: 20px;
  color: #fff;
}

.footer {
  box-sizing: border-box;
  background: #fff;
  padding: 80px 40px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 13.3333333333vw 8vw;
  }
}
.footer__inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: block;
  }
}
.footer__nav {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.footer__nav ul li {
  margin-bottom: 10px;
}
.footer__nav ul li a {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer__nav ul li a {
    font-size: 14px;
  }
}
.footer__sns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__sns li img {
  width: 50px;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
  }
}
.footer__copy small {
  letter-spacing: 0.1em;
}

.fade-in {
  opacity: 0;
  /* 初期状態で透明 */
  /* 下に少しずらす */
  transform: translateY(100px);
  transition: all 0.5s ease;
  /* アニメーションの設定 */
}

.fade-in.fade-top {
  transform: translateY(200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-bottom {
  transform: translateY(-200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-left {
  transform: translateX(-200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-right {
  transform: translateX(200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.show {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置 */
}/*# sourceMappingURL=style.css.map */