* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

html {
  font-size: 49.6%;
}

body {
  background-color: #fff;
}

.sp-only {
  display: none !important;
}

.transparent {
  opacity: 1;
  transition: opacity 0.15s;
}

.transparent:hover {
  opacity: 0.75;
}

.bright {
  transition: filter 0.2s;
}

.bright:hover {
  filter: brightness(1.3);
}

.scale-on-hover {
  transition: .3s;
}

.scale-on-hover:hover {
  transform: scale(1.05, 1.05);
}

.movingToLeft {
  display: inline-block;
  transition: transform cubic-bezier(.5, .1, .3, 1) 0.4s;
}

.movingToLeft:hover {
  display: inline-block;
  transform: translateX(-12px);
}

.scale-on-hover {
  transition: .3s;
}

.scale-on-hover:hover {
  transform: scale(1.08, 1.08);
}

.anim-box.kiran {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.anim-box.kiran::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.anim-box.kiran:hover::before {
  animation: kiran 0.5s linear;
}

@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }

  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }

  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }

  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }

  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
 
.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

.animation-slide-left {
  animation-duration: 1.3s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-name: slide-left-frames;
}
.animation-slide-up {
  animation-duration: 1.3s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-name: slide-up-frames;
}
.animation-slide-down {
  animation-duration: 1.3s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-name: slide-down-frames;
}

@keyframes slide-left-frames {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
  }
}

@keyframes slide-up-frames {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
  }
}

@keyframes slide-down-frames {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }

  100% {
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
  }
}

/*********************************************/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: #fff;
  text-align: center;
  color: #fff;
}

#splash_logo-1 {
  position: absolute;
  top: calc(50% - 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
}

#splash_logo-1 img {
  width: 100%;
  /*
  animation: 4s linear infinite splash-rotate-frames;
  */
}

@keyframes splash-rotate-frames {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

#splash_cover {
  display: none;
  top: calc(50% - 50px);
  left: 50%;
  transform: translate(-100%, -50%);
  position: absolute;
  content: "";
  background-color: #fff;
  opacity: 0.55;
  width: 165px;
  height: 300px;
  animation: 3s linear infinite splash-cover-frames;
}

@keyframes splash-cover-frames {
  0% {
    transform: translate(-50%, -50%);
  }

  70% {
    transform: translate(-50%, 50%);
  }

  100% {
    transform: translate(-50%, 50%);
  }
}

.splash-fade-up {
  animation-name: splash-fade-up-frames;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes splash-fade-up-frames {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*********************************************/
/* global menu                               */
/*********************************************/
.global-menu-trigger-wrap {
  position: absolute;
  top: -38px;
  left: 0;
}

.global-menu-trigger, .global-menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  transition: all .3s;
}

.global-menu-trigger {
  position: relative;
  width: 44px;
  height: 35px;
}

.global-menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 4px;
}

.global-menu-trigger span:nth-of-type(1) {
  top: 9px;
}

.global-menu-trigger span:nth-of-type(2) {
  bottom: 9px;
}

.global-menu-trigger.active span:nth-of-type(1) {
  top: 13px;
  transform: translateY(5px) rotate(-45deg);
}

.global-menu-trigger.active span:nth-of-type(2) {
  transform: translateY(-5px) rotate(45deg);
}


