@charset "UTF-8";
/* scss/module/_index.scss */
.btn-secondary, .btn-white {
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.btn-secondary svg, .btn-white svg {
  width: 24px;
  height: 24px;
}

@keyframes scroll-float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
/* media query */
/* centering */
/* set top position of pseudo element */
/* set pseudo element(no image) */
/* set pseudo element */
/* font set */
body {
  background-color: #fff;
  color: #454545;
  font-family: YakuHanJPs, 游ゴシック, YuGothic, ヒラギノ角ゴProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif !important;
}

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

a {
  text-decoration: none;
}

h3 {
  font-size: 24px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  /* フォーカススタイルを削除する */
  video:focus,
  video:active {
    outline: none;
    border: none;
  }
}
.container {
  width: 100%;
  max-width: 1067px;
  padding: 0 15px;
  margin: 0 auto;
}
.container_header {
  width: 100%;
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto;
}

.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.contents {
  display: contents;
}

.indent {
  text-indent: 1em;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.after_show {
  overflow: hidden;
}
.after_show span, .after_show::before {
  display: inline-block;
  position: relative;
  transform: translate3d(0, 10px, 0);
  transform: perspective(1000px) translate3d(0, 160%, 0) rotateX(-180deg);
}
@media (max-width: 768px) {
  .after_show span, .after_show::before {
    transform: perspective(1000px) translate3d(0, 200%, 0) rotateX(-180deg);
  }
}
.after_show.after span, .after_show.after::before {
  transform: perspective(1000px) translateZ(0);
  transition: transform 0.8s cubic-bezier(0.47, 0.16, 0.24, 1);
}
.after_show.after > *:first-child {
  transition-delay: 0s;
}
.after_show.after > *:nth-child(2) {
  transition-delay: 0.05s;
}
.after_show.after > *:nth-child(3) {
  transition-delay: 0.1s;
}
.after_show.after > *:nth-child(4) {
  transition-delay: 0.15s;
}
.after_show.after > *:nth-child(5) {
  transition-delay: 0.2s;
}
.after_show.after > *:nth-child(6) {
  transition-delay: 0.25s;
}

.btn-link {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  padding: 0 20px;
  background: transparent;
  border-radius: 6px;
  font-size: 16px;
  line-height: 42px;
  border: 1px solid #e9401a;
}

#wrapper.has-bnr {
  margin-top: 58px;
}

.cta {
  background-color: #1a0071;
  background-image: url(/wp-content/themes/cocoon-child-master/library/img/common/bg_cta.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  color: #fff;
}
@media (max-width: 768px) {
  .cta {
    background-size: cover;
  }
}
.cta .container {
  padding: 34px 0;
}
@media (max-width: 768px) {
  .cta .container {
    padding: 20px 10px;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
  }
}
.cta .container h2 {
  font-size: 38px;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .cta .container h2 {
    font-size: 26px;
  }
}
.cta .container p {
  font-size: 22px;
  margin: 20px 0 30px;
}
@media (max-width: 768px) {
  .cta .container p {
    font-size: 16px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 59px;
}
.section-header h2 {
  font-size: 40px;
  letter-spacing: -1.8px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }
}
.section-header .underline {
  width: 141px;
  height: 5px;
  background: #fa6e01;
  margin: 0 auto 20px;
  border-radius: 2.5px;
}
.section-header .subtitle {
  font-size: 16px;
  color: #333;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #00223f;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #00223f;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.btn-primary span, .btn-primary svg {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, stroke 0.3s ease;
}
.btn-primary:hover {
  color: #fff;
}
.btn-primary:hover::before {
  transform: translateX(0);
}
.btn-primary:hover svg path {
  stroke: #fff;
}

.btn-secondary {
  position: relative;
  overflow: hidden;
  background: #00223f;
  color: #fff;
  transition: color 0.3s ease;
  border: 1px solid #00223f;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.btn-secondary span,
.btn-secondary svg {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, stroke 0.3s ease;
  fill: none;
}
.btn-secondary:hover {
  color: #00223f;
}
.btn-secondary:hover::before {
  transform: translateX(0);
}
.btn-secondary:hover svg path {
  stroke: #00223f;
}

.btn-white {
  background: #fff;
  color: #00223f;
}