@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}
:root {
  --main-color: #98f5ca;
  --pc-content-width: max(calc(100% - 25vw), calc(100% - 250px));
  --pc-aside-width: min(25vw, 250px);
  --content-max-width: 1200px;
}
html {
  scroll-behavior: smooth;
  scroll-margin: 100px;
  scroll-padding: 100px;
  scrollbar-width: none;
}

.is_pc {
  display: block !important;
}
@media screen and (max-width: 599px) {
  .is_pc {
    display: none !important;
  }
}

.is_sp {
  display: none !important;
}
@media screen and (max-width: 599px) {
  .is_sp {
    display: block !important;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}
main {
  position: relative;
}
main::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/background-pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/****** 下層ページ共通（ページの大枠CSS）ここから ******/
.section_main-content {
  margin-left: var(--pc-aside-width);
  margin-bottom: 120px;
}
.section_main-content .section_inner {
  max-width: 900px;
  padding-top: 50px;
  margin: 0 auto;
}
.section_main-content .section_ttl img {
  display: block;
  margin: 30px auto 60px;
}
@media (max-width: 599px) {
  .section_main-content {
    padding: 100px 30px 0;
    margin-left: 0;
  }
}
/****** 下層ページ共通（ページの大枠CSS）ここまで ******/

/****** 見出しのアニメーションここから ******/
.section_content .section_ttl img,
.section_main-content .section_ttl img {
  animation: bounce 2.5s ease infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
/****** 見出しのアニメーションここまで ******/

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*************************************************
アニメーション
*************************************************/
.fadeUp,
.fadeDown {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  animation-duration: 0.8s;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown {
  animation-name: fadeDownAnime;
  opacity: 1;
}
@keyframes fadeDownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100px);
  }
}
/* .delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
} */

