@charset "UTF-8";
/***********************************************
***  Reset
***********************************************/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-primary: #cf000e;
  --color-secondary: #fccf00;
}

html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: #fff000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: calc(22.75 / 13);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #000;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.08em;
}

a.click-area-link:hover path,
a.click-area-link:hover rect,
a.click-area-link:hover polygon {
  fill: #ebebeb;
}

@media (max-width: 799px) {
  body {
    font-size: 12px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

dl,
dd {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  word-break: break-all;
}

figure {
  margin: 0;
  line-height: 0;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

pre {
  margin: 0;
  font-family: inherit;
  white-space: inherit;
}

p a,
dd a,
pre a {
  display: inline;
  text-decoration: none;
  color: inherit;
}

p a:hover,
dd a:hover,
pre a:hover {
  border-bottom: 0;
}

html:not(.viewport--fixed) {
  -webkit-text-size-adjust: 100%;
}

/***********************************************
***  アニメーション
***********************************************/
/* AOSの移動距離を短くする（例：20pxに変更） */
[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0);
}

[data-aos="fade-down"] {
  transform: translate3d(0, -30px, 0);
}

[data-aos="fade-right"] {
  transform: translate3d(-30px, 0, 0);
}

[data-aos="fade-left"] {
  transform: translate3d(30px, 0, 0);
}


.common-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.3s ease;
}

.common-pagetop.is-show {
  opacity: 1;
  pointer-events: auto;
}

.common-pagetop img {
  display: block;
  width: 100%;
  height: auto;
  animation: pagetopHoverCycle 10s linear infinite;
}

@keyframes pagetopHoverCycle {

  0%,
  80% {
    transform: translateY(0);
  }

  83.333% {
    transform: translateY(-8px);
  }

  86.666% {
    transform: translateY(0);
  }

  90% {
    transform: translateY(-8px);
  }

  93.333% {
    transform: translateY(0);
  }

  96.666% {
    transform: translateY(-8px);
  }

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

@media (max-width: 600px) {
  .common-pagetop {
    width: 45px;
    height: 45px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 400px) {
  .common-pagetop {
    right: 8px;
  }
}

/***********************************************
***  Common class
***********************************************/
.common-section {
  position: relative;
}
.ib {
  display: inline-block;
}

.inner {
  width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

@media (max-width: 500px) {
  .inner {
    width: 90%;
  }
}

.btn-default {
  position: relative;
  display: inline-block;
  width: fit-content;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 40px;
  border: 2px solid var(--color-primary);
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  overflow: hidden;
}

.btn-default a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 6px 30px;
}

.btn-default .btn-arrow {
  display: inline-block;
  margin-left: 8px;
  background: url(/assets/img/common/btn-arrow-red.svg) center / contain no-repeat;
  width: 80px;
  height: 20px;
}

.btn-default .icon-x {
  display: inline-block;
  background: url(/assets/img/common/icon-x.svg) bottom left / contain no-repeat;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.btn-default.break {
  line-height: 1.2;
}

.btn-default a {
  text-decoration: none;
  border: none;
  width: 100%;
  height: 100%;
  display: block;
}


.btn-default a {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  z-index: 0;
  transition: color .3s ease;
}

.btn-default a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20%;
  width: 140%;
  background: var(--color-primary);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  z-index: -1;
}

.btn-default a:hover::before {
  transform: translateX(0) skewX(-20deg);
}

.btn-default a:hover {
  color: #fff;
}

.btn-default:hover .btn-arrow {
  background: url(/assets/img/common/btn-arrow-white.svg) center / contain no-repeat;
}

.btn-default:hover .icon-x {
  background: url(/assets/img/common/icon-x-white.svg) bottom left / contain no-repeat;
}

.btn-default .small {
  font-size: 12px;
}

.link-default {
  color: #000;
  position: relative;
  display: inline;
  z-index: 2;
}

.link-default.white {
  color: #fff;
  position: relative;
}

.link-default:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  bottom: -2px;
  left: 0;
  background-color: var(--color-secondary);
  z-index: 0;
}

.link-default:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  bottom: -2px;
  left: 0;
  background-color: var(--color-accent);
  z-index: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  width: 100%;
}

.link-default:hover:after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.heading-default {
  margin-bottom: 40px;
}

.sub-heading-default {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.sub-heading-default .text {
  padding-top: 10px;
}

.sub-heading-default:after {
  position: absolute;
  content: "";
  background: url("../img/common/border-rainbow.svg");
  background-size: auto 6px;
  background-repeat: repeat-x;
  width: 100%;
  height: 6px;
  right: 0;
  bottom: 0;
}

.lead-default {
  text-align: center;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  line-height: 1.4;
}

.sub-lead-default {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  line-height: 1.4;
}

.common-notice-lists {
  padding-left: 1.5em;
}

.common-notice-list {
  position: relative;
  margin-bottom: 0.5em;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.common-notice-list:before {
  content: "※";
  position: absolute;
  font-size: 10px;
  color: #FF676A;
  left: -1.5em;
  top: 2px;
}

.common-notice-lists.dot .common-notice-list:before {
  content: "・";
  position: absolute;
  font-size: 10px;
  color: #000;
  left: -1.5em;
  top: 2px;
}

.common-notice-lists.number .common-notice-list {
  list-style: decimal;
  position: inherit;
}

.common-notice-lists.notice .common-notice-list {
  margin-bottom: 1em;
}

.common-notice-lists.dot .common-notice-list:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FF676A;
  left: -1.5em;
  top: 6px;
}

.common-notice-lists.dot-gray .common-notice-list:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #9A9A9A;
  left: -1.2em;
  top: 8px;
}

.common-notice-lists.kome .common-notice-list {
  margin-bottom: 0.5em;
}

.common-notice-lists.kome .common-notice-list:before {
  content: "※";
  position: absolute;
  background-color: transparent;
  font-size: 10px;
  color: #000;
  left: -1.5em;
  top: 2px;
}

.common-notice-lists.mb0 .common-notice-list {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .headiing-default {
    margin-bottom: 20px;
  }
}

@media (max-width: 500px) {
  .btn-default {
    font-size: 14px;
  }

  .btn-default a {
    padding: 6px 20px;
  }

  .btn-default .btn-arrow {
    background: url(/assets/img/common/btn-arrow-red-s.svg) center / contain no-repeat;
    width: 50px;
    height: 14px;
  }

  .btn-default:hover .btn-arrow {
    background: url(/assets/img/common/btn-arrow-white-s.svg) center / contain no-repeat;
  }

  .btn-default .icon-x {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  .common-notice-list {
    font-size: 14px;
  }

}

/***********************************************
***  wrapper
***********************************************/
.wrapper {
  overflow-x: hidden;
}

/***********************************************
***  Header
***********************************************/


.global-navigation {
  text-align: center;
}

.global-navigation-lists {
  background-size: contain;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}


.global-navigation-list a {
  display: block;
  position: relative;
}

.global-navigation-list img {
  height: 60px;
  width: auto;
}


#global-navigation-mob-btn-check {
  display: none;
}



.global-navigation-mob-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 100px;
  width: 100px;
  justify-content: center;
  align-items: start;
  z-index: 99999;
  box-shadow: 4px 4px 0 var(--color-accent);
  padding: 10px;
  border-radius: 50%;

  background: url(../img/common/header/nav-btn-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.global-navigation-mob-btn-inner {
  position: relative;
  width: 60px;
  height: 20px;
  margin-top: 54px;
}

.global-navigation-mob-btn-line {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 30px;
}

.global-navigation-mob-btn-line:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 0;
}

.global-navigation-mob-btn-line:nth-of-type(2) {
  position: absolute;
  top: 11px;
  left: 0;
}

.global-navigation-mob-btn-text {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.global-navigation-mob-btn {
  opacity: 0;
  transform: translateY(-20px);
  transition: .3s;
  pointer-events: none;
}

.header.is-show .global-navigation-mob-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-logo {
  width: 50%;
  margin: 40px auto 60px;
}

.global-navigation-lists {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background: transparent;
  position: relative;
}

.global-navigation-list {
  padding: 0;
  margin: 0 auto 30px;
  display: inline-block;
  list-style: none;
  width: 100%;
  text-align: center;
}

.global-navigation-list:nth-child(5),
.global-navigation-list:nth-child(6) {
  border-bottom: none;
}

.global-navigation-list a {
  display: inline-block;
  font-size: 24px;
  box-sizing: border-box;
  color: #000;
  text-decoration: none;
  position: relative;
}

.global-navigation {
  width: 100%;
  height: 100%;
  position: fixed;
  flex-direction: column;
  justify-content: flex-start;
  top: -100vh;
  left: 0;
  z-index: 9999;
  background: #fff;
  overflow-x: hidden;
  transition: all 0.5s;
}

.header.fixed>.global-navigation {
  display: block;
}

#global-navigation-mob-btn-check:checked~.global-navigation {
  top: 0;
  display: block;
  background: var(--color-secondary);
  background-size: 8px 8px;
  background-repeat: repeat;
}

#global-navigation-mob-btn-check:checked~.global-navigation-mob-btn .global-navigation-mob-btn-line {
  top: 8px;
  transform: rotate(15deg);
}

