@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --white-color: #fff;
  --gray-color: #aaa;
  --primary-color: rgba(0, 43, 96, 1);
  --accent-color: rgba(230, 0, 18, 1);
}

:root {
  /* コンテンツ幅管理用の変数 */
  /* スマホサイズ　428px */
  --content-width-sm: 800px;
  --content-width: 1080px;
  --content-width-lg: 1088px;
  --content-width-max: 1680px;
}

:root {
  --font-family-normal: "Noto Sans JP", sans-serif;
  --font-family-en: 'Racing Sans One';
}


/* ---------- base ---------- */
body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 740px) {
  body p {
    font-size: 14px;
  }
}

/* ---------- utility ---------- */
.u_lg-dn {
  display: block;
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg,
.l_container-max {
  width: 100%;
  padding: 0 32px;
  margin: 0 auto;
}

@media screen and (max-width: 740px) {

  .l_container-sm,
  .l_container,
  .l_container-lg,
  .l_container-max {
    padding: 0 16px;
  }
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 48px);
}

.l_container {
  max-width: calc(var(--content-width) + 48px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 48px);
}

.l_container-max {
  max-width: calc(var(--content-width-max) + 48px);
}

.l_contents {
  padding: 120px 0;
}

@media screen and (max-width: 740px) {
  .l_contents {
    padding: 64px 0;
  }
}

.header {
  width: 100%;
  /* position: absolute; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 1);

}

.l_header {
  height: 100px;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px;
  /* background-color: rgba(0, 163, 175, 0.5); */
}

@media screen and (max-width: 1080px) {
  .l_header {
    height: 100px;
    padding: 24px 48px;
  }
}

@media screen and (max-width: 740px) {
  .l_header {
    height: 64px;
    padding: 8px 16px;
  }
}

.l_header-logo img {
  width: 200px;
}

@media screen and (max-width: 428px) {
  .l_header-logo img {
    width: 120px;
  }
}

@media screen and (max-width: 1080px) {
  .l_header-nav {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-color);
    z-index: var(--z-index-header);
  }
}

.l_header-nav_list {
  display: flex;
  font-size: 28px;
  gap: 32px;
  line-height: 24px;
  font-family: 'Racing Sans One';
  color: var(--primary-color);

}

.l_header-nav_item {
  text-align: center;
}

.l_header-current-nav {
  color: var(--accent-color);
}

.l_header-nav_link_jp {
  display: block;
  font-size: 12px;
  text-align: center;
  line-height: 18px;
  font-weight: bold;
}

@media screen and (max-width: 424px) {
  .l_header-nav_link_jp {
    font-size: 10px;
  }
}


.l_header-nav a:hover {
  color: var(--accent-color);
  transition: 0.2s;
}



/* ---------- module ---------- */

.m_hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: var(--z-index-menu);
}

@media screen and (min-width:1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 3px;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  transition: 0.5s;
}

.m_hamburger-bar {
  background-color: var(--primary-color);
}


.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}


.breadcrumb {
  background-color: rgba(0, 163, 175, 0.7);
  height: 64px;
}

@media screen and (max-width: 424px) {
  .breadcrumb {
    height: 48px;
  }
}

.m_breadcrumb {
  display: flex;
  gap: 0 22px;
  list-style: none;
  font-size: 14px;
  padding-top: 16px;
  color: var(--white-color);

}

@media screen and (max-width: 740px) {
  .m_breadcrumb {
    font-size: 10px;
    gap: 8px;
    margin-left: 8px;
  }
}

.m_breadcrumb li {
  display: flex;
  align-items: center;

}

.m_breadcrumb li:first-child::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 4px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M11.7%207.5%204%2013.8v6.8c0%20.4.3.7.7.7h4.7c.4%200%20.7-.3.7-.7v-4c0-.4.3-.7.7-.7h2.7c.4%200%20.7.3.7.7v4c0%20.4.3.7.7.7h4.7c.4%200%20.7-.3.7-.7v-6.8l-7.7-6.3h-.9zm12.1%204.4L20.3%209V3.2c0-.3-.2-.5-.5-.5h-2.3c-.3%200-.5.2-.5.5v2.9L13.3%203c-.7-.6-1.8-.6-2.5%200L.2%2011.8c-.2.2-.3.5-.1.7l1.1%201.3c.2.2.5.2.7.1l9.8-8.1h.6l9.8%208.1c.2.2.5.1.7-.1l1.1-1.3c.2-.2.1-.5-.1-.6z%22%20style%3D%22fill%3A%23333333%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  content: '';
}

.m_breadcrumb li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: .3em;
  height: .3em;
  margin-left: 10px;
  border-top: 2px solid var(--white-color);
  border-right: 2px solid var(--white-color);
  content: '';
}

.m_breadcrumb a {
  color: var(--white-color);
  text-decoration: none;
}

.m_label_title {
  background-color: var(--primary-color);
  color: var(--white-color);
  height: 64px;
  width: 400px;
  text-align: right;
  padding-top: 24px;
  padding-right: 16px;
  position: relative;
  font-size: 20px;
  font-family: 'Racing Sans One';
}