/*************************************************
aside
*************************************************/
aside .aside_pc {
  position: fixed;
  width: 25vw;
  max-width: 250px;
  height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none;
  background: rgba(255, 255, 255, 0.4);
  padding: 50px 0;
  border-right: 2px solid var(--main-color);
  z-index: 999;
}
@media screen and (max-width: 599px) {
  aside .aside_pc {
    display: none;
  }
}
aside .aside_pc .header_pc_img {
  width: 100%;
  max-width: 190px;
  margin: 0 auto;
}
aside .aside_pc .header_pc_img .header_01 {
  max-width: 120px;
}
aside .aside_pc .header_pc_img img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
aside .aside_pc .header_pc_img .header_02 {
  margin-top: 15px;
}
aside .aside_pc .link {
  width: 100%;
  margin: 30px 0;
}
aside .link li a {
  display: block;
  width: 100%;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  padding: 12.5px calc((100% - 125px) / 2);
  transition-duration: 0.4s;
  z-index: 1;
}
aside .link li a::after {
  background: var(--main-color);
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
aside .link li a:hover {
  color: #000;
  transform: scale(1.1);
}
aside .link li a:hover::after {
  transform: scale(1.1);
}
aside .aside_pc .sns {
  display: flex;
  justify-content: space-between;
  max-width: 190px;
  margin: 0 auto;
}
aside .aside_pc .sns li {
  margin-right: 10px;
}
aside .aside_pc .sns li:last-child {
  margin-right: 0;
}
aside .aside_pc .sns li a {
  display: block;
}
aside .aside_pc .sns li a img {
  display: block;
  width: 100%;
  border-radius: 5px;
}
aside .sp_header {
  display: none;
}
@media screen and (max-width: 599px) {
  aside .sp_header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 15px;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
  }
  aside .sp_header .sp_logo {
    height: 60px;
    width: auto;
  }
  aside .sp_header .hamburger {
    position: relative;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 5px;
    padding: 0;
    cursor: pointer;
  }
  aside .sp_header .hamburger span {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s;
    border-radius: 2px;
  }
  aside .sp_header .hamburger span:nth-child(1) {
    top: 13px;
  }
  aside .sp_header .hamburger span:nth-child(2) {
    top: 22px;
  }
  aside .sp_header .hamburger span:nth-child(3) {
    top: 31px;
  }
  aside .sp_header .hamburger.active span:nth-child(1) {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
  }
  aside .sp_header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  aside .sp_header .hamburger.active span:nth-child(3) {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
  }
}
/* スマホメニューのデザインと開閉アニメーション */
aside .aside_sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
}
aside .aside_sp.active {
  pointer-events: auto;
}
aside .aside_sp .sp_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 70px 20px 30px;
  overflow-y: auto;
}
aside .aside_sp.active .sp_menu {
  transform: translateX(0);
}
aside .mask {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
}
aside .aside_sp.active .mask {
  opacity: 1;
}
aside .aside_sp .sp_menu .header_sp_img img {
  display: block;
  margin: 0 auto;
  max-width: 50%;
}
aside .aside_sp .sp_menu .header_sp_img .header_02 {
  margin-top: 15px;
}
aside .aside_sp .sp_menu .link {
  margin: 40px auto 25px;
}
aside .aside_sp .sp_menu .link li {
  margin-bottom: 15px;
  text-align: center;
}
aside .aside_sp .sp_menu .link li a {
  font-size: 18px;
  display: block;
  padding: 5px;
}
aside .aside_sp .sp_menu .sns {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/*************************************************
footer
*************************************************/
footer {
  background-color: var(--main-color);
  position: relative;
  padding-bottom: 30px;
}
footer .section_inner {
  max-width: 1000px;
  width: 100%;
  padding: 60px 20px 0 calc(var(--pc-aside-width) + 20px);
  margin: 0 auto;
}
footer .section_inner .footer_img_01,
footer .section_inner .footer_img_02 {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0 10px;
  margin: 0 auto 90px;
}
/* footer .section_inner .footer_img_02 {
  margin: 250px auto 60px;
} */
footer .section_inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
footer .section_inner ul li {
  padding: 0 20px;
}
footer .section_inner ul li:hover {
  opacity: 0.7;
}
footer .section_inner ul li a {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  /* padding: 12.5px calc((100% - 125px) / 2);
  transition-duration: 0.4s; */
  z-index: 1;
}
@media screen and (max-width: 599px) {
      footer .section_inner {
    padding: 60px 30px 0;
  }
  footer .section_inner .footer_img_01 {
    width: 100%;
  }
  footer .section_inner ul {
    display: none;
  }
}

/* @media screen and (max-width: 599px) {
  footer .section_inner .footer_img_02 {
    width: 100%;
    margin-top: 100px;
  }
} */
footer .section_inner .footer_compnay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-top: 100px;
}
@media screen and (max-width: 599px) {
  footer .section_inner .footer_compnay {
    display: block;
  }
  footer .section_inner .footer_compnay img {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 30px;
  }
}
footer .footer_kv {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-left: min(25vw, 250px);
  width: 100%;
}
@media screen and (max-width: 599px) {
  footer .footer_kv {
    width: 100%;
    left: 0;
    padding: 0;
    transform: translateX(0%);
  }
}
/*************************************************
バナー
*************************************************/
@media screen and (max-width: 599px) {
  .benefits .section_inner {
    padding: 0 !important;
  }
}

