@charset "UTF-8";
/* ==========================================================================
  Base
========================================================================== */
.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.scft-top {
  background: url(../img/top_bg.webp) center top no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .scft-top {
    background: url(../img/top_bg.webp) right top no-repeat;
    background-size: 200% auto;
  }
}

/* ==========================================================================
  TOP - MV
========================================================================== */
.top-mv {
  padding: 160px 4vw;
}
@media screen and (max-width: 767px) {
  .top-mv {
    padding: 120px 4vw 0;
  }
}

.top-mv-head {
  width: 100%;
  padding: 0 2vw;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .top-mv-head {
    margin-bottom: 60px;
    padding: 0;
  }
}

.top-mv-ttl {
  padding: 30px 0 10px 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-mv-ttl {
    padding: 20px 0 10px 20px;
    margin-bottom: 30px;
  }
}
.top-mv-ttl:before {
  width: 0;
  height: 1px;
  background: #004480;
  position: absolute;
  left: -30px;
  top: 0;
  content: "";
  animation: lineb 0.6s ease-in-out forwards;
  animation-delay: 1s;
}
@media screen and (max-width: 767px) {
  .top-mv-ttl:before {
    left: -20px;
  }
}
.top-mv-ttl:after {
  width: 1px;
  height: 0;
  background: #004480;
  position: absolute;
  left: 0;
  top: -30px;
  content: "";
  animation: linea 0.6s ease-in-out forwards;
  animation-delay: 1s;
}
@media screen and (max-width: 767px) {
  .top-mv-ttl:after {
    top: -20px;
    animation: lineasp 0.6s ease-in-out forwards;
  }
}

@keyframes linea {
  from {
    height: 0;
  }
  to {
    height: calc(100% + 40px);
  }
}
@keyframes lineasp {
  from {
    height: 0;
  }
  to {
    height: calc(100% + 20px);
  }
}
@keyframes lineb {
  from {
    width: 0;
  }
  to {
    width: 30%;
  }
}
.mv-h1-container {
  position: relative;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
  font-family: sans-serif;
  display: inline-block;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .mv-h1-container {
    font-size: 9vw;
    margin-bottom: 10px;
  }
}

.mv-h1-outline {
  color: transparent;
  /* 初期状態は透明な枠線。色は#1d7df2を指定 */
  -webkit-text-stroke: 1px rgba(29, 125, 242, 0);
  margin: 0;
  animation: fadeInStroke 0.6s ease-in-out forwards, fadeOutStroke 0.6s ease-in-out forwards 1s;
}

.mv-h1-gradient {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  display: inline-block;
  background: linear-gradient(0deg, #31a47a 30%, #1d7df2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0;
  animation: fadeInGradient 0.8s ease-in-out forwards;
  animation-delay: 1.3s;
}

@keyframes fadeInStroke {
  from {
    -webkit-text-stroke: 1px rgba(29, 125, 242, 0);
  }
  to {
    -webkit-text-stroke: 1px rgb(29, 125, 242);
  }
}
@keyframes fadeOutStroke {
  to {
    -webkit-text-stroke: 1px rgba(29, 125, 242, 0);
  }
}
@keyframes fadeInStrokew {
  from {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0);
  }
  to {
    -webkit-text-stroke: 1px rgb(255, 255, 255);
  }
}
@keyframes fadeOutStrokew {
  to {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0);
  }
}
@keyframes fadeInGradient {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.movebefore {
  opacity: 0;
  transform: translate(-30px, 0);
}

.mv-ttl-en {
  font-size: 1em;
  color: #395C8D;
  animation: fadein 0.6s ease-in-out forwards;
  animation-delay: 1.6s;
  opacity: 0;
  transform: translate(-30px, 0);
  line-height: 2;
}

.mv-ttl-sub {
  font-size: 1.4em;
  font-weight: 700;
  color: #395C8D;
  animation: fadein 0.6s ease-in-out forwards;
  animation-delay: 1.6s;
  opacity: 0;
  transform: translate(-30px, 0);
}
@media screen and (max-width: 767px) {
  .mv-ttl-sub {
    font-size: 1em;
  }
}

.top-mv-text {
  animation: fadein 0.6s ease-in-out forwards;
  animation-delay: 1.6s;
  opacity: 0;
  transform: translate(-30px, 0);
  padding-right: 10vw;
}
@media screen and (min-width: 768px) {
  .top-mv-text {
    max-width: 50%;
    padding: 30px 10vw 0 0;
  }
}

.top-mv-h2 {
  color: #395C8D;
  line-height: 2.4;
  font-size: 0.9em;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-mv-h2 {
    font-size: 0.75em;
  }
}

.btn-top-mv {
  position: relative;
  margin: 0;
  color: #395C8D;
  max-width: 200px;
  border: 1px solid;
  transition: 0.3s;
  background: transparent;
  overflow: hidden;
}
.btn-top-mv:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #31a47a 0%, #1d7df2 100%);
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .btn-top-mv:hover {
    color: #ffffff;
    border: none;
  }
  .btn-top-mv:hover:after {
    opacity: 1;
    transition: 0.3s;
  }
}

