@charset "utf-8";

/*--------------------------------------
　Header
---------------------------------------*/
.header_home {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}
.header_home .sitename {
  display: inline-block;
}
.header_home .sponsored {
  display: inline-block;
  margin-left: 1rem;
  font-size: 1.2rem;
}
.header_home .operation {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .header_home .sitename {
    display: block;
  }
  .header_home .sponsored {
    display: block;
    margin-left: 0;
    font-size: 11px;
  }
  .header_home .operation {
    display: none;
  }
}



/*--------------------------------------
　MV
---------------------------------------*/
.mv_home {
  background: #409fff;
  width: 100%;
  min-width: 1100px;
  padding: 10rem 0 15rem;
  position: relative;
}

.mv_home .mv_inner {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 0;
}
.mv_home .mv_inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translate(0,-50%);
  background: url("img/mv_eng.webp") left top no-repeat;
  background-size: 100% auto;
  width: 70%;
  height: 0;
  padding-top: calc(70%*560/620);
  z-index: -1;
}

.mv_home .mv_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mv_home .mvL {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 700px);
  text-align: center;
}

.mv_home .mv_ttl {
  font-size: 4.8rem;
}

.mv_home .mvR {
  width: 660px;
  margin: 0 -5rem 0 0;
  position: relative;
}
.mv_home .mvR::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  right: 0;
  background: url("img/puzzle01.png") left top no-repeat;
  background-size: contain;
  width: 300px;
  height: 330px;
}
.mv_home .mv_slide {
  width: 700px;
}
.mv_home .mv_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 660px;
  height: 640px;
  position: absolute;
  top: 0;
  left: 0;
  animation: fadeMv 20s infinite;
  animation: fadeMv 10s infinite;
  opacity: 0;
  transition: opacity 1s;
}
.mv_home .mv_box01 {
  padding: 0 8rem 0 0;
  animation-delay: 0s;
}
.mv_home .mv_box02 {
  padding: 0 8rem 0 0;
  animation-delay: 6.6s;
  animation-delay: 3.33s;
}
.mv_home .mv_box03 {
  padding: 0 8rem 0 0;
  animation-delay: 13.2s;
  animation-delay: 6.66s;
} 

.mv_home .mv_cc {
  font-size: 3.2rem;
  line-height: 1.8;
}
.mv_home .mv_cc .bg01 {
  background: #fff;
  padding: 5px 5px;
}
.mv_home .mv_cc .bg02 {
  background: #0079f2;
  padding: 5px 5px;
}
.mv_home .sub_cc {
	display: flex;
	align-items: center;
	justify-content: flex-end;
  margin: 2rem 0 0;
  font-size: 1.8rem;
  position: relative;
}
.mv_home .sub_cc::before {
	content: "";
	display: block;
  width: 40px;
	margin-right: 15px;
	border-top: 1px solid #006dda;
}
.mv_home .mv_box01 .mv_cc {
  line-height: 1.5;
}
.mv_home .mv_box01 .sub_cc {
  margin: 0 2rem 0 0;
}
.mv_home .mv_box01 .sub_cc::before {
  width: 1px;
  height: 40px;
	margin-right: 0;
	margin-bottom: 15px;
	border-top: none;
	border-left: 1px solid #006dda;
}

.tootip_box {
  display: inline-block;
  position: relative;
  top: 120px;
}
.tootip_box .tootiplink {
  padding: 0 3.5rem 0 0;
  font-size: 2rem;
  transition: 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}
.tootip_box .tootiplink::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 35px);
  border-bottom: 2px solid #fff;
}
.tootip_box .tootiplink::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("img/icon-hatena.png") left top no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  box-sizing: border-box;
}
.tootip_box .tooltip {
  display: none;
  position: absolute;
  top: -30px;
  left: calc(100% + 40px);
  background: rgb(0,85,169,0.8);
  padding: 2.5rem 2.5rem;
  width: 650px;
  text-align: left;
  animation-name: fade-in;
  animation-duration: 0.5s;
  z-index: 1;
}
.tootip_box .tooltip:after {
  content: "";
  position: absolute;
  top: 30px;
  right: 100%;
  border: 14px solid transparent;
  border-right: 24px solid  rgb(0,85,169,0.8);
}
.tootip_box .t_ttl {
  font-size: 1.8rem;
}
.tootip_box .t_ttl span{
  display: inline-block;
  background: #fff;
  padding: 5px 1rem;
}
.tootip_box .txt {
  margin: 1.5rem 0 0;
  font-size: 1.4rem;
}
.tootip_box .caption,
.tootip_box a{
	color:#FFF
}

@media screen and (max-width: 768px) {
  .mv_home {
    min-width: 100%;
    padding: 5rem 0 5rem;
    z-index: 1;
  }

  .mv_home .mv_inner {
    max-width: 100%;
  }
  .mv_home .mv_inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("img/mv_eng01_sp.webp") left top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*210/750);
    z-index: -1;
  }
  .mv_home .mv_inner::after {
    content: "";
    position: absolute;
    top: inherit;
    bottom: 0;
    left: 0;
    transform: translate(0,0);
    background: url("img/mv_eng02_sp.webp") left top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*460/750);
    z-index: -1;
  }

  .mv_home .mvL {
    display: block;
    width: 100%;
    padding: 0 1.5rem;
    text-align: right;
    order: 2;
  }

  .mv_home .mv_ttl {
    margin: 1rem 0 0;
    font-size: 9vw;
    text-align: left;
  }

  .mv_home .mvR {
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 1.5rem;
    order: 1;
  }
  .mv_home .mvR::after {
    width: 35%;
    height: 0;
    padding-top: calc(35%*330/300);
  }
  .mv_home .mv_box {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .mv_home .mv_cc__wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
  }
  .mv_home .mv_cc {
    font-size: 3.2rem;
    font-size: 4.6vw;
    line-height: 1.8;
  }
  .mv_home .mv_cc .bg01 {
    padding: 3px 3px;
  }
  .mv_home .mv_cc .bg02 {
    padding: 3px 3px;
  }
  .mv_home .sub_cc {
    margin: 1rem 0 0;
    font-size: 2.4vw;
    position: relative;
  }
  .mv_home .sub_cc::before {
    width: 30px;
    margin-right: 10px;
  }
  .mv_home .mv_box01 .mv_cc__wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .mv_home .mv_box01 .mv_cc {
    white-space: nowrap;
    line-height: 2;
  }
  .mv_home .mv_box01 .sub_cc {
    margin: 0 1rem 0 0;
  }
  .mv_home .mv_box01 .sub_cc::before {
    width: 1px;
    height: 30px;
    margin-right: 0;
    margin-bottom: 10px;
    border-top: none;
    border-left: 1px solid #006dda;
  }

  .tootip_box {
    display: block;
    text-align: right;
    top: inherit;
    margin: 5rem 0 0;
  }
  .tootip_box .tootiplink {
    display: inline-block;
    padding: 0 3rem 0 0;
    font-size: 1.6rem;
  }
  .tootip_box .tootiplink::before {
    width: calc(100% - 30px);
    border-bottom: 1px solid #fff;
  }
  .tootip_box .tootiplink::after {
    width: 20px;
    height: 20px;
  }
  .tootip_box .tooltip {
    top: calc(100% + 30px);
    left: 50%;
    transform: translate(-50%,0);
    padding: 2rem 2rem;
    width: 100%;
  }
  .tootip_box .tooltip:after {
    top: -26px;
    right: inherit;
    left: 50%;
    transform: translate(-50%,0);
    border: 10px solid transparent;
    border-bottom: 16px solid  rgb(0,85,169,0.8);
  }
  .tootip_box .t_ttl {
    font-size: 1.6rem;
  }
  .tootip_box .t_ttl span {
    padding: 3px 5px;
  }
  .tootip_box .txt {
    margin: 1rem 0 0;
    font-size: 1.4rem;
  }
  
  .mv_home .operation {
    margin: 5rem 0 0;
    padding: 0 1.5rem;
    font-size: 1.1rem;
  }
}