/* #benefits {
  color: #fff;
  text-align: center;
  width: var(--pc-content-width);
  height: 100px;
  background-color: #606060;
  margin: 30px 0 60px var(--pc-aside-width);
}
@media screen and (max-width: 599px) {
  #benefits {
    padding: 0 30px;
  }
} */
/* #benefits .section_inner {
  padding-top: 50px;
}
@media screen and (max-width: 599px) {
  #benefits .section_inner {
    padding-top: 150px;
  }
} */
@media screen and (max-width: 599px) {
  #benefits .section_inner .section_ttl img {
    width: 100%;
  }
}
#benefits .section_inner .top_benefits a {
  display: block;
}
#benefits .section_inner .top_benefits a img {
  display: block;
  width: 100%;
}
#benefits .section_inner .top_benefits a:hover {
  opacity: 0.7;
}
#benefits .section_inner .content {
  background-color: #fff;
  padding: 60px 100px;
}
@media screen and (max-width: 599px) {
  #benefits .section_inner .content {
    padding: 30px 15px;
  }
}
#benefits .section_inner .content h3 {
  margin-bottom: 60px;
}
#benefits .section_inner .content h3 img {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  #benefits .section_inner .content h3 img {
    width: 100%;
  }
}
#benefits .section_inner .content .benefits_01 {
  margin-bottom: 60px;
}
#benefits .section_inner .content .benefits_01 h4 {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid #d8002c;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  #benefits .section_inner .content .benefits_01 h4 {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  #benefits .section_inner .content .benefits_01 h4 img {
    width: 30px;
  }
}
#benefits .section_inner .content .benefits_01 .benefits_inner {
  padding: 0 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #benefits .section_inner .content .benefits_01 .benefits_inner {
    padding: 0;
  }
}
#benefits
  .section_inner
  .content
  .benefits_01
  .benefits_inner
  .benefits_explain {
  line-height: 1.6;
  display: block;
  margin: 0 auto;
  width: fit-content;
}
#benefits .section_inner .content .benefits_01 .benefits_inner img {
  display: block;
  width: 100%;
  margin: 30px auto;
}
#benefits
  .section_inner
  .content
  .benefits_01
  .benefits_inner
  .benefits_img_01 {
  margin-top: 30px;
}
#benefits .section_inner .content .benefits_01 .benefits_inner h5 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  width: fit-content;
  margin: 0 auto 50px;
}
#benefits .section_inner .content .benefits_01 .benefits_inner h5::before {
  position: absolute;
  content: url(../images/h5_left.svg);
  width: 8px;
  height: 45px;
  left: -15px;
  top: -50%;
}
#benefits .section_inner .content .benefits_01 .benefits_inner h5::after {
  position: absolute;
  content: url(../images/h5_right.svg);
  width: 8px;
  height: 45px;
  right: -15px;
  top: -50%;
}
#benefits
  .section_inner
  .content
  .benefits_01
  .benefits_inner
  .benefits_text
  p {
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  #benefits
    .section_inner
    .content
    .benefits_01
    .benefits_inner
    .benefits_text
    p {
    font-size: 14px;
  }
}
#benefits
  .section_inner
  .content
  .benefits_01
  .benefits_inner
  .benefits_text
  p
  span {
  font-weight: 600;
}
#benefits
  .section_inner
  .content
  .benefits_01
  .benefits_inner
  .benefits_text
  p
  a {
  text-decoration: underline;
}
#benefits
  .section_inner
  .content
  .benefits_01
  .benefits_inner
  .benefits_text
  .red {
  font-size: 12px;
  color: #d8002c;
  font-weight: 600;
}
#benefits .section_inner .content .benefits_01 .benefits_inner .campaign p {
  display: flex;
  gap: 60px;
}
#benefits
  .section_inner
  .content
  .benefits_01
  .benefits_inner
  .campaign
  p
  span {
  display: inline-block;
  width: 115px;
}
@media screen and (max-width: 599px) {
  #benefits
    .section_inner
    .content
    .benefits_01
    .benefits_inner
    .campaign
    p
    span {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  #benefits .section_inner .content .benefits_01 .benefits_inner .campaign p {
    display: block;
    margin-bottom: 15px;
  }
}
#benefits .section_inner .content .benefits_01 .benefits_inner .more_btn {
  margin-top: 60px;
}
#benefits .section_inner .content .benefits_01 .benefits_inner .more_btn span {
  display: block;
}
#benefits
  .section_inner
  .content
  .benefits_01
  .benefits_inner
  .more_btn
  span
  img {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  #benefits
    .section_inner
    .content
    .benefits_01
    .benefits_inner
    .more_btn
    span
    img {
    width: 100%;
  }
}
#benefits .section_inner .content .benefits_01 .benefits_inner .more_btn a {
  display: block;
  margin: 0 auto;
}
#benefits .section_inner .content .benefits_01 .benefits_inner .more_btn a img {
  display: block;
  width: fit-content;
  margin: 0 auto;
  border-radius: 15px;
}
@media screen and (max-width: 599px) {
  #benefits
    .section_inner
    .content
    .benefits_01
    .benefits_inner
    .more_btn
    a
    img {
    width: 70%;
  }
}
#benefits
  .section_inner
  .content
  .benefits_01
  .benefits_inner
  .more_btn
  a:hover {
  opacity: 0.7;
}
#benefits .section_inner .content .benefits_01 .benefits_cs {
  margin-top: 100px;
}
#benefits .section_inner .content .benefits_01 .benefits_cs p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}
#benefits .section_inner .content .benefits_01 .benefits_cs img {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  #benefits .section_inner .content .benefits_01 .benefits_cs img {
    width: 70%;
  }
}
#benefits .section_inner .content .benefits_02 .chusen {
  width: 490px !important;
}
#benefits .section_inner .content .benefits_02 .benefits_inner_app {
  margin-top: 120px;
}
#benefits .section_inner .content .benefits_02 .benefits_inner {
  position: relative;
  margin-bottom: 60px;
}
#benefits .section_inner .content .benefits_02 .benefits_inner .text_bold {
  margin: 30px auto;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
}
#benefits .section_inner .content .benefits_02 .benefits_inner .benefits_flex {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
#benefits
  .section_inner
  .content
  .benefits_02
  .benefits_inner
  .benefits_flex
  .benefits_flex_inner {
  position: relative;
  width: 270px;
}
#benefits
  .section_inner
  .content
  .benefits_02
  .benefits_inner
  .benefits_flex
  .benefits_flex_inner
  img {
  display: block;
  width: auto;
  height: 65px;
  margin-bottom: 15px;
}
#benefits
  .section_inner
  .content
  .benefits_02
  .benefits_inner
  .benefits_flex
  .benefits_flex_inner
  .benefits_flex_ttl {
  text-align: center;
  font-weight: 700;
  color: #fff;
  background-color: #d8002c;
  width: fit-content;
  padding: 5px 10px;
  margin: 0 auto 15px;
}
#benefits
  .section_inner
  .content
  .benefits_02
  .benefits_inner
  .benefits_flex
  .benefits_flex_inner
  .benefits_flex_text {
  font-size: 13px;
  text-align: center;
}
#benefits
  .section_inner
  .content
  .benefits_02
  .benefits_inner
  .benefits_flex
  .benefits_flex_inner
  .benefits_flex_text
  span {
  color: #d8002c;
}
#benefits .section_inner .content .benefits_02 .benefits_inner .other_01 {
  position: absolute;
  width: 210px;
  display: block;
  height: auto;
  left: 60%;
  top: -120px;
}
@media screen and (max-width: 599px) {
  #benefits .section_inner .content .benefits_02 .benefits_inner .other_01 {
    left: 28%;
  }
}
#benefits .section_inner .content .benefits_02 .benefits_inner .other_02 {
  position: absolute;
  width: 210px;
  display: block;
  height: auto;
  left: 10%;
  top: -120px;
}
#benefits .section_inner .content .benefits_02 .benefits_inner .app {
  display: block;
  width: 65px;
}
#benefits
  .section_inner
  .content
  .benefits_02
  .benefits_inner
  .benefits_app
  .benefits_app_text {
  display: block;
  width: 80%;
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  #benefits
    .section_inner
    .content
    .benefits_02
    .benefits_inner
    .benefits_app
    .benefits_app_text {
    width: 100%;
  }
}
#benefits
  .section_inner
  .content
  .benefits_02
  .benefits_inner
  .benefits_app
  .app_flex {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}
