/*
--------------------------------
	variables
--------------------------------
*/
/* ---- sizes ---- */
/* ---- colors ---- */
/* ---- border radius ---- */
/*
--------------------------------
	mixins
--------------------------------
*/
/* ---- media query ---- */
/* ---- drop shadow ---- */
/* ---- language ---- */
/*
@include g.tb {

	.body-container {
		padding-right: 20px;
		padding-left: 20px;
	}

}
*/
br.break-t {
  display: inline;
}

br.break-m {
  display: none;
}

:lang(en) .keyvisual .keyvisual-wrap .title {
  letter-spacing: -0.03vw;
}
@media screen and (max-width: 767px) {
  :lang(en) .keyvisual .keyvisual-wrap .title {
    line-height: 1.4;
    letter-spacing: 0.1px;
    font-size: 2.2rem;
  }
}

.has-notice .keyvisual .keyvisual-wrap {
  height: calc(100vh - 280px);
}
.has-notice .important-info,
.has-notice .important-info-d2 {
  display: block;
}

@media screen and (max-width: 767.9px) {
  br.break-t {
    display: none;
  }
  br.break-m {
    display: inline;
  }
  .has-notice .keyvisual .keyvisual-wrap {
    height: calc(var(--vh, 1vh) * 100 - 235px);
  }
  .has-notice .important-info,
  .has-notice .important-info-d2 {
    display: block;
  }
}
/*
--------------------------------
	top page
--------------------------------
*/
/* ---- main visual ---- */
.keyvisual {
  position: relative;
}
.keyvisual .keyvisual-wrap {
  position: relative;
  padding: 0;
  height: calc(100vh - 200px);
  min-height: 600px;
  margin: 100px 40px 0;
  overflow: hidden;
  border-radius: 20px;
  background-color: rgba(0, 1, 62, 0.05);
  color: #FFFFFF;
  text-align: center;
}
.keyvisual .keyvisual-wrap .title {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 12;
  font-weight: 900;
  line-height: 1.4;
  font-size: 3.75vw;
  letter-spacing: 0.03em;
}
.keyvisual .keyvisual-wrap .title p {
  opacity: 0;
}
.keyvisual .keyvisual-wrap .visual li {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.keyvisual .keyvisual-wrap .visual li .keyvisual-mask {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
          clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
  transform: skewX(-28deg);
}
.keyvisual .keyvisual-wrap .visual li .keyvisual-mask picture {
  width: 100%;
  height: 100%;
  display: flex;
  padding-bottom: 0;
  border-radius: 0px;
}
.keyvisual .keyvisual-wrap .visual li .keyvisual-mask picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.3) skewX(28deg);
}
.keyvisual .keyvisual-wrap .visual li .shape-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate3d(50%, 0, 0) skewX(-28deg);
  transform-origin: 0 100%;
  z-index: 10;
}
.keyvisual .keyvisual-wrap .visual li .shape-wrap span {
  position: absolute;
  right: -2%;
  width: 20%;
  height: 100%;
  background: #00013E;
  transform: translate3d(70%, 0, 0);
}
.keyvisual .keyvisual-wrap .visual li .shape-wrap span:first-child {
  right: -4%;
  background: #06C755;
  transform: translate3d(-20%, 0, 0);
}
.keyvisual .keyvisual-wrap .visual li .shape-wrap.type-b {
  transform: translate3d(-50%, 0, 0) skewX(-28deg);
  transform-origin: 0 0%;
}
.keyvisual .keyvisual-wrap .visual li .shape-wrap.type-b span {
  right: auto;
  left: 0;
  width: 18%;
  transform: translate3d(-70%, 0, 0);
}
.keyvisual .keyvisual-wrap .visual li .shape-wrap.type-b span:first-child {
  right: auto;
  left: 0;
  background: #EA3332;
  transform: translate3d(20%, 0, 0);
}
.keyvisual .keyvisual-wrap .visual li.active {
  z-index: 10;
}
.keyvisual .keyvisual-wrap .visual li.active .keyvisual-mask {
  transition: -webkit-clip-path 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.18, 1), -webkit-clip-path 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  -webkit-clip-path: polygon(-20% 0%, 120% 0%, 120% 100%, -20% 100%);
          clip-path: polygon(-20% 0%, 120% 0%, 120% 100%, -20% 100%);
}
.keyvisual .keyvisual-wrap .visual li.active .keyvisual-mask img {
  transform: scale(1) skewX(28deg);
  transition: transform 8s ease-out;
}
.keyvisual .keyvisual-wrap .visual li.active .shape-wrap {
  transition: transform 1.2s;
  transform: translate3d(0, 0, 0) skewX(-28deg);
}
.keyvisual .keyvisual-wrap .visual li.active .shape-wrap span {
  transition: transform 8s;
  transform: translate3d(0, 0, 0);
}
.keyvisual .keyvisual-wrap .visual li.active .shape-wrap.type-b {
  transition: transform 1.2s;
  transform: translate3d(0, 0, 0) skewX(-28deg);
}
.keyvisual .keyvisual-wrap .visual li.active .shape-wrap.type-b span {
  transition: transform 8s;
  transform: translate3d(0, 0, 0);
}
.keyvisual .keyvisual-wrap .visual li.active .shape-wrap.type-b span:first-child {
  transform: translate3d(-10%, 0, 0);
}
.keyvisual .keyvisual-wrap .visual li.deactive {
  z-index: 9;
}