/*--------------------------------------
　MVアニメーション
---------------------------------------*/
.mv_clip__wrap {
  position: relative;
  width: 660px;
  height: 640px;
  cursor: none;
  animation: geometry 20s cubic-bezier(0.6, 0.05, 0.3, 0.95) infinite;
  animation: geometry 10s cubic-bezier(0.6, 0.05, 0.3, 0.95) infinite;
  clip-path: polygon(13.00% 13.39%, 39.00% 13.39%, 39.00% 0.00%, 51.99% 0.00%, 51.99% 13.39%, 64.99% 13.39%, 64.99% 25.89%, 87.52% 25.89%, 87.52% 59.82%, 100.00% 59.82%, 100.00% 86.61%, 74.00% 86.61%, 74.00% 100.00%, 61.00% 100.00%, 61.00% 86.61%, 13.00% 86.61%, 13.00% 73.39%, 0.00% 73.39%, 0.00% 46.61%, 13.00% 46.61%);
  overflow: hidden;
  background-color: #fff;
}
.mv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.bg1 {
  background-image: url('img/mv_cc_bg01.jpg');
  background-size: 120%;
  animation: bgSwitch 20s infinite, bgMove1 20s ease-in-out infinite;
  animation: bgSwitch 10s infinite, bgMove1 10s ease-in-out infinite;
  animation-delay: 0s, 0s;
}
.bg2 {
  background-image: url('img/mv_cc_bg03.jpg');
  background-size: 120%;
  animation: bgSwitch 20s infinite, bgMove2 20s ease-in-out infinite;
  animation-delay: 6.66s, 6.66s;
  animation: bgSwitch 10s infinite, bgMove2 10s ease-in-out infinite;
  animation-delay: 3.33s, 3.33s;
}
.bg3 {
  background-image: url('img/mv_cc_bg02.jpg');
  background-size: 120%;
  animation: bgSwitch 20s infinite, bgMove3 20s ease-in-out infinite;
  animation-delay: 13.33s, 13.33s;
  animation: bgSwitch 10s infinite, bgMove3 10s ease-in-out infinite;
  animation-delay: 6.66s, 6.66s;
}

@media screen and (max-width: 768px) {
	.mv_clip__wrap {
    width: 100%;
    height: 0;
    padding-top: calc(100%*640/660);
    margin: 1.5rem 0;
  }
}

/* 背景切り替え */
@keyframes bgSwitch {
  /* 0% { opacity: 0; }
  5% { opacity: 1; }
  30% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; } */

  0% { opacity: 0; }
  5% { opacity: 1; }
  31% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}
/* 背景スライド */
@keyframes bgMove1 {
  0%   { background-position: center center; }
  50%  { background-position: right top; }
  100% { background-position: center center; }
}

@keyframes bgMove2 {
  0%   { background-position: center center; }
  50%  { background-position: right bottom; }
  100% { background-position: center center; }
}

@keyframes bgMove3 {
  0%   { background-position: center center; }
  50%  { background-position: left top; }
  100% { background-position: center center; }
}
/* テキスト表示切り替え */
@keyframes fadeMv {
  0% { opacity: 0; }
  2% { opacity: 1; }
  30% { opacity: 1; }
  32% { opacity: 0; }
  100% { opacity: 0; }
}
/* clip-pathアニメーション */
@keyframes geometry {
  0% {
    clip-path: polygon(12.93% 13.31%, 54.74% 13.31%, 54.74% 0.00%, 67.67% 0.00%, 67.67% 13.31%, 87.07% 13.31%, 87.07% 40.27%, 100.00% 40.27%, 100.00% 66.89%, 87.07% 66.89%, 87.07% 100.00%, 61.21% 100.00%, 61.00% 87.00%, 61.00% 87.00%, 12.93% 86.69%, 12.93% 100.00%, 0.00% 100.00%, 0.00% 73.38%, 12.93% 73.38%, 12.93% 40.27%);
  }
  2% {
    clip-path: polygon(0% 13.31%, 12.93% 13.31%, 12.93% 0%, 25.86% 0%, 25.86% 13.31%, 100% 13.31%, 100% 26.66%, 86% 26.66%, 86% 86.69%, 86% 100%, 61.21% 100%, 61.21% 86.69%, 12.93% 86.69%, 12.93% 73.64%, 0% 73.64%, 0% 60.33%, 12.93% 60.33%, 12.93% 39.93%, 0% 39.93%, 0% 13.31%);
  }
  4% {
    clip-path: polygon(12.93% 13.31%, 54.74% 13.31%, 54.74% 0.00%, 67.67% 0.00%, 67.67% 13.31%, 87.07% 13.31%, 87.07% 40.27%, 100.00% 40.27%, 100.00% 66.89%, 87.07% 66.89%, 87.07% 100.00%, 61.21% 100.00%, 61.00% 87.00%, 61.00% 87.00%, 12.93% 86.69%, 12.93% 100.00%, 0.00% 100.00%, 0.00% 73.38%, 12.93% 73.38%, 12.93% 40.27%);
  }
  6% {
    clip-path: polygon(13.00% 13.39%, 39.00% 13.39%, 39.00% 0.00%, 51.99% 0.00%, 51.99% 13.39%, 64.99% 13.39%, 64.99% 25.89%, 87.52% 25.89%, 87.52% 59.82%, 100.00% 59.82%, 100.00% 86.61%, 74.00% 86.61%, 74.00% 100.00%, 61.00% 100.00%, 61.00% 86.61%, 13.00% 86.61%, 13.00% 73.39%, 0.00% 73.39%, 0.00% 46.61%, 13.00% 46.61%);
  }
  33% {
    clip-path: polygon(13.00% 13.39%, 39.00% 13.39%, 39.00% 0.00%, 51.99% 0.00%, 51.99% 13.39%, 64.99% 13.39%, 64.99% 25.89%, 87.52% 25.89%, 87.52% 59.82%, 100.00% 59.82%, 100.00% 86.61%, 74.00% 86.61%, 74.00% 100.00%, 61.00% 100.00%, 61.00% 86.61%, 13.00% 86.61%, 13.00% 73.39%, 0.00% 73.39%, 0.00% 46.61%, 13.00% 46.61%);
  }
  35% {
    clip-path: polygon(0% 13.31%, 12.93% 13.31%, 12.93% 0%, 25.86% 0%, 25.86% 13.31%, 100% 13.31%, 100% 26.66%, 86% 26.66%, 86% 86.69%, 86% 100%, 61.21% 100%, 61.21% 86.69%, 12.93% 86.69%, 12.93% 73.64%, 0% 73.64%, 0% 60.33%, 12.93% 60.33%, 12.93% 39.93%, 0% 39.93%, 0% 13.31%);
  }
  37% {
    clip-path: polygon(12.93% 13.31%, 54.74% 13.31%, 54.74% 0.00%, 67.67% 0.00%, 67.67% 13.31%, 87.07% 13.31%, 87.07% 40.27%, 100.00% 40.27%, 100.00% 66.89%, 87.07% 66.89%, 87.07% 100.00%, 61.21% 100.00%, 61.00% 87.00%, 61.00% 87.00%, 12.93% 86.69%, 12.93% 100.00%, 0.00% 100.00%, 0.00% 73.38%, 12.93% 73.38%, 12.93% 40.27%);
  }
  39% {
    clip-path: polygon(0% 13.31%, 12.93% 13.31%, 12.93% 0%, 25.86% 0%, 25.86% 13.31%, 100% 13.31%, 100% 26.66%, 86% 26.66%, 86% 86.69%, 86% 100%, 61.21% 100%, 61.21% 86.69%, 12.93% 86.69%, 12.93% 73.64%, 0% 73.64%, 0% 60.33%, 12.93% 60.33%, 12.93% 39.93%, 0% 39.93%, 0% 13.31%);
  }
  66% {
    clip-path: polygon(0% 13.31%, 12.93% 13.31%, 12.93% 0%, 25.86% 0%, 25.86% 13.31%, 100% 13.31%, 100% 26.66%, 86% 26.66%, 86% 86.69%, 86% 100%, 61.21% 100%, 61.21% 86.69%, 12.93% 86.69%, 12.93% 73.64%, 0% 73.64%, 0% 60.33%, 12.93% 60.33%, 12.93% 39.93%, 0% 39.93%, 0% 13.31%);
  }
  68% {
    clip-path: polygon(13.00% 13.39%, 39.00% 13.39%, 39.00% 0.00%, 51.99% 0.00%, 51.99% 13.39%, 64.99% 13.39%, 64.99% 25.89%, 87.52% 25.89%, 87.52% 59.82%, 100.00% 59.82%, 100.00% 86.61%, 74.00% 86.61%, 74.00% 100.00%, 61.00% 100.00%, 61.00% 86.61%, 13.00% 86.61%, 13.00% 73.39%, 0.00% 73.39%, 0.00% 46.61%, 13.00% 46.61%);
  }
  70% {
    clip-path: polygon(0% 13.31%, 12.93% 13.31%, 12.93% 0%, 25.86% 0%, 25.86% 13.31%, 100% 13.31%, 100% 26.66%, 86% 26.66%, 86% 86.69%, 86% 100%, 61.21% 100%, 61.21% 86.69%, 12.93% 86.69%, 12.93% 73.64%, 0% 73.64%, 0% 60.33%, 12.93% 60.33%, 12.93% 39.93%, 0% 39.93%, 0% 13.31%);
  }
  72% {
    clip-path: polygon(12.93% 13.31%, 54.74% 13.31%, 54.74% 0.00%, 67.67% 0.00%, 67.67% 13.31%, 87.07% 13.31%, 87.07% 40.27%, 100.00% 40.27%, 100.00% 66.89%, 87.07% 66.89%, 87.07% 100.00%, 61.21% 100.00%, 61.00% 87.00%, 61.00% 87.00%, 12.93% 86.69%, 12.93% 100.00%, 0.00% 100.00%, 0.00% 73.38%, 12.93% 73.38%, 12.93% 40.27%);
  }
  100% {
    clip-path: polygon(12.93% 13.31%, 54.74% 13.31%, 54.74% 0.00%, 67.67% 0.00%, 67.67% 13.31%, 87.07% 13.31%, 87.07% 40.27%, 100.00% 40.27%, 100.00% 66.89%, 87.07% 66.89%, 87.07% 100.00%, 61.21% 100.00%, 61.00% 87.00%, 61.00% 87.00%, 12.93% 86.69%, 12.93% 100.00%, 0.00% 100.00%, 0.00% 73.38%, 12.93% 73.38%, 12.93% 40.27%);
  }
}