.global-menu {
  z-index: 98;
  position: fixed;
  left: 150px;
  top: 0;
  overflow-y: auto;
  width: calc(100% - 150px);
  height: 100%;
  min-height: 800px;
  background: linear-gradient(to right, #516b78, #516b78 80%, #094659);
}

.global-menu .global-menu-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.global-menu .menu {
  display: flex;
  gap: 60px 60px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.global-menu .menu ul {
  display: flex;
  flex-direction: column;
  gap: 25px 25px;
  list-style: none;
}

.global-menu .menu ul>li {
  display: flex;
  gap: 8px 8px;
  align-items: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.5rem;
  letter-spacing: 0.03rem;
  line-height: 3rem;
}

.global-menu .menu ul>li a {
  color: #fff;
  display: inline-block;
  transition: transform cubic-bezier(.5, .1, .3, 1) 0.4s;
}

.global-menu .menu ul>li a:hover {
  transform: translateX(12px);
}

.global-menu .menu ul>li::before {
  content: "";
  width: 23px;
  border-top: 1px solid #fff;
  margin-right: 5px;
}

.global-menu .menu ul>li.sub::before {
  content: "";
  width: 15px;
  border-top: 1px solid #fff;
  margin-right: 0px;
}

.global-menu .menu ul>li.sub {
  margin-left: 30px;
  font-size: 2.3rem;
  letter-spacing: 0.03rem;
}


/*********************************************/
.inview, .inview-delay {
  opacity: 0;
}


/*
.animation-slide-clip {
  transition:
    clip-path 1.1s ease,
    -webkit-clip-path 1.1s ease;
}

.animation-slide-left-clip1 {
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}

.animation-slide-left-clip0 {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.animation-slide-down-clip1 {
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}

.animation-slide-down-clip0 {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}
*/

.animation-slide-left-clip1 {
  animation-duration: 1.1s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-name: slide-left-frames;
}

@keyframes slide-left-frames {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
  }
}

.animation-rotate-inf1 {
  animation: 10s linear infinite rotation-frames;
}

@keyframes rotation-frames {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animation-rotate {
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(.17, .94, .32, 1.29);
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-name: rotate-frames;
}

@keyframes rotate-frames {
  from {
    opacity: 0;
    transform: translate(-2%, 50%) rotate(-25deg);
  }

  to {
    opacity: 1;
    transform: translate(0px, 0px) rotate(0deg);
  }
}

.animation-fade-scale-wrap {
  overflow: hidden;
}

.animation-fade-scale {
  animation-duration: 3.2s;
  /*
  animation-timing-function: cubic-bezier(0,.55,.45,1);
  */
  animation-timing-function: cubic-bezier(.08, .53, .47, 1.12);
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-name: fade-scale-frames;
}

@keyframes fade-scale-frames {
  0% {
    opacity: 0;
    transform: scale(1.07)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.animation-fade-in {
  animation-duration: 3.0s;
  /*
  animation-timing-function: cubic-bezier(0,.55,.45,1);
  */
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-name: fade-in-frames;
}

.animation-fade-in-late {
  animation-duration: 3.0s;
  /*
  animation-timing-function: cubic-bezier(0,.55,.45,1);
  */
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  animation-name: fade-in-frames;
}

@keyframes fade-in-frames {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animation-fade-out {
  animation-duration: 2.5s;
  /*
  animation-timing-function: cubic-bezier(0,.55,.45,1);
  */
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-name: fade-out-frames;
}

@keyframes fade-out-frames {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.animation-fade-in-up {
  animation-duration: 3.0s;
  /*
  animation-timing-function: cubic-bezier(0,.55,.45,1);
  */
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-name: fade-in-up-frames;
}

.animation-fade-in-up-late {
  animation-duration: 3.0s;
  /*
  animation-timing-function: cubic-bezier(0,.55,.45,1);
  */
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  animation-name: fade-in-up-frames;
}

@keyframes fade-in-up-frames {
  from {
    opacity: 0;
    transform: translate(0, 10px);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.animation-fade-out-down {
  animation-duration: 2.5s;
  /*
  animation-timing-function: cubic-bezier(0,.55,.45,1);
  */
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-name: fade-out-down-frames;
}

@keyframes fade-out-down-frames {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }

  to {
    opacity: 0;
    transform: translate(0, 5px);
  }
}

.animation-shake3 {
  animation-duration: 1.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: shake-frames3;
  transform-origin: center bottom 0;
}

@keyframes shake-frames3 {
  0% {
    transform: translate3D(0) rotate(0deg);
  }

  25% {
    transform: translate3D(-0px, -0px, 0) rotate(2deg);
  }

  50% {
    transform: translate3D(-0px, -0px, 0) rotate(5deg);
  }

  75% {
    transform: translate3D(-0px, -0px, 0) rotate(2deg);
  }

  100% {
    transform: translate3D(0px, 0px) rotate(-2deg);
  }
}

/**********************************************************/
/* sidebar                                                */
/**********************************************************/
.sidebar {
  position: fixed;
  width: 150px;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #fff;
}

.sidebar>.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  overflow: hidden;
}

.sidebar>.content>.title>h1 {
  width: 48px;
}

.sidebar>.content>.title>h1>img {
  width: 100%;
}

.sidebar>.content>.menu {
  margin-top: 20px;
}

.sidebar>.content>.menu>ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px 35px;
}

.sidebar>.content>.menu li.menu {
  width: 45px;
}
.sidebar>.content>.menu li.menu a {
  position: relative;
}
.sidebar>.content>.menu li.menu img {
  clip-path: inset(20px 0px 0px 0px);
}

.sidebar>.content>.menu li.contact {
  width: 40px;
}

.sidebar>.content>.menu li.instagram {
  width: 61px;
}

@media screen and (max-height: 850px) {
  .sidebar>.content {
    margin-top: 30px;
  }

  .sidebar>.content>.title>h1 {
    width: calc(48px * 0.7);
  }

  .sidebar>.content>.menu {
    margin-top: calc(20px * 0.75);
  }

  .sidebar>.content>.menu>ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px 12px;
  }

  .sidebar>.content>.menu li.menu {
    width: calc(45px * 0.7);
  }
  .sidebar>.content>.menu li.menu a {
    position: relative;
  }
  .sidebar>.content>.menu li.menu img {
    clip-path: inset(20px 0px 0px 0px);
  }

  .sidebar>.content>.menu li.contact {
    width: calc(40px * 0.7);
  }

  .sidebar>.content>.menu li.instagram {
    width: calc(61px * 0.7);
  }

  .global-menu-trigger-wrap {
    position: absolute;
    top: -25px;
    left: 0;
  }

  .global-menu-trigger, .global-menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    transition: all .3s;
  }

  .global-menu-trigger {
    position: relative;
    width: calc(44px * 0.7);
    height: 30px;
  }

  .global-menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
  }

  .global-menu-trigger span:nth-of-type(1) {
    top: 8px;
  }

  .global-menu-trigger span:nth-of-type(2) {
    bottom: 9px;
  }

  .global-menu-trigger.active span:nth-of-type(1) {
    top: 8px;
    transform: translateY(4px) rotate(-45deg);
  }

  .global-menu-trigger.active span:nth-of-type(2) {
    transform: translateY(-8px) rotate(45deg);
  }

}

.sidebar>.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.sidebar>.bottom .top-page-only {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar>.bottom .scroll-text {
  width: 12px;
}

.sidebar>.bottom .scroll-line-wrap {
  width: 12px;
  overflow: hidden;
  margin-top: 10px;
}

.sidebar>.bottom .scroll-line {
  animation: arrowscroll 1.8s linear infinite;
}

@keyframes arrowscroll {
  0% {
    transform: translate(0, -50px);
  }

  80% {
    transform: translate(0, 50px);
  }

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

.sidebar>.bottom .common {
  display: flex;
}

.sidebar>.bottom .common .image {
  width: 50%;
}

.sidebar>.bottom .common .image img {
  width: 100%;
  vertical-align: bottom;
}

.side-fukidashi {
  position: fixed;
  z-index: 100;
  bottom: 10px;
  left: 150px;
}
.side-fukidashi .image {
  width: calc(211px * 0.9);
}
.side-fukidashi .image img {
  vertical-align: bottom;
  width: 100%;
}

/**********************************************************/
/* container                                              */
/**********************************************************/
.container {
  width: calc(100% - 150px);
  margin-left: 150px;
  position: relative;
}

/**********************************************************/
/* footer                                                 */
/**********************************************************/
.footer {
  width: 100%;
  position: relative;
  background-image: url('/assets/img/webp/footer.webp');
  background-size: cover;
  margin-top: 150px;
  height: 100vh;
  min-height: 800px;
}

.footer .menu {
  display: flex;
  gap: 60px 60px;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  transform: translate(0, -50%);
}

.footer .menu ul {
  display: flex;
  flex-direction: column;
  gap: 25px 25px;
  list-style: none;
}

.footer .menu ul>li {
  display: flex;
  gap: 8px 8px;
  align-items: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.5rem;
  letter-spacing: 0.03rem;
  line-height: 3rem;
}

.footer .menu ul>li a {
  color: #fff;
  display: inline-block;
  transition: transform cubic-bezier(.5, .1, .3, 1) 0.4s;
}

.footer .menu ul>li a:hover {
  transform: translateX(12px);
}

.footer .menu ul>li::before {
  content: "";
  width: 23px;
  border-top: 1px solid #fff;
  margin-right: 5px;
}

.footer .menu ul>li.sub::before {
  content: "";
  width: 15px;
  border-top: 1px solid #fff;
  margin-right: 0px;
}

.footer .menu ul>li.sub {
  margin-left: 30px;
  font-size: 2.3rem;
  letter-spacing: 0.03rem;
}

.footer .copyright {
  display: flex;
  flex-direction: column;
  gap: 12px 12px;
  align-items: center;
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
}

.footer .copyright .logo {
  width: 30px;
  margin-bottom: 10px;
}

.footer .copyright .logo img {
  width: 100%;
  vertical-align: bottom;
}

.footer .copyright small {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  color: #fff;
}

/**************************************************/
/* banner, sponsor                                */
/**************************************************/
#banner {
  margin-top: 250px;
}

#banner .banner {
  width: 1145px;
  margin: auto;
  margin-bottom: 150px;
}

#banner .banner img {
  width: 100%;
  vertical-align: bottom;
}

#banner-insta {
  margin-top: 250px;
}

