<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* 共通 */
body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.sp-view {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-view {
    display: block;
  }
}

a {
  -webkit-transition: 0.3;
  transition: 0.3;
}
a:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* mv */
.select {
  background: url(../../custom/image/mv_bg.png) center center/cover no-repeat !important;
  width: 1280px;
  max-width: 100%;
  height: 700px;
  margin: 0 auto;
  position: relative;
}
.select__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 340px;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .select__flex {
    height: 45vw;
    min-height: 260px;
  }
}
.select__flex--item {
  padding-top: 50px;
  position: relative;
  width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .select__flex--item {
    padding-top: 30px;
  }
}
.select__flex--item:first-child {
  background: #005bac;
}
.select__flex--item:nth-child(2) {
  background: #00665a;
}
.select__flex--item .logo {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .select__flex--item .logo {
    width: 90%;
  }
}
.select__flex--item p {
  color: #fff;
  line-height: 1.8;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .select__flex--item p {
    margin-top: 15px;
    font-size: clamp(15px, 2.1vw, 2.1vw);
  }
}
.select__flex--item .arrow {
  width: 100px;
  position: absolute;
  bottom: 20px;
}
.select__flex--item .arrow.left {
  left: 20px;
}
.select__flex--item .arrow.right {
  right: 20px;
}</pre></body></html>