@media screen and (max-width: 740px) {
  .m_label_title {
    width: 300px;
    height: 48px;
    padding-top: 20px;
  }

  .m_label_title p {
    font-size: 16px;
  }
}

.m_label_title::before {
  content: "";
  width: 6px;
  height: 80%;
  background-color: var(--accent-color);
  position: absolute;
  left: 16px;
  top: 10%;
}

@media screen and (max-width: 740px) {
  .m_label_title::before {
    width: 4px;
  }
}

.m_viewmore_btn {
  width: 140px;
  height: 40px;
  color: var(--accent-color);
  border: 2px solid var(--primary-color);
  display: inherit;
  padding: 5px 24px;
  transition: 0.2s;
  line-height: 16px;
  position: relative;
  font-weight: bold;
}

@media screen and (max-width: 740px) {
  .m_viewmore_btn {
    width: 100px;
    height: 32px;
    padding: 0;
    border: 1px solid var(--primary-color);
  }
}

.m_viewmore_btn::before {
  content: "";
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  border-left: 10px solid var(--primary-color);
  border-bottom: 10px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.m_viewmore_jp {
  font-size: 12px;
}

.m_viewmore_btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  /* border: 2px solid var(--); */
  transition: 0.2s;
}

.m_viewmore_btn a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 10px 0px;
}

@media screen and (max-width: 740px) {
  .m_viewmore_btn a {
    padding: 8px 0px;
  }
}

.m_title {
  position: relative;
  height: fit-content;
  width: fit-content;
  padding: 0 8px;
  margin: auto;
}

.m_title::after {
  content: "";
  width: 4px;
  height: 90%;
  background-color: var(--accent-color);
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
}

.m_title_en {
  font-size: 32px;
  font-weight: bold;
  line-height: 32px;
  font-family: 'Racing Sans One';
}

.m_title_jp {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
}

.m_loop {
  /* height: 560px; */
  /* padding-top: 30px; */
  /* padding-bottom: 30px; */
  overflow: hidden;
}

@media screen and (max-width: 740px) {
  .m_loop {
    /* height: 240px; */
  }
}

.m_loop__box {
  display: flex;
  width: 100vw;
  height: 100%;
}

.m_loop__box img {
  min-width: 100vw;
  opacity: 0.3;
  /* height: auto; */
}

@media screen and (max-width: 740px) {
  .m_loop__box img {
    min-width: 200vw;
  }
}

.m_loop__box img:nth-child(odd) {
  animation: loop 20s -10s linear infinite;
}

.m_loop__box img:nth-child(even) {
  animation: loop2 20s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}


.m_img_tile {
  width: 50%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media screen and (max-width: 1080px) {
  .m_img_tile {
    width: 100%;
    gap: 8px;
    justify-content: center;
  }
}

.m_img_box img {
  width: 160px;
  height: 160px;
  object-fit: cover;
}

@media screen and (max-width: 1080px) {
  .m_img_box img {
    width: 100px;
    height: 100px;
  }
}

.m_img_color_box {
  width: 160px;
  height: 160px;
}

@media screen and (max-width: 1080px) {
  .m_img_color_box {
    width: 100px;
    height: 100px;
  }
}

.m_page_top_ttl {
  margin-top: 160px;
  text-align: center;
}

@media screen and (max-width: 740px) {
  .m_page_top_ttl {
    margin-top: 120px;
  }
}

.m_page_top_ttl_en {
  font-size: 64px;
  font-family: 'Racing Sans One';
  color: var(--primary-color);
  line-height: 64px;
}

@media screen and (max-width: 740px) {
  .m_page_top_ttl_en {
    font-size: 48px;
    line-height: 48px;
  }
}

.m_page_top_ttl_jp {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 740px) {
  .m_page_top_ttl_jp {
    font-size: 18px;
  }
}

.m_page_top_ttl_accent {
  color: var(--accent-color);
}

.m_title_line {
  width: fit-content;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  margin-bottom: 16px;
}

@media screen and (max-width: 740px) {
  .m_title_line {
    font-size: 20px;
  }
}

.m_title_line::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  background-color: var(--accent-color);
  left: -16px;
}

@media screen and (max-width: 740px) {
  .m_title_line::before {
    width: 3px;
    left: -8px;
  }
}

.m_pdf_link {
  text-decoration: underline;
  font-weight: bold;
}

/* foooter */
.l_footer {
  margin-top: 64px;
  /* background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(0, 153, 188, 0.4) calc(100% - 1px)),
linear-gradient(90deg, transparent calc(100% - 1px), rgba(0, 153, 188, 0.4) calc(100% - 1px));
background-size: 32px 32px;
background-repeat: repeat;
background-position: center center;
background-color: rgba(250, 250, 250, 0.8); */
}

@media screen and (max-width: 740px) {
  .l_footer {}
}

.footer_container {
  margin: 48px;
}

@media screen and (max-width: 740px) {
  .footer_container {}
}

.l_footer_top {
  display: flex;
  justify-content: space-around;
}

