@charset "UTF-8";
/* CSS Document */

/* .outer-menu */
.outer-menu {
    position: fixed;
}

.outer-menu .checkbox-toggle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    width: 60px;
    height: 60px;
    opacity: 0;
}

.outer-menu .checkbox-toggle:checked + .hamburger > div {
    transform: rotate(135deg);
}

.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
}

.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
    opacity: 0;
}

.outer-menu .checkbox-toggle:checked ~ .menu {
    pointer-events: auto;
    visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
    transform: scale(1);
    transition-duration: 0.75s;
}

.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
}

.outer-menu .checkbox-toggle:hover + .hamburger {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
    transform: rotate(225deg);
}

.outer-menu .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 0.5em 1em;
    background: rgba(000, 000, 000, 0.75);
    border-radius: 50%;
    cursor: pointer;
    transition: box-shadow 0.4s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.outer-menu .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: #FEFEFE;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: inherit;
    transition: all 0.4s ease;
}

.outer-menu .hamburger > div:after {
  top: 10px;
}

.outer-menu .menu {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
	max-width: 440px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    outline: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-menu .menu > div {
    width: 250vw;
    height: 250vw;
    color: #FEFEFE;
    background: rgba(229, 0, 18, 0.97);
    border-radius: 50%;
    transition: all 0.4s ease;
    flex: none;
    transform: scale(0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-menu .menu > div > div {
    /*text-align: center;*/
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
}

.outer-menu .menu > div > div > ul {
    /* list-style: none;
    padding: 0 1em;
    margin: 0;
    display: block;
    max-height: 100vh; */
	list-style: none;
    padding: 0 1em 1em 1em;
    border-bottom: 2px solid #ffffff;
    margin-bottom: 2.5em;
    display: block;
    max-height: 100vh;
    width: 300px;
}

.outer-menu .menu > div > div > ul > li {
    /* padding: 0;
    margin: 1em;
    font-size: 24px;
    display: block; */
	padding: 0;
    margin: 1em 0;
    font-size: 20px;
    font-weight: bold;
    display: block;
}

.outer-menu .menu > div > div > ul > li > a,
.outer-menu .menu > div > div > ul > li > ul > li > a {
    /* position: relative;
    display: inline;
    cursor: pointer;
    transition: color 0.4s ease;
	color: #ffffff; */
	position: relative;
    display: block;
    cursor: pointer;
    transition: color 0.4s ease;
    color: #ffffff;
}

.outer-menu .menu > div > div > ul > li > a:hover,
.outer-menu .menu > div > div > ul > li > ul > li > a:hover {
    color: #e5e5e5;
}

.outer-menu .menu > div > div > ul > li > a:hover:after,
.outer-menu .menu > div > div > ul > li > ul > li > a:hover:after {
    width: 100%;
}

.outer-menu .menu > div > div > ul > li > a:after,
.outer-menu .menu > div > div > ul > li > ul > li > a:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: -0.15em;
    left: 0;
    width: 0;
    height: 2px;
    background: #e5e5e5;
    transition: width 0.4s ease;
}

.outer-menu .menu > div > div > ul > li > a:before,
.outer-menu .menu > div > div > ul > li > ul > li > a:before {
	content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(45deg);
}

.outer-menu .menu > div > div > ul > li > ul {
	padding-left: 1em;
}

.outer-menu .menu > div > div > ul > li > ul > li {
	margin: 1em 0;
}

.outer-menu .menu .menu-logo {
	max-width: 200px;
}





/* .marking-animation */
.marking-area {
	text-align: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 10rem;
    margin-top: -10rem;
}

.marking-animation {
	position: absolute;
	bottom: 10%;
	left: 50%;
	width: 40px;
	height: 50px;
	margin: -25px 0 0 -12px;
}
.marking-animation.is-active .marking-pin {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	margin: -20px 0 0 -20px;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-animation: marking-bounce 1s;
	        animation: marking-bounce 1s;
	border-radius: 50% 50% 50% 0;
	background: #e50012;
}
.marking-animation.is-active .marking-pin:after {
	position: absolute;
	left: 50%;
	right: 50%;
	width: 14px;
	height: 14px;
	margin: 8px 0 0 -7px;
	content: '';
	border-radius: 50%;
	background: #ffffff;
}
.marking-animation .marking-pulse {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	margin: 11px 0px 0px -12px;
	-webkit-transform: rotateX(55deg);
	        transform: rotateX(55deg);
	border-radius: 50%;
	background: #bfc0c0;
}
.marking-animation.is-active .marking-pulse:after {
	position: absolute;
	width: 40px;
	height: 40px;
	margin: -13px 0 0 -19px;
	content: '';
	-webkit-animation: marking-pulsate 1s ease-out infinite 1.1s;
	        animation: marking-pulsate 1s ease-out infinite 1.1s;
	opacity: 0;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 1px 2px rgba(230,0,18 ,0.3);
	        box-shadow: 0 0 1px 2px rgba(230,0,18 ,0.3);
}
@-webkit-keyframes marking-pulsate {
	0%   { -webkit-transform: scale(0.1, 0.1);
				         transform: scale(0.1, 0.1);
				 opacity: 0; }
	50%  { opacity: 1; }
	100% { -webkit-transform: scale(1.2, 1.2);
				         transform: scale(1.2, 1.2);
				 opacity: 0; }
}
@keyframes marking-pulsate {
	0%   { -webkit-transform: scale(0.1, 0.1);
				         transform: scale(0.1, 0.1);
				 opacity: 0; }
	50%  { opacity: 1; }
	100% { -webkit-transform: scale(1.2, 1.2);
				         transform: scale(1.2, 1.2);
				 opacity: 0; }
}
@-webkit-keyframes marking-bounce {
	0%   { -webkit-transform: translateY(-2000px) rotate(-45deg);
				         transform: translateY(-2000px) rotate(-45deg);
				 opacity: 0; }
	60%  { -webkit-transform: translateY(30px) rotate(-45deg);
				         transform: translateY(30px) rotate(-45deg);
				 opacity: 1; }
	80%  { -webkit-transform: translateY(-10px) rotate(-45deg);
				         transform: translateY(-10px) rotate(-45deg); }
	100% { -webkit-transform: translateY(0) rotate(-45deg);
				         transform: translateY(0) rotate(-45deg); }
}
@keyframes marking-bounce {
	0%   { -webkit-transform: translateY(-2000px) rotate(-45deg);
				         transform: translateY(-2000px) rotate(-45deg);
				 opacity: 0; }
	60%  { -webkit-transform: translateY(30px) rotate(-45deg);
				         transform: translateY(30px) rotate(-45deg);
				 opacity: 1; }
	80%  { -webkit-transform: translateY(-10px) rotate(-45deg);
				         transform: translateY(-10px) rotate(-45deg); }
	100% { -webkit-transform: translateY(0) rotate(-45deg);
				         transform: translateY(0) rotate(-45deg); }
}

.marking-animation .marking-pin br,
.marking-animation .marking-pulse br {
	display: none;
}





/* .circle-animation */
.circle-animation-area {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	margin-top:2rem; 
}

.circle-animation {
	width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
	line-height: 1.25;
	font-weight: bold;
    color: #fff;
    text-align: center;
	margin: 0 8px;
	opacity: 0;
}

.circle-animation:nth-child(n+4) {
	margin-top: 16px;
}

.circle-animation.is-active {
  animation: circle-animation 2s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1;
}

@keyframes circle-animation {
  0% {
    clip-path: circle(0 at 50% 50%);
    -webkit-clip-path: circle(0 at 50% 50%);
  }

  100% {
    clip-path: circle(100% at 50% 50%);
    -webkit-clip-path: circle(100% at 50% 50%);
  }
}





/* .fade-animation */
.fade-animation {
	opacity: 0;
	transition: .6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-animation.is-active {
	opacity: 1;
}





/* .bg-image-loop */
.bg-image-loop {
	background-image: url(../images/original/img_ms2025.png) !important;
	background-repeat: repeat-x;
	background-size: auto 50%;
	animation: bg-slider 60s linear infinite; 
}

@keyframes bg-slider {
	from { background-position: left bottom; }
    to { background-position: 100% bottom; } 
}





/* .swiper */
 .l-inner {
    position: relative;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    max-width: 1200px;
    margin: 0 auto;
	 padding: 20px 5%;
  }

  [class*=swiper]:focus {
    outline: none;
  }

  .slide-media,
  .thumb-media {
    position: relative;
    overflow: hidden;
  }
  .slide-media img,
  .thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .card02 {
    overflow: hidden;
  }
  .card02 .swiper {
    overflow: visible;
  }

  .card02 .swiper-slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .card02 .slide {
    overflow: hidden;
    width: 160px;
    border-radius: 10px;
    -webkit-box-shadow:.8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
            box-shadow:.8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  }
  .card02 .slide-media {
    padding-top: 62.5%;
  }
  .card02 .slide-media img {
    height: calc(100% + 16px);
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
  .card02 .slide-content {
    padding: 1rem;
  }
  .card02 .slide-date {
    font-size: 1.2rem;
    line-height: 1;
    display: block;
    color: #f5695f;
  }
  .card02 .slide-title {
    line-height: 1.6;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 3.2em;
    margin-top: 1.6rem;
  }




































