@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes floating-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2%);
  }
}
@keyframes floating-y_s {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(1%);
  }
}
@keyframes floating-y_l {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6%);
  }
}
.top-mv {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: -1;
}
.top-mv:before {
  content: "";
  display: block;
  width: 100%;
  min-width: 1128px;
  height: calc(var(--mv-height) + 90px);
  animation: bg-swap 2s steps(1) infinite -1.5s;
  background-size: cover;
  background-position: 50% 0%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 440px) {
  .top-mv:before {
    min-width: 0;
    animation: bg-swap_sp 2s steps(1) infinite -1.5s;
  }
}
.is_horizontal .top-mv:before {
  background-position: 50% -10dvh;
}
@media (max-width: 440px) {
  .is_horizontal .top-mv:before {
    background-position: 50% 0%;
  }
}

@keyframes bg-swap {
  0% {
    background-image: url(../../images/top/top-mv_a.png);
  }
  50% {
    background-image: url(../../images/top/top-mv_b.png);
  }
  100% {
    background-image: url(../../images/top/top-mv_a.png);
  }
}
@keyframes bg-swap_sp {
  0% {
    background-image: url(../../images/top/top-mv-sp_a.png);
  }
  50% {
    background-image: url(../../images/top/top-mv-sp_b.png);
  }
  100% {
    background-image: url(../../images/top/top-mv-sp_a.png);
  }
}
.top-mv_ttl {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
@media (max-width: 440px) {
  .top-mv_ttl {
    top: 20px;
  }
}
.is_horizontal .top-mv_ttl {
  top: -10dvh;
}
@media (max-width: 1024px) {
  .is_horizontal .top-mv_ttl {
    top: 0;
  }
}
.top-mv_ttl:before {
  content: "";
  display: block;
  width: 100%;
  height: var(--mv-height);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-image: url(../../images/top/top-mv_ttl.svg);
  opacity: 0;
  transition: 0.8s;
  transition-delay: 1.5s;
  transform: translateY(80px);
  animation: floating-y 5s ease-in-out infinite alternate-reverse 2.5s;
}
@media (max-width: 1024px) {
  .top-mv_ttl:before {
    background-image: url(../../images/top/top-mv_ttl-sp.svg);
    background-size: auto 100%;
  }
}
.top-mv_ttl.is_show:before {
  opacity: 1;
  transform: translateY(0);
}
.top-mv_ttl--txt {
  display: none;
}
.top-mv_ttl--deco {
  display: block;
  width: 100%;
  height: var(--mv-height);
  position: fixed;
  top: 0;
  left: 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
  transition-delay: 1.65s;
  animation: floating-y_s 5s ease-in-out infinite alternate-reverse 2.7s;
}
.is_show .top-mv_ttl--deco {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .top-mv_ttl--deco {
    background-size: auto 100%;
  }
}
.top-mv_ttl--deco:nth-of-type(2) {
  background-image: url(../../images/top/top-mv_ttl--deco01.svg);
}
@media (max-width: 1024px) {
  .top-mv_ttl--deco:nth-of-type(2) {
    background-image: url(../../images/top/top-mv_ttl--deco-sp01.svg);
  }
}
.top-mv_ttl--deco:nth-of-type(3) {
  background-image: url(../../images/top/top-mv_ttl--deco02.svg);
}
@media (max-width: 1024px) {
  .top-mv_ttl--deco:nth-of-type(3) {
    background-image: url(../../images/top/top-mv_ttl--deco-sp02.svg);
  }
}
.top-mv_ttl--deco:last-of-type {
  background-image: url(../../images/top/top-mv_ttl--deco03.svg);
}
@media (max-width: 1024px) {
  .top-mv_ttl--deco:last-of-type {
    background-image: url(../../images/top/top-mv_ttl--deco-sp03.svg);
  }
}

.top-news {
  margin-top: 300px;
}
@media (max-width: 440px) {
  .top-news {
    margin-top: 200px;
  }
}
.top-news--wrap {
  width: 985px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 440px) {
  .top-news--wrap {
    width: 311px;
  }
}

.top-news_ttl {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #00A0E9;
  height: 72px;
  border-radius: 24px 24px 0 0;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media (max-width: 440px) {
  .top-news_ttl {
    font-size: 20px;
    height: 44px;
    border-radius: 16px 16px 0 0;
    width: 97px;
  }
}

.top-news_list {
  background-color: #fff;
  border-radius: 0px 24px 24px 24px;
  padding: 46px 32px;
  box-sizing: border-box;
  margin-top: -30px;
  margin-bottom: 540px;
}
@media (max-width: 440px) {
  .top-news_list {
    border-radius: 0px 16px 16px 16px;
    padding: 16px 20px 24px;
    margin-top: -6px;
    margin-bottom: 360px;
  }
}
.top-news_list--item {
  border-bottom: 1px solid #D9D9D9;
}
.top-news_list--item:first-of-type .top-news_list--link {
  padding-top: 0;
}
.top-news_list--link {
  display: flex;
  align-items: center;
  padding: 16px 0;
}
@media (max-width: 440px) {
  .top-news_list--link {
    display: block;
    padding: 8px 0;
  }
}
.top-news_list--link:hover .top-news_list--ttl {
  color: #00A0E9;
}
@media (max-width: 440px) {
  .top-news_list--link:hover .top-news_list--ttl {
    color: #333;
  }
}
.top-news_list--date {
  font-size: 16px;
  line-height: 1.7;
  color: #868686;
  width: 96px;
  display: block;
}
@media (max-width: 440px) {
  .top-news_list--date {
    font-size: 12px;
    width: 100%;
  }
}
.top-news_list--ttl {
  font-size: 16px;
  line-height: 1.7;
  transition: 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 96px);
  display: block;
}
@media (max-width: 440px) {
  .top-news_list--ttl {
    margin-top: 4px;
    font-size: 14px;
    width: 100%;
  }
}

.top-message {
  padding-top: 270px;
  padding-bottom: 240px;
}
@media (max-width: 440px) {
  .top-message {
    padding-top: 160px;
    padding-bottom: 200px;
  }
}
.top-message--inner {
  background-color: #fff;
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 58px 88px 58px 58px;
  position: relative;
}
@media (max-width: 440px) {
  .top-message--inner {
    border-radius: 16px;
    padding: 0 20px 32px;
    display: block;
  }
}
.top-message--inner:before {
  content: "";
  width: 221px;
  aspect-ratio: 221/153;
  position: absolute;
  top: -48px;
  right: -3px;
  background-image: url(../../images/top/top-message--inner.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
@media (max-width: 440px) {
  .top-message--inner:before {
    width: 155px;
    top: 242px;
    right: 16px;
  }
}
.top-message--img {
  width: 384px;
  border-radius: 24px;
}
@media (max-width: 440px) {
  .top-message--img {
    width: 226px;
    margin-left: 12px;
  }
}
.top-message--txt {
  width: 552px;
}
@media (max-width: 440px) {
  .top-message--txt {
    width: 100%;
    margin-top: 24px;
  }
}
.top-message--desc {
  font-size: 16px;
  line-height: 2;
  margin-top: 26px;
}
@media (max-width: 440px) {
  .top-message--desc {
    font-size: 14px;
    margin-top: 16px;
  }
}

.top-message_ttl--sub {
  font-family: "Montserrat", sans-serif;
  color: #00A0E9;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
}
@media (max-width: 440px) {
  .top-message_ttl--sub {
    font-size: 14px;
    font-weight: 600;
  }
}
.top-message_ttl--main {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.3;
  margin-top: 16px;
  display: block;
}
@media (max-width: 440px) {
  .top-message_ttl--main {
    font-size: 26px;
    margin-top: 16px;
  }
}

.top-message_sign {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 440px) {
  .top-message_sign {
    margin-top: 20px;
  }
}
.top-message_sign--post {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1875;
  color: #00A0E9;
  margin-right: 24px;
}
@media (max-width: 440px) {
  .top-message_sign--post {
    font-size: 14px;
    line-height: 1.2142857143;
    margin-right: 16px;
  }
}
.top-message_sign--img {
  width: 162px;
  display: block;
}
@media (max-width: 440px) {
  .top-message_sign--img {
    width: 126px;
  }
}

.top-about {
  background: linear-gradient(90deg, #00A0E9 0%, #58DBCA 100%);
  padding-top: 120px;
  padding-bottom: 160px;
}
.top-about--inner {
  position: relative;
}
.top-about--inner:before {
  content: "";
  display: block;
  width: 332px;
  aspect-ratio: 332/240;
  background-image: url(../../images/top/top-about--inner.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  position: absolute;
  top: 26px;
  right: 92px;
}
@media (max-width: 440px) {
  .top-about--inner:before {
    width: 203px;
    top: -137px;
    right: 16px;
  }
}
.top-about--desc {
  color: #fff;
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  margin-top: 32px;
}
@media (max-width: 440px) {
  .top-about--desc {
    font-size: 14px;
    line-height: 2;
    margin-top: 24px;
  }
}

.top-about_ttl {
  position: relative;
  padding-bottom: 16px;
}
.top-about_ttl:after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 440px) {
  .top-about_ttl:after {
    width: 56px;
  }
}
.top-about_ttl--sub {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  display: block;
}
@media (max-width: 440px) {
  .top-about_ttl--sub {
    font-size: 14px;
  }
}
.top-about_ttl--main {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-top: 8px;
  display: block;
}
@media (max-width: 440px) {
  .top-about_ttl--main {
    font-size: 32px;
  }
}

.top-about_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
}
@media (max-width: 440px) {
  .top-about_list {
    margin-top: 40px;
    display: block;
  }
}
.top-about_list--item {
  margin-top: 24px;
}
.top-about_list--item:first-of-type {
  margin-top: 0;
}
.top-about_list--item:first-of-type .top-about_list--link {
  background-image: url(../../images/top/top-about_list--link01.png);
  background-size: 100% auto;
}
.top-about_list--item:first-of-type .top-about_list--link:before {
  content: "";
  display: block;
  aspect-ratio: 131/133;
  width: 131px;
  background-image: url(../../images/top/top-about_list--link01-deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  position: absolute;
  left: 226px;
  bottom: 82px;
}
@media (max-width: 440px) {
  .top-about_list--item:first-of-type .top-about_list--link:before {
    width: 100px;
    left: calc(50% - 3px);
    bottom: 58px;
    transform: translateX(-50%);
  }
}
.top-about_list--item:nth-of-type(2) {
  margin-top: 0;
  transition-delay: 0.15s;
}
@media (max-width: 440px) {
  .top-about_list--item:nth-of-type(2) {
    margin-top: 24px;
    transition-delay: 0s;
  }
}
.top-about_list--item:nth-of-type(2) .top-about_list--link {
  background-image: url(../../images/top/top-about_list--link02.png);
  background-position: 100% 0%;
  background-size: auto 100%;
}
.top-about_list--item:nth-of-type(2) .top-about_list--link:before {
  content: "";
  display: block;
  aspect-ratio: 324/133;
  width: 324px;
  background-image: url(../../images/top/top-about_list--link02-deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  position: absolute;
  left: 60px;
  bottom: 34px;
}
@media (max-width: 440px) {
  .top-about_list--item:nth-of-type(2) .top-about_list--link:before {
    width: 192px;
    left: 32px;
    bottom: 32px;
  }
}
@media (max-width: 440px) {
  .top-about_list--item:nth-of-type(2) .top-about_list--txt_l {
    text-shadow: 1px 1px 0 #FFF;
  }
}
.top-about_list--item:nth-of-type(3) .top-about_list--link {
  background-image: url(../../images/top/top-about_list--link03.png);
}
@media (max-width: 440px) {
  .top-about_list--item:nth-of-type(3) .top-about_list--link {
    background-image: url(../../images/top/top-about_list--link-sp03.png);
  }
}
.top-about_list--item:nth-of-type(4) {
  transition-delay: 0.15s;
}
@media (max-width: 440px) {
  .top-about_list--item:nth-of-type(4) {
    transition-delay: 0s;
  }
}
.top-about_list--item:nth-of-type(4) .top-about_list--link {
  background-image: url(../../images/top/top-about_list--link04.png);
}
@media (max-width: 440px) {
  .top-about_list--item:nth-of-type(4) .top-about_list--link {
    background-image: url(../../images/top/top-about_list--link-sp04.png);
  }
}
.top-about_list--item:last-of-type {
  transition-delay: 0.3s;
}
@media (max-width: 440px) {
  .top-about_list--item:last-of-type {
    transition-delay: 0s;
  }
}
.top-about_list--item:last-of-type .top-about_list--link {
  background-image: url(../../images/top/top-about_list--link05.png);
}
@media (max-width: 440px) {
  .top-about_list--item:last-of-type .top-about_list--link {
    background-image: url(../../images/top/top-about_list--link-sp05.png);
  }
}
.top-about_list--link {
  display: block;
  border-radius: 24px;
  background-color: #fff;
  width: 360px;
  padding: 33px;
  height: 360px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% auto;
  position: relative;
}
@media (max-width: 440px) {
  .top-about_list--link {
    width: 100%;
    height: 245px;
    padding: 24px;
  }
}
.top-about_list--link:after {
  content: "";
  display: block;
  aspect-ratio: 48/48;
  width: 48px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #BCBCBC;
  position: absolute;
  top: 24px;
  right: 24px;
  background-image: url(../../images/common/icon/icon-arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 11px auto;
  transition: 0.3s;
}
@media (max-width: 440px) {
  .top-about_list--link:after {
    width: 40px;
    top: 16px;
    right: 16px;
  }
}
.top-about_list--link-l {
  width: 552px;
  padding: 24px 32px;
  height: 345px;
}
@media (max-width: 440px) {
  .top-about_list--link-l {
    width: 100%;
    height: 245px;
    padding: 16px 24px;
  }
}
.top-about_list--link:hover {
  transform: scale(1.02);
}
@media (max-width: 440px) {
  .top-about_list--link:hover {
    transform: none;
  }
}
.top-about_list--txt {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.3;
}
@media (max-width: 440px) {
  .top-about_list--txt {
    font-size: 18px;
  }
}
.top-about_list--txt_l {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.3;
}
@media (max-width: 440px) {
  .top-about_list--txt_l {
    font-size: 26px;
  }
}
.top-about_list--txt_strong {
  color: #00A0E9;
}

.top-voice {
  padding-top: 220px;
  padding-bottom: 152px;
  background-color: rgba(231, 243, 249, 0.8);
  position: relative;
  overflow: hidden;
}
@media (max-width: 440px) {
  .top-voice {
    padding-top: 148px;
  }
}
.top-voice--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 440px) {
  .top-voice--inner {
    display: block;
  }
}
.top-voice--txt {
  width: 744px;
}
@media (max-width: 440px) {
  .top-voice--txt {
    width: 100%;
  }
}
.top-voice--desc {
  font-weight: 700;
  line-height: 2;
  font-size: 16px;
  margin-top: 32px;
}
@media (max-width: 440px) {
  .top-voice--desc {
    font-size: 14px;
    margin-top: 24px;
  }
}
.top-voice--nav {
  margin-top: 120px;
}
@media (max-width: 440px) {
  .top-voice--nav {
    margin-top: 56px;
  }
}

.top-voice_deco {
  display: flex;
  overflow: hidden;
  position: absolute;
  top: 24px;
  left: 0;
}
@media (max-width: 440px) {
  .top-voice_deco {
    top: 28px;
  }
}
.top-voice_deco--txt {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 140px;
  background: linear-gradient(90deg, #00A0E9 0%, #58DBCA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 1590px;
  white-space: nowrap;
  animation: infinity-scroll-left 40s infinite linear both;
}
@media (max-width: 440px) {
  .top-voice_deco--txt {
    font-size: 80px;
    width: 909px;
    animation: infinity-scroll-left 30s infinite linear both;
  }
}

.top-voice_ttl {
  padding-bottom: 16px;
  position: relative;
}
.top-voice_ttl:after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, #00A0E9 0%, #58DBCA 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 440px) {
  .top-voice_ttl:after {
    width: 56px;
  }
}
.top-voice_ttl--sub {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}
@media (max-width: 440px) {
  .top-voice_ttl--sub {
    font-size: 14px;
  }
}
.top-voice_ttl--main {
  display: block;
  color: #00A0E9;
  font-size: 64px;
  line-height: 1.3;
  font-weight: 900;
  margin-top: 8px;
}
@media (max-width: 440px) {
  .top-voice_ttl--main {
    font-size: 32px;
  }
}

.top-voice_more {
  width: 264px;
  aspect-ratio: 264/173;
  display: flex;
  align-items: center;
  background-image: url(../../images/common/icon/icon-circle.svg);
  background-position: 100% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 440px) {
  .top-voice_more {
    width: 210px;
    aspect-ratio: 210/134;
    margin-left: auto;
  }
}
.top-voice_more:hover .top-voice_more--txt:after {
  transform: translateX(6px);
}
@media (max-width: 440px) {
  .top-voice_more:hover .top-voice_more--txt:after {
    transform: none;
  }
}
.top-voice_more--txt {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 900;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 440px) {
  .top-voice_more--txt {
    font-size: 18px;
  }
}
.top-voice_more--txt:after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 24/24;
  background-image: url(../../images/common/icon/icon-arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  margin-left: 8px;
  transition: 0.3s;
}
@media (max-width: 440px) {
  .top-voice_more--txt:after {
    width: 20px;
    margin-left: 16px;
  }
}

.top-guidelines {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}
.top-guidelines--wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 440px) {
  .top-guidelines--wrap {
    display: block;
  }
}
.top-guidelines--txt {
  width: calc(100% - 552px);
}
@media (max-width: 440px) {
  .top-guidelines--txt {
    width: 100%;
  }
}
.top-guidelines--desc {
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  margin-top: 32px;
}
@media (max-width: 440px) {
  .top-guidelines--desc {
    font-size: 14px;
    margin-top: 24px;
  }
}

.top-guidelines_ttl {
  padding-bottom: 16px;
  position: relative;
}
.top-guidelines_ttl:after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, #00A0E9 0%, #58DBCA 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 440px) {
  .top-guidelines_ttl:after {
    width: 56px;
  }
}
.top-guidelines_ttl--sub {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  display: block;
}
@media (max-width: 440px) {
  .top-guidelines_ttl--sub {
    font-size: 14px;
  }
}
.top-guidelines_ttl--main {
  font-weight: 900;
  font-size: 64px;
  line-height: 1.3;
  color: #00A0E9;
  display: block;
  margin-top: 8px;
}
@media (max-width: 440px) {
  .top-guidelines_ttl--main {
    font-size: 32px;
  }
}

.top-guidelines_nav {
  width: 552px;
}
@media (max-width: 440px) {
  .top-guidelines_nav {
    width: 100%;
    margin-top: 40px;
  }
}
.top-guidelines_nav--item {
  margin-top: 24px;
}
@media (max-width: 440px) {
  .top-guidelines_nav--item {
    margin-top: 16px;
  }
}
.top-guidelines_nav--item:first-of-type {
  margin-top: 0;
}
.top-guidelines_nav--link {
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding-left: 40px;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  height: 95px;
  position: relative;
}
.top-guidelines_nav--link:hover {
  opacity: 0.7;
}
@media (max-width: 440px) {
  .top-guidelines_nav--link:hover {
    opacity: 1;
  }
}
@media (max-width: 440px) {
  .top-guidelines_nav--link {
    height: 80px;
    font-size: 18px;
    padding-left: 24px;
  }
}
.top-guidelines_nav--link:before {
  content: "";
  aspect-ratio: 32/26;
  width: 32px;
  background-image: url(../../images/common/icon/icon-arrow-white2.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media (max-width: 440px) {
  .top-guidelines_nav--link:before {
    width: 24px;
    right: 20px;
  }
}
.top-guidelines_nav--link-new {
  background-color: #01A2E9;
}
.top-guidelines_nav--link-carrier {
  background-color: #00CF9C;
}
.top-guidelines_nav--link:hover:before {
  right: 26px;
}
@media (max-width: 440px) {
  .top-guidelines_nav--link:hover:before {
    right: 20px;
  }
}

.top-guidelines_bnr {
  margin-top: 68px;
  border-radius: 8px;
  background-color: #C9E3EF;
  position: relative;
  display: block;
  overflow: hidden;
}
.top-guidelines_bnr:hover {
  opacity: 0.7;
}
.top-guidelines_bnr:hover:before, .top-guidelines_bnr:hover:after {
  opacity: 0.7;
}
@media (max-width: 440px) {
  .top-guidelines_bnr {
    opacity: 1;
    margin-top: 56px;
  }
  .top-guidelines_bnr:before, .top-guidelines_bnr:after {
    opacity: 1;
  }
}
.top-guidelines_bnr:before {
  content: "";
  display: block;
  width: 96px;
  height: 100%;
  background-color: #00A0E9;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../../images/common/icon/icon-arrow-white2.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 30px auto;
  transition: 0.3s;
}
@media (max-width: 440px) {
  .top-guidelines_bnr:before {
    width: 64px;
    height: 64px;
    top: auto;
    bottom: 0;
    border-radius: 8px 0 8px 0;
    background-size: 24px auto;
  }
}
.top-guidelines_bnr:after {
  content: "";
  aspect-ratio: 960/424;
  height: 100%;
  width: auto;
  background-image: url(../../images/top/top-guidelines_bnr.png);
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 96px;
  border-radius: 0 8px 8px 0;
  transition: 0.3s;
}
@media (max-width: 440px) {
  .top-guidelines_bnr:after {
    width: 100%;
    aspect-ratio: auto;
    background-position: 50% 0%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    right: 0;
    border-radius: 0px;
    background-image: url(../../images/top/top-guidelines_bnr-sp.png);
  }
}
.top-guidelines_bnr:hover:before {
  background-position: calc(50% + 6px) 50%;
}
@media (max-width: 440px) {
  .top-guidelines_bnr:hover:before {
    background-position: 50% 50%;
  }
}
.top-guidelines_bnr--wrap {
  position: relative;
  z-index: 100;
  height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
}
@media (max-width: 440px) {
  .top-guidelines_bnr--wrap {
    height: 245px;
    padding-left: 16px;
    padding-top: 139px;
    box-sizing: border-box;
    display: block;
  }
}
.top-guidelines_bnr--wrap:before {
  content: "Internship";
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 112px;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 21px;
}
@media (max-width: 440px) {
  .top-guidelines_bnr--wrap:before {
    font-size: 54px;
    top: 119px;
    left: 16px;
  }
}
.top-guidelines_bnr--sub {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
  color: #00A0E9;
  padding-bottom: 16px;
  position: relative;
  display: block;
}
@media (max-width: 440px) {
  .top-guidelines_bnr--sub {
    font-size: 16px;
    padding-bottom: 12px;
  }
}
.top-guidelines_bnr--sub:after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, #00A0E9 0%, #58DBCA 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 440px) {
  .top-guidelines_bnr--sub:after {
    width: 40px;
  }
}
.top-guidelines_bnr--main {
  margin-top: 12px;
  background: linear-gradient(90deg, #00A0E9 0%, #58DBCA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.3;
  width: fit-content;
  display: block;
  position: relative;
}
@media (max-width: 440px) {
  .top-guidelines_bnr--main {
    margin-top: 12px;
    font-size: 18px;
  }
}

.top-faq {
  margin: 216px auto 200px;
  background-color: #fff;
  width: 985px;
  border-radius: 24px;
  padding: 76px 0 80px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 440px) {
  .top-faq {
    margin-top: 160px;
    margin-bottom: 240px;
    width: calc(100% - 48px);
    border-radius: 16px;
    padding-top: 151px;
    padding-bottom: 40px;
  }
}
.top-faq:before {
  content: "";
  display: block;
  aspect-ratio: 257/108;
  width: 257px;
  background-image: url(../../images/top/top-faq_ttl.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: -56px;
  transform: translateX(-50%);
}
@media (max-width: 440px) {
  .top-faq:before {
    width: 188px;
    top: 40px;
  }
}
.top-faq--desc {
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 440px) {
  .top-faq--desc {
    font-size: 14px;
  }
}

.top-faq_ttl--sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  display: block;
}
@media (max-width: 440px) {
  .top-faq_ttl--sub {
    font-size: 14px;
  }
}
.top-faq_ttl--main {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.3;
  text-align: center;
  display: block;
  margin-top: 8px;
  color: #00A0E9;
}
@media (max-width: 440px) {
  .top-faq_ttl--main {
    font-size: 26px;
    margin-top: 16px;
  }
}

.top-faq_list {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 440px) {
  .top-faq_list {
    margin-top: 32px;
    display: block;
    width: 279px;
    margin-left: auto;
    margin-right: auto;
  }
}
.top-faq_list--item {
  width: 360px;
  margin-right: 24px;
}
@media (max-width: 440px) {
  .top-faq_list--item {
    width: 100%;
    margin-right: 0;
  }
}
.top-faq_list--item:last-of-type {
  margin-right: 0;
}
@media (max-width: 440px) {
  .top-faq_list--item:last-of-type {
    margin-top: 16px;
  }
}
.top-faq_list--link {
  width: 100%;
  height: 56px;
  border-radius: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}
.top-faq_list--link:hover {
  color: #fff;
}
@media (max-width: 440px) {
  .top-faq_list--link:hover {
    color: #333;
  }
}
@media (max-width: 440px) {
  .top-faq_list--link {
    height: 53px;
    font-size: 14px;
  }
}
.top-faq_list--link-new:hover {
  border-color: #01A2E9;
  background-color: #01A2E9;
}
@media (max-width: 440px) {
  .top-faq_list--link-new:hover {
    border-color: #333;
    background-color: transparent;
  }
}
.top-faq_list--link-carrier:hover {
  border-color: #00CF9C;
  background-color: #00CF9C;
}
@media (max-width: 440px) {
  .top-faq_list--link-carrier:hover {
    border-color: #333;
    background-color: transparent;
  }
}

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