@media screen and (max-width: 1199.9px) {
  .keyvisual .keyvisual-wrap {
    margin-top: 65px;
  }
  .keyvisual .keyvisual-wrap .visual.active .keyvisual-mask {
    -webkit-clip-path: polygon(-200px 0%, calc(100% + 200px) 0%, calc(100% + 200px) 100%, -200px 100%);
            clip-path: polygon(-200px 0%, calc(100% + 200px) 0%, calc(100% + 200px) 100%, -200px 100%);
  }
}
@media screen and (max-width: 767.9px) {
  .keyvisual .keyvisual-wrap {
    margin: 65px 20px 0;
    height: calc(var(--vh, 1vh) * 100 - 100px);
    min-height: auto;
  }
  .keyvisual .keyvisual-wrap .title {
    text-align: left;
    font-size: 2rem;
    line-height: 170%;
    letter-spacing: 0.03em;
    display: block;
    height: auto;
    padding: 50px 0px 50px 30px;
    bottom: 0;
  }
  .keyvisual .keyvisual-wrap .visual li .keyvisual-mask picture img {
    transform: scale(1.3) skewX(28deg);
  }
  .keyvisual .keyvisual-wrap .visual li .shape-wrap {
    transform: translate3d(50%, 0, 0) skewX(-28deg);
  }
  .keyvisual .keyvisual-wrap .visual li .shape-wrap span {
    right: 4%;
    width: 32%;
    transform: translate3d(50%, 0, 0);
  }
  .keyvisual .keyvisual-wrap .visual li .shape-wrap span:first-child {
    right: 0;
    transform: translate3d(-10%, 0, 0);
  }
  .keyvisual .keyvisual-wrap .visual li .shape-wrap.type-b {
    transform: translate3d(-50%, 0, 0) skewX(-28deg);
  }
  .keyvisual .keyvisual-wrap .visual li .shape-wrap.type-b span {
    left: 0;
    width: 32%;
    transform: translate3d(-20%, 0, 0);
  }
  .keyvisual .keyvisual-wrap .visual li .shape-wrap.type-b span:first-child {
    transform: translate3d(20%, 0, 0);
  }
  .keyvisual .keyvisual-wrap .visual li.active .keyvisual-mask {
    -webkit-clip-path: polygon(-200px 0%, calc(100% + 200px) 0%, calc(100% + 200px) 100%, -200px 100%);
            clip-path: polygon(-200px 0%, calc(100% + 200px) 0%, calc(100% + 200px) 100%, -200px 100%);
  }
}
/* ---- important information ---- */
.important-info {
  display: none;
  margin-top: 10px;
  padding: 0 40px;
}
.important-info .important-info-inner {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 1, 62, 0.05);
  padding: 0 30px;
}
.important-info .important-info-inner dl {
  max-width: unset;
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.9;
}
.important-info .important-info-inner dl dt {
  position: relative;
  width: auto;
  z-index: 1;
  color: #2e2e2e;
  padding-right: 1em;
  white-space: nowrap;
  /*
      &:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 1px;
        background: black;
        height: 20px;
        transform: translate3d(0,-50%,0) skewX(-28deg);
        opacity: 0.2;
      }
  */
}
.important-info .important-info-inner dl dd {
  width: auto;
  line-height: 1.5;
  font-size: 1em;
}
.important-info .important-info-inner dl dd a {
  padding: 32px 0;
  display: block;
}
.important-info .important-info-inner dl dd a:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  transition: opacity 0.2s ease-out;
  content: "";
  z-index: -1;
  opacity: 0;
}
.important-info .important-info-inner dl dd a:hover {
  opacity: 1;
}
.important-info .important-info-inner dl dd a:hover:after {
  opacity: 1;
}