@media screen and (max-width: 740px) {
  .l_footer_top {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}

.l_footer_top img {
  width: 40%;
}

@media screen and (max-width: 1080px) {
  .l_footer_top img {
    width: 300px;
  }
}

@media screen and (max-width: 740px) {
  .l_footer_top img {
    width: 100%;
  }
}

.l_athle_name {
  font-size: 20px;
}

@media screen and (max-width: 740px) {
  .l_athle_name {
    margin-bottom: 16px;
  }
}

.l_athle_address {
  margin: auto 0;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
}

@media screen and (max-width: 740px) {
  .l_athle_address {
    margin-top: 24px;
    margin-left: 16px;
    text-align: center;
    font-size: 8px;
    line-height: 16px;
  }
}

.l_footer_nav {
  display: flex;
  justify-content: center;
  margin: 48px 0;
}

@media screen and (max-width: 1080px) {
  .l_footer_nav ul {
    display: block;
  }

  .l_footer_nav li {
    text-align: center;
    margin-top: 24px;
  }
}

.l_footer_copyright {
  background-color: var(--primary-color);
}

.l_footer_copyright p {
  text-align: center;
  font-size: 14px;
  padding: 8px 0;
  color: var(--white-color);
}


/* home top_kv*/
.top_kv {
  height: 70vh;
  background-color: var(--white-color);
  /* 赤の玉　*/
  animation: boundx 2.5s linear infinite alternate, boundy 3s linear infinite alternate;
  background-image: url(/img/circle.png);
  background-size: 400px 400px;
  background-repeat: no-repeat;
  margin-top: 100px;
  margin-bottom: 32px;
}

@media screen and (max-width: 740px) {
  .top_kv {
    height: 60vh;
    background-image: url(/img/circle.png);
    animation: boundx 2.3s linear infinite alternate, boundy 2.5s linear infinite alternate;
    background-size: 160px 160px;
    padding-bottom: 64px;
    margin-top: 64px;
    margin-bottom: 0px;
  }
}

@keyframes boundx {
  0% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: 100%;
  }
}

@keyframes boundy {
  0% {
    background-position-y: 100%;
  }

  33% {
    background-position-y: 45%;
  }

  66% {
    background-position-y: 15%;
  }

  100% {
    background-position-y: 0%;
  }
}

.top_kv_wrapper {
  height: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.top_kv_wrapper {
  width: 90%;
}

.top_kv_box {
  width: 400px;
  height: 400px;
  border: 5px solid var(--primary-color);
  position: absolute;
  right: 0;
  top: 160px;
}

@media screen and (max-width: 740px) {
  .top_kv_box {
    border: 3px solid var(--primary-color);
    width: 200px;
    height: 200px;
    top: 150px;
  }
}

.top_kv_logo {
  width: 600px;
  position: absolute;
  right: 16px;
  top: 320px;
}

@media screen and (max-width: 740px) {
  .top_kv_logo {
    width: 320px;
    top: 220px
  }
}

.top_kv_cp {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 24px;
  position: absolute;
  bottom: 0;
  top: 20%;
}

@media screen and (max-width: 740px) {
  .top_kv_cp {
    top: 20%;
  }
}

/* home top_policy */
@media screen and (max-width: 740px) {
  .top_policy {
    /* margin-top: 96px */
  }
}

.top_policy_top {
  display: flex;
  justify-content: space-around;
}

@media screen and (max-width: 740px) {
  .top_policy_top {
    display: block;
  }
}

.top_policy_what {
  width: 60%;
}

@media screen and (max-width: 740px) {
  .top_policy_what {
    width: 100%;
  }
}

.top_policy_what_txt {
  margin: 24px 0;
}

.top_policy_what_img {
  width: 300px;
}

@media screen and (max-width: 740px) {
  .top_policy_what_img {
    width: 70%;
    margin: 24px auto;
  }
}

.top_policy_what_btn {
  display: flex;
  justify-content: end;
}

.top_policy_bottom {
  width: 100%;
  /* height: 100vh; */
  background-color: var(--primary-color);
  margin: 96px 0;
  color: var(--white-color);
  padding: 64px 0;
  position: relative;
}

@media screen and (max-width: 740px) {
  .top_policy_bottom {
    margin: 32px 0;
    padding: 48px 0;
  }
}

.top_policy_bottom::before {
  position: absolute;
  content: "SPORTS EDUCATION SPORTS EDUCATION";
  font-family: 'Racing Sans One';
  white-space: nowrap;
  font-size: 160px;
  opacity: 0.2;
  top: 22%;
  left: -3%;
}

@media screen and (max-width: 740px) {
  .top_policy_bottom::before {
    font-size: 96px;
    top: 36%;
  }
}

.top_policy_bottom::after {
  position: absolute;
  content: "WE HAVE ATHLETIC MIND! WE HAVE ATHLETIC MIND!";
  font-family: 'Racing Sans One';
  white-space: nowrap;
  font-size: 160px;
  opacity: 0.2;
  top: 57%;
  left: -3%;
}

@media screen and (max-width: 740px) {
  .top_policy_bottom::after {
    font-size: 96px;
    top: 73%;
  }
}

.top_policy_bottom_top {
  display: flex;
  flex-direction: row-reverse;

}

.policy .top_policy_bottom_top {
  flex-direction: row;
}

@media screen and (max-width: 740px) {
  .top_policy_bottom_top {
    display: block;
  }
}

.top_policy_bottom_bottom {
  display: flex;
  justify-content: end;
}

.top_policy_box {
  width: 60%;
  border: 1px solid var(--white-color);
  padding: 56px;
  margin: 48px 0;
  position: relative;
  font-family: 'Racing Sans One';
}

@media screen and (max-width: 740px) {
  .top_policy_box {
    width: 100%;
    padding: 40px 24px;
    margin: 24px 0;
  }
}

.top_policy_box::before {
  content: "";
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  border-left: 30px solid var(--accent-color);
  border-bottom: 30px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 740px) {
  .top_policy_box::before {
    border-left: 20px solid var(--accent-color);
    border-bottom: 20px solid transparent;
  }
}

.top_policy_box::after {
  content: '';
  position: absolute;
  left: 5%;
  width: 1px;
  background-color: var(--white-color);
  animation: border_anim_1 3s ease-out forwards infinite;
}

@keyframes border_anim_1 {
  0% {
    height: 0%;
  }

  100% {
    height: 40%;
  }
}

@media screen and (max-width: 740px) {
  .top_policy_box::after {
    content: '';
    position: absolute;
    left: 5%;
    width: 1px;
    background-color: var(--white-color);
    animation: border_anim_1 4s ease-out forwards infinite;
  }

  @keyframes border_anim_1 {
    0% {
      height: 0%;
    }

    100% {
      height: 25%;
    }
  }
}

.top_policy_box p:nth-child(1) {
  font-size: 24px;
  font-weight: bold;
}

.top_policy_bottom_btn {
  display: flex;
  justify-content: center;
  margin: 64px;
}

@media screen and (max-width: 740px) {
  .top_policy_bottom_btn {
    margin: 16px 0px 0px 0;
  }
}

.top_policy_bottom_btn .m_viewmore_btn {
  color: var(--white-color);
  border: 1px solid var(--white-color);
}

.top_policy_bottom_btn .m_viewmore_btn:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
  border: 2px solid var(--white-color);
}