#benefits
  .section_inner
  .content
  .benefits_02
  .benefits_inner
  .benefits_app
  .app_flex
  a:hover {
  opacity: 0.7;
}
#benefits
  .section_inner
  .content
  .benefits_02
  .benefits_inner
  .benefits_app
  .app_flex
  img {
  display: block;
  height: 40px;
  width: auto;
  margin: 15px 0;
}
#benefits
  .section_inner
  .content
  .benefits_02
  .benefits_inner
  .benefits_app
  small
  a {
  text-decoration: underline;
}

/*************************************************
ライブ配信
*************************************************/
#livestream {
  padding-left: 250px;
  margin: 0 auto;
  margin-bottom: 120px;
}
@media screen and (max-width: 599px) {
  #livestream {
    padding: 0 30px;
  }
}
#livestream .section_inner {
  padding-top: 50px;
}
@media screen and (max-width: 599px) {
  #livestream .section_inner {
    padding-top: 150px;
  }
}
#livestream .section_inner .livestream_text {
  background-color: #fff;
  padding: 60px 100px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 30px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}
#livestream .section_inner .livestream_text span {
  display: block;
  font-size: 22px;
  color: #d8002c;
}
@media screen and (max-width: 599px) {
  #livestream .section_inner .livestream_text {
    padding: 60px 30px;
  }
}
#livestream .section_inner .livestream_text .livestream_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto;
}
@media screen and (max-width: 599px) {
  #livestream .section_inner .livestream_text .livestream_btn {
    display: block;
  }
}
#livestream .section_inner .livestream_text .livestream_btn a {
  display: block;
}
@media screen and (max-width: 599px) {
  #livestream .section_inner .livestream_text .livestream_btn a {
    margin-bottom: 30px;
  }
}
#livestream .section_inner .livestream_text .livestream_btn a img {
  display: block;
  border-radius: 15px;
}
@media screen and (max-width: 599px) {
  #livestream .section_inner .livestream_text .livestream_btn a img {
    width: 200px;
    margin: 0 auto;
  }
}
#livestream .section_inner .livestream_text .livestream_btn a:hover {
  opacity: 0.7;
}