/*--------------------------------------
　Main Index
---------------------------------------*/
.contents_top {
	width: 100%;
	min-width: 1100px;
	margin: auto;
	box-sizing: border-box;
  position: relative;
  z-index: 0;
  /*overflow: hidden;*/
  contain: paint;
}

.sec {
	width: 100%;
	min-width: 1100px;
	margin: auto;
	box-sizing: border-box;
	position: relative;
}

/*.sec .inner {
	max-width: 1100px;
	margin: auto;
	box-sizing: border-box;
}*/

@media screen and (max-width: 768px) {
	.contents_top {
		min-width: 100%;
	}
  
	.sec {
		min-width: 100%;
	}
  
	.sec .inner {
		max-width: 100%;
	}
}



/*--------------------------------------
　Title
---------------------------------------*/
.main_ttl01.tc {
  text-align: center;
}
.main_ttl01 .sec_ttl {
  font-size: 3.4rem;
  line-height: 1.85;
}
.main_ttl01 .sec_ttl .large {
  font-size: 4.4rem;
  line-height: 1.9;
}

.main_ttl01 .sec_ttl a {
  display: inline-block;
  position: relative;
}
.main_ttl01 .sec_ttl a::after {
	content: "";
  display: inline-block;
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
	width: 40px;
	height: 40px;
  box-sizing: border-box;
  margin-left: 10px;
  position: relative;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .main_ttl01 .sec_ttl {
    font-size: 2.2rem;
    line-height: 1.8;
  }
  .main_ttl01 .sec_ttl .large {
    font-size: 3rem;
    line-height: 1.9;
  }
  
  .main_ttl01 .sec_ttl a::after {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    top: 0;
  }
}



/*--------------------------------------
　テキスト
---------------------------------------*/
.contents_top p {
	margin: 3rem 0 3rem;
	font-size: 1.5rem;
	line-height: 2;
}

.txt {
	margin: 3rem 0 3rem;
	font-size: 1.5rem;
	text-align: justify;
	line-height: 2;
}

.lead {
	margin: 3rem 0 0!important;
	font-size: 1.5rem;
	line-height: 2;
}

p.caption {
	margin: 1rem 0 0 0!important;
	padding: 0 0 0.5rem 0;
	font-size: 1rem;
	line-height: 1.3;
}

.sec p {
	margin: 0 0 0;
}

@media screen and (max-width: 768px) {
	.contents_top p {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}

	.txt {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}

	.lead {
		margin: 2rem 0 0!important;
		line-height: 1.8;
	}
  
  p.caption {
    margin: 1rem 0 0 0!important;
    padding: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .sec p {
    margin: 0 0 0;
  }
}



/*--------------------------------------
　toc_home
---------------------------------------*/
.toc_home {
  width: 100%;
  border-top: 1px solid #474747;
  border-bottom: 1px solid #474747;
}

.toc_home .toc_home_inner {
  display: flex;
  justify-content: space-between;
  height: 70px;
}

.toc_home .eng_wrap {
  display: flex;
  align-items: center;
  background: #474747;
  width: 160px;
}
.toc_home .eng {
  width: 120px;
  margin: auto;
}

.toc_home .slide_wrap {
  display: flex;
  align-items: center;
  background: #fff;
  width: calc(100% - 160px);
}

.toc_home .scroll-track li {
  /* flex: 0 0 auto;
  margin-right: 30px; */
  padding: 0 15px;
  width: calc(100% / 4);
  text-align: center;
  font-size: clamp(1.3rem, 0.9vw, 1.6rem);
}
.toc_home .scroll-track li a {
  display: inline-block;
  padding: 0 3rem 0 0;
  position: relative;
  text-align: left;
}
.toc_home .scroll-track li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  background: url("img/arrow-bk01.png") left top no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  box-sizing: border-box;
  transform: rotate(90deg);
}
.toc_home .scroll-track li .num {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  width: 44px;
}

.scroll-container {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  align-items: center;
  /* width: max-content; */
  /* animation: scroll-left 40s linear infinite; */
}

.scroll-container:hover .scroll-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {
  .toc_home .toc_home_inner {
    height: auto;
  }

  .toc_home .eng_wrap {
    width: 40px;
  }
  .toc_home .eng {
    width: 32%;
  }

  .toc_home .slide_wrap {
    width: calc(100% - 40px);
  }

  .toc_home .scroll-track li {
    margin-bottom: 20px;
    font-size: 1.5rem;
    width: 100%;
  }
  .toc_home .scroll-track li:first-of-type {
    margin-top: 20px;
  }
  .toc_home .scroll-track li a {
    padding: 0 2.5rem 0 0;
    /* min-height: 50px; */
    place-items: center;
    display: block;
  }
  .toc_home .scroll-track li a::after {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
  .toc_home .scroll-track li .num {
    width: 35px;
  }

  .scroll-track {
    /* animation: scroll-left 60s linear infinite; */
    display: block;
  }
}



/*--------------------------------------
　sv
---------------------------------------*/
.sv {
  background: repeating-linear-gradient(90deg, #dceeff, #dceeff 2px, #fff 2px, #fff 350px);
  padding: 14rem 0 22rem;
}

.sv .inner {
  max-width: 1100px;
  margin: auto;
}

.sv .sv_block {
  padding: 5rem 0 5rem 8rem;
  position: relative;
  z-index: 0;
}
.sv .sv_block::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 70%;
  background: url("img/eng-sponsored02.webp") left top no-repeat;
  background-size: contain;
  width: 500px;
  height: 110px;
  margin: auto;
}
.sv .sv_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #0079f2;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  box-sizing: border-box;
  z-index: -1;
}

.sv .boxL {
  width: calc(100% - 610px);
}

.sv .sub {
  display: inline-block;
  margin: 0 0 2rem;
  font-size: 1.8rem;
}
.sv .sub span {
	display: flex;
	align-items: center;
	justify-content: center;
  position: relative;
}
.sv .sub span::after {
	content: "";
	display: block;
  width: 70px;
	border-top: 1px solid #fff;
	margin-left: 10px;
}

.sv .sv_ttl {
  font-size: 3.8rem;
}

.sv .txtBox {
  margin: 3rem 0 0;
  padding: 3rem 0 3rem;
  position: relative;
  z-index: 0;
}
.sv .txtBox::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  background: #005ab5;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  box-sizing: border-box;
  z-index: -1;
}

.sv .boxR {
  width: 550px;
  margin: 2rem 0 0;
}