.scroll-able {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 38px;
  animation: scrollAction 1.4s ease-in-out infinite;
  transition: opacity 0.4s;
}

.is-scroll .scroll-able {
  opacity: 0;
}

@keyframes scrollAction {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 6px, 0) scaleY(0.9);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 767.9px) {
  .important-info {
    padding: 0 20px;
  }
  .important-info .important-info-inner dl {
    display: block;
    padding: 30px 0;
  }
  .important-info .important-info-inner dl dt {
    font-size: 1.6rem;
  }
  .important-info .important-info-inner dl dt:after {
    display: none;
  }
  .important-info .important-info-inner dl dd {
    padding-left: 0;
    margin-top: 8px;
    font-size: 1.6rem;
  }
  .important-info .important-info-inner dl dd a {
    padding: 0;
  }
  .important-info .important-info-inner dl dd a::after {
    content: none;
  }
  .scroll-able {
    display: none;
  }
}
/* ---- scroll ---- */
.top-scroll {
  padding-top: 32px;
  padding-bottom: 0;
}
.top-scroll-icon {
  width: 12px;
  height: 15px;
  margin: 0 auto;
  background: url(../images/top/scroll.svg) center no-repeat;
  background-size: 12px 15px;
}

@media screen and (max-width: 767.9px) {
  .top-scroll {
    padding-top: 5vw;
  }
}
/* ---- topics ---- */
.top-topics {
  margin-top: 93px;
  padding-top: 0;
  padding-bottom: 0;
  /*
  .c-article-list-topics {
  	margin-top: 40px;
  	border-top: solid 1px rgba(0,0,0,.2);

  	li {
  		border-bottom: solid 1px rgba(0,0,0,.2);
  	}

  	a {
  		padding-top: 40px;
  		padding-right: 20px;
  		padding-bottom: 40px;
  		padding-left: 0;

  		&::after {
  			position: absolute;
  			top: 0;
  			right: 20px;
  			bottom: 0;
  			width: 16px;
  			height: 12px;
  			margin: auto;
  			background: url(../images/icon_arrow.svg) center no-repeat;
  			background-size: 16px 12px;
  			opacity: 0;
  			transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  			transform: translateX(-20px);
  			content: "";
  		}

  		time,
  		.category {
  			color: #1839B1;
  			font-size: 1.4rem;
  			font-weight: 700;
  			line-height: 1.3;
  		}

  		time {
  			min-width: auto;
  		}

  		.category {
  			display: flex;
  			align-items: center;

  			&::before {
  				width: 1px;
  				height: 13px;
  				margin: 0 12px;
  				background-color: rgba(0,0,0,.3);
  				transform: none;
  				content: "";
  			}

  		}

  		p {

  			margin-top: 10px;
  			padding-right: 60px;
  			font-size: 2.4rem;
  			line-height: 1.6;
  			transition: transform 0.2s ease-out;

  			@include g.en {
  				line-height: 1.4;
  			}

  		}

  		&:hover, &:active {
  			background-color: transparent;

  			&::after {
  				opacity: 1;
  				animation: none;
  				transform: translateX(0px);
  			}

  			p {
  				transform: translateX(20px);
  			}
  		}

  	}
  }

  .c-horizontal-link-list {
  	margin-top: 80px;
  	padding: 0;
  	background-color: transparent;
  	gap: 20px 80px;

  	li {

  		a {

  			&.c-arrow-link {
  				padding-right: 18px;
  				padding-bottom: 0;
  				color: #888;
  				font-size: 2rem;
  				line-height: 1.3;
  				border-bottom: 0;
  				transition: color 0.2s;

  				&::before {
  					content: none;
  				}

  				&::after {
  					top: 0;
  					bottom: 0;
  					width: 6px;
  					height: 12px;
  					margin: auto;
  					background-image: url(../images/icon_link.svg);
  					background-repeat: no-repeat;
  					background-position: center center;
  					background-size: 6px 12px;
  					transition: background-image 0.2s;
  				}

  				&:hover, &:active {
  					color: #000;

  					&::after {
  						background-image: url(../images/icon_link_black.svg);
  						animation: none;
  					}
  				}
  			}
  		}
  	}
  }
  */
}
.top-topics h2 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media screen and (max-width: 767.9px) {
  .top-topics {
    margin-top: 80px;
    /*
    .c-article-list-topics {
    	margin-top: 11vw;
    	margin-right: 0;
    	margin-left: 0;

    	a {
    		// padding: 20px g.$header_side_margin_sp;
    		padding: 36px 0;

    		time {
    			font-size: 1.3rem;
    		}

    		.category {
    			font-size: 1.3rem;

    			&::before {
    				margin: 0 8px;
    			}
    		}

    		p {
    			padding-right: 0;
    			font-size: 1.6rem;
    		}

    		&:hover, &:active {

    			&::after {
    				opacity: 0;
    			}

    			p {
    				transform: translateX(0);
    			}

    		}
    	}

    }

    .c-horizontal-link-list {
    	margin-top: 40px;

    	li {

    		&+ li {
    			margin-top: 24px;
    		}

    		a {

    			&.c-arrow-link {
    				padding-top: 0;
    				font-size: 1.8rem;

    				&:hover, &:active {
    					color: #888;

    					&::after {
    						background-image: url(../images/icon_link.svg);
    					}
    				}
    			}
    		}
    	}
    }

    */
  }
  .top-topics h2 {
    font-size: 4rem;
  }
}
/* ---- panel slider ---- */
/*
.top-panel-slider {

	position: relative;
	margin-top: 180px;
	padding-top: 180px;
	padding-bottom: 130px;
	background-color: #353a3f;
	overflow: hidden;

	.c-panel-slider {
		margin-top: 0;
		padding-top: 0;

		.splide__slide {
			a:not([class]) {
				width: 420px;

				span {
					border-radius: 20px;
					display: block;
					overflow: hidden;

					img {
						border-radius: 20px;
						transition: transform 0.2s ease-out;
					}
				}

				p {
					margin-top: 10px;
					padding: 30px 30px 72px;
					line-height: 1.7;
					background-color: #fff;
					border-radius: 20px;
					filter: drop-shadow(0 50px 50px rgba(0, 0, 0, 0.2));
					transition: transform 0.2s ease-out;

					&::after {
						opacity: 0;
						transition: opacity 0.2s ease-out, transform 0.2s ease-out;
						transform: translateX(-10px);
					}

					//span {
						color: g.$color_text;
						font-size: 2rem;
						font-weight: 700;
						//padding: 0;
						//border-radius: 0;
						//background-color: transparent;
						//display: inline;
					//}

					@include g.en {
						font-size: 1.8rem;
						line-height: 1.4;
					}

				}

				&:hover, &:active {

					span {
						img {
							filter: none;
							transform: scale(1.05);
						}
					}

					p {
						transform: translateY(-5px);

						&::after {
							opacity: 1;
							animation: none;
							transform: translateX(0px);
						}
					}
				}
			}
		}

		.controls {
			margin-top: 60px;

			.inner {
				height: 50px;
				padding: 0 86px;
			}

			.splide__toggle {
				display: none;
			}

			.splide__pagination {
				.splide__pagination__page {
					width: 16px;

					&::after {
						width: 6px;
						height: 10px;
						background-color: rgba(255,255,255,.3);
						border-radius: 0;
						transform: skewX(-30deg);
					}

					&.is-active {
						&::after {
							background-color: #fff;
						}
					}

					&:hover, &:active {
						&::after {
							background-color: #fff;
						}
					}
				}
			}

			.splide__arrows {

				button {
					width: 50px;
					height: 50px;
					background-color: rgba(255,255,255,.3);
					border: 0;
					display: flex;
					align-items: center;
					justify-content: center;

					&::after {
						top: auto;
						right: auto;
						width: 16px;
						height: 12px;
						background-size: 16px 12px;
					}

					&.splide__arrow--prev {
						&::after {
							left: auto;
						}
					}

					&:hover, &:active {
						background-color: #fff;

						&::after {
							background: url(../images/icon_arrow.svg) center no-repeat;
							background-size: 16px 12px;
							animation: none;
						}
					}
				}
			}
		}

		.bg {
			display: none;
		}
	}

}
*/
/*
@include g.sp {

	.top-panel-slider {

		margin-top: 80px;
		padding-top: 80px;
		padding-bottom: 80px;

		.c-panel-slider {

			.splide__slide {
				width: 295px !important;

				a:not([class]) {
					width: 295px;

					p {
						margin-top: 3px;
						padding: 30px;

						//span {
							font-size: 1.6rem;
						//}

						@include g.en {
							font-size: 1.6rem;
						}

					}

					&:hover, &:active {

						span {
							img {
								filter: none;
								transform: scale(1);
							}
						}

						p {
							transform: translateY(0);

							&::after {
								opacity: 0;
							}
						}
					}
				}
			}

			.controls {
				margin-top: 30px;

				.inner {
					padding: 0 62px;
				}

				.splide__toggle {
					display: none;
				}

				.splide__pagination {
					.splide__pagination__page {

						&:hover, &:active {
							&::after {
								background-color: rgba(255,255,255,.3);
							}
						}
					}
				}

				.splide__arrows {

					button {

						&:hover, &:active {
							background-color: rgba(255,255,255,.3);

							&::after {
								background: url(../images/icon_arrow.svg) center no-repeat;
								background-size: 16px 12px;
							}
						}
					}
				}
			}

		}

	}

}
*/
/* ---- information by target ---- */
.top-targeted-info {
  padding-top: 180px;
  padding-bottom: 180px;
  /*
  .c-box-link-list {
  	padding-bottom: 36px;
  	background-color: #f7f7f7;
  	border-radius: 20px;
  	border: solid 1px rgba(0,0,0,.05);
  	box-shadow: none;

  	.heading {
  		padding: 60px min(5vw,60px) 30px;
  		font-size: 3rem;
  		line-height: 1.6;

  		span {
  			margin-top: 2px;
  			color :#1839B1;
  			font-size: 2rem;
  		}
  	}

  	ul {
  		padding: 0 min(5vw,60px);
  		border-bottom: 0;

  		li {
  			border-top: solid 1px rgba(0,0,0,.15);
  		}

  		a {
  			padding: 24px 40px 24px 0;
  			color: #888;
  			font-size: 1.8rem;
  			font-weight: 700;
  			line-height: 1.6;
  			background-color: transparent;
  			transition: transform 0.2s ease-out, color 0.2s ease-out;

  			@include g.en {
  				line-height: 1.4;
  			}

  			&::after {
  				right: 22px;
  				width: 16px;
  				height: 12px;
  				background-size: 16px 12px;
  				opacity: 0;
  				transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  				transform: translateX(-10px);

  				content: none;
  			}

  			&:hover, &:active {
  				color: #000;
  				transform: translateX(10px);

  				&::after {
  					opacity: 1;
  					animation: none;
  					transform: translateX(0px);
  				}

  			}
  		}
  	}

  }
  */
}