.top_policy_bottom_btn .m_viewmore_btn::before {
  content: "";
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  border-left: 10px solid var(--accent-color);
  border-bottom: 10px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}

/*home top_service  */
.top_service {
  margin-top: 160px;
  margin-bottom: 160px;
}

@media screen and (max-width: 740px) {
  .top_service {
    margin-top: 96px;
    margin-bottom: 64px;
  }
}

.top_service_ttl .m_title {
  position: relative;
  margin-left: 32px;
}

@media screen and (max-width: 740px) {
  .top_service_ttl .m_title {
    margin-left: 50%;
  }
}

.top_service_ttl .m_title::before {
  /* content: ""; */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  position: absolute;
  left: -25%;
  top: -85%;
}

.top_service_row {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.top_service_row_2 {
  flex-direction: row-reverse;
  margin-top: 64px;

}

@media screen and (max-width: 740px) {
  .top_service_row {
    display: block;
  }
}

.top_service_img_1 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-image: url(/img/service_1.jpg);
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 740px) {
  .top_service_img_1 {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
}

.top_service_img_1::after {
  content: "";
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--accent-color);
  position: absolute;
  bottom: -10%;
  right: -10%;
}

@media screen and (max-width: 740px) {
  .top_service_img_1::after {
    width: 120px;
    height: 120px;
  }
}