.sv .imgBox {
  position: relative;
  z-index: 1;
}
.sv .caption {
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sv {
    background: none;
    padding: 8rem 0 0;
  }

  .sv .inner {
    max-width: 100%;
  }

  .sv .sv_block {
    padding: 4rem 1.5rem 4rem 1.5rem;
  }
  .sv .sv_block::before {
    top: -30px;
    left: 50%;
    transform: translate(-50%,0);
    width: 90%;
    height: 0;
    padding-top: calc(90%*110/750);
  }
  .sv .sv_block::after {
    min-width: 100%;
  }

  .sv .boxL {
    width: 100%;
  }

  .sv .sub {
    margin: 0 0 1rem;
    font-size: 1.4rem;
  }
  .sv .sub span::after {
    width: 40px;
    margin-left: 5px;
  }

  .sv .sv_ttl {
    font-size: 2.8rem;
  }

  .sv .txtBox {
    margin: 2rem 0 0;
    padding: 0 0 0;
  }
  .sv .txtBox::after {
    display: none;
  }

  .sv .boxR {
    width: 100%;
    margin: 0 0 0;
  }

  .sv .imgBox {
    margin: 2rem 0 0;
  }
}



/*--------------------------------------
　sec01
---------------------------------------*/
.sec01 {
  margin-top: -12rem;
}

.sec01 .eng-scroll {
  background: url("img/eng-wed.webp") repeat-x;
  background-size: 1240px auto;
  width: 100%;
  height: 120px;
  opacity: 0.1;
}

.sec01 .lead {
  font-size: 2.4rem;
}


.sec01_block {
  background: url("img/sec01_bg.webp") center top no-repeat;
  background-size: cover;
  padding: 8rem 0 12rem;
  border-top: 1px solid #474747;
  border-bottom: 1px solid #474747;
}
.sec01_block .inner {
  max-width: 1100px;
  margin: auto;
}


.tab_parts {
  margin: 6rem 0 0;
}

.tabArea {
  position: -webkit-sticky;
	position: sticky;
  top: 80px;
  left: 0;
  width: 160px;
  z-index: 1;
  float: right;
}
.tabArea li {
  background: #8d8d8d;
  margin: 0 0 1rem 1rem;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tabArea li.active {
  background: #41ca27;
  margin: 0 0 1rem 0;
  border-radius: 0 10px 10px 0;
}
.tabArea .tab_num {
  width: 32px;
  margin: auto;
}
.tabArea .tab_txt {
  margin: 5px 0 0;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}

.tabContentsWrap {
  width: calc(100% - 160px);
  background: #fff;
  padding: 5rem 5rem 5rem;
  border: 1px solid #474747;
  position: relative;
  float: left;
}

.tab_block .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
}

.tab_block .item01 {
  padding: 0 3rem;
}
.tab_block .item01 .boxL {
  width: 350px;
}
.tab_block .item01 .imgBox {
  background: url("img/bg_puzzle.png") center center no-repeat;
  background-size: contain;
}
.tab_block .item01 .imgBox img {
  width: 350px;
}
.tab_block .item01 .boxR {
  width: calc(100% - 380px);
}
.tab_block .ttl01 {
  font-size: 2.8rem;
}
.tab_block .txt {
  margin: 2rem 0 0;
  position: relative;
  z-index: 1;
}
.tab_block .item02 {
  margin: 4rem 0 0;
}
.tab_block .ttl02 {
	display: flex;
	align-items: center;
	justify-content: center;
  font-size: 2.2rem;
  position: relative;
}
.tab_block .ttl02::after {
	content: "";
	display: block;
	margin-left: 20px;
	border-top: 1px solid #0079f2;
	flex-grow: 1;
}

.tab_block .item02 .flexBox {
  margin: 5rem 0 0;
}
.tab_block .item02 .item_box {
  width: calc(33.33% - 2.5rem);
  margin: 0 0 6rem;
}
.tab_block .item02 .item_box:nth-child(4), 
.tab_block .item02 .item_box:nth-child(5) {
  width: calc(50% - 3rem);
}
.tab_block .ttl03 {
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  z-index: 0;
}
.tab_block .ttl03::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
  background: #e6fce1;
  width: 70px;
  height: 70px;
  z-index: -1;
}

.tab_block .btn-link a {
  margin: 0 0 0;
}

@media screen and (max-width: 768px) {
  .sec01 {
    margin-top: 0;
  }

  .sec01 .eng-scroll {
    background: #e4e7e8 url("img/eng-wed.webp") repeat-x;
    background-size: 620px auto;
    height: 60px;
  }

  .sec01 .lead {
    font-size: 1.4rem;
  }


  .sec01_block {
    background: url("img/sec01_bg.webp") center top repeat;
    background-size: 100% auto;
    padding: 3rem 1.5rem 6rem;
  }
  .sec01_block .inner {
    max-width: 100%;
  }

  .sec01 .main_ttl01 .sec_ttl {
    line-height: 1.9;
  }


  .tab_parts {
    margin: 3rem 0 0;
  }

  .tabArea {
    top: 30px;
    width: 40px;
    float: left;
  }
  .tabArea li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px 5px 0;
    padding: 1.5rem 0;
    border-radius: 5px;
  }
  .tabArea li.active {
    margin: 0 0 5px 0;
    border-radius: 5px 0 0 5px;
  }
  .tabArea .tab_num {
    display: none;
  }
  .tabArea .tab_txt {
    margin: 0 0 0;
    font-size: 4vw;
  }

  .tabContentsWrap {
    width: calc(100% - 40px);
    padding: 3rem 2rem 3rem;
    float: right;
  }

  .tab_block .num {
    width: 22%;
  }

  .tab_block .item01 {
    padding: 0 0;
  }
  .tab_block .item01 .boxL {
    width: 100%;
  }
  .tab_block .item01 .imgBox {
    background: url("img/bg_puzzle.png") center center no-repeat;
    background-size: contain;
    margin: 2rem 0 0;
  }
  .tab_block .item01 .imgBox img {
    width: 100%;
  }
  .tab_block .item01 .boxR {
    width: 100%;
  }
  .tab_block .ttl01 {
    padding: 0 18%;
    font-size: 2rem;
    text-align: center;
  }
  .tab_block .txt {
    margin: 1.5rem 0 0;
  }
  .tab_block .item02 {
    margin: 2rem 0 0;
  }
  .tab_block .ttl02 {
    font-size: 1.6rem;
  }
  .tab_block .ttl02::after {
    margin-left: 10px;
  }

  .tab_block .item02 .flexBox {
    margin: 0 0 0;
  }
  .tab_block .item02 .item_box {
    width: 100%;
    margin: 0 0 0;
    padding: 2.5rem 0 2.5rem;
    border-bottom: 1px solid #474747;
  }
  .tab_block .item02 .item_box:last-child {
    border-bottom: none;
  }
  .tab_block .item02 .item_box:nth-child(4), 
  .tab_block .item02 .item_box:nth-child(5) {
    width: 100%;
  }
  .tab_block .ttl03 {
    padding: 0 0 0 1.5rem;
    font-size: 1.6rem;
    text-align: left;
  }
  .tab_block .ttl03::after {
    left: 0;
    transform: translate(0%,-50%) rotate(45deg);
    width: 40px;
    height: 40px;
  }
}



/*--------------------------------------
　acc_sp
---------------------------------------*/
@media screen and (max-width: 768px) {
  .acc_sp .acc_content {
    display: none;
  }
  .acc_sp .acc_content.show {
    display: block;
  }
  .acc_sp01 .acc_btn {
    padding: 0 3rem 0 0;
    position: relative;
  }
  .acc_sp01 .acc_btn::before,
  .acc_sp01 .acc_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: #409fff;
    width: 20px;
    height: 1px;
    margin-top: -1px;
    transition: all 0.4s;
  }
  .acc_sp01 .acc_btn::after {
    transform: rotate(90deg);
  }
  .acc_sp01 .acc_btn.open::before {
    display: none;
  }
  .acc_sp01 .acc_btn.open::after {
    transform: rotate(180deg);
  }
  
  .acc_sp02 .acc_btn {
    background: #474747;
    width: 32%;
    height: 40px;
    margin: 0 0 0 auto;;
    position: relative;
  }
  .acc_sp02 .acc_btn::before,
  .acc_sp02 .acc_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    background: #fff;
    width: 16px;
    height: 1px;
    margin-top: -1px;
    transition: all 0.4s;
  }
  .acc_sp02 .acc_btn::after {
    transform: rotate(90deg);
  }
  .acc_sp02 .acc_btn.open::before {
    display: none;
  }
  .acc_sp02 .acc_btn.open::after {
    transform: rotate(180deg);
  }
  .acc_sp02 .acc_btn span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0,-50%);
    background: url("img/eng-more-wh.png") left top no-repeat;
    background-size: contain;
    width: 35%;
    height: 0;
    padding-top: calc(35%*32/90);
  }
  .acc_sp02 .acc_btn.open span::after {
    background: url("img/eng-close-wh.png") left top no-repeat;
    background-size: contain;
  }
  
}