#banner-insta .banner {
  width: 1145px;
  margin: auto;
  margin-bottom: 150px;
}

#banner-insta .banner img {
  width: 100%;
  vertical-align: bottom;
}

#sponsor {
  position: relative;
  width: 100%;
  margin-top: 170px;
}

#sponsor .wrapper {
  width: 100%;
  max-width: 1920px;
  margin: auto;
}

#sponsor .header {
  background-color: #fff;
  height: 300px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sponsor .header .title {
  width: 76px;
}

#sponsor .header .title > img {
  width: 100%;
  vertical-align: bottom;
}

#sponsor .content {
  height: 300px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
#news {
  margin-top: 180px;
  position: relative;
}

#news .wrapper {
  display: flex;
  gap: 50px 50px;
  justify-content: center;
}

#news .title {
  display: flex;
  gap: 20px 20px;
  flex-direction: column;
  align-items: center;
}

#news .title h2 {
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.1rem;
  letter-spacing: 0.3rem;
  line-height: 7rem;
}

#news .title .line {
  border-left: 1px solid #000;
  width: 1px;
  height: 234px;
}

#news .content {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 40px;
  max-width: 1170px;
}

#news .content > .item {
  border-bottom: 1px solid #000;
  height: 176px;
  padding-top: 20px;
}