@media screen and (max-width: 767.9px) {
  .top-targeted-info {
    padding-top: 80px;
    padding-bottom: 80px;
    /*
    .c-box-link-list {
    	padding-bottom: 0;
    	background-color: transparent;
    	border-radius: 0;
    	border: 0;

    	&+.c-box-link-list {
    		margin-top: 60px;
    	}

    	.heading {
    		padding: 0;
    		font-size: 2.4rem;
    		text-align: center;

    		span {
    			margin-top: 0;
    			font-size: 1.6rem;
    		}
    	}

    	ul {
    		margin-top: 20px;
    		padding: 6px 30px;
    		background-color: #f7f7f7;
    		border: solid 1px rgba(0,0,0,.05);
    		border-radius: 20px;

    		li {
    			&:first-child {
    				border-top: 0;
    			}
    		}

    		a {
    			padding: 24px 0;
    			font-size: 1.6rem;

    			&:hover, &:active {
    				color: #888;
    				transform: translateX(0);

    				&::after {
    					opacity: 0;
    				}

    			}
    		}
    	}

    }
    */
  }
}
/* ---- copied from inline style in html file ---- */
.body-container.top-info-container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.top-topics h2.c-index-h2 {
  font-size: 3.2rem;
  text-align: unset;
}

@media screen and (max-width: 767.9px) {
  .body-container.top-info-container {
    padding-top: 21.3vw;
    padding-bottom: 10.7vw;
  }
  .top-topics {
    margin-top: 0;
  }
  .top-topics h2.c-index-h2 {
    font-size: 2.4rem;
  }
}
/* ---- DAY2: important info ---- */
.important-info-d2 {
  display: none;
  margin-top: 10px;
  padding: 0 40px;
}
.important-info-d2 a {
  display: flex;
  justify-content: center;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background-color: #f2f2f5;
  color: #2e2e2e;
  transition: background-color 0.2s;
}
.important-info-d2 a:hover, .important-info-d2 a:active {
  background-color: #e6e6e6;
}
.important-info-d2 a dl {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
.important-info-d2 a dl dt {
  padding-right: 1em;
  white-space: nowrap;
}

@media screen and (max-width: 767.9px) {
  .important-info-d2 {
    margin-top: 20px;
    padding: 0 20px;
  }
  .important-info-d2 a {
    display: block;
    padding: 28px 8vw;
  }
  .important-info-d2 a dl {
    display: block;
    font-size: 1.6rem;
  }
  .important-info-d2 a dl dt {
    padding: 0 0 10px 0;
    white-space: normal;
  }
}