.btn-toppage {
  padding-bottom: 1px;
  height: 42px;
}
.btn-toppage span {
  display: inline-block;
  transform: scale(0.8, 1);
}

/* ==========================================================================
  TOP - panels
========================================================================== */
.top-mv-bottom {
  opacity: 0;
  transform: translate(0, 30px);
  position: relative;
  animation: fadeinpanels 0.6s ease-in-out forwards;
  animation-delay: 2s;
}
.top-mv-bottom:before, .top-mv-bottom:after {
  content: "";
  position: absolute;
  left: -2vw;
  top: -20px;
  line-height: 1;
  width: 20px;
  height: 20px;
  background: url(../img/top_panels_icon.svg) center center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .top-mv-bottom:before, .top-mv-bottom:after {
    left: -3vw;
    top: -5vw;
  }
}
.top-mv-bottom:after {
  top: auto;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .top-mv-bottom:after {
    left: auto;
    right: -3vw;
    top: -5vw;
    bottom: auto;
  }
}

.top-mv-list {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-mv-list {
    display: block;
  }
}

.top-panel {
  position: relative;
  width: 23.5%;
  color: #ffffff;
  background: linear-gradient(160deg, #31a47a 0%, #1d7df2 100%);
  transition: 0.6s;
  padding-top: 3em;
}
@media screen and (max-width: 767px) {
  .top-panel {
    width: 88vw;
    margin: 0 auto 6vw;
    padding: 30px 0;
    aspect-ratio: 345/213;
    height: auto;
  }
}
.top-panel:before, .top-panel:after {
  content: "";
  position: absolute;
  right: -1.6vw;
  top: -20px;
  line-height: 1;
  width: 20px;
  height: 20px;
  background: url(../img/top_panels_icon.svg) center center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .top-panel:before, .top-panel:after {
    left: -5vw;
    top: auto;
    bottom: -5vw;
  }
}
.top-panel:after {
  top: auto;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .top-panel:after {
    left: auto;
    right: -5vw;
    top: auto;
    bottom: -5vw;
  }
}

.top-panel-cont {
  padding-left: 70px;
}
@media screen and (max-width: 767px) {
  .top-panel-cont {
    padding-left: 15vw;
  }
}

.top-panel-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 0;
  display: none;
}
.top-panel-bg.top-panel-bg-01 {
  background: url(../img/top_panel_01.webp) center center no-repeat;
  background-size: cover;
}
.top-panel-bg.top-panel-bg-02 {
  background: url(../img/top_panel_02.webp) center center no-repeat;
  background-size: cover;
}
.top-panel-bg.top-panel-bg-03 {
  background: url(../img/top_panel_03.webp) center center no-repeat;
  background-size: cover;
}
.top-panel-bg.top-panel-bg-04 {
  background: url(../img/top_panel_04.webp) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-panel-bg {
    display: block;
  }
}

.top-panel-ttl {
  position: absolute;
  left: 10px;
  top: -28px;
  opacity: 0.3;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  transform: rotate(90deg);
  transform-origin: left bottom;
  font-size: 2em;
  line-height: 1;
  letter-spacing: 0.08em;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-panel-ttl {
    font-size: 8vw;
    top: -18px;
  }
}

.top-panel-h3 {
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1;
  min-height: 1.6em;
  padding-left: 70px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-panel-h3 {
    padding-left: 15vw;
    margin-bottom: 10px;
  }
}
.top-panel-h3 span {
  font-size: 1.4vw;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .top-panel-h3 span {
    font-size: 6vw;
  }
}
@media screen and (min-width: 768px) {
  .top-panel-h3-en {
    min-height: 3em;
  }
}