/*--------------------------------------
　sec02
---------------------------------------*/
.sec02 {
  padding: 0 0 8rem;
}

.sec02_reward {
  background: #0079f2;
}
.sec02_reward .boxL {
  width: 510px;
  float: left;
  position: -webkit-sticky;
	position: sticky;
  top: 80px;
  left: 0;
  padding: 10rem 6rem 10rem;
  z-index: 1;
}
.sec02_reward .ttl_box {
  position: relative;
  z-index: 0;
}
.sec02_reward .ttl_box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url("img/sec02_bg.png") left top no-repeat;
  background-size: contain;
  width: 420px;
  height: 390px;
  z-index: -1;
}
.sec02_reward .eng {
  width: 380px;
}
.sec02_reward .sec_ttl {
  margin: 2rem 0 0;
  font-size: 2.8rem;
  line-height: 1.5;
}
.sec02_reward .sec_ttl .large {
  display: inline-block;
  margin: 1rem 0 0;
  font-size: 3.6rem;
	linear-gradient(
  transparent 0%, #409fff 0%);
  background: linear-gradient(transparent 0%, #474747 0%);
}
.sec02_reward .boxR {
  background: #fff;
  width: calc(100% - 510px);
  padding: 10rem 6rem 10rem 6rem;
  float: right;
}
.sec02_reward .reward_block {
  max-width: 1100px;
  margin: 0 0 0 auto;
}
.sec02_reward .reward_item {
  background: #fff;
  margin: 0 0 3rem;
  padding: 0 0 4rem;
  border: 1px solid #474747;
  position: relative;
}
.sec02_reward .reward_item:last-child {
  margin: 0 0 0;;
}
.sec02_reward .num {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 120px;
}
.sec02_reward .imgBox {
  width: calc(100% - 180px);
  margin: 0 0 0 auto;
}
.sec02_reward .txtBox {
  padding: 0 3rem;
}
.sec02_reward .ttl01 {
  margin: -6rem 0 0;
  font-size: 2.8rem;
  line-height: 2;
}
.sec02_reward .txt {
  margin: 2rem 0 0;
}


.sec02_check {
  margin: 10rem 0 0;
}
.sec02_check .inner {
  max-width: 1100px;
  margin: auto;
}
.sec02_check .check_block {
  position: relative;
  z-index: 0;
}
.sec02_check .check_block::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  background: #eef4f9;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  border: 1px solid #474747;
  border-left: none;
  z-index: -1;
}
.sec02_check .boxL {
  width: calc(100% - 470px);
  padding: 6rem 5rem 4rem 0;
  position: relative;
}
.sec02_check .boxL::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  background: url("img/eng-check.png") left top no-repeat;
  background-size: contain;
  width: 180px;
  height: 52px;
}
.sec02_check .check_ttl {
  font-size: 2.6rem;
  line-height: 2.3;
}
.sec02_check .check_ttl .large {
  font-size: 3rem;
  line-height: 1.9;
  background: linear-gradient(transparent 0%, #0055A9 0%);
}
.sec02_check .txt {
  margin: 2rem 0 0;
}
.sec02_check .boxR {
  width: 470px;
}
.sec02_check .imgBox {
  width: 100%;
  height: 100%;
}
.sec02_check .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec02_check .puzzle01 {
  position: absolute;
  top: -30px;
  right: calc(100% + 20px);
  width: 140px;
}
.sec02_check .puzzle02 {
  position: absolute;
  bottom: -20px;
  right: 110px;
  width: 140px;
}
.sec02_check .puzzle03 {
  position: absolute;
  bottom: 60px;
  right: -20px;
  width: 134px;
}

@media screen and (max-width: 768px) {
  .sec02 {
    padding: 0 0 6rem;
  }

  .sec02_reward .boxL {
    width: 100%;
    float: inherit;
    position: relative;
    top: 0;
    left: 0;
    padding: 0 2rem 3rem;
  }
  .sec02_reward .ttl_box::before {
    width: 60%;
    height: 0;
    padding-top: calc(60%*390/420);
    left: 75%;
  }
  .sec02_reward .eng {
    width: 70%;
  }
  .sec02_reward .sec_ttl {
    margin: 1rem 0 0;
    font-size: 2.2rem;
  }
  .sec02_reward .sec_ttl .large {
    font-size: 2.8rem;
  }
  .sec02_reward .boxR {
    width: 100%;
    padding: 5rem 2rem 5rem 2rem;
    float: inherit;
  }
  .sec02_reward .reward_block {
    max-width: 100%;
    margin: 0 0 0 0;
  }
  .sec02_reward .reward_item {
    margin: 0 0 2rem;
    padding: 0 0 0;
  }
  .sec02_reward .num {
    top: 10px;
    left: 15px;
    width: 25%;
  }
  .sec02_reward .imgBox {
    width: 65%;
  }
  .sec02_reward .imgBox img {
    height: 100px;
    object-fit: cover;
  }
  .sec02_reward .txtBox {
    padding: 0 0;
  }
  .sec02_reward .ttl01 {
    margin: -1rem 0 2rem;
    font-size: 2.2rem;
    line-height: 1.9;
  }
  .sec02_reward .txt {
    margin: 0 0 0;
    padding: 1.5rem 1.5rem 3rem;
  }


  .sec02_check {
    margin: 4rem 0 0;
    padding: 0 1.5rem 0 0;
  }
  .sec02_check .inner {
    max-width: 100%;
  }
  .sec02_check .check_block::after {
    min-width: 100%;
  }
  .sec02_check .boxL {
    width: 100%;
    padding: 5rem 2rem 4rem 2rem;
  }
  .sec02_check .boxL::before {
    top: 0;
    left: 15px;
    width: 45%;
    height: 0;
    padding-top: calc(45%*52/180);
  }
  .sec02_check .check_ttl {
    font-size: 1.6rem;
    line-height: 2.3;
    position: relative;
    z-index: 1;
    margin-bottom: 5rem;
  }
  .sec02_check .check_ttl .large {
    font-size: 2.2rem;
    line-height: 1.9;
  }
  .sec02_check .txt {
    margin: 1.5rem 0 0;
  }
  .sec02_check .boxR {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
  }
  .sec02_check .puzzle01 {
    top: -30px;
    right: 5px;
    width: 20%;
    z-index: 1;
  }
  .sec02_check .puzzle02 {
    bottom: -10px;
    right: 0;
    width: 20%;
  }
  .sec02_check .puzzle03 {
    bottom: -40px;
    right: 25%;
    width: 20%;
  }
}



/*--------------------------------------
　sec03
---------------------------------------*/
.sec03 {
  background: #0079f2;
  padding: 0 0 13rem;
}

.sec03 .eng-scroll {
  background: url("img/eng-hot-topics.png") repeat-x;
  background-size: 680px auto;
  width: 100%;
  height: 104px;
}

.sec03 .main_ttl {
  margin: -2rem 0 0;
  text-align: center;
}
.sec03 .sec_ttl {
  font-size: 3.2rem;
}
.sec03 .sec_ttl .large {
  font-size: 4.4rem;
}


.sec03_topics {
  margin: 6rem 0 0;
}
.sec03_topics .slick-slide {
	width: 690px;
  margin: 0 3rem;
}
/* arrow */
.tpics_slide .slide-arrow {
	display: block;
	position: absolute;
	top: 40%;
  background: url("img/arrow-wh01.png") left top no-repeat;
  background-size: contain;
	width: 40px;
	height: 40px;
	z-index: 999;
	cursor: pointer;
}
.tpics_slide .prev-arrow {
	left: calc(50% - 395px);
  transform: scale(-1,1);
}
.tpics_slide .next-arrow {
	right: calc(50% - 395px);
}
/* dots */
.tpics_slide .slide-dots {
  text-align: center;
	margin: 20px 0 0;
	padding: 0 0;
	font-size: 0;
}
.tpics_slide .slide-dots li {
  display: inline-block;
  margin: 0 8px;
}
.tpics_slide .slide-dots li button {
	background: none;
	width: 10px;
	height: 10px;
	box-sizing: border-box;
	border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  text-indent: -9999px;
}
.tpics_slide .slide-dots li.slick-active button {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .sec03 {
    padding: 0 0 6rem;
  }

  .sec03 .eng-scroll {
    background: url("img/eng-hot-topics.png") repeat-x;
    background-size: 340px auto;
    height: 52px;
  }

  .sec03 .main_ttl {
    margin: 1rem 0 0;
    padding: 0 1.5rem;
  }
  .sec03 .sec_ttl {
    font-size: 2rem;
  }
  .sec03 .sec_ttl .large {
    font-size: 2.6rem;
  }

  
  .sec03_topics {
    margin: 1rem 0 0;
    padding: 0 1.5rem;
  }
	  .sec03_topics img{
    margin: 2rem 0 0;
    padding: 0 1.5rem;
  }
	
  .sec03_topics .slick-slide {
    display: block!important;
    width: 100%;
    margin: 0 0 3rem;
    float: inherit!important;
  }
  .sec03_topics .slick-slide:last-child {
    width: 100%;
    margin: 0 0 0;
  }
  /* arrow */
  .tpics_slide .slide-arrow {
    display: none!important;
  }
  /* dots */
  .tpics_slide　.slide-dots {
    display: none!important;
  } 
}



/*--------------------------------------
　sec04
---------------------------------------*/
.sec04 .eng {
  width: 950px;
}


.sec04_interview {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #474747;
  border-bottom: 1px solid #474747;
}
.sec04_interview .boxL {
  width: 290px;
  padding: 8rem 4rem;
  border-right: 1px solid #474747;
}
.sec04_interview .sub {
  padding: 0 0 1.5rem;
  font-size: 1.8rem;
  text-align: center;
  border-bottom: 1px solid #474747;
}
.sec04_interview .main_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0 0;
}
.sec04_interview .sec_ttl {
  font-size: 3.6rem;
}
.sec04_interview .sec_ttl a {
  position: relative;
}
.sec04_interview .sec_ttl a::after {
  content: "";
  display: inline-block;
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  margin-top: 10px;
}
.sec04_interview .sec_ttl .large {
  font-size: 4.8rem;
  text-align: center;
}
.sec04_interview .sec_ttl .large span {
  display: inline-block;
  background: #409fff;
  padding: 5px 5px;
  line-height: 1;
  border-bottom: 1px solid #fff;
}
.sec04_interview .boxR {
  background: #eef4f9;
  width: calc(100% - 290px);
  padding: 12rem 0 18rem 14rem;
}