.top_service_img_2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-image: url(/img/service_2.jpg);
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 740px) {
  .top_service_img_2 {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
}

.top_service_img_2::after {
  content: "";
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  bottom: -10%;
  left: -10%;
}

@media screen and (max-width: 740px) {
  .top_service_img_2::after {
    width: 120px;
    height: 120px;
  }
}

.top_service_txt {
  width: 40%;
  font-weight: bold;
}

@media screen and (max-width: 740px) {
  .top_service_txt {
    width: 90%;
    margin: 24px auto 8px auto;
  }
}

.top_service_txt h3 {
  font-size: 24px;
  font-weight: bold;
}

.top_service_btn {
  margin-top: 16px;
}

.top_service_btn .m_viewmore_btn {
  width: 120px;
  padding: 8px;
  font-size: 14px;
}

/* home top_club */
.top_club {
  margin-top: 128px;
  margin-bottom: 160px;
  color: var(--primary-color);
}

@media screen and (max-width: 1080px) {
  .top_club {
    margin-top: 96px;
    margin-bottom: 96px;
  }
}

@media screen and (max-width: 740px) {
  .top_club {
    margin-top: 48px;
  }
}

.top_club .m_title_line {
  margin-left: 32px;
}

.top_club_row {
  margin-top: 48px;
  margin-bottom: 128px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.top_club_pka_row {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1080px) {
  .top_club_row {
    display: block;
    margin-top: 32px;
    margin-bottom: 64px;
  }
}

.top_club_txt {
  width: 50%;
}

@media screen and (max-width: 1080px) {
  .top_club_txt {
    width: 100%;
  }
}

.top_club_txt img {
  height: 200px;
  width: auto;
  margin: 0 auto;
  display: flex;
}

@media screen and (max-width: 1080px) {
  .top_club_txt img {
    height: 120px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

.top_club_txt_ttl {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin: 24px 0;
}

@media screen and (max-width: 1080px) {
  .top_club_txt_ttl {
    font-size: 18px;
    margin: 16px 0 8px 0;
  }
}

.top_club_img_color_box_1 {
  background-color: var(--primary-color);
}

.top_club_img_color_box_2 {
  background-color: rgba(0, 104, 187, 1);
}

.top_club_img_color_box_3 {
  background-color: var(--accent-color);
}

.top_club_img_color_box_4 {
  background-color: rgba(0, 153, 188, 1);
}

.club_link {
  text-align: right;
}

.club_link a:hover {
  color: var(--accent-color);
}

.top_club_btn {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

/* policy */
.policy_cp {
  width: 70%;
  height: 100%;
  margin: 24px auto;
  /* margin: 64px auto 48px auto; */
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  color: var(--primary-color);
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .policy_cp {
    width: 85%;
    margin: 64px auto 48px auto;
  }
}

.policy_cp_wrapper {
  padding: 64px 0;
  width: 70%;
  margin: 0 auto;
  /* height: 80vh;
background-color: var(--white-color); */
  /* 赤の玉　*/
  animation: boundx 4.5s linear infinite alternate, boundy 3.5s linear infinite alternate;
  /* background-image: radial-gradient(40px, var(--accent-color) 100%, transparent 100%); */
  background-image: url(/img/circle.png);
  background-size: 160px 160px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 740px) {
  .policy_cp_wrapper {
    width: 100%;
    padding: 32px 0;
    background-size: 100px 100px;
  }
}

@keyframes boundx {
  0% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: 100%;
  }
}

@keyframes boundy {
  0% {
    background-position-y: 100%;
  }

  33% {
    background-position-y: 45%;
  }

  66% {
    background-position-y: 15%;
  }

  100% {
    background-position-y: 0%;
  }
}


.policy_greeting {
  color: var(--primary-color);
  width: 70%;
  margin-top: 48px;
  margin-bottom: 160px;
}

@media screen and (max-width: 740px) {
  .policy_greeting {
    width: 90%;
    margin-top: 48px;
    margin-bottom: 64px;
  }
}

/* team */
.team_top {
  background-color: var(--primary-color);
  padding: 160px;
  margin-top: 64px;
  color: var(--white-color);
  position: relative;
}

@media screen and (max-width: 1080px) {
  .team_top {
    padding: 48px 16px;
    margin-top: 32px;
  }
}

.team_representative {
  display: flex;
  gap: 32px;
  width: 60%;
  min-width: 600px;
  margin: 0 auto;
  color: var(--white-color);
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .team_representative {
    display: block;
    width: fit-content;
    min-width: fit-content;
    margin: 0 auto;
    text-align: center;
  }
}

.team_representative img {
  width: 240px;
}

@media screen and (max-width: 740px) {
  .team_representative img {
    width: 160px;
  }
}

.team_representative_img {
  width: fit-content;
  margin: 0 auto;
}

.team_representative_name p:first-child {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 740px) {
  .team_representative_name p:first-child {
    font-size: 16px;
    line-height: 20px;
    margin-top: 16px;
  }
}

.team_representative_name p:nth-child(2) {
  font-family: var(--font-family-en);
  font-size: 48px;
  line-height: 48px;
  margin-top: 16px;
}

@media screen and (max-width: 740px) {
  .team_representative_name p:nth-child(2) {
    font-size: 32px;
    line-height: 32px;
    margin-top: 8px;
  }
}

.team_representative_details {
  display: flex;
  justify-content: center;
  margin-top: 64px;
  border: 1px solid var(--white-color);
  padding: 32px 0;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .team_representative_details {
    display: block;
    max-width: 600px;
    margin: 24px auto;
  }
}

.team_representative_details div {
  width: 400px;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .team_representative_details div {
    width: 70%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 740px) {
  .team_representative_details div {
    width: 90%;
  }
}

.team_representative_details p:nth-child(2n) {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 16px;
}

@media screen and (max-width: 740px) {
  .team_representative_details p:nth-child(2n) {
    font-size: 12px;
  }
}

.team_top::after {
  position: absolute;
  content: "ICHIRO TAKAHASHI ICHIRO";
  font-family: 'Racing Sans One';
  white-space: nowrap;
  font-size: 160px;
  opacity: 0.2;
  bottom: 0%;
  left: -1%;
  color: var(--white-color);
}

@media screen and (max-width: 740px) {
  .team_top::after {
    font-size: 96px;
  }
}

.team_representative_details::before {
  content: "";
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  border-left: 30px solid var(--accent-color);
  border-bottom: 30px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 740px) {
  .team_representative_details::before {
    border-left: 20px solid var(--accent-color);
    border-bottom: 20px solid transparent;
  }
}

.team_representative_details::after {
  content: '';
  position: absolute;
  left: 95%;
  top: -30%;
  width: 2px;
  background-color: var(--white-color);
  animation: border_anim 3s ease-out forwards infinite;
  z-index: 100;
}

@keyframes border_anim {
  0% {
    height: 0%;
  }

  100% {
    height: 60%;
  }
}

@media screen and (max-width: 1080px) {
  .team_representative_details::after {
    content: '';
    position: absolute;
    left: 95%;
    top: 90%;
    width: 1px;
    background-color: var(--white-color);
    animation: border_anim 3s ease-out forwards infinite;
    z-index: 100;
  }

  @keyframes border_anim {
    0% {
      height: 0%;
    }

    100% {
      height: 20%;
    }
  }
}

.team_bottom_wrapper {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 96px;
}

.team_trainer_box {
  width: 350px;
  /* border: 1px solid var(--primary-color); */
  position: relative;

}

@media screen and (max-width: 740px) {
  .team_trainer_box {
    width: 300px;
  }
}

.team_trainer_box::before {
  content: "";
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  border-left: 30px solid var(--accent-color);
  border-bottom: 30px solid transparent;
  position: absolute;
  top: 16%;
  left: -5%;
}

@media screen and (max-width: 740px) {
  .team_trainer_box::before {
    border-left: 20px solid var(--accent-color);
    border-bottom: 20px solid transparent;
    position: absolute;
    top: 20%;
    left: 0%;
  }
}


.team_trainer_img {
  width: 240px;
  margin-left: 20%;
  position: relative;
}

@media screen and (max-width: 740px) {
  .team_trainer_img {
    width: 160px;
  }
}

.team_trainer_img img {
  width: 170px;
  height: 220px;
  object-fit: cover;
}

.team_trainer_img::before {
  position: absolute;
  width: 200px;
  font-size: 32px;
  line-height: 32px;
  color: var(--primary-color);
  font-family: var(--font-family-en);
  top: 55%;
  left: -30%;
  text-shadow: 1px 1px var(--white-color);
}

@media screen and (max-width: 740px) {
  .team_trainer_img::before {
    top: 60%;
  }
}

.team_trainer_img_4::before {
  top: 60%;
}

.team_trainer_img_5::before {
  top: 60%;
}

@media screen and (max-width: 740px) {
  .team_trainer_img_5::before {
    top: 65%;
  }
}

.team_trainer_img_1::before {
  content: "Takuya Chiba";
}

.team_trainer_img_2::before {
  content: "Shinsuke Sato";
}

.team_trainer_img_3::before {
  content: "Yasuo Sakurai";
}

.team_trainer_img_4::before {
  content: "Shingo Sasaki ";
}

.team_trainer_img_5::before {
  content: "Ryo　Uehara ";
}

.team_trainer_details {
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 740px) {
  .team_trainer_details {
    width: 100%;
    margin: 0 auto;
  }
}

.team_trainer_details p:first-child {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  margin-top: 24px;
  text-align: right;
}

@media screen and (max-width: 740px) {
  .team_trainer_details p:first-child {
    font-size: 16px;
    line-height: 16px;
    margin-top: 16px;
  }
}

.team_trainer_details p:nth-child(2n) {
  font-weight: bold;
  margin-top: 8px;
}

/* service */
.service_choice {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

@media screen and (max-width: 1080px) {
  .service_choice {
    display: block;
    width: fit-content;
    margin: 32px auto;
  }
}

.service_choice_circle_1,
.service_choice_circle_2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding: 56px 24px;
  text-align: center;
  border: 3px solid var(--primary-color);
}

@media screen and (max-width: 1080px) {

  .service_choice_circle_1,
  .service_choice_circle_2 {
    width: 240px;
    height: 240px;
    padding: 56px 16px;
  }
}

.service_choice_circle_1 {
  background-image: url(/img/service_w_1.png);
  background-size: cover;
  /* border: 4px solid var(--accent-color); */
}

.service_choice_circle_2 {
  background-image: url(/img/service_w_2.png);
  background-size: cover;
  /* border: 4px solid var(--primary-color); */
  /* position: relative; */
}

.service_choice_circle p:first-child {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .service_choice_circle p:first-child {
    font-size: 14px;
    font-weight: bold;
  }
}

.service_choice_circle p:nth-child(2) {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 8px 0;
}

@media screen and (max-width: 1080px) {
  .service_choice_circle p:nth-child(2) {
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 8px 0;
  }
}

.service_choice_circle .m_viewmore_btn {
  margin: 24px auto;
  background-color: var(--primary-color);
  color: var(--white-color);
}

.service_choice_circle .m_viewmore_btn:hover {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.service_choice img {
  width: 300px;
  height: 300px;
}

@media screen and (max-width: 1080px) {
  .service_choice img {
    width: 240px;
    height: 240px;
    margin: 24px 0;
  }
}

@media screen and (max-width: 740px) {
  .service_choice_circle .m_viewmore_btn {
    margin: 16px auto;
  }
}

.service_topic {
  margin-top: 96px;
  margin-bottom: 128px;
}

@media screen and (max-width: 740px) {
  .service_topic {
    margin-top: 96px;
    margin-bottom: 48px;
  }
}

.service_topic .m_title {
  margin-left: 0;
}

.service_topic_cp {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  margin-top: 48px;
  margin-bottom: 140px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  position: relative;
}

@media screen and (max-width: 740px) {
  .service_topic_cp {
    font-size: 14px;
    line-height: 24px;
    margin: 32px auto;
  }
}

.service_topic_cp::after {
  font-size: 160px;
  font-family: var(--font-family-en);
  color: var(--accent-color);
  /* height: 140px; */
  /* background-image: url(/img/athle_logo_1.png); */
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 740px) {
  .service_topic_cp::after {
    font-size: 96px;
  }
}

.service_topic_cp_1:after {
  content: "ATHLETIC";
}

.service_topic_cp_2:after {
  content: "FITNESS";
}

.service_topic .m_label_title {
  margin-top: 64px;
  height: 100px;
  width: 500px;
  line-height: 24px;
  text-align: left;
  padding: 32px 32px;
}

@media screen and (max-width: 740px) {
  .service_topic .m_label_title {
    margin-top: 32px;
    height: 100px;
    width: 100%;
    line-height: 24px;
    text-align: left;
    padding: 16px 24px 8px 32px;
    font-size: 10px;
  }

  .service_topic .label_title_wt {
    height: 72px;
  }
}

.service_topic_content {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

@media screen and (max-width: 740px) {
  .service_topic_content {
    display: block;
    margin-top: 16px;
  }
}

.service_topic_content img {
  width: 240px;
  height: 240px;
}

@media screen and (max-width: 740px) {
  .service_topic_content img {
    width: 200px;
    height: 200px;
  }
}

.service_topic_img {
  width: fit-content;
  margin: 0 auto;
  margin-top: 16px;
}

.service_athle_flow {
  margin-top: 96px;
}

@media screen and (max-width: 740px) {
  .service_athle_flow {
    margin-top: 48px;
  }
}

.service_athle_flow .m_title_line p {
  font-size: 24px;
}

.service_athle_price .m_title_line p {
  font-size: 24px;
}

.fitness_works .m_title_line p {
  font-size: 24px;
  letter-spacing: 0px;
}

.athle_flow_topic {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 16px;
}

@media screen and (max-width: 740px) {
  .athle_flow_topic {
    display: block;
  }
}

.athle_flow_num {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: var(--white-color);
}

@media screen and (max-width: 740px) {
  .athle_flow_num {
    width: 32px;
    height: 32px;
  }
}

.athle_flow_num p {
  align-items: center;
  font-size: 24px;
  font-family: var(--font-family-en);
  margin-left: 38%;
  margin-top: 7%;
}

@media screen and (max-width: 740px) {
  .athle_flow_num p {
    font-size: 18px;
    margin-left: 34%;
  }
}

.athle_flow_txt {
  width: 92%;
}

@media screen and (max-width: 740px) {
  .athle_flow_txt {
    width: 100%;
  }
}

.athle_flow_txt p:first-child {
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 740px) {
  .athle_flow_txt p:first-child {
    font-size: 18px;
  }
}

.service_athle_price {
  margin-top: 96px;
}

@media screen and (max-width: 740px) {
  .service_athle_price {
    margin-top: 48px;
  }
}

.service_athle_price_txt p {
  margin-bottom: 16px;
}

.service_fitness_cp {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  justify-content: center;
}

@media screen and (max-width: 740px) {
  .service_fitness_cp {
    display: block;
  }
}

.service_fitness_cp_txt {
  width: 60%;
}

@media screen and (max-width: 740px) {
  .service_fitness_cp_txt {
    width: 100%;
  }
}

.service_fitness_cp_txt p:first-child {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}

@media screen and (max-width: 740px) {
  .service_fitness_cp_txt p:first-child {
    font-size: 18px;
    font-weight: bold;
    margin-top: 48px;
    margin-bottom: 20px;
    letter-spacing: 0px;
  }
}

.fitness_work {
  margin: 32px 0;
}

@media screen and (max-width: 740px) {
  .fitness_works {
    margin: 48px 0;
  }
}

.fitness_work p:first-child {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 740px) {
  .fitness_work p:first-child {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    margin-bottom: 8px;
  }
}

.fitness_work p:nth-child(2) {
  margin-left: 16px;
}

@media screen and (max-width: 740px) {
  .fitness_work p:nth-child(2) {
    margin-left: 8px;
  }
}

#athle:before {
  display: block;
  height: 7rem;
  margin-top: -7rem;
  content: "";
}

#fitness:before {
  display: block;
  height: 7rem;
  margin-top: -7rem;
  content: "";
}

/* club */
.club_top {
  margin-bottom: 160px;
}

@media screen and (max-width: 740px) {
  .club_top {
    margin-bottom: 96px;
  }
}

.club_top_cp {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  width: 80%;
  margin: 64px auto 120px auto;
}

@media screen and (max-width: 740px) {
  .club_top_cp {
    width: 90%;
    margin: 40px auto 64px auto;
  }
}

.club_top .m_title_line {
  margin-left: 16px;
  padding-left: 8 px;
}

.club_top .m_title {
  margin-left: 0;
  margin-top: 128px;
}

.club_top .top_club_row {
  display: block;
  /* gap: 32px; */
  justify-content: space-around;
}

.club_top .top_club_txt {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  height: fit-content;
  margin: 32px auto 96px auto;
}

@media screen and (max-width: 1080px) {
  .club_top .top_club_txt {
    display: block;
    max-width: 640px;
    margin: 32px auto 64px auto;
  }
}

.club_top .club_link {
  font-weight: bold;
}

.club_top .m_img_tile {
  width: 95%;
  margin: 0 auto;
}

.club_top .m_img_box img {
  width: 240px;
  height: 240px;
}

@media screen and (max-width: 1080px) {
  .club_top .m_img_box img {
    width: 240px;
    height: 240px;
  }
}

@media screen and (max-width: 424px) {
  .club_top .m_img_box img {
    width: 150px;
    height: 150px;
  }
}

.club_top .m_img_color_box {
  width: 240px;
  height: 240px;
}

@media screen and (max-width: 1080px) {
  .club_top .m_img_color_box {
    width: 240px;
    height: 240px;
  }
}

@media screen and (max-width: 740px) {
  .club_top .m_img_color_box {
    width: 150px;
    height: 150px;
  }
}

/* shlideshow */
.slideshow {
  background-color: rgba(245, 245, 245, 0.9);
  padding: 64px 0;
}

@media screen and (max-width: 424px) {
  .slideshow {
    padding: 16px 0;
  }
}

.swiper {
  width: 70%;
  height: 50vh;
}

@media screen and (max-width: 1080px) {
  .swiper {
    width: 100%;
    height: 30vh;
    margin: 24px auto 32px auto;
  }
}

.swiper-wrappar {
  height: auto;
}

.swiper-slide {
  height: auto;
  justify-content: center;
  display: flex;
}

.swiper-slide img {
  width: 90%;
  height: auto;
  object-fit: cover;
}



/* contact */
.contact_top_section {
  padding: 64px 0;
}

@media screen and (max-width: 424px) {
  .contact_top_section {
    padding: 48px 0 0 0;
  }
}

.contact_top_section h2 {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
}

@media screen and (max-width: 424px) {
  .contact_top_section h2 {
    display: none;
  }
}

.contact_top_section p {
  margin-top: 48px;
  text-align: center;
}

.tab-content-item {
  /* コンテンツは非表示にしておく */
  /* display: none; */
  /* パディング */
  padding: 1em 1em 0 1em;
  /* コンテンツに収まらない場合は非表示 */
  overflow: hidden;
}


/* ラジオボタンがチェックされたら、コンテンツを表示 */
#tab01:checked~#tabContent01,
#tab02:checked~#tabContent02,
#tab03:checked~#tabContent03,
#tab03:checked~#tabContent04 {
  display: block;
}

.contact_ttl h2 {
  font-size: 32px;
  text-align: center;
  /* font-weight: bold; */
  color: var(--white-color);
  position: relative;
  margin-bottom: 32px;
  background-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color) 80%);

}

@media screen and (max-width: 740px) {
  .contact_ttl h2 {
    font-size: 20px;
    padding: 10px 0;
  }
}


.contact_form_heading {
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 740px) {
  .contact_form_heading {
    font-size: 14px;
  }
}

.contact_form_heading:not(:first-child) {
  margin-top: 40px;
}

.contact_form_example {
  color: var(--gray-color);
  font-size: 12px;
  font-weight: normal;
  margin-left: 16px;
}

@media screen and (max-width: 740px) {
  .contact_form_example {
    font-size: 10px;
    margin-left: 8px;
  }
}

.contact_form_detail {
  margin-top: 16px;
}

.contact_form_input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  padding: 0 8px;
}

.contact_form_required {
  font-size: 12px;
  font-weight: bold;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  color: var(--white-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contact_form_radio-list {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 740px) {
  .contact_form_radio-list {
    display: block;
  }
}

.contact_form_radio-item {
  display: flex;
  align-items: center;
}

.contact_form_radio {
  appearance: radio;
}


.contact_form_label {
  font-size: 14px;
  font-weight: bold;
  padding-left: 16px;
}

.contact_form_textarea {
  width: 100%;
  height: 250px;
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  padding: 8px 16px;
  resize: none;
}

.contact_form_btn-wrapper {
  max-width: 344px;
  height: 64px;
  margin: 80px auto 0;
}

.contact_form_btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  width: 240px;
  padding: 12px;
  font-size: 20px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 24px auto;
  border-radius: 5px;
}

.contact_form_btn input {
  width: 100%;
  height: 100%;
}

.contact_form_btn:hover {
  background-color: var(--accent-color);
  transition: 0.5s;
}

.contact_form_cmt {
  font-size: 14px;
  font-weight: normal;
}

/* thanks.html */
.thanks_msg {
  margin: 0 24px;
}

/* js */
.wrap {
  overflow: hidden;
}

.js_body.is-active {
  overflow: hidden;
}

@media screen and (max-width: 1080px) {
  .js_navigation {
    display: none;
    /* space-betweenで広がるときは消したい */
  }

  .js_navigation.is-active {
    /* メニューが開いているときはnone解除が必要 */
    display: inline;
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
  z-index: 100;
  position: fixed;
  top: 0;
  background-color: var(--white-color);
  transition: 0.5s;
}

.js_navigation.is-active .l_header-nav_list {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.js_navigation.is-active .l_header-nav_item {
  margin-bottom: 50px;
}

.js_hamburger.is-active {
  z-index: 200;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  transition: 0.5s;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
  transition: 0.5s;
}

.js_hamburger.is-active .m_hamburger-bar {
  background-color: var(--primary-color);
}


/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}