@charset "UTF-8";


.fade-in {
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
}

.fade-in.show {
  opacity: 1;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-down.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fade-bounce {
  opacity: 0;
  -webkit-transform: translate3d(0, 60px, 0);
  transform: translate3d(0, 60px, 0);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: transform, opacity;
}

.fade-bounce.show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-animation: bounceDown 0.5s ease-out 0.6s forwards;
  animation: bounceDown 0.5s ease-out 0.6s forwards;
}

@-webkit-keyframes bounceDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 10px, 0);
  }
}

@keyframes bounceDown {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, 10px, 0);
  }
}

.fade-in-left {
  opacity: 0;
  -webkit-transform: translateX(-400px);
  transform: translateX(-400px);
  -webkit-transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, transform 2s ease;
}

.fade-in-left.show {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
  -webkit-transition: opacity 2s ease, -webkit-transform 2s ease;
  transition: opacity 2s ease, transform 2s ease;
}

.fade-in-right.show {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fade-in-rotateY {
  opacity: 0;
  transform: rotateY(90deg);
}

.fade-in-rotateY.in-view {
  -webkit-animation: fadeRotate 1.4s ease-in-out forwards;
  animation: fadeRotate 1.4s ease-in-out forwards;
}

@keyframes fadeRotate {
  from {
    opacity: 0;
    transform: rotateY(90deg);
  }

  to {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

html {
  font-family: "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 1.68;
  color: #000;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  overflow: clip;
}

img {
  width: 100%;
  height: auto;
}

header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 24px 40px 24px;
  background-color: white;
}

header .header_logo {
  width: 124px;
  height: 64px;
}

header button a {
  display: block;
  background-color: #f5d037;
  border-radius: 8px;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  padding: 10px 18px;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

header button a:hover {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

@media (max-width: 767px) {
  html {
    font-size: 16px;
    line-height: 1.5;
  }

  header {
    width: 100%;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    padding: 10px 3%;
  }

  header .header_logo {
    width: 70px;
    height: auto;
  }

  header button a {
    border-radius: 4px;
    font-size: 8px;
    padding: 6px 10px;
  }
}

.kv-wrap {
  position: relative;
  width: 100%;
  z-index: 1;
}

.kv {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top;
  display: block;
}

.overlap {
  position: absolute;
  bottom: -45%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 43%;
  height: auto;
}

.overlap-img {
  opacity: 0;
  -webkit-transform: translateY(-300px);
  transform: translateY(-300px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
}

.overlap-img.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 767px) {
  .overlap {
    position: absolute;
    bottom: -32%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
    height: auto;
  }
}

/* sec01 ---------------------*/
.sec01 {
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-image: url(../img/bg_blue.webp);
  padding-top: 24vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 100vh;
  text-align: center;
}

.sec01 .txt-block01 {
  font-size: 36px;
  letter-spacing: 0.12em;
  text-align: left;
  margin-bottom: 90px;
}

.sec01 .txt-block01 h2 {
  display: inline-block;
  color: #f18d00;
  font-size: 43px;
  letter-spacing: 0;
}

.sec01 .txt-block01 p {
  line-height: 1.8em;
  font-size: 37px;
  margin-left: 14px;
}

@media (max-width: 767px) {
  .sec01 {
    padding-top: 36vw;
  }

  .sec01 .txt-block01 {
    font-size: clamp(20px, 5.6vw, 40px);
    margin-bottom: -100px;
  }

  .sec01 .txt-block01 h2 {
    font-size: 23px;
    margin-bottom: 6px;
  }

  .sec01 .txt-block01 p {
    font-size: 90%;
    margin-left: 0;
  }
}

.sec01 .mv {
  position: relative;
  max-width: 942px;
}

.sec01 .mv h3 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-image: url(../img/bg_tit.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 130%;
  width: 560px;
  height: 225px;
  margin: 0 auto 10px;
  z-index: 1;
}

.sec01 .mv .mv-wrap {
  position: relative;
  max-width: 942px;
  margin: 0 auto;
}

.sec01 .mv .mv-wrap img {
  max-width: 90%;
}

.sec01 .mv .thum_mv {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 10;
}

.thum_mv {
  opacity: 0;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.thum_mv.in-view {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.sec01 .mv .img_talent01 {
  position: absolute;
  right: 40px;
  top: -70px;
  width: 210px;
  height: auto;
  z-index: 0;
}

.sec01 .mv .mv-wrap .img_talent02 {
  position: absolute;
  left: 30px;
  bottom: -154px;
  width: 269px;
  height: auto;
  z-index: 1;
}

.sec01 .mv .mv-wrap small {
  position: absolute;
  right: 68px;
  bottom: -20px;
  text-align: right;
  font-size: 13px;
}

.sec01 button {
  margin-top: 180px;
}

.sec01 button a {
  display: block;
  color: #000;
  background-color: #f5d037;
  border-radius: 8px;
  font-size: 25px;
  line-height: 140%;
  text-align: center;
  padding: 20px 24px;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sec01 button a:hover {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

@media (max-width: 767px) {
  .sec01 .mv {
    width: 90%;
  }

  .sec01 .mv h3 {
    background-image: url(../img/bg_tit_sp.png);
    font-size: 12px;
    letter-spacing: -0.03em;
    width: 313px;
    height: 117px;
    margin: 120px auto 0;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .sec01 .mv .mv-wrap {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
  }

  .sec01 .mv .thum_mv {
    width: 100%;
    height: auto;
  }

  .sec01 .mv .img_talent01,
  .sec01 .mv .mv-wrap .img_talent02 {
    display: none;
  }

  .sec01 .mv .mv-wrap small {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 10px auto 0;
    width: 90%;
    font-size: 8px;
    text-align: left;
  }

  .sec01 button {
    margin-top: 20px;
  }

  .sec01 button a {
    display: block;
    color: #000;
    background-color: #f5d037;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    padding: 10px 20px;
  }
}

.sec01 .txt-block02 {
  max-width: 1012px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  letter-spacing: -0.02em;
  text-align: left;
  margin: 140px auto 0;
}

.sec01 .txt-block02 h2 img {
  width: 1012px;
  max-width: 90%;
  display: block;
  margin: 0 auto 40px;
}

.sec01 .txt-block02 p {
  font-size: 28px;
  line-height: 1.8em;
}

.sec01 .txt-block02 h2 picture img {
  opacity: 0;
  transform: scale(0.7);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.sec01 .txt-block02 h2 picture img.animate {
  opacity: 1;
  animation: bounceIn 1.5s forwards;
}

@-webkit-keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.7);
    opacity: 0;
  }

  50% {
    -webkit-transform: scale(1.06);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .sec01 .txt-block02 {
    width: 80%;
    letter-spacing: -0.02em;
    margin: 40px auto 0;
  }

  .sec01 .txt-block02 h2 img {
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
  }

  .sec01 .txt-block02 p {
    font-size: 12px;
    line-height: 2.3em;
  }
}

.kiba ul {
  position: relative;
  width: 744px;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 90px;
  margin: 100px auto;
}

.kiba ul li {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-image: url(../img/bg_kiba.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 327px;
  height: 160px;
  overflow: hidden;
  cursor: pointer;
}

.kiba ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-mask-image: url(../img/bg_kiba.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url(../img/bg_kiba.png);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.kiba ul li a::after {
  content: "もっと読む";
  position: absolute;
  width: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-family: 'Josefin Sans', sans-serif;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  top: 80%;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2;
  white-space: nowrap;
}

.kiba ul li:hover a::after {
  opacity: 1;
}

.kiba ul li:hover::before {
  opacity: 1;
}

.kiba ul li a {
  position: relative;
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 1;
}

.sageDR {
  position: absolute;
  bottom: -40px;
  right: 30px;
  font-size: 1rem;
}

.sageDR a {
  color: #f5d037;
}

.modal {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.0);
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  position: relative;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  z-index: 10;
  max-width: 90vw;
  max-height: 90vh;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: visible;
  z-index: 10;
}

.modal.show .modal-content {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.modal-content img {
  position: relative;
  aspect-ratio: 1114 / 754;
  max-width: 1114px;
  max-height: 754px;
  height: auto;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.modal.show .modal-content img {
  opacity: 1;
}

.modal-content img.fade-out {
  opacity: 0;
}

.modal-close {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 3;
  top: 10px;
  right: 10px;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.modal-close::before,
.modal-close::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-close.spin-in {
  -webkit-animation: spinFadeIn 0.5s ease forwards;
  animation: spinFadeIn 0.5s ease forwards;
}

.modal-close.spin-out {
  -webkit-animation: spinFadeOut 0.5s ease forwards;
  animation: spinFadeOut 0.5s ease forwards;
}

@-webkit-keyframes spinFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spinFadeOut {
  0% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes spinFadeOut {
  0% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.modal-nav {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 83px;
  z-index: 2;
}

.modal-nav .nav-item {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-image: url(../img/bg_kiba.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 170px;
  height: auto;
  color: #333;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-nav .nav-item:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal-nav .nav-item.active {
  display: none;
}

/* クリック可能エリア（絶対配置） */
.clickable-area-modal {
  position: absolute;
  top: 280px;
  left: 600px;
  width: 130px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
  display: none;
  /* デフォルトでは非表示 */
}

/* JavaScriptで制御するため、CSSセレクターは削除 */

.clickable-area-sp {
  position: absolute;
  top: 47%;
  left: 17%;
  width: 40%;
  height: 30px;
  cursor: pointer;
  z-index: 10;
}

/* JavaScriptで動的に位置を調整するため、CSSセレクターは削除 */

@media (min-width: 768px) {
  .kiba_sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .kiba {
    display: none;
  }

  .kiba_sp ul {
    position: relative;
    gap: 40px;
    margin: 30px auto 60px auto;
  }

  .kiba_sp ul li {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    width: 90%;
    margin: 24px auto 0;
    position: relative;
    z-index: 2;
  }

  .kiba_sp ul li label {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-image: url(../img/bg_kiba.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 232px;
    height: 114px;
    color: #333;
    font-size: 15px;
    font-weight: bold;
    overflow: hidden;
    z-index: 2;
  }

  .sageDR {
    position: absolute;
    bottom: -26px;
    left: 28px;
    font-size: 12px;
  }

  .sageDR a {
    color: #f5d037;
  }

  .accordion-content {
    position: relative;
    max-height: 0;
    opacity: 0;
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    z-index: 1;
  }

  .accordion-content.open {
    max-height: 1570px;
    opacity: 1;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    margin-bottom: -40px;
  }

  .kiba_sp ul li label .icn_close {
    display: none;
    position: absolute;
    right: 30px;
    top: 30%;
    width: 18px;
    height: 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    opacity: 0;
  }

  .kiba_sp ul li label .icn_close::before,
  .kiba_sp ul li label .icn_close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 3px;
    background-color: #333;
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  .kiba_sp ul li label .icn_close::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .kiba_sp ul li label .icn_close::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .accordion-checkbox:checked+label .icn_close {
    display: inline-block;
    pointer-events: auto;
    -webkit-animation: spinFadeIn 0.5s ease forwards;
    animation: spinFadeIn 0.5s ease forwards;
  }

  .accordion-checkbox:not(:checked)+label .icn_close {
    display: inline-block;
    pointer-events: none;
    -webkit-animation: spinFadeOut 0.5s ease forwards;
    animation: spinFadeOut 0.5s ease forwards;
  }

  @-webkit-keyframes spinFadeIn {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-50%) rotate(0deg);
      transform: translateY(-50%) rotate(0deg);
    }

    100% {
      opacity: 1;
      -webkit-transform: translateY(-50%) rotate(360deg);
      transform: translateY(-50%) rotate(360deg);
    }
  }

  @keyframes spinFadeIn {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-50%) rotate(0deg);
      transform: translateY(-50%) rotate(0deg);
    }

    100% {
      opacity: 1;
      -webkit-transform: translateY(-50%) rotate(360deg);
      transform: translateY(-50%) rotate(360deg);
    }
  }

  @-webkit-keyframes spinFadeOut {
    0% {
      opacity: 1;
      -webkit-transform: translateY(-50%) rotate(360deg);
      transform: translateY(-50%) rotate(360deg);
    }

    100% {
      opacity: 0;
      -webkit-transform: translateY(-50%) rotate(0deg);
      transform: translateY(-50%) rotate(0deg);
    }
  }

  @keyframes spinFadeOut {
    0% {
      opacity: 1;
      -webkit-transform: translateY(-50%) rotate(360deg);
      transform: translateY(-50%) rotate(360deg);
    }

    100% {
      opacity: 0;
      -webkit-transform: translateY(-50%) rotate(0deg);
      transform: translateY(-50%) rotate(0deg);
    }
  }
}

/* sec02 ---------------------*/
.sec02 {
  background: -webkit-linear-gradient(-45deg, #ffe802 0%, #f3ef9c 100%);
  background: linear-gradient(-45deg, #ffe802 0%, #f3ef9c 100%);
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.sec02 .inner {
  width: 734px;
  margin: auto;
}

.sec02 .txt-block03 {
  position: relative;
  width: 100%;
  text-align: left;
  margin-bottom: 80px;
}

.sec02 .txt-block03 h2 {
  color: #f18d00;
  font-size: 47px;
  margin-bottom: 38px;
}

.sec02 .txt-block03 p {
  font-size: clamp(24px, 2.5vw, 27px);
  line-height: 1.8em;
}

.sec02 .txt-block03 img {
  position: absolute;
  right: -40px;
  top: 44px;
  width: 267px;
  height: auto;
}

@media (max-width: 767px) {
  .sec02 {
    padding: 40px 0;
  }

  .sec02 .inner {
    width: 90%;
    margin: 0 auto;
  }

  .sec02 .txt-block03 h2 {
    font-size: clamp(24px, 4vw, 30px);
    margin-bottom: 20px;
  }

  .sec02 .txt-block03 {
    position: relative;
    margin-bottom: 40px;
  }

  .sec02 .txt-block03 p {
    position: relative;
    max-width: 70%;
    font-size: 16px;
  }

  .sec02 .txt-block03 p br {
    display: none;
  }

  .sec02 .txt-block03 .fade-in-down {
    position: relative;
    z-index: 10;
  }

  .sec02 .txt-block03 img {
    position: absolute;
    right: -10px;
    top: calc(100% - 120px);
    width: 134px;
    height: auto;
    z-index: 0;
  }
}

.sec02 dl {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  width: 100%;
  background-color: #fff;
  padding: 25px;
  margin-bottom: 30px;
  box-sizing: border-box;
  min-height: 420px;
  opacity: 0;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sec02 dl.in-view {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.sec02 dl dt {
  width: 318px;
  border-right: 1px #f5d037 solid;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding-right: 25px;
}

.sec02 dl dt h3 {
  font-size: 14px;
  margin-bottom: 30px;
}

.sec02 dl dd {
  position: relative;
  -webkit-box-flex: 1;
  flex: 1;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 25px;
}

.sec02 dl dd .icn_DR {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 14px;
}

.sec02 dl dd .icn_DR div {
  width: 153px;
  font-size: 15px;
  border: #000 1px solid;
}

.sec02 dl dd p {
  font-size: 20px;
  text-align: left;
}

.sec02 dl dd .btn_more {
  position: absolute;
  bottom: 0;
  right: 0;
  border: solid 1px #f18d00;
  font-size: 15px;
  color: #f18d00;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding: 2px 12px;
}

.sec02 dl dd .btn_more a {
  color: inherit;
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 2;
}

.sec02 dl dd .btn_more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.sec02 dl dd .btn_more::after {
  content: "READ MORE";
  position: absolute;
  top: 56%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: 'Josefin Sans', sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}

.sec02 dl dd .btn_more:hover::before {
  opacity: 1;
}

.sec02 dl dd .btn_more:hover::after {
  opacity: 1;
}

.ecoappli {
  width: 132px;
  height: 132px;
}

.ohisamashiftcourse {
  width: 290px;
  height: 89px;
}

.timeservice {
  width: 290px;
  height: 105px;
}

.btn_top {
  position: relative;
  background-color: #f18d00;
  color: #f5d037;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding: 14px 50px;
  z-index: 2;
  margin-top: 50px;
}

.btn_top a {
  position: relative;
  z-index: 2;
}

.btn_top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.btn_top:hover {
  color: #fff;
}

.btn_top:hover::before {
  opacity: 1;
}

.btn_top span {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .sec02 dl {
    display: block;
    min-height: auto;
    padding: 20px;
  }

  .sec02 dl dt {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    width: 100%;
    min-height: 48px;
    border-right: none;
    border-bottom: 1px #f5d037 solid;
    padding: 0 0 10px 0;
  }

  .sec02 dl dt h3 {
    margin: 0 20px 0 0;
  }

  .ecoappli {
    width: 80px;
    height: auto;
  }

  .ohisamashiftcourse {
    width: 158px;
    height: auto;
  }

  .timeservice {
    width: 158px;
    height: auto;
  }

  .sec02 dl dd {
    width: 100%;
    min-height: 230px;
    padding: 10px 0 0 0;
    display: block;
  }

  .sec02 dl dd .icn_DR {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 10px;
  }

  .sec02 dl dd .icn_DR div {
    width: 100px;
    font-size: 12px;
  }

  .sec02 dl dd p {
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
  }

  .btn_top {
    font-size: 14px;
    padding: 10px 30px;
    margin-top: 10px;
  }
}

/* footer ---------------------*/
.fnav {
  text-align: center;
  padding: 30px 0;
  font-weight: normal;
}

.fnav .members {
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  align-items: center;
  padding-top: 70px;
  margin: 30px auto 0 auto;
}

.fnav .members::before {
  position: absolute;
  content: "";
  background-image: url(../img/img_club.png?v=20250912);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 243px;
  height: 56px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.fnav .members li {
  position: relative;
  margin: 0 4px;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fnav .members li:hover {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

.fnav p {
  position: relative;
  margin-top: 20px;
  margin-bottom: 50px;
}

.fnav p a {
  font-size: 16px;
  text-decoration: underline;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fnav p a:hover {
  opacity: 0.5;
}

.newmember,
.existingmember {
  width: 290px;
  height: 86px;
}

.fnav .sitelinks {
  width: auto;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  align-items: center;
  padding: 0;
  margin-right: 0;
}

.fnav .sitelinks li {
  position: relative;
  padding-left: 0;
  font-size: 16px;
  margin-right: 45px;
  width: 168px;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fnav .sitelinks li a ._icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/icn_blank.svg) no-repeat center center / 100% auto;
  vertical-align: -.1em;
}

.fnav .sitelinks li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -7px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fnav .sitelinks li:hover {
  opacity: 0.5;
}

footer {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  font-weight: normal;
  width: 100%;
  padding: 24px 40px;
  background-color: #fafafa;
}

footer .footer_logo {
  width: 124px;
}

footer .copy {
  color: #333;
  font-size: 14px;
}

@media (max-width: 767px) {
  .fnav .members {
    padding-top: 40px;
    margin: 0 auto;
  }

  .fnav .members::before {
    margin: 0 auto;
    width: 126px;
    height: 29px;
  }

  .newmember,
  .existingmember {
    width: 155px;
    height: 46px;
  }

  .fnav .sitelinks {
    display: block;
    text-align: left;
    width: 90%;
    margin: 0 auto;
  }

  .fnav .sitelinks li {
    width: 300px;
    margin-bottom: 20px;
  }

  .fnav .sitelinks li:last-child {
    margin-bottom: 0;
  }

  footer {
    padding: 10px;
  }

  footer .footer_logo {
    margin-right: 20px;
    width: 50px;
  }

  footer .copy {
    font-size: 8px;
  }
}