.interview_slide .slick-slide {
	width: 320px;
  margin: 0 3rem;
  padding: 3rem 0 0 1rem;
}
.interview_slide .slick-slide a {
  display: block;
}
.interview_slide .interview_item {
  position: relative;
}
.interview_slide .ttl01 {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 2.8rem;
  white-space: nowrap;
  line-height: 1.9;
  z-index: 1;
}
.interview_slide .ttl01 .bg-bl {
  background: linear-gradient(transparent 0%, #0055A9 0%);
}
.interview_slide .ttl01 span {
  padding: 8px 4px;
  line-height: 1.9;
}
@-moz-document url-prefix(){
  .interview_slide .ttl01 span {
    padding: 8px 1rem;
  }
}
.interview_slide .img_wrap {
  position: relative;
}
.interview_slide .img_wrap::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  background: url("img/puzzle05.png") left top no-repeat;
  background-size: contain;
  width: 80px;
  height: 290px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
.interview_slide .img_wrap::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: url("img/puzzle06.png") left top no-repeat;
  background-size: contain;
  width: 70px;
  height: 70px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
.interview_slide .slick-slide a:hover .img_wrap::before {
  opacity: 1;
}
.interview_slide .slick-slide a:hover .img_wrap::after {
  opacity: 1;
}
.interview_slide .imgBox {
  overflow: hidden;
}
.interview_slide .imgBox img {
  transition: all 0.5s ease;
}
.interview_slide .slick-slide a:hover .imgBox img {
  transform:scale(1.1,1.1);
}
.interview_slide .tag {
  display: flex;
  margin: 1.5rem 0 0;
}
.interview_slide .tag li {
  background: #6ebe5f;
  margin: 0 5px 0 0;
  padding: 5px 1rem;
  color: #fff;
  font-size: 1.6rem;
}
.interview_slide .name {
  margin: 1rem 0 0;
  padding: 0 12rem 1.5rem 0;
  font-size: 2rem;
  border-bottom: 1px solid #474747;
  position: relative;
}
.interview_slide .name .large {
  font-size: 2.8rem;
}
.interview_slide .name::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  background: url("img/eng-readmore.png") left top no-repeat;
  background-size: contain;
  width: 110px;
  height: 20px;
}
/* arrow */
.interview_slide .slide-arrow {
	display: block;
	position: absolute;
	top: calc(100% + 30px);
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
	width: 40px;
	height: 40px;
	z-index: 999;
	cursor: pointer;
}
.interview_slide .prev-arrow {
	left: 0;
  transform: scale(-1,1);
}
.interview_slide .next-arrow {
  left: 50px;
}

@media screen and (max-width: 768px) {
  .sec04 .eng {
    width: 90%;
    margin: auto;
  }


  .sec04_interview {
    display: block;
  }
  .sec04_interview .boxL {
    background: #eef4f9;
    width: 100%;
    padding: 4rem 1.5rem;
    text-align: center;
    border-right: none;
  }
  .sec04_interview .sub {
    display: inline-block;
    padding: 0 0 1rem;
    font-size: 1.6rem;
  }
  .sec04_interview .main_ttl {
    display: block;
    margin: 2rem 0 0;
  }
  .sec04_interview .sec_ttl {
    font-size: 2.5rem;
  }
  .sec04_interview .sec_ttl a::after {
    width: 25px;
    height: 25px;
    margin-top: 0;
    margin-left: 5px;
  }
  .sec04_interview .sec_ttl .large {
    font-size: 3rem;
  }
  .sec04_interview .sec_ttl .large span {
    border-right: 2px solid #fff;
    border-bottom: none;
  }
  .sec04_interview .boxR {
    width: 100%;
    padding: 2rem 0 8rem 0;
  }

  .interview_slide .slick-slide {
    width: 100%;
    margin: 0 8px;
    padding: 2rem 0 0 6px;
  }
  .interview_slide .ttl01 {
    top: -20px;
    font-size: 2rem;
    line-height: 2;
  }
  .interview_slide .ttl01 span {
    padding: 5px 3px;
    line-height: 2;
  }
  @-moz-document url-prefix(){
    .interview_slide .ttl01 span {
      padding: 5px 5px;
    }
  }
  .interview_slide .img_wrap::before {
    top: -6px;
    left: -6px;
    width: 22%;
    height: 0;
    padding-top: calc(22%*290/80);
  }
  .interview_slide .img_wrap::after {
    bottom: -6px;
    right: -6px;
    width: 20%;
    height: 0;
    padding-top: 20%;
  }
  .interview_slide .tag {
    margin: 1rem 0 0;
  }
  .interview_slide .tag li {
    margin: 0 3px 0 0;
    padding: 3px 5px;
    font-size: 1.3rem;
  }
  .interview_slide .name {
    margin: 1rem 0 0;
    padding: 0 32% 1rem 0;
    font-size: 1.6rem;
  }
  .interview_slide .name .large {
    font-size: 2.2rem;
  }
  .interview_slide .name::after {
    width: 30%;
    height: 0;
    padding-top: calc(30%*20/110);
  }
  /* arrow */
  .interview_slide .slide-arrow {
    top: 40%;
    background: #fff url("img/arrow-bl01.png") left top no-repeat;
    background-size: contain;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    border-radius: 50%;
  }
  .interview_slide .prev-arrow {
    left: 20px;
    transform: scale(-1,1);
  }
  .interview_slide .next-arrow {
    left: inherit;
    right: 20px;
  }
}


/*--------------------------------------
　sec05
---------------------------------------*/
.sec05 {
  padding: 0 0 8rem;
}