#global-navigation-mob-btn-check:checked~.global-navigation-mob-btn .global-navigation-mob-btn-line:nth-of-type(2) {
  bottom: 0;
  transform: rotate(-15deg);
}

#global-navigation-mob-btn-check:checked~#global-navigation-mob-close {
  display: block;
  opacity: .5;
}

@media (max-width: 1300px) {
  .global-navigation-mob-btn {
    height: 70px;
    width: 70px;
  }

  .global-navigation-mob-btn-inner {
    position: relative;
    width: 40px;
    height: 20px;
    margin-top: 35px;
  }

  .global-navigation-mob-btn-line {
    height: 3px;
  }

  .global-navigation-mob-btn-line:nth-of-type(2) {
    position: absolute;
    top: 8px;
    left: 0;
  }

  .global-navigation-mob-btn-text {
    position: absolute;
    top: 24px;
  }

}

@media (max-width: 800px) {
  .global-navigation-list img {
    height: 40px;
    width: auto;
  }
}


/***********************************************
***  footer
***********************************************/
.share-buttons-circle {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 0 auto;
  justify-content: center;
}

.share-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    opacity .25s ease;
  will-change: transform;
}

.share-btn:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
}

.share-btn:active {
  transform: translateY(-2px) scale(.98);
}

.share-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  transform: scale(.84);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.share-btn:hover::after {
  opacity: 1;
  transform: scale(1);
}

