@charset "UTF-8";
/**
 * メディアクエリ
 * @param {string} $mode - max または min
 * @param {number} $width - 設定値
 */
/**
 * メディアクエリ PC
 * @param {number} [$width:$breakpoin] - 設定値
 */
/**
 * メディアクエリ SP
 * @param {number} [$width:$breakpoin] - 設定値
 */
/**
 * メディアクエリによるIE11ハック
 */
/**
 * VW計算
 * @param {string} $property  - プロパティ
 * @param {number} $value - 基準となる値
 * @param {number} $basewidth - 基準となるウィンドウ幅
 * @param {number} [$maxwidth:0] - 拡大を停止するウィンドウ幅
 * @param {number} [$minwidth:0] - 縮小を停止するウィンドウ幅
 */
/*---TOP演出---*/
.topBody {
  overflow: hidden;
}

.topOp:before {
  display: block;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 109;
  position: fixed;
  top: 0;
  left: 0;
}
.topOp:after {
  display: block;
  content: "";
  background-color: var(--main-blue);
  width: 100%;
  height: 100vh;
  z-index: 110;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
}
.topOp.is-animation:before {
  -webkit-animation: forwards PageAnime-white 1s cubic-bezier(0.82, 0.15, 0.89, 0.69);
  animation: forwards PageAnime-white 1s cubic-bezier(0.82, 0.15, 0.89, 0.69);
}
@-webkit-keyframes PageAnime-white {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes PageAnime-white {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.topOp.is-animation:after {
  -webkit-animation: forwards PageAnime-blue 1s cubic-bezier(0.82, 0.15, 0.89, 0.69);
  animation: forwards PageAnime-blue 1s cubic-bezier(0.82, 0.15, 0.89, 0.69);
}
@-webkit-keyframes PageAnime-blue {
  0% {
    transform-origin: left;
    transform: scaleX(0);
    opacity: 1;
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
    opacity: 1;
  }
  50.001% {
    transform-origin: right;
    opacity: 1;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
    opacity: 1;
  }
}
@keyframes PageAnime-blue {
  0% {
    transform-origin: left;
    transform: scaleX(0);
    opacity: 1;
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
    opacity: 1;
  }
  50.001% {
    transform-origin: right;
    opacity: 1;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
    opacity: 1;
  }
}
.topOp.is-animation .loading {
  opacity: 0;
  visibility: hidden;
}
.topOp .loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 109;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.topOp .loading .loading-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: solid 4px;
  border-color: var(--main-blue) rgba(0, 0, 0, 0.062745098) rgba(0, 0, 0, 0.062745098);
  position: relative;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@media screen and (max-width: 750px) {
  .topOp .loading .loading-icon {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}
@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.p-top {
  /*---セクションタイトル(TOP)---*/
}
.p-top .top-sectionTitle .top-sectionTitle-jp {
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .p-top .top-sectionTitle .top-sectionTitle-jp {
    font-size: 3.4666666667vw;
    margin-bottom: 4vw;
  }
}
.p-top .top-sectionTitle .top-sectionTitle-en {
  font-weight: 800;
  font-size: 52px;
}
@media screen and (max-width: 750px) {
  .p-top .top-sectionTitle .top-sectionTitle-en {
    font-size: 10.1333333333vw;
  }
}
.p-top .kv {
  position: relative;
  /*---スライド4枚目---*/
  /*---スライドチェンジ---*/
}
.p-top .kv .kv-slide .kv-slideContent-illust {
  position: absolute;
  z-index: 3;
}
.p-top .kv .kv-slide .kv-slideContent-grade {
  position: absolute;
  bottom: 0;
  z-index: 2;
}
.p-top .kv .kv-slide .kv-slideContent {
  position: relative;
}
.p-top .kv .kv-slide .kv-slideContent.kv-slide01 .kv-slideContent-illust {
  right: 110px;
  bottom: 10px;
  width: 630px;
}
@media (min-width: 751px) and (max-width: 1100px) {
  .p-top .kv .kv-slide .kv-slideContent.kv-slide01 .kv-slideContent-illust {
    width: 507px;
  }
}
@media (min-width: 1100px) and (max-width: 1366px) {
  .p-top .kv .kv-slide .kv-slideContent.kv-slide01 .kv-slideContent-illust {
    width: 46.1200585652vw;
  }
}
@media screen and (max-width: 750px) {
  .p-top .kv .kv-slide .kv-slideContent.kv-slide01 .kv-slideContent-illust {
    width: 80vw;
    bottom: 4.8vw;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.p-top .kv .kv-slide .kv-slideContent.kv-slide02 .kv-slideContent-illust {
  right: 0;
  left: 0;
  bottom: 30px;
  margin: auto;
  width: 990px;
}
@media (min-width: 751px) and (max-width: 1100px) {
  .p-top .kv .kv-slide .kv-slideContent.kv-slide02 .kv-slideContent-illust {
    width: 797px;
  }
}
@media (min-width: 1100px) and (max-width: 1366px) {
  .p-top .kv .kv-slide .kv-slideContent.kv-slide02 .kv-slideContent-illust {
    width: 72.4743777452vw;
  }
}
@media screen and (max-width: 750px) {
  .p-top .kv .kv-slide .kv-slideContent.kv-slide02 .kv-slideContent-illust {
    width: 88vw;
    bottom: 6.6666666667vw;
  }
}
.p-top .kv .kv-titleArea {
  position: absolute;
  left: 115px;
  bottom: 56px;
  z-index: 4;
}
@media screen and (max-width: 750px) {
  .p-top .kv .kv-titleArea {
    top: 12.4vw;
    left: 8.5333333333vw;
    bottom: auto;
  }
}
.p-top .kv .kv-titleArea .kv-title .kv-title-block {
  font-size: 60px;
  font-weight: bold;
  color: var(--main-blue);
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 0 15px 20px;
}
@media (min-width: 751px) and (max-width: 1100px) {
  .p-top .kv .kv-titleArea .kv-title .kv-title-block {
    font-size: 48px;
    padding: 10px 0 12px 16px;
  }
}
@media (min-width: 1100px) and (max-width: 1366px) {
  .p-top .kv .kv-titleArea .kv-title .kv-title-block {
    font-size: 4.39238653vw;
    padding-top: 0.878477306vw;
    padding-bottom: 1.0980966325vw;
    padding-left: 1.4641288433vw;
  }
}
@media screen and (max-width: 750px) {
  .p-top .kv .kv-titleArea .kv-title .kv-title-block {
    font-size: 9.3333333333vw;
    padding-left: 2.6666666667vw;
    padding-top: 2vw;
    padding-bottom: 2.6666666667vw;
  }
}
.p-top .kv .kv-titleArea .kv-title .kv-title-block .kv-title-block-text {
  position: relative;
  z-index: 2;
  opacity: 0;
}
.p-top .kv .kv-titleArea .kv-title .kv-title-block:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(255, 255, 255) 95%, rgba(255, 255, 255, 0) 95%);
}
@media screen and (max-width: 750px) {
  .p-top .kv .kv-titleArea .kv-title .kv-title-block:after {
    background: linear-gradient(90deg, rgb(255, 255, 255) 94%, rgba(255, 255, 255, 0) 94%);
  }
}
.p-top .kv .kv-titleArea .kv-title .kv-title-block:nth-child(2) {
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .p-top .kv .kv-titleArea .kv-title .kv-title-block:nth-child(2) {
    margin-top: 2vw;
  }
}
.p-top .kv .kv-titleArea .kv-title .kv-title-block:nth-child(2):after {
  background: linear-gradient(90deg, rgb(255, 255, 255) 96%, rgba(255, 255, 255, 0) 96%);
}
@media screen and (max-width: 750px) {
  .p-top .kv .kv-titleArea .kv-title .kv-title-block:nth-child(2):after {
    background: linear-gradient(90deg, rgb(255, 255, 255) 95%, rgba(255, 255, 255, 0) 95%);
  }
}
@-webkit-keyframes kvTextBgMotion {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes kvTextBgMotion {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes kvTextMotion {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
@keyframes kvTextMotion {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.p-top .kv .kv-titleArea .kv-subText {
  margin-top: 25px;
  line-height: 1.75;
  color: #fff;
  opacity: 0;
}
@media (min-width: 751px) and (max-width: 1100px) {
  .p-top .kv .kv-titleArea .kv-subText {
    font-size: 13px;
    margin-top: 20px;
  }
}
@media (min-width: 1100px) and (max-width: 1366px) {
  .p-top .kv .kv-titleArea .kv-subText {
    font-size: 1.1713030747vw;
    margin-top: 1.8301610542vw;
  }
}
.p-top .kv .kv-titleArea.kvText-anime .kv-title-block:nth-child(1):after {
  -webkit-animation: kvTextBgMotion forwards 0.7s cubic-bezier(0.62, 0.23, 0.82, 0.38);
  animation: kvTextBgMotion forwards 0.7s cubic-bezier(0.62, 0.23, 0.82, 0.38);
}
.p-top .kv .kv-titleArea.kvText-anime .kv-title-block:nth-child(1) .kv-title-block-text {
  -webkit-animation: kvTextMotion forwards 0.7s 1s ease;
  animation: kvTextMotion forwards 0.7s 1s ease;
}
.p-top .kv .kv-titleArea.kvText-anime .kv-title-block:nth-child(2):after {
  -webkit-animation: kvTextBgMotion forwards 0.7s 0.5s cubic-bezier(0.64, 0.32, 0.69, 0.41);
  animation: kvTextBgMotion forwards 0.7s 0.5s cubic-bezier(0.64, 0.32, 0.69, 0.41);
}
.p-top .kv .kv-titleArea.kvText-anime .kv-title-block:nth-child(2) .kv-title-block-text {
  -webkit-animation: kvTextMotion forwards 0.7s 1.3s ease;
  animation: kvTextMotion forwards 0.7s 1.3s ease;
}
.p-top .kv .kv-titleArea.kvText-anime .kv-subText {
  transition: opacity 1s 2.5s ease;
  opacity: 1;
}
.p-top .kv .kv-titleArea-slide04 {
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 4;
}
.p-top .kv .kv-titleArea-slide04 .kv-title {
  font-size: 60px;
  font-weight: bold;
  color: var(--main-blue);
  padding: 12px 0 15px 20px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 97%, rgba(255, 255, 255, 0) 97%);
}
@media (min-width: 751px) and (max-width: 1100px) {
  .p-top .kv .kv-titleArea-slide04 .kv-title {
    font-size: 48px;
    padding: 10px 0 12px 16px;
  }
}
@media (min-width: 1100px) and (max-width: 1366px) {
  .p-top .kv .kv-titleArea-slide04 .kv-title {
    font-size: 4.39238653vw;
    padding-top: 0.878477306vw;
    padding-bottom: 1.0980966325vw;
    padding-left: 1.4641288433vw;
  }
}
@media screen and (max-width: 750px) {
  .p-top .kv .kv-titleArea-slide04 .kv-title {
    font-size: 9.3333333333vw;
    padding-left: 2.6666666667vw;
    padding-top: 2vw;
    padding-bottom: 2.6666666667vw;
  }
}
.p-top .kv .kv-titleArea-slide04 .kv-subText {
  text-align: center;
  color: #000;
  margin-top: 25px;
  line-height: 1.75;
}
.p-top .kv .kv-titleArea-wrap .kv-titleArea {
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.p-top .kv .kv-titleArea-wrap .kv-titleArea:has(+ .slideChange) {
  opacity: 0;
  visibility: hidden;
}
.p-top .kv .kv-titleArea-wrap .kv-titleArea-slide04 {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.p-top .kv .kv-titleArea-wrap .kv-titleArea-slide04.slideChange {
  opacity: 1;
  visibility: visible;
}
.p-top .kv .kv-scrollbar {
  position: absolute;
  right: 40px;
  bottom: 30px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@-webkit-keyframes scrollbarMotion {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  5% {
    opacity: 1;
    transform: scaleY(0);
    transform-origin: top;
  }
  59% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  60% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    opacity: 1;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes scrollbarMotion {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  5% {
    opacity: 1;
    transform: scaleY(0);
    transform-origin: top;
  }
  59% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  60% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    opacity: 1;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.p-top .kv .kv-scrollbar .kv-scrollbar-text {
  display: block;
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  transform: rotate(90deg);
}
.p-top .kv .kv-scrollbar .kv-scrollbar-line {
  position: relative;
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 30px;
}
.p-top .kv .kv-scrollbar .kv-scrollbar-line:before {
  content: "";
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-animation-name: scrollbarMotion;
  animation-name: scrollbarMotion;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  transform: scaleY(0);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.p-top .kv .bnr50th {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  width: 184px;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
}
.p-top .kv .bnr50th .bnr50th-btn {
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  margin: auto;
  width: 136px;
  height: 32px;
  border-radius: 16px;
  background-color: #FFEB04;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top .kv .bnr50th .bnr50th-btn p {
  font-size: 12px;
}
.p-top .kv .bnr50th .bnr50th-btn p i:before {
  color: #202124;
}
.p-top .kv .bnr50th .bnr50th-close {
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-top .kv .bnr50th .bnr50th-close span {
  position: absolute;
  width: 17px;
  height: 2px;
  background-color: #6B7081;
  transform: rotate(45deg);
  border-radius: 50%;
}
.p-top .kv .bnr50th .bnr50th-close span:last-child {
  transform: rotate(-45deg);
}
.p-top .kv .bnr50th.bnr50th-anime {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.p-top .kv .bnr50th.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-top .topic {
  background-color: #FFEB00;
  color: #202124;
}
.p-top .topic:not(:has(.topic-link)) {
  display: none;
}
.p-top .topic .topic-inner {
  display: flex;
}
@media screen and (min-width: 751px) {
  .p-top .topic .topic-inner {
    padding: 16px 40px;
  }
}
@media screen and (max-width: 750px) {
  .p-top .topic .topic-inner {
    padding-top: 4.6666666667vw;
    padding-bottom: 4.6666666667vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    gap: 2vw;
    flex-direction: column;
  }
}
.p-top .topic .topic-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .p-top .topic .topic-title {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #000;
  }
}
@media screen and (max-width: 750px) {
  .p-top .topic .topic-title {
    font-size: 3.4666666667vw;
  }
}
.p-top .topic .topic-title span {
  width: 23px;
  margin-right: 14px;
}
@media screen and (max-width: 750px) {
  .p-top .topic .topic-title span {
    width: 4.6666666667vw;
    margin-right: 2vw;
  }
}
.p-top .topic .topic-swiper {
  height: 24px;
}
@media screen and (max-width: 750px) {
  .p-top .topic .topic-swiper {
    height: 4.9333333333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-top .topic .topic-swiper {
    position: relative;
    top: 3px;
  }
}
.p-top .topic .topic-swiper .topic-link {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .p-top .topic .topic-swiper .topic-link {
    font-size: 3.4666666667vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
}
.p-top .news {
  background-image: url("/assets/img/top/news-bg.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top left;
}
@media screen and (max-width: 750px) {
  .p-top .news {
    background-image: url("/assets/img/top/news-bg.sp.jpg");
  }
}
@media screen and (max-width: 750px) {
  .p-top .news .bnr50th-sp {
    padding-top: 16vw;
    padding-bottom: 11.3333333333vw;
  }
  .p-top .news .bnr50th-sp a {
    position: relative;
    display: block;
  }
  .p-top .news .bnr50th-sp .bnr50th-btn {
    position: absolute;
    right: 6.6666666667vw;
    top: 5.8666666667vw;
  }
  .p-top .news .bnr50th-sp h3 {
    font-weight: bold;
    color: var(--main-blue);
    font-size: 5.0666666667vw;
    margin-bottom: 3.4666666667vw;
  }
  .p-top .news .bnr50th-sp p {
    font-weight: bold;
  }
}
.p-top .news .news-inner {
  padding-top: 70px;
  padding-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .p-top .news .news-inner {
    padding-top: 8vw;
    padding-bottom: 13.3333333333vw;
  }
}
.p-top .news .news-pinBlock {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 751px) {
  .p-top .news .news-pinBlock {
    background-color: #E8EDFC;
    border-radius: 25px;
  }
}
@media screen and (max-width: 750px) {
  .p-top .news .news-pinBlock {
    flex-direction: column;
  }
}
.p-top .news .news-pinBlock:not(:has(.c-news-list)) {
  display: none;
}
.p-top .news .news-pinBlock .news-pinBlock-left {
  width: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .p-top .news .news-pinBlock .news-pinBlock-left {
    padding-top: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
    background-color: #E8EDFC;
    text-align: center;
    width: 100%;
    border-top-right-radius: 4vw;
    border-top-left-radius: 4vw;
  }
}
.p-top .news .news-pinBlock .news-pinBlock-left .top-sectionTitle-en {
  font-size: 28px;
  color: var(--main-blue);
  font-weight: 800;
}
@media screen and (max-width: 750px) {
  .p-top .news .news-pinBlock .news-pinBlock-left .top-sectionTitle-en {
    font-size: 6.6666666667vw;
  }
}
.p-top .news .news-pinBlock .news-pinBlock-right {
  flex: 1;
  padding: 45px 50px 45px 40px;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-top .news .news-pinBlock .news-pinBlock-right {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
}
@media screen and (max-width: 750px) {
  .p-top .news .news-pinBlock .news-pinBlock-right {
    border-bottom-right-radius: 4vw;
    border-bottom-left-radius: 4vw;
    padding-block: 8vw;
    padding-inline: 6vw;
  }
}
.p-top .news .news-pinBlock a:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 14px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("/assets/img/top/news-pin-icon.svg");
  top: 4px;
}
@media screen and (max-width: 750px) {
  .p-top .news .news-pinBlock a:before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    margin-right: 2.6666666667vw;
    top: 0.8vw;
  }
}
.p-top .news .news-block {
  margin-top: 90px;
  display: flex;
  align-items: flex-start;
  gap: 66px;
}
@media screen and (max-width: 750px) {
  .p-top .news .news-block {
    margin-top: 10.6666666667vw;
    gap: 6.6666666667vw;
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-top .news .news-block-left {
  color: #fff;
}
@media screen and (max-width: 750px) {
  .p-top .news .news-block-left {
    display: contents;
  }
}
.p-top .news .news-block-left .news-block-left-link {
  margin-top: 45px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .p-top .news .news-block-left .news-block-left-link {
    margin-top: 1.3333333333vw;
    margin-left: auto;
    order: 3;
  }
}
.p-top .news .news-block-right {
  width: 840px;
}
@media screen and (max-width: 750px) {
  .p-top .news .news-block-right {
    width: 100%;
    order: 2;
  }
}
.p-top .pickup {
  background-color: var(--bg-gray);
  padding: 120px 0 152px;
  /*---スライドレイアウト---*/
}
@media screen and (max-width: 750px) {
  .p-top .pickup {
    padding-top: 16vw;
    padding-bottom: 14vw;
  }
}
@media screen and (min-width: 751px) {
  .p-top .pickup .pickup-inner {
    max-width: 1220px;
    margin: auto;
    padding-left: 75px;
    padding-right: 75px;
  }
}
.p-top .pickup .top-sectionTitle {
  color: var(--main-blue);
}
@media screen and (max-width: 750px) {
  .p-top .pickup .top-sectionTitle {
    margin-left: 5.3333333333vw;
  }
}
.p-top .pickup .pickup-swiper {
  margin-top: 60px;
}
@media screen and (min-width: 751px) {
  .p-top .pickup .pickup-swiper {
    padding-inline: 1px;
  }
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-swiper {
    margin-top: 9.3333333333vw;
    margin-bottom: 6.6666666667vw;
    padding-left: 5.3333333333vw;
  }
}
.p-top .pickup .pickup-link {
  overflow: hidden;
  display: block;
  position: relative;
  background-color: #fff;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: aliceblue;
  transition: border 0.3s ease;
}
.p-top .pickup .pickup-link img {
  transition: transform 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-top .pickup .pickup-link:hover {
    border: 1px solid var(--main-blue) !important;
  }
  .p-top .pickup .pickup-link:hover img {
    transform: scale(1.05);
  }
}
.p-top .pickup .pickup-link .pickup-link-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 18px;
  bottom: 18px;
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-link .pickup-link-icon {
    right: 3.4666666667vw;
    bottom: 3.4666666667vw;
    width: 8.8vw;
    height: 8.8vw;
  }
}
.p-top .pickup .pickup-link .pickup-link-icon .icon-arrow-right,
.p-top .pickup .pickup-link .pickup-link-icon .icon-window {
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-link .pickup-link-icon .icon-arrow-right,
.p-top .pickup .pickup-link .pickup-link-icon .icon-window {
    font-size: 4vw;
  }
}
.p-top .pickup .pickup-slide {
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-slide {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-top .pickup .pickup-slide .swiper-button-prev:after,
.p-top .pickup .pickup-slide .swiper-button-next:after {
  display: none;
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-slide .pickup-button {
    display: flex;
    margin-left: 5.3333333333vw;
  }
}
.p-top .pickup .pickup-slide .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-image: url("/assets/img/top/pickup-prev.svg");
  background-repeat: no-repeat;
  background-size: cover;
  left: -75px;
  transition: opacity 0.3s ease;
}
.p-top .pickup .pickup-slide .swiper-button-prev:hover {
  opacity: 0.7;
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-slide .swiper-button-prev {
    position: static;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    margin-top: 0;
  }
}
.p-top .pickup .pickup-slide .swiper-button-next {
  width: 40px;
  height: 40px;
  background-image: url("/assets/img/top/pickup-next.svg");
  background-repeat: no-repeat;
  background-size: cover;
  right: -75px;
  transition: opacity 0.3s ease;
}
.p-top .pickup .pickup-slide .swiper-button-next:hover {
  opacity: 0.7;
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-slide .swiper-button-next {
    position: static;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    margin-left: 5.3333333333vw;
    margin-top: 0;
  }
}
.p-top .pickup .pickup-slide .pickup-pagination {
  position: absolute;
  bottom: -50px;
  display: flex;
  align-items: center;
}
.p-top .pickup .pickup-slide .pickup-pagination .swiper-pagination {
  position: static;
  text-align: left;
  width: auto;
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-slide .pickup-pagination {
    position: static;
    margin-left: 5.3333333333vw;
  }
}
.p-top .pickup .pickup-slide .pickup-swiper-play:after {
  content: "\e905";
  display: block;
  font-family: "icomoon";
  color: var(--main-blue);
  margin-left: 15px;
  font-size: 17px;
  cursor: pointer;
  margin-top: 2px;
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-slide .pickup-swiper-play:after {
    position: static;
    font-size: 4vw;
    margin-left: 4vw;
  }
}
.p-top .pickup .pickup-slide .pickup-swiper-play.stop:after {
  content: "\e904";
  font-size: 17px;
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-slide .pickup-swiper-play.stop:after {
    position: static;
    font-size: 4vw;
  }
}
.p-top .pickup .pickup-slide .swiper-pagination-bullet {
  opacity: 1;
  width: 11px;
  height: 11px;
  background-color: rgba(141, 141, 141, 0.4);
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-slide .swiper-pagination-bullet {
    width: 2.4vw;
    height: 2.4vw;
  }
}
.p-top .pickup .pickup-slide .swiper-pagination-bullet:not(:first-child) {
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-slide .swiper-pagination-bullet:not(:first-child) {
    margin-left: 2.6666666667vw;
  }
}
.p-top .pickup .pickup-slide .swiper-pagination-bullet-active {
  width: 11px;
  height: 11px;
  background-color: var(--main-blue);
}
@media screen and (max-width: 750px) {
  .p-top .pickup .pickup-slide .swiper-pagination-bullet-active {
    width: 2.4vw;
    height: 2.4vw;
  }
}
.p-top .work {
  margin: 110px auto;
}
@media screen and (max-width: 750px) {
  .p-top .work {
    margin-top: 13.3333333333vw;
    margin-bottom: 13.3333333333vw;
  }
}
.p-top .work .top-sectionTitle {
  color: #fff;
  padding: 40px 0 0 40px;
}
@media screen and (max-width: 750px) {
  .p-top .work .top-sectionTitle {
    color: var(--main-blue);
    padding: 0;
  }
}
.p-top .work .work-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 750px) {
  .p-top .work .work-wrap {
    gap: 5.3333333333vw;
  }
}
.p-top .work .work-list {
  width: 335px;
  height: 275px;
  display: block;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(32, 30, 126, 0.1);
  transition: box-shadow 0.3s ease;
}
@media screen and (max-width: 750px) {
  .p-top .work .work-list {
    width: 100%;
    height: 58.6666666667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-top .work .work-list:not(.work-titleList):hover {
    box-shadow: 0px 0px 20px 0px rgba(32, 30, 126, 0.2);
  }
}
@media screen and (max-width: 750px) {
  .p-top .work .work-list:nth-child(2) {
    margin-top: 5.3333333333vw;
  }
}
.p-top .work .work-list .work-list-link {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.p-top .work .work-list .work-list-title {
  font-size: 21px;
  padding: 30px 0 15px 35px;
  border-bottom: 2px solid var(--main-blue);
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .p-top .work .work-list .work-list-title {
    padding-top: 6.6666666667vw;
    padding-left: 6vw;
    padding-bottom: 4vw;
    font-size: 4.8vw;
  }
}
.p-top .work .work-list .work-list-text {
  padding: 20px 35px 0 35px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .p-top .work .work-list .work-list-text {
    padding-top: 4vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
.p-top .work .work-list .work-list-text li {
  display: flex;
  align-items: center;
}
.p-top .work .work-list .work-list-text li:before {
  content: "";
  display: block;
  background-color: #BABED1;
  width: 6px;
  height: 2px;
  margin-right: 5px;
}
@media screen and (max-width: 750px) {
  .p-top .work .work-list .work-list-text li:before {
    width: 1.8666666667vw;
    height: 0.2666666667vw;
    margin-right: 1.8666666667vw;
  }
}
.p-top .work .work-list .work-list-icon {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 750px) {
  .p-top .work .work-list .work-list-icon {
    width: 8.8vw;
    height: 8.8vw;
    right: 4.8vw;
    bottom: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-top .work .work-titleList {
    background: linear-gradient(45deg, rgb(43, 30, 198) 0%, rgb(74, 108, 255) 100%);
    box-shadow: 0px 0px 20px 0px rgba(32, 30, 126, 0.3);
  }
}
@media screen and (max-width: 750px) {
  .p-top .work .work-titleList {
    display: contents;
  }
}
@media screen and (max-width: 750px) {
  .p-top .work .work-titleList .work-list-link {
    display: contents;
  }
}
@media screen and (min-width: 751px) {
  .p-top .work .work-titleList .work-textLink-wrap {
    margin: 70px 0 0 40px;
    color: #fff;
    display: inline-block;
    font-weight: bold;
  }
}
@media screen and (max-width: 750px) {
  .p-top .work .work-textLink-wrap {
    font-weight: bold;
    margin-top: 8vw;
    text-align: right;
  }
}
.p-top .otherPages {
  background-color: var(--bg-gray);
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 750px) {
  .p-top .otherPages {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
}
.p-top .otherPages .otherPage-block {
  width: 700px;
  padding: 25px 40px 25px 45px;
  background-color: #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin-inline: auto;
  gap: 65px;
}
@media screen and (max-width: 750px) {
  .p-top .otherPages .otherPage-block {
    width: 100%;
    padding-top: 4.6666666667vw;
    padding-left: 6vw;
    padding-right: 4.6666666667vw;
    padding-bottom: 6vw;
    gap: 3.4666666667vw;
  }
}
.p-top .otherPages .otherPage-block-left {
  width: 500px;
  display: grid;
  grid-template-rows: 35px 65px;
  grid-template-columns: 120px 350px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
}
@media screen and (min-width: 751px) {
  .p-top .otherPages .otherPage-block-left {
    grid-template-rows: 35px 65px;
    grid-template-columns: 120px 350px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 750px) {
  .p-top .otherPages .otherPage-block-left {
    width: 66.1333333333vw;
    -moz-column-gap: 4vw;
    column-gap: 4vw;
    row-gap: 1.8666666667vw;
    grid-template-rows: 11.46vw 11.46vw;
    grid-template-columns: 11.46vw 51.06vw;
  }
}
.p-top .otherPages .otherPage-block-icon {
  width: 120px;
  grid-row: 1/3;
  grid-column: 1/2;
}
@media screen and (max-width: 750px) {
  .p-top .otherPages .otherPage-block-icon {
    width: 11.4666666667vw;
    grid-row: 1/1;
    grid-column: 1/1;
  }
}
.p-top .otherPages .otherPage-block-title {
  font-size: 21px;
  grid-row: 1/2;
  grid-column: 2/3;
  padding-top: 15px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .p-top .otherPages .otherPage-block-title {
    font-size: 4.8vw;
    padding-top: 2.9333333333vw;
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.p-top .otherPages .otherPage-block-text {
  line-height: 1.75;
  grid-row: 2/3;
  grid-column: 2/3;
}
@media screen and (max-width: 750px) {
  .p-top .otherPages .otherPage-block-text {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
.p-top .otherPages .otherPage-block-right {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 750px) {
  .p-top .otherPages .otherPage-block-right {
    width: 8.8vw;
    height: 8.8vw;
  }
}