.sec05_upper {
  padding: 10rem 0 0;
  position: relative;
  z-index: 0;
}
.sec05_upper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/eng-sponsored03.webp") left top no-repeat;
  background-size: contain;
  width: 690px;
  height: 282px;
  margin: auto;
  z-index: -1;
}
.sec05_upper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/sec05_bg01.webp") center center no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 867px;
  margin: auto;
  z-index: -2;
}
.sec05_upper .inner {
  max-width: 1100px;
  margin: auto;
}
.sec05_upper .sub {
  display: inline-block;
  background: #fff;
  margin: 0 0 2rem;
  padding: 8px 1rem;
  color: #409fff;
  font-size: 1.8rem;
  border: 1px solid #409fff;
}
.sec05_upper .main_ttl01 .sec_ttl {
  line-height: 2.15;
}
.sec05_upper .main_ttl01 .sec_ttl .large {
  line-height: 2.15;
}


.sec05_about {
  margin: 6rem 0 0;
}
.sec05_about .about_block {
  position: relative;
  z-index: 0;
}
.sec05_about .about_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background: #fff;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  z-index: -1;
}
.sec05_about .boxL {
  width: 1100px;
  margin: auto;
  text-align: center;
}
.sec05_about .boxL .box_inner {
  background: #fff;
  width: 500px;
  height: 500px;
  padding: 11rem 4rem;
  border: 1px solid #474747;
}
.sec05_about .img_mark {
  width: 170px;
  margin: 3rem auto 3rem;
}
.sec05_about .txt01 {
  font-size: 2.2rem;
  padding: 2rem 0;
}
.sec05_about .boxR {
  position: absolute;
  top: 0;
  left: 47%;
  background: #fff;
  width: 53%;
  height: 100%;
  margin: 0 0 0 auto;
  border-top: 1px solid #474747;
  border-bottom: 1px solid #474747;
  border-left: 1px solid #474747;
}

.about_slide .slick-slide {
  width: 750px;
}
.about_slide .slider_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about_slide .about_item {
  width: 33.33%;
  padding: 2rem 2rem;
  border-bottom: 1px solid #474747;
  border-right: 1px solid #474747;
}
.about_slide .about_item:nth-child(4),
.about_slide .about_item:nth-child(5),
.about_slide .about_item:nth-child(6){
  border-bottom: none;
}
.about_slide .imgBox {
  width: 170px;
  margin: auto;
}
.about_slide .cap {
  margin: 1rem 0 0;
  font-size: 1.8rem;
  text-align: center;
}


.sec05_fltg {
  margin: 3rem 0 0;
  padding: 0rem 0 15rem;
  position: relative;
  z-index: 0;
}
.sec05_fltg::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/eng-fltg.webp") left top no-repeat;
  background-size: contain;
  width: 1400px;
  height: 140px;
  margin: auto;
  z-index: -1;
}
.sec05_fltg::after {
  content: "";
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/sec05_bg02.webp") left top no-repeat;
  background-size: contain;
  width: 1268px;
  height: 691px;
  margin: auto;
  z-index: -2;
}
.sec05_fltg .inner {
  max-width: 1100px;
  margin: auto;
}
.sec05_fltg .txt01 {
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.8;
}
.sec05_fltg .txt01 span {
  display: inline-block;
  margin: 0 0 2rem;
  font-size: 4.4rem;
  line-height: 1;
}
.sec05_fltg .btn-link {
  text-align: center;
}
.sec05_fltg .btn-link a {
  margin: 5rem 0 0;
}


.sec05_chram .chram_upper {
  height: 310px;
  position: relative;
  z-index: 0;
}
.sec05_chram .chram_upper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: url("img/sec05_chram_upper.webp") left top no-repeat;
  background-size: cover;
  width: 55%;
  height: 100%;
  z-index: -1;
}
.sec05_chram .ttl01_wrap {
  display: flex;
  align-items: center;
  max-width: 1100px;
  height: 310px;
  margin: auto;
}
.sec05_chram .ttl01 {
  max-width: 50%;
  margin: 0 5rem 0 auto;
  font-size: 3.8rem;
  line-height: 1.8;
}
.sec05_chram .chram_block {
  margin: 6rem 0 0;
}
.sec05_chram .chram_item {
  background: #fff;
  width: 33.33%;
  padding: 3rem 5rem 4rem;;
  border-top: 1px solid #474747;
  border-bottom: 1px solid #474747;
  border-right: 1px solid #474747;
  position: relative;
}
.sec05_chram .chram_item:last-child {
  border-right: none;
}
.sec05_chram .num {
  position: absolute;
  top: 0;
  left: 15px;
  width: 110px;
}
.sec05_chram .ttl02 {
  padding: 0 0 0 9rem;
  font-size: 2.2rem;
}
.sec05_chram .ttl02 sup {
  font-size: 1.2rem;
}
.sec05_chram .imgBox {
  width: 90%;
  margin: 1rem auto 0;
}
.sec05_chram .txtBox {
  margin: 2rem 0 0;
}


.sec05 .btnBox {
  margin: 6rem 0 0;
}

@media screen and (max-width: 768px) {
  .sec05 {
    padding: 0 0 6rem;
  }

  
  .sec05_upper {
    padding: 10rem 1.5rem 0;
  }
  .sec05_upper::before {
    left: 15px;
    width: 90%;
    height: 0;
    padding-top: calc(90%*282/690);
  }
  .sec05_upper::after {
    width: 100%;
    height: 100%;
  }
  .sec05_upper .inner {
    max-width: 100%;
  }
  .sec05_upper .sub {
    margin: 0 0 1rem;
    padding: 5px 8px;
    font-size: 1.4rem;
  }
  .sec05_upper .main_ttl01 .sec_ttl {
    font-size: 1.7rem;
    line-height: 2;
  }
  .sec05_upper .main_ttl01 .sec_ttl span {
    line-height: 2;
    font-size: 2rem;
  }
  .sec05_upper .main_ttl01 .sec_ttl .large {
    font-size: 2.5rem;
    line-height: 1.8;
  }


  .sec05_about {
    margin: 4rem 0 0;
  }
  .sec05_about .about_block {
    display: flex;
    flex-wrap: wrap;
  }
  .sec05_about .about_block::after {
    display: none;
  }
  .sec05_about .boxL {
    width: 100%;
    padding: 0 1.5rem;
    order: 2;
  }
  .sec05_about .boxL .box_inner {
    width: 100%;
    height: auto;
    padding: 2rem 2rem;
    border: none;
    border-top: none;
  }
  .sec05_about .img_mark {
    width: 30%;
    margin: 2rem auto 2rem;
  }
  .sec05_about .txt01 {
    font-size: 1.8rem;
  }
  .sec05_about .boxR {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    border-top: 1px solid #474747;
    border-bottom: 1px solid #474747;
    border-left: none;
    order: 1;
  }

  .about_slide .slick-slide {
    width: 768px;
  }
  .about_slide .slider_inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .about_slide .about_item {
    width: 100%;
    padding: 1rem 0;
    border-bottom: none;
    border-right: 1px solid #474747;
  }
  .about_slide .about_item:nth-child(4),
  .about_slide .about_item:nth-child(5),
  .about_slide .about_item:nth-child(6){
    border-bottom: none;
  }
  .about_slide .imgBox {
    width: 100%;
  }
  .about_slide .cap {
    margin: 5px 0 0;
    font-size: 9px;
  }


  .sec05_fltg {
    margin: -2rem 0 0;
    padding: 0rem 1.5rem 8rem;
  }
  .sec05_fltg::before {
    background: url("img/eng-fltg_sp.png") center top no-repeat;
    background-size: contain;
    width: 95%;
    height: 0;
    padding-top: calc(95%*73/705);
  }  
  .sec05_fltg::after {
    top: inherit;
    bottom: 0;
    background: none;
    background-size: contain;
    width: 100%;
    height: 0;
    padding-top: calc(99%*407/700);
  }
  .sec05_fltg .inner {
    max-width: 100%;
  }
  .sec05_fltg .txt01 {
    font-size: 4vw;
  }
  .sec05_fltg .txt01 span {
    margin: 0 0 1rem;
    font-size: 2.5rem;
  }
  .sec05_fltg .btn-link a {
    margin: 3rem 0 0;
  }


  .sec05_chram .chram_upper {
    padding: 0 1.5rem;
    height: auto;
    margin: 0 0 9rem;
  }
  .sec05_chram .chram_upper::after {
    top: 0;
    transform: translate(0,0);
    background: url("img/sec05_chram_upper.webp") left top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*310/810);
  }
  .sec05_chram .ttl01_wrap {
    display: block;
    max-width: 100%;
    height: auto;
    position: relative;
    top: 90px;
  }
  .sec05_chram .ttl01 {
    max-width: 100%;
    margin: 0 0 0 0;
    font-size: 2rem;
  }
  .sec05_chram .chram_block {
    margin: 12rem 0 0;
    padding: 0 1.5rem;
  }
  .sec05_chram .chram_item {
    width: 100%;
    margin: 0 0 2rem;
    padding: 2rem 0 0;
    border: 1px solid #474747;
  }
  .sec05_chram .chram_item:last-child {
    margin: 0 0 0;
  }
  .sec05_chram .chram_item:last-child {
    border-right: none;
    border: 1px solid #474747;
  }
  .sec05_chram .num {
    left: 0;
    width: 25%;
  }
  .sec05_chram .ttl02 {
    padding: 0 0 0 27%;
    font-size: 5vw;
  }
  .sec05_chram .ttl02 sup {
    font-size: 1rem;
  }
  .sec05_chram .imgBox {
    width: 90%;
    margin: 1rem auto 0;
  }
  .sec05_chram .txtBox {
    margin: 1.5rem 0 0;
    padding: 0 1.5rem 3rem;
  }
  .sec05_chram .caption {
    margin: 2rem 0 0!important;
  }
  
  .sec05 .btnBox {
    margin: 4rem 0 0;
  }
}