.top-panel-lead {
  font-size: 1.1vw;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-panel-lead {
    min-height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .top-panel-lead {
    font-size: 4vw;
    margin-bottom: 15px;
  }
}
.top-panel-lead-en {
  font-size: 0.9vw;
}

.top-panel-det {
  display: none;
  position: absolute;
  left: 70px;
  top: 8em;
  max-width: calc(100% - 70px);
}
.top-panel-det p {
  font-size: 0.9em;
  margin-bottom: 20px;
}

.top-panel-img {
  width: 100%;
  height: 19vw;
  opacity: 0.8;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .top-panel-img {
    display: none;
  }
}
.top-panel-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-panel-img.top-panel-img-01 {
  background: url(../img/top_panel_01.webp) center center no-repeat;
  background-size: cover;
}
.top-panel-img.top-panel-img-02 {
  background: url(../img/top_panel_02.webp) center center no-repeat;
  background-size: cover;
}
.top-panel-img.top-panel-img-03 {
  background: url(../img/top_panel_03.webp) center center no-repeat;
  background-size: cover;
}
.top-panel-img.top-panel-img-04 {
  background: url(../img/top_panel_04.webp) center center no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .top-panel.panel-open {
    transition: 0.6s;
    width: 40%;
  }
  .top-panel.panel-close {
    transition: 0.6s;
    width: 17.8%;
  }
  .top-panel.panel-close .top-panel-img {
    transition: all 0.6s;
    aspect-ratio: 130/206;
  }
  .top-panel.panel-close .top-panel-h3 {
    padding-left: 60px;
    transition: all 0.3s;
  }
  .top-panel.panel-close .top-panel-h3 span {
    font-size: 1.4vw;
    transition: all 0.3s;
  }
  .top-panel.panel-close .top-panel-lead {
    opacity: 0;
    transition: all 0.3s;
    font-size: 0.7vw;
  }
  .top-panel.panel-close .top-panel-cont {
    padding-left: 60px;
  }
}

.btn-top-panel {
  position: relative;
  margin: 0;
  color: #ffffff;
  width: 100%;
  max-width: 200px;
  border: 1px solid #ffffff;
  transition: 0.3s;
  background: transparent;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .btn-top-panel {
    max-width: 160px;
  }
}
@media screen and (min-width: 768px) {
  .btn-top-panel:hover {
    background: #395C8D;
    border: 1px solid #395C8D;
  }
}

.icon-blank:after {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/incon_link.svg) center center no-repeat;
  background-size: 100% auto;
}
.icon-blank span {
  display: none;
}

/* ==========================================================================
  TOP - vision
========================================================================== */
.top-vision {
  overflow: hidden;
  padding: 100px 8vw;
}
@media screen and (max-width: 767px) {
  .top-vision {
    padding: 16vw 6vw;
  }
}

.top-vision-outer {
  position: relative;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-vision-outer {
    padding: 0;
  }
}

.top-vision-left {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .top-vision-left {
    width: 100%;
  }
}

.vision-h3-container {
  position: relative;
  font-size: 3em;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  display: inline-block;
  margin-bottom: 30px;
}

.vision-h3-outline {
  color: transparent;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /* 初期状態は透明な枠線。色は#1d7df2を指定 */
  -webkit-text-stroke: 1px rgba(29, 125, 242, 0);
  margin: 0;
  line-height: 1;
}
.vision-h3-outline.start {
  animation: fadeInStroke 0.5s ease-in-out forwards, fadeOutStroke 0.5s ease-in-out forwards 1s;
}

.vision-h3-gradient {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  display: inline-block;
  background: linear-gradient(90deg, #31a47a 0%, #1d7df2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.vision-h3-gradient.start {
  animation: fadeInGradient 0.5s ease-in-out forwards;
  animation-delay: 1s;
}

.top-vision-h4 {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #395C8D;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-vision-h4 {
    font-size: 0.9em;
    margin-bottom: 15px;
  }
}

.top-vision-text {
  font-size: 0.8em;
  line-height: 2.2;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top-vision-text {
    font-size: 0.7em;
  }
}

