@charset "UTF-8";
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  margin: 0;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: top;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  background-color: #1B1F2D;
}
html img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

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

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

.wrapper {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 15px;
  }
}

.sec-ttl {
  font-size: 40px;
  font-weight: 400;
  font-family: "Oleo Script", cursive;
  text-align: center;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sec-ttl {
    font-size: 36px;
  }
}
.sec-ttl .bar {
  position: relative;
}
.sec-ttl .bar:before {
  content: "";
  width: 70px;
  height: 3px;
  background-color: #DE5454;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-48%);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 3%;
  z-index: 2;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo a {
  font-size: 34px;
  font-weight: 700;
  font-family: "Oleo Script", cursive;
  line-height: 80px;
  transition: 0.3s;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__logo a .red {
  color: #DE5454;
}
.header__menu {
  height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
.header__menu-bars {
  width: 30px;
  height: 10px;
  position: relative;
  transition: 0.3s cubic-bezier(0.694, 0.048, 0.335, 1);
}
.header__menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin-top: 8px;
}
.header__menu span:first-child {
  margin-top: 0;
  transform: scaleX(1);
  transition: transform 0.2s cubic-bezier(0.694, 0.048, 0.335, 1);
  transition-delay: 0.4s;
}
.header__menu span:nth-child(3) {
  width: 65%;
  transition: width 0.2s cubic-bezier(0.694, 0.048, 0.335, 1);
  transition-delay: 0.4s;
}
.header__menu .other-bar {
  width: 2px;
  height: 0;
  background-color: #fff;
  position: absolute;
  top: -4px;
  left: 50%;
  margin-left: -1px;
  transition: height 0.4s cubic-bezier(0.694, 0.048, 0.335, 1);
  z-index: 10;
}
.header__menu.is-open .header__menu-bars {
  transform: rotate(45deg);
  transition-delay: 0.4s;
}
.header__menu.is-open .header__menu-bars span:first-child {
  transform: scaleX(0);
  transition: transform 0.2s cubic-bezier(0.694, 0.048, 0.335, 1);
}
.header__menu.is-open .header__menu-bars span:nth-child(3) {
  width: 0;
  transition: width 0.2s cubic-bezier(0.694, 0.048, 0.335, 1);
}
.header__menu.is-open .header__menu-bars .other-bar {
  height: 29.8px;
  transition: height 0.2s cubic-bezier(0.694, 0.048, 0.335, 1);
  transition-delay: 0.3s;
}
.header__modal {
  display: none;
  position: fixed;
  background-color: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 17vh;
}
.header__modal.is-open {
  display: block;
}
.header__modal-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  margin: auto;
}
.header__modal-item {
  margin: 20px 0;
}
.header__modal-item a {
  font-family: "Oleo Script", cursive;
  font-size: clamp(40px, 4vw, 60px);
}
.header__modal-item a .bar {
  position: relative;
}
.header__modal-item a .bar:after {
  content: "";
  width: 50%;
  height: 3px;
  background: #DE5454;
  position: absolute;
  left: 25%;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.header__modal-item a:hover .bar:after {
  transform: scale(1, 1);
}

.footer {
  padding: 10px 0;
  background-color: #292F43;
}
.footer .copyright {
  font-size: 15px;
  text-align: center;
}

.fadein {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 500ms;
}

.fadein.show {
  opacity: 1;
  transform: translate(0, 0);
}