/*--------------------------------------
　sec06
---------------------------------------*/
.sec06 {
  padding: 0 0 4rem;
}

.sec06 .ttl_box {
  background: #e4ecf4;
  padding: 3rem 0 3rem;
  border-top: 1px solid #474747;
  border-bottom: 1px solid #474747;
  position: relative;
  z-index: 0;
}
.sec06 .ttl_box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: url("img/eng-column.webp") left center no-repeat;
  background-size: contain;
  width: 680px;
  height: 180px;
  max-width: 50%;
  z-index: -1;
}
.sec06 .main_ttl01 {
  max-width: 1100px;
  margin: auto;
  text-align: right;
}
.sec06 .sec_ttl {
  max-width: 50%;
  margin: 0 0 0 auto;
}

.sec06_block {
  margin: 8rem 0 0;
}
.sec06_block .inner {
  max-width: 1100px;
  margin: auto;
}

.sec06_column .column_item {
  width: calc(33.33% - 2rem);
  margin: 0 0 6rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid #474747;
}
.sec06_column .column_item a {
  display: block;
}
.sec06_column .imgBox {
  overflow: hidden;
}
.sec06_column .imgBox img {
  transition: all 0.5s ease;
}
.sec06_column a:hover .imgBox img {
  transform:scale(1.1,1.1);
}
.sec06_column .ttl01 {
  margin: 1.5rem 0 0;
  font-size: 2.6rem;
}
.sec06_column .ttl01 .small {
  font-size: 1.8rem;
}
.sec06_column .more {
  width: 110px;
  margin: 2rem 0 0 auto;
}

@media screen and (max-width: 768px) {
  .sec06 {
    padding: 0 0 8rem;
  }

  .sec06 .ttl_box {
    padding: 8rem 1.5rem 3rem;
  }
  .sec06 .ttl_box::before {
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: 90%;
    height: 0;
    max-width: 90%;
    padding-top: calc(100%*180/680);
  }
  .sec06 .main_ttl01 {
    max-width: 100%;
  }
  .sec06 .sec_ttl {
    max-width: 100%;
    margin: 0 0 0 0;
  }

  .sec06_block {
    margin: 0 0 0;
    padding: 0 1.5rem;
  }
  .sec06_block .inner {
    max-width: 100%;
  }

  .sec06_column .column_item {
    width: 100%;
    margin: 0 0 0;
    padding: 5rem 0 2rem;
  }
  .sec06_column a:hover .imgBox img {
    transform:scale(1,1);
  }
  .sec06_column .ttl01 {
    margin: 1rem 0 0;
    font-size: 2.2rem;
  }
  .sec06_column .ttl01 .small {
    font-size: 1.6rem;
  }
  .sec06_column .more {
    width: 30%;
    margin: 1.5rem 0 0 auto;
  }
  
  .sec06_acc_sp .acc_box {
    display: none;
  } 
  .sec06_acc_sp .acc_btn {
    background: #474747;
    max-width: 90%;
    margin: 4rem auto 0;
    padding: 1.5rem 4rem;
    box-sizing: border-box;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .sec06_acc_sp .acc_btn::before,
  .sec06_acc_sp .acc_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    background: #fff;
    width: 20px;
    height: 1px;
    margin-top: -1px;
    transition: all 0.3s ease;
  }
  .sec06_acc_sp .acc_btn::after {
    transform: rotate(90deg);
  }
  .sec06_acc_sp .acc_btn.is-open::before {
    display: none;
  }
  .sec06_acc_sp .acc_btn.is-open::after {
    transform: rotate(180deg);
  }
  .sec06_acc_sp .acc_btn span::before {
    content: "Other Content";
    font-weight: bold;
    color: #fff;
  }
  .sec06_acc_sp .acc_btn.is-open span::before {
    content: "Close";
  }
}



/*--------------------------------------
　sec07
---------------------------------------*/
.sec07 {
  background: repeating-linear-gradient(90deg, #2181e3, #3b98f6 2px, #0079f2 2px, #0079f2 25%);
  padding: 10rem 0 10rem;
  position: relative;
  z-index: 0;
}
.sec07::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/eng-question.webp") left top no-repeat;
  background-size: contain;
  width: 620px;
  height: 150px;
  margin: auto;
  z-index: -1;
}

.sec07 .inner {
  max-width: 1100px;
  margin: auto;
}

.sec07 .lead {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.sec07 .note {
  margin: 2rem 0 0;
  font-size: 1.6rem;
  text-align: center;
}

.sec07 .g_form {
  width: 950px;
  margin: 5rem auto 0;
}

.sec07 .btn-web a {
  margin: 5rem auto 0;
}

@media screen and (max-width: 768px) {
  .sec07 {
    background: #0079f2;
    padding: 6rem 1.5rem 6rem;
  }
  .sec07::before {
    width: 90%;
    height: 0;
    padding-top: calc(90%*150/620);
  }

  .sec07 .inner {
    max-width: 100%;
  }

  .sec07 .lead {
    font-size: 3.5vw;
    text-align: center;
  }

  .sec07 .note {
    margin: 1.5rem 0 0;
    font-size: 1.2rem;
    text-align: justify;
  }

  .sec07 .g_form {
    width: 100%;
    margin: 3rem auto 0;
  }

  .sec07 .btn-web a {
    margin: 3rem auto 0;
  }
}



/*--------------------------------------
　media
---------------------------------------*/
.media .boxL {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #474747 url("img/eng-about-media.png") center center no-repeat;
  background-size: 280px auto;
  width: 330px;
  text-align: center;
}

.media .media_ttl {
  font-size: 2.4rem;
}

.media .boxR {
  background: #fff;
  width: calc(100% - 330px);
  padding: 4rem 15rem 4rem 5rem;
}

.media .btn-link a {
  margin: 3rem 0 0;
}

@media screen and (max-width: 768px) {
  .media .boxL {
    background: #474747 url("img/eng-about-media_sp.png") center center no-repeat;
    background-size: 90% auto;
    width: 100%;
    padding: 2rem 2rem;
  }

  .media .media_ttl {
    font-size: 1.8rem;
  }

  .media .boxR {
    width: 100%;
    padding: 3rem 2rem 3rem 2rem;
  }
  
  .media .btn-link a {
    margin: 2rem 0 0;
  }  
}



/*--------------------------------------
　slick
---------------------------------------*/
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.slick-slide:focus {
  outline: none;
}
.slick-slide a:focus {
  outline: none;
}
.slick-slide {
  display: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-slider div {
  transition: none;
}



/*--------------------------------------
　animation
---------------------------------------*/
.fadeInRight {
  opacity : 0;
  transition: all 0.1s linear;
}
.fadeInRight.isActive {
  -webkit-animation: fadeInRight 0.5s ease-in-out forwards;
          animation: fadeInRight 0.5s ease-in-out forwards;
  animation-delay: 0.1s;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.fadeInUp {
  opacity : 0;
  transition: all 0.3s linear;
}
.fadeInUp.isActive {
  -webkit-animation: fadeInUp 0.6s ease-in-out forwards;
          animation: fadeInUp 0.6s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}