.btn-top-mess {
  position: relative;
  margin: 0;
  color: #ffffff;
  width: 100%;
  max-width: 200px;
  transition: all 0.3s;
  background: transparent;
  overflow: hidden;
}
.btn-top-mess:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #31a47a 0%, #1d7df2 100%);
  opacity: 1;
  z-index: -1;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .btn-top-mess:hover {
    background: #395C8D;
  }
  .btn-top-mess:hover:after {
    opacity: 0;
    transition: all 0.3s;
  }
}

.top-vision-ttls {
  opacity: 0;
  transform: translate(-30px, 0);
}
.top-vision-ttls.start {
  animation: fadein 0.6s ease-in-out forwards;
}

.top-vision-right {
  width: 50%;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .top-vision-right {
    height: 100vh;
    justify-content: space-between;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 200px, black calc(100% - 200px), transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0px, black 200px, black calc(100% - 200px), transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .top-vision-right {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
    margin-top: 40px;
    justify-content: flex-start;
    -webkit-mask-image: linear-gradient(to right, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
}

.top-vision-imgs {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 767px) {
  .top-vision-imgs {
    width: auto;
    max-width: none;
    min-width: auto;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
.top-vision-imgs:first-child {
  margin-top: -10vw;
}
@media screen and (max-width: 767px) {
  .top-vision-imgs:first-child {
    margin: 0 0 20px;
  }
}
.top-vision-imgs p {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top-vision-imgs p {
    margin-bottom: 0;
    margin-right: 5px;
    width: calc((160vw - 25px) / 6);
    flex-shrink: 0;
  }
}
.top-vision-imgs p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .top-vision-imgs p:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-vision-imgs p img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* ==========================================================================
  TOP - zone
========================================================================== */
.grade-zone {
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
  top NEWS
========================================================================== */
.top-news-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: rgba(57, 92, 144, 0.8);
}
.top-news-inner.hide {
  opacity: 0;
}
.top-news-inner.moves {
  opacity: 1;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .top-news-inner {
    padding: 40px 6vw;
  }
}

.top-news-box {
  width: 88vw;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-news-box.hide {
  opacity: 0;
  transform: translate(-50px, 0);
}
.top-news-box.moves {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.6s;
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .top-news-box {
    width: 100%;
  }
}

.news-h3-container {
  position: relative;
  font-size: 3em;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  display: inline-block;
  margin-bottom: 30px;
}

.news-h3-outline {
  color: transparent;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /* 初期状態は透明な枠線。色は#1d7df2を指定 */
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0);
  margin: 0;
}
.news-h3-outline.start {
  animation: fadeInStrokew 0.5s ease-in-out forwards, fadeOutStrokew 0.5s ease-in-out forwards 1s;
}

.news-h3-gradient {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  display: inline-block;
  color: #ffffff;
  opacity: 0;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.news-h3-gradient.start {
  animation: fadeInGradient 0.5s ease-in-out forwards;
  animation-delay: 1s;
}

.top-news-h3 {
  display: block;
  width: 24%;
  font-size: 6vw;
  color: #395C8D;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-news-h3 {
    width: 100%;
    font-size: 2em;
    margin-bottom: 30px;
  }
}

.top-news-list {
  width: 76%;
}
@media screen and (max-width: 767px) {
  .top-news-list {
    width: 100%;
  }
}

.news-list li {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #718AAD;
}
@media screen and (max-width: 767px) {
  .news-list li {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.news-list li:last-child {
  margin-bottom: 0;
}

.news-left {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .news-left {
    width: 100%;
    margin-bottom: 20px;
  }
}

.news-left-head {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px;
  align-items: center;
}

.news-date {
  font-size: 0.8em;
  color: #395C8D;
}

.news-genre {
  margin-left: 15px;
}
.news-genre span {
  display: block;
  text-align: center;
  line-height: 1;
  padding: 5px 10px;
  color: #ffffff;
  font-size: 0.6em;
  border-radius: 3px;
}
.news-genre span.news-genre-00 {
  background: #000;
}
.news-genre span.news-genre-01 {
  background: #395C8D;
}
.news-genre span.news-genre-02 {
  background: #0AA85D;
}
.news-genre span.news-genre-03 {
  background: #B9980B;
}

.news-left-img img {
  border: 1px solid #CBCBCB;
}

.news-right {
  width: 74%;
}
@media screen and (max-width: 767px) {
  .news-right {
    width: 100%;
  }
}
.news-right a {
  color: #004A6E;
  text-decoration: underline;
}

.news-ttl-h4 {
  margin-bottom: 10px;
  color: #395C8D;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news-ttl-h4 {
    font-size: 0.8em;
  }
}

.news-detail {
  font-size: 0.8em;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .news-detail {
    font-size: 0.7em;
  }
}

.top-news-btn {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 40px;
}

.btn-top-news {
  width: 160px;
  background: #395C8D;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .btn-top-news:hover {
    background: #0AA85D;
  }
}

.news-dl {
  margin-top: 20px;
  font-size: 0.8em;
}
.news-dl img {
  width: 140px;
}

.news-top {
  color: #ffffff;
}

.btn-top-news {
  position: relative;
  margin: 0;
  color: #ffffff;
  width: 100%;
  max-width: 140px;
  transition: all 0.3s;
  background: transparent;
  overflow: hidden;
}
.btn-top-news:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #31a47a 0%, #1d7df2 100%);
  opacity: 1;
  z-index: -1;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .btn-top-news:hover {
    background: #395C8D;
  }
  .btn-top-news:hover:after {
    opacity: 0;
    transition: all 0.3s;
  }
}

.news-top-lines {
  border: none !important;
  position: relative;
}
.news-top-lines:after {
  width: 0;
  height: 1px;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}
.news-top-lines.start:after {
  width: 100%;
  transition: 0.6s;
}

/* ==========================================================================
  top SOLUTION
========================================================================== */
.top-sol {
  position: relative;
  z-index: 1;
}

.top-sol-outer {
  position: relative;
  overflow: hidden;
}

.top-sol-head {
  padding: 80px 5vw 100px;
}
@media screen and (max-width: 767px) {
  .top-sol-head {
    padding: 12vw 6vw 22vw;
  }
}

.top-sol-head-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 200%;
  width: 100%;
  background: url(../img/top_sol_bg_b.webp) center -90% repeat-y;
  background-size: 100% auto;
  animation: solbg 6s infinite linear;
}

@keyframes solbg {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.sol-h3-container {
  position: relative;
  font-size: 3em;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  display: inline-block;
  margin-bottom: 30px;
}

.sol-h3-outline {
  color: transparent;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /* 初期状態は透明な枠線。色は#1d7df2を指定 */
  -webkit-text-stroke: 1px rgba(29, 125, 242, 0);
  margin: 0;
}
.sol-h3-outline.start {
  animation: fadeInStroke 0.5s ease-in-out forwards, fadeOutStroke 0.5s ease-in-out forwards 1s;
}

.sol-h3-gradient {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  display: inline-block;
  background: linear-gradient(90deg, #31a47a 0%, #1d7df2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.sol-h3-gradient.start {
  animation: fadeInGradient 0.5s ease-in-out forwards;
  animation-delay: 1s;
}

.top-sol-lead {
  opacity: 0;
  transform: translate(-30px, 0);
  font-size: 0.8em;
  line-height: 2.2;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .top-sol-lead {
    max-width: 500px;
  }
}
.top-sol-lead.start {
  animation: fadein 0.6s ease-in-out forwards;
}

.top-sol-graph {
  position: relative;
  z-index: 1;
  width: 70vw;
  margin: 0 auto;
  transform: translate(5vw, -5vw);
  max-width: 900px;
}
.top-sol-graph-en {
  transform: translate(5vw, 0);
}
@media screen and (max-width: 767px) {
  .top-sol-graph {
    width: 70vw;
    transform: translate(0, 0);
    margin: 50px auto 0;
  }
}

.top-sol-graph-logo {
  position: absolute;
  width: 32%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* SVGのクラスに対してアニメーションを設定 */
.cls-1 {
  /* 1. 線の長さを設定（楕円の円周は約2000px強です） */
  /* 多めに設定しておき、アニメーションで 0 に戻します */
  stroke-dasharray: 2100;
  stroke-dashoffset: 2100;
  /* 2. アニメーションの定義 */
  /* 2.5s は描画にかかる時間です。適宜調整してください */
}
.cls-1.start {
  animation: drawEllipseAnim 0.8s ease-in-out forwards;
  stroke-linecap: round;
}

/* アニメーションのキーフレーム */
@keyframes drawEllipseAnim {
  0% {
    stroke-dashoffset: 2100; /* 最初は隠れた状態 */
  }
  100% {
    stroke-dashoffset: 0; /* 最後は全て描き切った状態 */
  }
}
.top-sol-tip {
  position: absolute;
  width: 22%;
  display: block;
  transition: 0.3s;
  opacity: 0;
}
.top-sol-tip.start {
  animation: popups 0.5s ease-in-out forwards;
  stroke-linecap: round;
}
@media screen and (max-width: 767px) {
  .top-sol-tip {
    transform: scale(1.25);
  }
}
.top-sol-tip.tip-01 {
  left: 10%;
  top: 5%;
  animation-delay: 0.4s;
}
.top-sol-tip.tip-02 {
  left: 50%;
  top: -20%;
  animation-delay: 0.6s;
}
.top-sol-tip.tip-03 {
  right: -10%;
  top: 0;
  animation-delay: 0.8s;
}
.top-sol-tip.tip-04 {
  right: 10%;
  top: 50%;
  animation-delay: 1s;
}
.top-sol-tip.tip-05 {
  left: 30%;
  top: 75%;
  animation-delay: 1.2s;
}
.top-sol-tip.tip-06 {
  left: -10%;
  top: 60%;
  animation-delay: 1.4s;
}
.top-sol-tip img {
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .top-sol-tip:hover img {
    opacity: 1;
    transform: scale(1.1);
    transform-origin: center center;
    transition: 0.3s;
  }
}

@keyframes popups {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  80% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.top-sol-bottom {
  position: relative;
  padding: 0 6vw;
}
@media screen and (max-width: 767px) {
  .top-sol-bottom {
    padding: 0 6vw;
  }
}

.top-sol-list {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-sol-list li {
  position: relative;
  width: 32%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: stretch;
  background: #ffffff;
  margin-bottom: 1.84vw;
  opacity: 0;
  transform: translate(0, 30px);
}
.top-sol-list li.start {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.6s;
}
@media screen and (min-width: 768px) {
  .top-sol-list li {
    min-height: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .top-sol-list li {
    position: relative;
    width: 100%;
    border: none;
    margin-bottom: 3vw;
  }
  .top-sol-list li:last-child {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .top-sol-list li:hover .top-sol-h5,
  .top-sol-list li:hover .top-sol-h4,
  .top-sol-list li:hover .top-sol-det {
    color: #ffffff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .top-sol-list li:hover .top-sol-panel-img {
    opacity: 1;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}

.top-sol-panel {
  display: block;
  text-decoration: none;
  padding: 2vw;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .top-sol-panel {
    padding: 6vw;
    padding: 8vw 4vw;
    background: transparent;
  }
}
.top-sol-panel .top-sol-h4 {
  position: relative;
  font-size: 2vw;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #395C8D;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.top-sol-panel .top-sol-h4:before {
  content: "";
  position: absolute;
  left: -2vw;
  top: 50%;
  margin-top: -1px;
  width: 1.5vw;
  height: 2px;
  background: #395C8D;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .top-sol-panel .top-sol-h4 {
    font-size: 1.4em;
    margin-bottom: 5px;
    color: #ffffff;
  }
}
.top-sol-panel .top-sol-h5 {
  font-weight: 500;
  margin-bottom: 20px;
  color: #395C8D;
  font-size: 0.9em;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .top-sol-panel .top-sol-h5 {
    color: #ffffff;
    font-size: 0.9em;
    margin: 0;
  }
}
.top-sol-panel .top-sol-det {
  font-size: 0.8em;
  color: #000000;
  margin-bottom: 40px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .top-sol-panel .top-sol-det {
    color: #ffffff;
    margin-bottom: 20px;
    display: none;
  }
}
.top-sol-panel .btn-top-sol {
  width: 160px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .top-sol-panel .btn-top-sol {
    position: absolute;
    right: 2vw;
    bottom: 2vw;
    height: auto;
    line-height: 1;
    width: auto;
    padding-right: 20px;
    font-weight: 600;
    font-size: 1em;
  }
  .top-sol-panel .btn-top-sol:after {
    right: 0;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
  }
}
@media screen and (max-width: 767px) {
  .top-sol-panel .btn-top-sol {
    display: none;
  }
}
.top-sol-panel .top-sol-icons {
  width: 80%;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-sol-panel .top-sol-icons {
    position: absolute;
    top: 3vw;
    right: 0;
    width: 36%;
  }
}
.top-sol-panel .top-sol-icons p {
  width: 30%;
  margin-right: 5%;
}
@media screen and (max-width: 767px) {
  .top-sol-panel .top-sol-icons p {
    width: 40%;
  }
}
.top-sol-panel .top-sol-icons p:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top-sol-panel .top-sol-icons p:nth-child(2) {
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .top-sol-list li:hover .btn-top-sol {
    color: #ffffff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .top-sol-list li:hover .btn-top-sol:after {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
  }
  .top-sol-list li:hover .top-sol-h4:before {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    background: #ffffff;
  }
}

.top-sol-panel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .top-sol-panel-img {
    opacity: 1;
  }
}

.top-sol-panel-img-01 {
  background: url(../img/top_sol_bg_01.webp) center top no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-sol-panel-img-01 {
    background: url(../img/top_sol_bg_01.webp) center center no-repeat;
    background-size: cover;
  }
}

.top-sol-panel-img-02 {
  background: url(../img/top_sol_bg_02.webp) center top no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-sol-panel-img-02 {
    background: url(../img/top_sol_bg_02.webp) center center no-repeat;
    background-size: cover;
  }
}

.top-sol-panel-img-03 {
  background: url(../img/top_sol_bg_03.webp) center top no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-sol-panel-img-03 {
    background: url(../img/top_sol_bg_03.webp) center center no-repeat;
    background-size: cover;
  }
}

.top-sol-panel-img-04 {
  background: url(../img/top_sol_bg_04.webp) center top no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-sol-panel-img-04 {
    background: url(../img/top_sol_bg_04.webp) center center no-repeat;
    background-size: cover;
  }
}

.top-sol-panel-img-05 {
  background: url(../img/top_sol_bg_05.webp) center top no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-sol-panel-img-05 {
    background: url(../img/top_sol_bg_05.webp) center center no-repeat;
    background-size: cover;
  }
}

.top-sol-panel-img-06 {
  background: url(../img/top_sol_bg_06.webp) center top no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-sol-panel-img-06 {
    background: url(../img/top_sol_bg_06.webp) center center no-repeat;
    background-size: cover;
  }
}

.top-sol-bf {
  position: absolute;
  bottom: -60px;
  right: 120px;
  width: 140px;
}
@media screen and (max-width: 767px) {
  .top-sol-bf {
    width: 80px;
    right: 30px;
  }
}

/* ==========================================================================
  top contact
========================================================================== */
.top-contact {
  position: relative;
  z-index: 0;
}

.top-contact-outer {
  position: relative;
  z-index: 1;
  padding: 16vw 0;
}
@media screen and (max-width: 767px) {
  .top-contact-outer {
    padding: 24vw 0;
  }
}

.top-contact-bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: url(../img/top_contact_bg.webp) center center no-repeat;
  background-size: cover;
}

.top-contact-inner {
  position: relative;
  z-index: 1;
}
.top-contact-inner.hide {
  opacity: 0;
}
.top-contact-inner.moves {
  opacity: 1;
  transition: 0.6s;
}

.top-contact-btn {
  display: block;
  background: #ffffff;
  text-align: center;
  text-decoration: none;
  padding: 60px 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .top-contact-btn {
    padding: 30px 6vw;
  }
}
.top-contact-btn .top-contact-h3 {
  font-size: 4vw;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 30px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .top-contact-btn .top-contact-h3 {
    font-size: 2em;
    margin-bottom: 15px;
  }
}
.top-contact-btn .top-contact-text {
  text-decoration: none;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .top-contact-btn .top-contact-text {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 768px) {
  .top-contact-btn:hover {
    background: #395C8D;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .top-contact-btn:hover .top-contact-h3 {
    color: #ffffff;
  }
  .top-contact-btn:hover .top-contact-text {
    color: #ffffff;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translate(-30px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeinpanels {
  from {
    opacity: 0;
    transform: translate(0, 30px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/*# sourceMappingURL=top.css.map */