#news .content > .item a {
  color: #000;
}

#news .content > .item:nth-of-type(1) {
  border-top: 1px solid #000;
}

#news .content > .item:nth-of-type(2) {
  border-top: 1px solid #000;
}

#news .content .item .heading {
  display: flex;
}
#news .content .item .overview {
  display: flex;
}

#news .content .item .heading .date {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.9rem;
  letter-spacing: 0.03rem;
  line-height: 3.8rem;
  width: 100px;
}

#news .content .item .heading .category {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.4rem;
  letter-spacing: 0.03rem;
  line-height: 3.8rem;
  color: #898989;
}

#news .content .item .overview .thumb {
  width: 82px;
  height: 82px;
  content: "";
  background-color: #a8a9ad;
  background-size: cover;
  margin-right: calc(100px - 82px);
  margin-top: 8px;
}

#news .content .item .overview .summary {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.6rem;
  letter-spacing: 0.03rem;
  line-height: 4.5rem;
  margin-top: 10px;
  width: 400px;
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: anywhere;
}

#news .content > .more {
  display: flex;
  height: 176px;
  flex-direction: column;
  justify-content: flex-end;
}

#news .content > .more a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.6rem;
  letter-spacing: 0.1rem;
  line-height: 6rem;
  color: #000;
  position: relative;
}

#news .content > .more .text {
  position: relative;
  padding-bottom: 10px;
  margin-left: 120px;
}

#news .content > .more .image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  animation: yurayura 1.5s linear infinite;
  transition: 1s;
}
#news .content > .more a:hover .image {
  animation: yurayura2 0.2s linear forwards;
}

#news .content > .more .image > img {
  width: 100%;
  vertical-align: bottom;
}

@keyframes yurayura2 {
  0% {
    transform: translate(0, 0)
  }
  100% {
    transform: translate(5%, 0)
  }
}

@keyframes yurayura {
  0% {
    transform: translate(0, 0)
  }
  50% {
    transform: translate(3%, 0)
  }
  100% {
    transform: translate(0, 0)
  }
}

@keyframes yurayura3 {
  0% {
    transform: translate(0, 0)
  }
  43% {
    transform: translate(0, 0)
  }
  50% {
    transform: translate(5%, 0)
  }
  58% {
    transform: translate(0, 0)
  }
  100% {
    transform: translate(0, 0)
  }
}