.share-btn-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1em;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
}

.share-facebook {
  background: #1877f2;
  animation-delay: 0s;
}

.share-x {
  background: #000;
  animation-delay: .2s;
}

.share-line {
  background: #06c755;
  animation-delay: .4s;
}

@keyframes shareFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

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

@media screen and (max-width: 767px) {
  .share-buttons-circle {
    gap: 10px;
  }

  .share-btn {
    width: 52px;
    height: 52px;
  }

  .share-btn-icon {
    font-size: 12px;
  }
}

.footer-share {
  color: var(--color-primary);
  font-family: oswald, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.footer {
  background: linear-gradient(to top, #fccf00, #fff000);
}

.footer-logo {
  width: 500px;
  margin: 0 auto 20px;
}

.footer-sns-container {
  padding: 120px 0;
  border-top: 1px solid var(--color-primary);
  text-align: center;
}

.footer-bnr-container {
  background: #000;
  padding: 60px 10px;

}

.footer-bnr-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  width: fit-content;
  margin: 0 auto 40px;
}

.footer-copyright {
  font-size: 11px;
  text-align: center;
  color: #fff;
  margin-top: 20px;
}

@media (max-width: 800px) {

  .footer-logo {
    width: 60%;
    margin: 0 auto 20px;
  }
}

@media (max-width: 600px) {

  .footer-bnr-lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 auto 60px;
  }

  .footer-sns-container {
    padding: 40px 0;
  }

  .footer-share {
    color: var(--color-primary);
    margin-top: 20px;
    margin-bottom: 5px;
  }
}