@charset "UTF-8";
/**
 * 共通SCSSの読み込み
 * メインブロックの定義
 * 共通読み込みを変更する可能性あり
 */
/**
 * サイト共通変数設定
 */
/*
 * フォントサイズ
 */
/*
 * get_vwの設定
 */
/*
 * サイト共通部品 @mixin
 * ボタン周り
 */
.c-viewmore-btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #0e182c;
  max-width: 320px;
  width: 60%;
  text-align: center;
  position: relative;
  z-index: 30;
}
@media (max-width: 768px) {
  .c-viewmore-btn {
    max-width: 100%;
    margin: 45px auto 0;
    width: 100%;
  }
}
.c-viewmore-btn.is-center {
  margin-left: auto;
  margin-right: auto;
}
.c-viewmore-btn a {
  display: block;
  padding: 1.8rem 0;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-weight: bold;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.04em;
  color: #0e182c;
  position: relative;
}
@media (max-width: 768px) {
  .c-viewmore-btn a {
    font-size: 13px;
  }
}
.c-viewmore-btn a::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0e182c;
  border-right: 1px solid #0e182c;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.c-viewmore-btn a:hover::after {
  border-color: #fff;
}
.c-viewmore-btn a span {
  font-size: inherit;
  font-weight: inherit;
}
.c-viewmore-btn a span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #003288;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-viewmore-btn a:hover span {
  color: #fff;
}
.c-viewmore-btn a:hover span:before {
  width: 100%;
}

.c-viewmore-btn_black {
  background: #0e182c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #0e182c;
  max-width: 420px;
  height: clamp(10px, 3.7760416667vw, 58px);
  text-align: center;
  position: relative;
  z-index: 30;
}
@media (max-width: 768px) {
  .c-viewmore-btn_black {
    height: 58px;
  }
}
.c-viewmore-btn_black.is-center {
  margin-left: auto;
  margin-right: auto;
}
.c-viewmore-btn_black.is-narrow {
  max-width: 335px;
}
.c-viewmore-btn_black a {
  height: 100%;
  display: block;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-weight: bold;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.04em;
  color: #fff !important;
  position: relative;
}
@media (max-width: 768px) {
  .c-viewmore-btn_black a {
    font-size: 13px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-viewmore-btn_black a::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.c-viewmore-btn_black a:hover::after {
  border-color: #0e182c;
}
.c-viewmore-btn_black a span {
  font-size: inherit;
  font-weight: inherit;
  line-height: clamp(10px, 3.7760416667vw, 58px);
}
.c-viewmore-btn_black a span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  display: block;
  background: #fff;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-viewmore-btn_black a:hover span {
  color: #0e182c;
}
.c-viewmore-btn_black a:hover span:before {
  width: 100%;
}
@media (max-width: 768px) {
  .c-viewmore-btn_black {
    min-width: 100%;
    width: 100%;
  }
}

/**
 * アニメーションに関するCSS
 * 共通で使用することを想定して各ページの設定をまとめて記述
 **/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes scrollLine {
  0% {
    height: 0;
    top: -3px;
    opacity: 1;
  }
  30% {
    height: 56px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 106px;
    opacity: 1;
  }
}
@keyframes scrollLine {
  0% {
    height: 0;
    top: -3px;
    opacity: 1;
  }
  30% {
    height: 56px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 106px;
    opacity: 1;
  }
}
@-webkit-keyframes scrollLineSp {
  0% {
    height: 0;
    top: -3px;
    opacity: 0.1;
  }
  30% {
    height: 62px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 124px;
    opacity: 0;
  }
}
@keyframes scrollLineSp {
  0% {
    height: 0;
    top: -3px;
    opacity: 0.1;
  }
  30% {
    height: 62px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 124px;
    opacity: 0;
  }
}
@-webkit-keyframes scrollImg {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scrollImg {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 10px;
  background: transparent;
  font-weight: normal;
}

body {
  line-height: 1.6;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul, ul, ol, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #333333;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; /* form clear */
  -webkit-appearance: none !important;
}

/**
 * サイト共通設定
 */
html, body {
  color: #0e182c;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 400;
  width: 100%;
}

p {
  font-weight: 300;
}

/*
 * 共通CSS - ヘッダー
 */
.l-header {
  left: 0;
  margin: auto;
  padding-top: 3.7rem;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100;
}
.l-header.area-in {
  background-color: #fff;
  padding: 14px 0;
}
@media (max-width: 1000px) {
  .l-header {
    padding-bottom: 18px;
    padding-top: 0;
  }
  .l-header.is-active {
    height: 100%;
    left: auto;
    right: 0;
    width: 100%;
  }
  .l-header::after {
    background: #fff;
    content: "";
    height: 52px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    width: 52px;
    z-index: 10;
  }
  .l-header.is-active::after {
    height: 100%;
    width: 76%;
  }
  .l-header.area-in {
    height: 55px;
    padding-top: 0;
  }
}

.l-header__inner {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  max-width: 1536px;
  width: 100%;
}
@media (max-width: 1000px) {
  .l-header__inner {
    display: block;
    height: auto;
    width: 100%;
  }
}
.l-header__inner .l-header__logo {
  left: clamp(20px, 1.953125vw, 30px);
  margin-top: 1.2rem;
  min-width: clamp(180px, 14.3229166667vw, 220px);
  position: relative;
}
.l-header__inner .l-header__logo a {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.l-header__inner .l-header__logo a:hover {
  opacity: 0.5;
}
@media (max-width: 1000px) {
  .l-header__inner .l-header__logo {
    display: block;
    left: 0;
    margin: 2rem 0 0 3%;
    min-width: auto;
    width: 182px;
  }
}

.l-header__nav {
  margin-left: auto;
}
@media (max-width: 1000px) {
  .l-header__nav {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 1000px) {
  .is-active .l-header__nav {
    -webkit-animation: 2s fadeIn forwards;
            animation: 2s fadeIn forwards;
    display: block;
    margin-top: 30px;
    padding: 0 30px;
    position: relative;
    visibility: visible;
    width: 76%;
    z-index: 20;
  }
}

.l-header__nav-btn {
  display: none;
}
@media (max-width: 1000px) {
  .l-header__nav-btn {
    background: #fff url(../images/common/menu-btn-bg.png) no-repeat center 16px;
    background-size: 31px auto;
    display: block;
    font-size: clamp(10px, 0.6510416667vw, 10px);
    font-weight: 700;
    height: 52px;
    padding-top: 26px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 52px;
    z-index: 20;
  }
  .l-header__nav-btn::after {
    content: "MENU";
    font-family: montserrat, sans-serif;
    font-weight: 700;
  }
  .l-header__nav-btn.is-active::after {
    content: "CLOSE";
  }
}

.l-sp-bg.is-active {
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.l-header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.l-header__nav-list .l-header__nav-item {
  margin-right: clamp(20px, 2.6041666667vw, 40px);
  position: relative;
}
.l-header__nav-list .l-header__nav-item:last-child {
  margin-right: 0;
}
.l-header__nav-list .l-header__nav-item.area-in {
  color: #009398;
}
.l-header__nav-list a {
  display: block;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
}
.l-header__nav-list a[target^=_blank]::after {
  background: url(../images/common/icon_blank.svg) no-repeat 0 0;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 15px;
  margin-left: 0.5em;
  vertical-align: -2px;
  width: 15px;
}
@media (max-width: 1000px) {
  .l-header__nav-list a[target^=_blank]::after {
    position: absolute;
    right: 8px;
  }
}
.l-header__nav-list a.arrow-icon {
  padding-right: 17px;
}
.l-header__nav-list a.arrow-icon::after {
  border-right: 2px solid #0e182c;
  border-top: 2px solid #0e182c;
  bottom: 7px;
  content: "";
  height: 6px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  width: 6px;
}
@media (max-width: 1000px) {
  .l-header__nav-list a.arrow-icon::after {
    right: 5px;
  }
}
@media (max-width: 1000px) {
  .l-header__nav-list {
    display: block;
  }
  .l-header__nav-list .l-header__nav-item {
    border-bottom: 1px solid #dbdbdb;
    position: relative;
    width: 100%;
  }
  .l-header__nav-list .l-header__nav-item.area-in {
    color: #0e182c;
  }
  .l-header__nav-list .l-header__nav-item a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    line-height: normal;
    padding: 20px 0 4px;
    position: relative;
    width: 100%;
  }
  .l-header__nav-list .l-header__nav-item a[target^=_blank]::after {
    bottom: 8px;
    position: absolute;
    right: 80x;
  }
  .l-header__nav-list .l-header__nav-item a.arrow-icon::after {
    border-color: #003288;
    bottom: 8px;
    top: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 8px;
  }
  .l-header__nav-list .l-header__nav-item.is-active a.arrow-icon::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
}
.l-header__nav-list .l-sub-menu {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.7);
  --webkit-backdrop-filter: blur(8px);
  position: absolute;
  top: 50px;
  left: -20px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  visibility: hidden;
  width: 190px;
}
@media (max-width: 1000px) {
  .l-header__nav-list .l-sub-menu {
    display: none;
    -webkit-transition: none;
    transition: none;
    margin-bottom: 30px;
    opacity: 1;
    position: static;
    visibility: visible;
  }
}
.l-header__nav-list .l-header__nav-item:hover .l-sub-menu {
  opacity: 1;
  visibility: visible;
}
.l-header__nav-list .l-sub-menu__item {
  color: #003288;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  font-weight: 500;
  letter-spacing: 0.08em;
  width: 100%;
}
.l-header__nav-list .l-sub-menu__item a {
  display: block;
  font-weight: 500;
  height: 34px;
  line-height: 34px;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 1000px) {
  .l-header__nav-list .l-sub-menu__item a {
    color: #0e182c;
    line-height: 30px;
    height: 30px;
    padding: 0 12px;
  }
}
.l-header__nav-list .l-sub-menu__item:hover {
  background: #003288;
  color: #fff;
}
@media (max-width: 1000px) {
  .l-header__nav-list .l-sub-menu__item:hover {
    background: #fff;
    color: #0e182c;
  }
}

.l-header .cv-box {
  margin: 0 clamp(20px, 5.2083333333vw, 80px) 0 clamp(10px, 3.2552083333vw, 50px);
  position: relative;
}
@media (max-width: 1000px) {
  .l-header .cv-box {
    display: none;
    margin: 0;
    opacity: 0;
  }
}

@media (max-width: 1000px) {
  .l-header.is-active .cv-box {
    -webkit-animation: 2s fadeIn forwards;
            animation: 2s fadeIn forwards;
    display: block;
    margin-top: 30px;
    padding: 0 30px;
    position: absolute;
    right: 0;
    width: 76%;
    z-index: 20;
  }
}

.l-header .entry-btn {
  background-color: #003288;
  cursor: pointer;
  text-align: center;
  height: 50px;
  line-height: 50px;
  width: clamp(180px, 14.3229166667vw, 220px);
}
.l-header .entry-btn p, .l-header .entry-btn a {
  color: #fff;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  font-weight: 700;
  height: 100%;
  left: -1rem;
  letter-spacing: 0.06em;
  position: relative;
  width: 100%;
}
@media (max-width: 1000px) {
  .l-header .entry-btn {
    width: 100%;
  }
  .l-header .entry-btn p, .l-header .entry-btn a {
    font-size: 14px;
    font-weight: 600;
    left: 0;
  }
}

.l-header .btn-blue {
  position: relative;
}
@media (max-width: 1000px) {
  .l-header .btn-blue {
    display: none;
  }
}
.l-header .btn-blue::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  height: 6px;
  position: absolute;
  right: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  width: 6px;
}

.l-header .btn-orange,
.l-header .btn-green {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  visibility: hidden;
}
.l-header .btn-orange::before,
.l-header .btn-green::before {
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 99;
}
.l-header .btn-orange:hover::before,
.l-header .btn-green:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.l-header .btn-orange::after,
.l-header .btn-green::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  height: 6px;
  position: absolute;
  right: 29px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 6px;
  z-index: 101;
}
@media (max-width: 1000px) {
  .l-header .btn-orange,
  .l-header .btn-green {
    opacity: 1;
    position: relative;
    visibility: visible;
  }
  .l-header .btn-orange::after,
  .l-header .btn-green::after {
    border: none;
  }
}

.l-header .btn-orange {
  background-color: #f07700;
}
@media (max-width: 1000px) {
  .l-header .btn-orange {
    display: block;
    margin-bottom: 10px;
    opacity: 1;
  }
}
.l-header .btn-orange:hover a {
  color: #f07700;
  z-index: 100;
}
.l-header .btn-orange:hover::after {
  border-color: #f07700;
}

.l-header .btn-green {
  background-color: #009398;
  top: 100px;
}
@media (max-width: 1000px) {
  .l-header .btn-green {
    display: block;
    opacity: 1;
    top: 0;
    visibility: visible;
  }
}
.l-header .btn-green:hover a {
  color: #009398;
  z-index: 100;
}
.l-header .btn-green:hover::after {
  border-color: #009398;
}

.l-header .cv-box:hover .btn-orange,
.l-header .cv-box:hover .btn-green {
  opacity: 1;
  visibility: visible;
}

/*
 * 共通CSS - フッター
 */
/* 募集要項・エントリー */
.c-scroll-txt {
  position: absolute;
  z-index: 0;
  top: -12px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .c-scroll-txt {
    top: -25px;
  }
}
@media (max-width: 768px) {
  .c-scroll-txt .c-scroll-txt-inner img {
    height: 70px;
    width: auto;
  }
}

.c-entry-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 clamp(40px, 3.125vw, 48px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(60px, 5.2083333333vw, 80px);
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .c-entry-box {
    display: block;
  }
}
.c-entry-box .c-entry-box-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: clamp(355px, 27.7994791667vw, 427px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  width: clamp(355px, 27.7994791667vw, 427px);
  z-index: 10;
}
@media (max-width: 768px) {
  .c-entry-box .c-entry-box-item {
    width: 100%;
    height: 150px;
  }
}
.c-entry-box .c-entry-box-item .c-entry-box__txt {
  font-weight: 700;
  font-size: clamp(10px, 2.6041666667vw, 40px);
  letter-spacing: 0.06em;
  line-height: 1.25;
}
.c-entry-box .c-entry-box-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.c-entry-box .c-entry-box-item.is-orange {
  background-image: url(../images/common/footer/entry_img_01.jpg);
}
.c-entry-box .c-entry-box-item.is-orange::after {
  content: "";
  background: #f07700;
}
.c-entry-box .c-entry-box-item.is-orange:hover::after {
  opacity: 0.7;
}
.c-entry-box .c-entry-box-item.is-green {
  background-image: url(../images/common/footer/entry_img_02.jpg);
  text-align: center;
}
.c-entry-box .c-entry-box-item.is-green::after {
  content: "";
  background: #009398;
}
.c-entry-box .c-entry-box-item.is-green:hover::after {
  opacity: 0.7;
}
.c-entry-box .c-entry-box-item:hover {
  cursor: pointer;
}
.c-entry-box .c-entry-box-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 100;
  width: clamp(355px, 27.7994791667vw, 427px);
  height: clamp(355px, 27.7994791667vw, 427px);
}
@media (max-width: 768px) {
  .c-entry-box .c-entry-box-item {
    background-size: cover;
  }
  .c-entry-box .c-entry-box-item .c-entry-box__txt {
    font-size: 18px;
  }
  .c-entry-box .c-entry-box-item.is-orange {
    background: url(../images/common/footer/entry_img_01_sp.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .c-entry-box .c-entry-box-item.is-orange::after {
    background: none;
  }
  .c-entry-box .c-entry-box-item.is-green {
    background: url(../images/common/footer/entry_img_02_sp.jpg) no-repeat 0 0;
    background-size: cover;
  }
  .c-entry-box .c-entry-box-item.is-green::after {
    background: none;
  }
  .c-entry-box .c-entry-box-item a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.c-entry__hl {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .c-entry__hl {
    margin-bottom: 45px;
    text-align: left;
  }
}
.c-entry__hl .c-entry__hl-en {
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(10px, 5.2083333333vw, 80px);
  line-height: 1;
  color: #003288;
}
@media (max-width: 768px) {
  .c-entry__hl .c-entry__hl-en {
    font-size: 52px;
    line-height: 0.8269230769;
  }
}
.c-entry__hl .c-entry__hl-jp {
  font-size: clamp(10px, 1.3020833333vw, 20px);
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .c-entry__hl .c-entry__hl-jp {
    font-size: 14px;
  }
}

.l-footer .c-wide-sec.is-gray {
  background: #e1e8f5;
  margin-top: clamp(50px, 9.765625vw, 150px);
  padding: 0;
}
@media (max-width: 768px) {
  .l-footer .c-wide-sec.is-gray {
    margin-top: 100px;
  }
}
.l-footer .c-wide-sec__inner {
  padding: 0 clamp(40px, 5.2083333333vw, 80px) clamp(20px, 2.6041666667vw, 40px) clamp(40px, 5.2083333333vw, 80px);
}
@media (max-width: 768px) {
  .l-footer .c-wide-sec__inner {
    padding: 0;
  }
}

.l-footer-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: clamp(30px, 5.2083333333vw, 80px);
}
@media (max-width: 768px) {
  .l-footer-link {
    display: block;
    padding-top: 30px;
  }
}
.l-footer-link a {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.l-footer-link a:hover {
  opacity: 0.5;
}
.l-footer-link .l-footer-link__left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-footer-link .l-footer-link__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .l-footer-link .l-footer-link__right {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.l-footer-link .l-footer-link__logo {
  height: auto;
  width: 270px;
}
@media (max-width: 768px) {
  .l-footer-link .l-footer-link__logo {
    width: 220px;
  }
}
.l-footer-link .l-footer-link__name {
  font-weight: 500;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  margin-top: clamp(30px, 2.6041666667vw, 40px);
}
@media (max-width: 768px) {
  .l-footer-link .l-footer-link__name {
    font-size: 14px;
    margin-top: 20px;
  }
}
.l-footer-link .l-footer-link__address {
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 1.4285714286;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .l-footer-link .l-footer-link__address {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 10px;
  }
}
.l-footer-link .c-footer-sns__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  margin-top: 16px;
  width: 184px;
}
@media (max-width: 768px) {
  .l-footer-link .c-footer-sns__list {
    gap: 0;
    margin-top: 20px;
  }
  .l-footer-link .c-footer-sns__list .c-footer-sns__list__item {
    margin-right: 8px;
  }
}

.l-footer-link__dl {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .l-footer-link__dl {
    margin-top: 28px;
    width: 50%;
  }
}
.l-footer-link__dl dt {
  color: #003288;
  font-size: clamp(10px, 1.171875vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .l-footer-link__dl dt {
    font-size: 14px;
  }
}
.l-footer-link__dl dd {
  font-size: clamp(10px, 0.9114583333vw, 14px);
  margin-top: clamp(8px, 0.8463541667vw, 13px);
  padding-left: 10px;
  position: relative;
}
@media (max-width: 768px) {
  .l-footer-link__dl dd {
    font-size: 12px;
  }
}
.l-footer-link__dl dd:before {
  border-right: 1px solid #0e182c;
  border-top: 1px solid #0e182c;
  bottom: 7px;
  content: "";
  height: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 4px;
}

@media (max-width: 768px) {
  .l-footer-link__ul {
    margin-top: 55px;
    width: 100%;
  }
}
.l-footer-link__ul .l-footer-link__ul__item {
  color: #003288;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(10px, 1.171875vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .l-footer-link__ul .l-footer-link__ul__item {
    font-size: 14px;
  }
}
.l-footer-link__ul .l-footer-link__ul__item a {
  text-decoration: underline !important;
}
.l-footer-link__ul .l-footer-link__ul__item a:hover {
  text-decoration: none !important;
}
.l-footer-link__ul .l-footer-link__ul__item a[target^=_blank]::after {
  background: url(../images/common/footer/icon_blank.svg) no-repeat 0 0;
  background-size: contain;
  content: "";
  display: inline-block;
  height: clamp(10px, 1.0416666667vw, 16px);
  margin-left: 5px;
  vertical-align: -2px;
  width: clamp(10px, 1.0416666667vw, 16px);
}
@media (max-width: 768px) {
  .l-footer-link__ul .l-footer-link__ul__item a[target^=_blank]::after {
    height: 15px;
    width: 15px;
  }
}

.l-footer__copy {
  background: #003288;
}
@media (max-width: 768px) {
  .l-footer__copy {
    margin-top: 23px;
    text-align: center;
  }
}
.l-footer__copy .l-footer__copy__inner {
  color: #fff;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-size: 10px;
  margin: auto;
  max-width: 1536px;
  padding: 10px clamp(30px, 5.2083333333vw, 80px);
  width: 100%;
}
@media (max-width: 768px) {
  .l-footer__copy .l-footer__copy__inner {
    font-size: 10px;
    padding: 13px 0;
  }
}

.l-go-top {
  bottom: 20px;
  position: fixed;
  right: 20px;
  z-index: 300;
}
.l-go-top img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 58px;
  width: 58px;
}
.l-go-top img:hover {
  opacity: 0.5;
}
@media (max-width: 768px) {
  .l-go-top img {
    height: 43px;
    width: 43px;
  }
}

/*
 * 共通CSS
 */
.c-wide-sec {
  padding-top: clamp(95px, 12.3697916667vw, 190px);
  position: relative;
}
.c-wide-sec .c-wide-sec__inner {
  margin: auto;
  max-width: 1536px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .c-wide-sec .c-wide-sec__inner {
    max-width: 100%;
    width: 94%;
  }
}
.c-wide-sec .c-wide-sec__bottom-img {
  margin-top: clamp(45px, 9.1145833333vw, 140px);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.c-wide-sec-wrapper.is-gray {
  background: #f5f8fc;
  margin-top: clamp(100px, 13.0208333333vw, 200px);
}
.c-wide-sec-wrapper.is-gray .c-wide-sec {
  padding: clamp(30px, 6.5104166667vw, 100px) 0 clamp(30px, 6.5104166667vw, 100px);
}
@media (max-width: 768px) {
  .c-wide-sec-wrapper.is-gray .c-wide-sec {
    padding-top: 28px;
  }
}

.c-link-line {
  height: 1px;
  position: absolute;
  top: 1px;
}

.is-pc {
  display: block !important;
}
@media (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media (max-width: 768px) {
  .is-sp {
    display: block !important;
  }
}

.is-scroll {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.is-scroll img {
  -webkit-animation: scrollImg 40s linear infinite;
          animation: scrollImg 40s linear infinite;
}

.c-sq-outer {
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.c-sq {
  position: absolute;
  z-index: 3;
}
.c-sq.mv {
  -webkit-transform: scale(0) translateY(-20%);
          transform: scale(0) translateY(-20%);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.c-sq.mv-fast {
  -webkit-transform: scale(0) translateY(-20%);
          transform: scale(0) translateY(-20%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.kv-view .c-sq.mv {
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.area-in .c-sq {
  -webkit-transform: scale(1) translateY(-20%);
          transform: scale(1) translateY(-20%);
}

/*
 * フッター装飾
 * sq100〜
 */
.sq100 {
  background-color: #009398;
  height: clamp(32px, 4.1015625vw, 63px);
  left: -20px;
  top: -100px;
  width: clamp(32px, 4.1015625vw, 63px);
}
@media (max-width: 1000px) {
  .sq100 {
    display: none;
  }
}

.sq101 {
  background-color: #003288;
  height: clamp(17px, 2.1484375vw, 33px);
  left: 150px;
  top: -10px;
  width: clamp(17px, 2.1484375vw, 33px);
}
@media (max-width: 1000px) {
  .sq101 {
    display: none;
  }
}

.sq102 {
  background-color: #003288;
  height: clamp(91px, 11.8489583333vw, 182px);
  right: -100px;
  top: -120px;
  width: clamp(91px, 11.8489583333vw, 182px);
}
@media (max-width: 1000px) {
  .sq102 {
    height: 63px;
    right: -15px;
    top: -30px;
    width: 63px;
  }
}

.sq103 {
  background-color: #f07700;
  height: clamp(23px, 2.9296875vw, 45px);
  right: 142px;
  top: 110px;
  width: clamp(23px, 2.9296875vw, 45px);
}
@media (max-width: 1000px) {
  .sq103 {
    display: none;
  }
}

.sq104 {
  background-color: #009398;
  height: clamp(49px, 6.3151041667vw, 97px);
  right: 20px;
  top: 260px;
  width: clamp(49px, 6.3151041667vw, 97px);
}
@media (max-width: 1000px) {
  .sq104 {
    display: none;
  }
}

.sq105 {
  background-color: #f4f4f4;
  height: clamp(20px, 2.6041666667vw, 40px);
  right: 100px;
  top: 323px;
  width: clamp(20px, 2.6041666667vw, 40px);
}
@media (max-width: 1000px) {
  .sq105 {
    display: none;
  }
}

.sq106 {
  background-color: #f4f4f4;
  height: clamp(103px, 13.3463541667vw, 205px);
  left: -90px;
  top: 166px;
  width: clamp(103px, 13.3463541667vw, 205px);
}
@media (max-width: 1000px) {
  .sq106 {
    display: none;
  }
}

.sq107 {
  background-color: #003288;
  height: clamp(66px, 8.59375vw, 132px);
  left: 180px;
  bottom: -90px;
  width: clamp(66px, 8.59375vw, 132px);
}
@media (max-width: 1000px) {
  .sq107 {
    display: none;
  }
}

.sq108 {
  background-color: #f07700;
  height: clamp(30px, 3.8411458333vw, 59px);
  left: 60px;
  bottom: -108px;
  width: clamp(30px, 3.8411458333vw, 59px);
}
@media (max-width: 1000px) {
  .sq108 {
    height: 74px;
    left: -62px;
    top: 96%;
    width: 74px;
  }
}

.l-main {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  overflow: hidden;
  position: relative;
}
.l-main img {
  width: 100%;
}
.l-main a {
  color: inherit;
  text-decoration: none;
}

/**
 * ページ別CSS
 * トップページ - index.html
 */
.p-index-col2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-index-col2 {
    display: block;
  }
}
@media (max-width: 768px) {
  .p-index-col2 .p-index__hl-sub {
    font-size: 22px;
    margin: 30px 0 20px 0;
    max-width: 100%;
    line-height: 1.4545454545;
  }
}
.p-index-col2 .p-index-col2__left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}
@media (max-width: 768px) {
  .p-index-col2 .p-index-col2__left {
    width: 100%;
  }
}
.p-index-col2 .p-index-col2__left .p-index__hl {
  text-align: left;
  margin-left: clamp(115px, 14.9739583333vw, 230px);
}
@media (max-width: 1200px) {
  .p-index-col2 .p-index-col2__left .p-index__hl {
    margin-left: 15%;
  }
}
@media (max-width: 768px) {
  .p-index-col2 .p-index-col2__left .p-index__hl {
    margin-left: 0;
  }
}
.p-index-col2 .p-index-col2__left .p-index__hl-sub {
  margin-left: clamp(115px, 14.9739583333vw, 230px);
  max-width: 440px;
  width: 80%;
}
@media (max-width: 1200px) {
  .p-index-col2 .p-index-col2__left .p-index__hl-sub {
    margin-left: 15%;
  }
}
@media (max-width: 768px) {
  .p-index-col2 .p-index-col2__left .p-index__hl-sub {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }
}
.p-index-col2 .p-index-col2__left .p-index__txt {
  letter-spacing: 0.02em;
  margin: 0 0 clamp(30px, 3.2552083333vw, 50px) clamp(115px, 14.9739583333vw, 230px);
  max-width: 440px;
  width: 62%;
}
@media (max-width: 1200px) {
  .p-index-col2 .p-index-col2__left .p-index__txt {
    margin-left: 15%;
  }
}
@media (max-width: 768px) {
  .p-index-col2 .p-index-col2__left .p-index__txt {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }
}
.p-index-col2 .p-index-col2__left .c-viewmore-btn {
  margin: 50px 0 0 clamp(115px, 14.9739583333vw, 230px);
}
@media (max-width: 1200px) {
  .p-index-col2 .p-index-col2__left .c-viewmore-btn {
    margin-left: 15%;
  }
}
@media (max-width: 768px) {
  .p-index-col2 .p-index-col2__left .c-viewmore-btn {
    margin: 0 auto;
  }
}
.p-index-col2 .p-index-col2__right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-index-col2 .p-index-col2__right .p-index__hl {
  margin-left: clamp(40px, 5.2083333333vw, 80px);
  text-align: left;
}
@media (max-width: 768px) {
  .p-index-col2 .p-index-col2__right .p-index__hl {
    margin-left: 0;
  }
}
.p-index-col2 .p-index-col2__right .p-index__hl-sub {
  margin-left: clamp(40px, 5.2083333333vw, 80px);
  max-width: 440px;
}
@media (max-width: 1200px) {
  .p-index-col2 .p-index-col2__right .p-index__hl-sub {
    margin-right: 15%;
  }
}
@media (max-width: 768px) {
  .p-index-col2 .p-index-col2__right .p-index__hl-sub {
    font-size: 22px;
    margin: 30px 0 20px 0;
    max-width: 100%;
    line-height: 1.4545454545;
  }
}
.p-index-col2 .p-index-col2__right .p-index__txt {
  letter-spacing: 0.02em;
  margin-left: clamp(40px, 5.2083333333vw, 80px);
  max-width: 440px;
}
@media (max-width: 1200px) {
  .p-index-col2 .p-index-col2__right .p-index__txt {
    margin-right: 15%;
  }
}
@media (max-width: 768px) {
  .p-index-col2 .p-index-col2__right .p-index__txt {
    max-width: 100%;
    margin: 0 0 0 0;
  }
}
.p-index-col2 .p-index-col2__right .c-viewmore-btn {
  margin: 50px 0 0 clamp(40px, 5.2083333333vw, 80px);
}
@media (max-width: 768px) {
  .p-index-col2 .p-index-col2__right .c-viewmore-btn {
    margin: 45px auto 30px;
  }
}

.p-index__hl {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-index__hl {
    margin-bottom: 45px;
    text-align: left;
  }
}
.p-index__hl .p-index__hl-en {
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-weight: 700;
  font-size: clamp(10px, 5.2083333333vw, 80px);
  line-height: 1;
  color: #003288;
}
@media (max-width: 768px) {
  .p-index__hl .p-index__hl-en {
    font-size: 52px;
    line-height: 0.8269230769;
  }
}
.p-index__hl .p-index__hl-jp {
  font-size: clamp(10px, 1.3020833333vw, 20px);
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .p-index__hl .p-index__hl-jp {
    font-size: 14px;
  }
}

.p-index__hl-sub {
  font-size: clamp(10px, 1.7578125vw, 27px);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4545454545;
}
@media (max-width: 768px) {
  .p-index__hl-sub {
    margin-bottom: 20px;
  }
}

.p-index__txt {
  font-size: 14px;
  line-height: 1.6428571429;
}

.p-index-scroll {
  border: 1px solid #fff;
  bottom: -53px;
  height: 106px;
  left: 50%;
  position: absolute;
  z-index: 50;
}
.p-index-scroll a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  left: -3.7rem;
  letter-spacing: 0.08em;
  position: absolute;
  text-shadow: 0 0 6px rgba(11, 18, 33, 0.6);
  top: -4rem;
}
.p-index-scroll::after {
  -webkit-animation: scrollLine 1.4s ease-in-out infinite;
          animation: scrollLine 1.4s ease-in-out infinite;
  background: #0e182c;
  content: "";
  margin-left: -1px;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 2px;
}
@media (max-width: 1000px) {
  .p-index-scroll {
    left: auto;
    right: 24px;
    bottom: -35px;
    height: 124px;
    border: 1px solid #fff;
  }
  .p-index-scroll a {
    position: absolute;
    top: 0;
    right: -2rem;
    font-size: 1rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .p-index-scroll:after {
    -webkit-animation: scrollLineSp 1.4s ease-in-out infinite;
            animation: scrollLineSp 1.4s ease-in-out infinite;
  }
}

.p-index-sns {
  background-color: transparent;
  bottom: 0;
  color: #fff;
  display: none;
  height: auto;
  left: 3%;
  padding: 2rem 0;
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-index-sns .p-index-title {
  letter-spacing: 0.06em;
  font-size: 12px;
  font-weight: 500;
}
.p-index-sns .p-index-sns__btn {
  display: inline-block;
  -webkit-filter: drop-shadow(0px 0px 4px #0b1221);
          filter: drop-shadow(0px 0px 4px #0b1221);
}
.p-index-sns .p-index-sns__btn.twitter {
  margin: 18px 0 0 17px;
}
.p-index-sns .p-index-sns__btn.insta {
  margin: 18px 0 0 15px;
}
.p-index-sns path {
  fill: #fff !important;
}
@media (max-width: 1000px) {
  .p-index-sns {
    display: block;
  }
}

/* キービジュアル */
.p-index-kv {
  position: relative;
}
.p-index-kv .p-index-kv__inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/index/kv_bg.jpg) no-repeat center bottom;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 1200px;
  position: relative;
  width: 100%;
  z-index: 0;
}
@media (max-width: 1000px) {
  .p-index-kv .p-index-kv__inner {
    background: url(../images/index/kvp_sp.jpg) no-repeat center center;
    background-size: cover;
    height: calc(100vh - 100px);
  }
}
.p-index-kv .p-index-kv__msg {
  max-width: 620px;
  position: relative;
  z-index: 30;
}
@media (max-width: 768px) {
  .p-index-kv .p-index-kv__msg {
    max-width: 80%;
    min-width: 282px;
  }
}
.p-index-kv .p-index-kv__msg img {
  vertical-align: top;
  z-index: 30;
}

/* 「未来を切り開く」エリア */
.p-index-hello .p-index-hello__inner {
  position: relative;
  text-align: center;
  z-index: 5;
}
.p-index-hello .p-index-hello__inner .p-index-hello__copy {
  max-width: clamp(325px, 38.28125vw, 588px);
  margin: 0 auto clamp(40px, 4.5572916667vw, 70px);
}
.p-index-hello .p-index-hello__inner p {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: clamp(20px, 1.953125vw, 30px);
  line-height: 1.82;
}
.p-index-hello .p-index-hello__inner p.is-bold {
  font-size: 22px;
  font-weight: 700;
  color: #003288;
}
@media (max-width: 768px) {
  .p-index-hello .p-index-hello__inner p {
    font-size: clamp(10px, 3.7333333333vw, 21px);
    font-weight: 400;
    line-height: 1.6428571429;
  }
  .p-index-hello .p-index-hello__inner p.is-bold {
    font-size: clamp(10px, 4.2666666667vw, 24px);
  }
}

/* ABOUT US ファンコミについて */
.p-index-about .p-index-col2 {
  margin-bottom: clamp(40px, 5.2083333333vw, 80px);
}
.p-index-about .p-index-col2 .p-index-col2__left {
  z-index: 10;
}
.p-index-about .c-wide-sec__bottom-img {
  margin-top: clamp(40px, 5.2083333333vw, 80px);
  position: relative;
  z-index: 50;
}
@media (max-width: 768px) {
  .p-index-about .c-wide-sec__bottom-img {
    margin: 35px 0 27px -10%;
    width: 180%;
  }
}
.p-index-about .c-wide-sec__bottom-img img {
  height: auto;
  width: 150%;
}
@media (max-width: 768px) {
  .p-index-about .c-wide-sec__bottom-img img {
    height: 224px;
    width: auto;
  }
}

/* INTERVIEWS インタビュー */
.p-index-interview .p-index-col2__left .interviews-box-img-item {
  padding-left: clamp(40px, 5.2083333333vw, 80px);
}
.p-index-interview .p-index-col2__right {
  margin: clamp(25px, 4.2317708333vw, 65px) 0 0 0;
}
@media (max-width: 768px) {
  .p-index-interview .p-index-col2__right {
    margin-top: 0;
  }
}

/* FAN TALK 社員対談 */
@media (max-width: 768px) {
  .c-wide-sec-wrapper.is-gray .p-index-talk {
    padding-top: 35px;
  }
}

/* BENEFITS 福利厚生・支援制度 */
.p-index-benefits .c-wide-sec__bottom-img {
  margin-top: clamp(50px, 6.5104166667vw, 100px);
}

/* OUR BISINESS 事業紹介 */
.p-index-business .p-index__hl {
  margin-bottom: 38px;
}
.p-index-business .p-index__hl-sub {
  text-align: center;
  margin-bottom: clamp(50px, 5.2083333333vw, 80px);
}
@media (max-width: 768px) {
  .p-index-business .p-index__hl-sub {
    font-size: 22px;
    text-align: left;
  }
}
.p-index-business .c-viewmore-btn {
  margin: 33px auto;
}
@media (max-width: 768px) {
  .p-index-business .c-viewmore-btn {
    margin-top: 5px;
  }
}

.p-index-service {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 clamp(13px, 1.7578125vw, 27px);
  max-width: 1376px;
  margin: 0 auto;
  width: 94%;
}
@media (max-width: 768px) {
  .p-index-service {
    display: block;
    width: 100%;
  }
}
.p-index-service .p-index-service__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-index-service .p-index-service__item .p-index-service__title {
  background: #003288;
  color: #fff;
  font-size: clamp(10px, 1.3020833333vw, 20px);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(20px, 3.2552083333vw, 50px);
  padding: 3px 0;
  position: relative;
}
@media (max-width: 1000px) {
  .p-index-service .p-index-service__item .p-index-service__title {
    font-size: 11px;
  }
}
.p-index-service .p-index-service__item .p-index-service__title a {
  display: block;
  height: 100%;
  margin-left: -0.8rem;
  width: 100%;
}
.p-index-service .p-index-service__item .p-index-service__title a::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  height: 7px;
  margin-left: 8px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  width: 7px;
}
.p-index-service .p-index-service__item .p-index-service__title a:hover::after {
  margin-left: 18px;
}
@media (max-width: 1000px) {
  .p-index-service .p-index-service__item .p-index-service__title a {
    margin-left: 0;
  }
  .p-index-service .p-index-service__item .p-index-service__title a::after {
    width: 5px;
    height: 5px;
    right: 11px;
  }
}
@media (max-width: 768px) {
  .p-index-service .p-index-service__item .p-index-service__title {
    font-size: 14px;
    text-align: left;
    padding: 10px;
    margin: 0 auto 35px;
  }
  .p-index-service .p-index-service__item .p-index-service__title::after {
    right: 10px;
  }
}
@media (max-width: 768px) {
  .p-index-service .p-index-service__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
.p-index-service .p-index-service__list .p-index-service__list__item {
  margin: 0 auto clamp(20px, 2.6041666667vw, 40px);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  max-width: 230px;
}
.p-index-service .p-index-service__list .p-index-service__list__item:hover {
  opacity: 0.5;
}
@media (max-width: 768px) {
  .p-index-service .p-index-service__list .p-index-service__list__item {
    margin-bottom: 40px;
    width: 46%;
  }
}

/* FAQ ご質問 */
@media (max-width: 768px) {
  .p-index-faq {
    min-width: 100%;
    width: 100%;
  }
  .p-index-faq .p-index-lead {
    text-align: left;
    margin-top: 6rem;
    letter-spacing: 0em;
  }
}
.p-index-faq .p-index-col2__left {
  max-width: 44.5%;
}
.p-index-faq .p-index-col2__left .p-index__hl {
  margin-left: clamp(40px, 5.2083333333vw, 80px);
}
.p-index-faq .p-index-col2__left .p-index__hl-sub {
  margin-left: clamp(40px, 5.2083333333vw, 80px);
}
.p-index-faq .p-index-col2__left .c-viewmore-btn {
  margin-left: clamp(40px, 5.2083333333vw, 80px);
}
@media (max-width: 768px) {
  .p-index-faq .p-index-col2__left {
    max-width: 100%;
  }
  .p-index-faq .p-index-col2__left .p-index__hl,
  .p-index-faq .p-index-col2__left .p-index__hl-sub,
  .p-index-faq .p-index-col2__left .c-viewmore-btn {
    margin-left: 0;
  }
  .p-index-faq .p-index-col2__left .p-index__hl {
    margin-bottom: 30px;
  }
  .p-index-faq .p-index-col2__left .p-index__hl-sub {
    margin-bottom: 40px;
  }
}
.p-index-faq .p-index-col2__right {
  padding-right: clamp(40px, 5.2083333333vw, 80px);
  width: 55.5%;
}
@media (max-width: 768px) {
  .p-index-faq .p-index-col2__right {
    padding-right: 0;
    width: 100%;
  }
  .p-index-faq .p-index-col2__right .c-viewmore-btn {
    margin-bottom: 0;
  }
}
.p-index-faq .p-index-faq-item + .p-index-faq-item {
  margin-top: clamp(70px, 5.859375vw, 90px);
}
.p-index-faq .p-index-faq__category {
  color: #003288;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  font-weight: 600;
  margin-bottom: clamp(25px, 2.2786458333vw, 35px);
}
@media (max-width: 768px) {
  .p-index-faq .p-index-faq__category {
    font-size: 16px;
  }
}
.p-index-faq .p-index-faq-list {
  position: relative;
  z-index: 50;
}
.p-index-faq .p-index-faq-list .p-index-faq-list__item:last-child {
  margin-bottom: 0;
}
.p-index-faq .p-index-faq-list .p-index-faq-list__item.is-open .p-index-faq__open-btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-index-faq .p-index-faq-list .p-index-faq__q-sec {
  border-bottom: 1px solid #dbdbdb;
  cursor: pointer;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.p-index-faq .p-index-faq-list .p-index-faq__q-sec .p-index-faq__q-sec__inner {
  padding-left: clamp(22px, 2.9296875vw, 45px);
  position: relative;
}
@media (max-width: 768px) {
  .p-index-faq .p-index-faq-list .p-index-faq__q-sec .p-index-faq__q-sec__inner {
    padding-left: 30px;
  }
}
.p-index-faq .p-index-faq-list .p-index-faq__qmark {
  color: #f07700;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 1.953125vw, 30px);
  font-weight: 600;
  left: 0;
  line-height: 1;
  position: absolute;
  top: -3px;
}
@media (max-width: 768px) {
  .p-index-faq .p-index-faq-list .p-index-faq__qmark {
    font-size: 24px;
  }
}
.p-index-faq .p-index-faq-list .p-index-faq__question {
  font-weight: 600;
  font-size: clamp(10px, 1.171875vw, 18px);
  letter-spacing: 0.04em;
  line-height: 1.4285714286;
}
@media (max-width: 768px) {
  .p-index-faq .p-index-faq-list .p-index-faq__question {
    font-size: 14px;
    padding-right: 1rem;
    width: calc(100% - 44px);
  }
}
.p-index-faq .p-index-faq-list .p-index-faq__open-btn {
  position: absolute;
  display: block;
  width: clamp(12px, 1.5625vw, 24px);
  height: clamp(12px, 1.5625vw, 24px);
  right: 12px;
  margin-left: auto;
  top: 4px;
}
.p-index-faq .p-index-faq-list .p-index-faq__open-btn::before {
  background-color: #f07700;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-index-faq .p-index-faq-list .p-index-faq__open-btn::after {
  background-color: #f07700;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 3px;
}
.p-index-faq .p-index-faq-list .p-index-faq__a-sec {
  display: none;
  padding-bottom: clamp(35px, 3.5807291667vw, 55px);
}
.p-index-faq .p-index-faq-list .p-index-faq__a-sec .p-index-faq__a-sec__inner {
  padding-left: clamp(22px, 2.9296875vw, 45px);
  position: relative;
}
@media (max-width: 768px) {
  .p-index-faq .p-index-faq-list .p-index-faq__a-sec .p-index-faq__a-sec__inner {
    padding-left: 30px;
  }
}
.p-index-faq .p-index-faq-list .p-index-faq__amark {
  color: #009398;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 1.953125vw, 30px);
  font-weight: 600;
  position: absolute;
  left: 3px;
  top: 0;
  line-height: 0.8;
}
@media (max-width: 768px) {
  .p-index-faq .p-index-faq-list .p-index-faq__amark {
    font-size: 24px;
  }
}
.p-index-faq .p-index-faq-list .p-index-answer {
  font-size: clamp(10px, 1.0416666667vw, 16px);
  font-weight: 400;
  letter-spacing: 0.04em;
  padding-right: clamp(20px, 2.6041666667vw, 40px);
  max-width: 798px;
}
@media (max-width: 768px) {
  .p-index-faq .p-index-faq-list .p-index-answer {
    font-size: 13px;
    padding-right: 3rem;
  }
}

/* NEWS お知らせ */
.p-index-news .p-index__hl {
  margin-bottom: 57px;
}
@media (max-width: 768px) {
  .p-index-news .p-index__hl {
    margin-bottom: 22px;
  }
}
.p-index-news .p-index-news-list {
  margin: 0 auto clamp(40px, 5.2083333333vw, 80px);
  width: 60%;
}
@media (max-width: 1000px) {
  .p-index-news .p-index-news-list {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .p-index-news .p-index-news-list {
    width: 100%;
  }
}
.p-index-news .p-index-news-list__link {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #dbdbdb;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .p-index-news .p-index-news-list__link {
    display: block;
  }
}
.p-index-news .p-index-news-list__link:hover {
  background: #f2f5fa;
}
.p-index-news .p-index-news-list__link .p-index-news-list__date {
  color: #003288;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-weight: 600;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.02em;
  padding-left: 12px;
  width: 100px;
}
@media (max-width: 768px) {
  .p-index-news .p-index-news-list__link .p-index-news-list__date {
    font-size: 14px;
    display: inline-block;
    padding-left: 0;
    width: 80px;
  }
}
.p-index-news .p-index-news-list__link .p-index-news-list__label {
  font-size: clamp(10px, 0.8463541667vw, 13px);
  font-weight: 500;
  height: 32px;
  letter-spacing: 0.02em;
  line-height: 30px;
  margin-right: clamp(30px, 3.2552083333vw, 50px);
  text-align: center;
  width: 140px;
}
@media (max-width: 768px) {
  .p-index-news .p-index-news-list__link .p-index-news-list__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    height: 25px;
    line-height: 23px;
    width: 132px;
  }
}
.p-index-news .p-index-news-list__link .p-index-news-list__label.label-new {
  border: 1px solid #f07700;
  color: #f07700;
}
.p-index-news .p-index-news-list__link .p-index-news-list__label.label-career {
  border: 1px solid #009398;
  color: #009398;
}
.p-index-news .p-index-news-list__link .p-index-news-list__label.label-sns {
  border: 1px solid #003288;
  color: #003288;
}
.p-index-news .p-index-news-list__link .p-index-news-list__label.label-event {
  border: 1px solid #43aef4;
  color: #43aef4;
}
.p-index-news .p-index-news-list__link .p-index-news-list__txt {
  color: #0e182c;
  font-size: clamp(10px, 1.171875vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3333333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 288px);
}
@media (max-width: 768px) {
  .p-index-news .p-index-news-list__link .p-index-news-list__txt {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-top: 12px;
    line-height: 1.4666666667;
    overflow: visible;
    white-space: normal;
    width: 100%;
  }
}
.p-index-news .c-viewmore-btn {
  margin: 0 auto;
}

/**
 * 背景装飾 - トップページ
 * sq0〜sq49
 */
.sq0 {
  background-color: rgba(255, 255, 255, 0.8);
  left: 14%;
  top: 35%;
  height: 21px;
  width: 21px;
}
@media (max-width: 768px) {
  .sq0 {
    display: none;
  }
}

.sq1 {
  background-color: rgba(240, 119, 0, 0.8);
  height: clamp(15px, 1.953125vw, 30px);
  left: 10%;
  top: 31%;
  width: clamp(15px, 1.953125vw, 30px);
}
@media (max-width: 1000px) {
  .sq1 {
    background-color: rgba(0, 50, 136, 0.8);
    height: 25px;
    left: 17%;
    top: 19%;
    width: 25px;
  }
}

.sq2 {
  background-color: rgba(0, 50, 136, 0.8);
  height: clamp(36px, 4.6875vw, 72px);
  left: 15%;
  top: 22%;
  width: clamp(36px, 4.6875vw, 72px);
}
@media (max-width: 1000px) {
  .sq2 {
    background-color: rgba(240, 119, 0, 0.8);
    height: 53px;
    left: -5%;
    top: 23%;
    width: 53px;
  }
}

.sq3 {
  background-color: rgba(240, 119, 0, 0.8);
  height: clamp(20px, 2.6041666667vw, 40px);
  right: 9.4%;
  top: 22%;
  width: clamp(20px, 2.6041666667vw, 40px);
}
@media (max-width: 1000px) {
  .sq3 {
    display: none;
  }
}

.sq4 {
  background-color: rgba(0, 50, 136, 0.8);
  height: clamp(20px, 2.6041666667vw, 40px);
  right: 6.5%;
  top: 36.5%;
  width: clamp(20px, 2.6041666667vw, 40px);
}
@media (max-width: 1000px) {
  .sq4 {
    display: none;
  }
}

.sq5 {
  background-color: rgba(255, 255, 255, 0.8);
  height: clamp(49px, 6.3802083333vw, 98px);
  right: 14%;
  top: 30%;
  width: clamp(49px, 6.3802083333vw, 98px);
}
@media (max-width: 1000px) {
  .sq5 {
    display: none;
  }
}

.sq6 {
  background-color: rgba(0, 147, 152, 0.8);
  bottom: 34%;
  height: clamp(20px, 2.6041666667vw, 40px);
  left: 26%;
  width: clamp(20px, 2.6041666667vw, 40px);
}
@media (max-width: 1000px) {
  .sq6 {
    display: none;
  }
}

.sq7 {
  background-color: rgba(240, 119, 0, 0.8);
  bottom: 20%;
  height: clamp(60px, 7.8125vw, 120px);
  left: 17%;
  width: clamp(60px, 7.8125vw, 120px);
}
@media (max-width: 1000px) {
  .sq7 {
    display: none;
  }
}

.sq8 {
  background-color: rgba(0, 147, 152, 0.8);
  bottom: 25.4%;
  height: clamp(14px, 1.7578125vw, 27px);
  right: 18.6%;
  width: clamp(14px, 1.7578125vw, 27px);
}
@media (max-width: 1000px) {
  .sq8 {
    display: none;
  }
}

.sq9 {
  background-color: rgba(240, 119, 0, 0.8);
  bottom: 15%;
  height: clamp(27px, 3.4505208333vw, 53px);
  right: 19%;
  width: clamp(27px, 3.4505208333vw, 53px);
}
@media (max-width: 1000px) {
  .sq9 {
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 24%;
    height: 22px;
    right: 8%;
    width: 22px;
  }
}

.sq10 {
  background-color: rgba(0, 50, 136, 0.8);
  bottom: 22%;
  height: clamp(48px, 6.25vw, 96px);
  right: 24%;
  width: clamp(48px, 6.25vw, 96px);
}
@media (max-width: 1000px) {
  .sq10 {
    background-color: rgba(0, 147, 152, 0.8);
    bottom: 18%;
    height: 63px;
    right: 20%;
    width: 63px;
  }
}

.sq11 {
  background-color: #f07700;
  height: clamp(20px, 2.6041666667vw, 40px);
  right: 260px;
  top: 355px;
  width: clamp(20px, 2.6041666667vw, 40px);
}
@media (max-width: 1000px) {
  .sq11 {
    height: 72px;
    right: auto;
    left: -10px;
    top: 0;
    width: 72px;
    z-index: -1;
  }
}

.sq12 {
  background-color: #009398;
  height: clamp(80px, 10.4166666667vw, 160px);
  right: 120px;
  top: 140px;
  width: clamp(80px, 10.4166666667vw, 160px);
}
@media (max-width: 1000px) {
  .sq12 {
    background-color: #003288;
    height: 25px;
    left: 100px;
    right: auto;
    top: 50px;
    width: 25px;
  }
}

.sq13 {
  background-color: #003288;
  height: clamp(49px, 6.3151041667vw, 97px);
  right: 26px;
  top: 366px;
  width: clamp(49px, 6.3151041667vw, 97px);
}
@media (max-width: 1000px) {
  .sq13 {
    display: none;
  }
}

.sq14 {
  background-color: #f4f4f4;
  height: clamp(20px, 2.6041666667vw, 40px);
  right: 100px;
  top: 433px;
  width: clamp(20px, 2.6041666667vw, 40px);
}
@media (max-width: 1000px) {
  .sq14 {
    display: none;
  }
}

.sq15 {
  background-color: #f4f4f4;
  height: clamp(103px, 13.3463541667vw, 205px);
  left: -20px;
  top: 480px;
  width: clamp(103px, 13.3463541667vw, 205px);
}
@media (max-width: 1000px) {
  .sq15 {
    display: none;
  }
}

.sq16 {
  background-color: #f07700;
  height: clamp(30px, 3.90625vw, 60px);
  left: 106px;
  top: 690px;
  width: clamp(30px, 3.90625vw, 60px);
  z-index: 6;
}
@media (max-width: 1000px) {
  .sq16 {
    display: none;
  }
}

.sq17 {
  background-color: #003288;
  display: none;
  height: clamp(66px, 8.59375vw, 132px);
  left: 126px;
  top: 536px;
  width: clamp(66px, 8.59375vw, 132px);
}
@media (max-width: 1000px) {
  .sq17 {
    display: none;
  }
}

.sq18 {
  background-color: #003288;
  height: clamp(66px, 8.59375vw, 132px);
  left: 132px;
  top: 730px;
  width: clamp(66px, 8.59375vw, 132px);
}
@media (max-width: 1000px) {
  .sq18 {
    display: none;
  }
}

.sq20 {
  background-color: #f07700;
  height: clamp(61px, 7.9427083333vw, 122px);
  left: 0%;
  top: -60px;
  width: clamp(61px, 7.9427083333vw, 122px);
}
@media (max-width: 768px) {
  .sq20 {
    height: 54px;
    left: -10%;
    top: 34%;
    width: 54px;
  }
}

.sq21 {
  background-color: #009398;
  height: clamp(61px, 7.9427083333vw, 122px);
  right: 50px;
  top: 260px;
  width: clamp(61px, 7.9427083333vw, 122px);
}
@media (max-width: 768px) {
  .sq21 {
    height: 30px;
    right: 8.5%;
    top: 23%;
    width: 30px;
  }
}

.sq22 {
  background-color: #003288;
  height: clamp(22px, 2.8645833333vw, 44px);
  right: -20px;
  top: 210px;
  width: clamp(22px, 2.8645833333vw, 44px);
}
@media (max-width: 768px) {
  .sq22 {
    background-color: #f4f4f4;
    height: 78px;
    right: 21%;
    top: 13.5%;
    width: 78px;
  }
}

.sq25 {
  background-color: #009398;
  bottom: 7%;
  left: 2%;
  height: clamp(61px, 7.9427083333vw, 122px);
  width: clamp(61px, 7.9427083333vw, 122px);
}
@media (max-width: 768px) {
  .sq25 {
    bottom: 150px;
    bottom: auto;
    height: 25px;
    left: auto;
    right: 56px;
    top: -53px;
    width: 25px;
  }
}

.sq26 {
  background-color: #003288;
  height: clamp(22px, 2.8645833333vw, 44px);
  left: 13%;
  bottom: 11%;
  width: clamp(22px, 2.8645833333vw, 44px);
}
@media (max-width: 768px) {
  .sq26 {
    background-color: #f07700;
    left: auto;
    right: -20px;
    bottom: auto;
    top: -30px;
    width: 55px;
    height: 55px;
  }
}

.sq27 {
  background-color: #f07700;
  height: clamp(20px, 6.640625vw, 102px);
  right: 2%;
  bottom: 24%;
  width: clamp(20px, 6.640625vw, 102px);
  z-index: 0;
}
@media (max-width: 1000px) {
  .sq27 {
    display: none;
  }
}

.sq30 {
  background-color: #f07700;
  height: clamp(30px, 3.8411458333vw, 59px);
  left: 40px;
  bottom: 230px;
  width: clamp(30px, 3.8411458333vw, 59px);
  z-index: 1;
}
@media (max-width: 1200px) {
  .sq30 {
    left: 20px;
  }
}
@media (max-width: 1000px) {
  .sq30 {
    display: none;
  }
}

.sq31 {
  background-color: #fff;
  height: clamp(103px, 13.3463541667vw, 205px);
  left: -85px;
  bottom: 20px;
  width: clamp(103px, 13.3463541667vw, 205px);
  z-index: 0;
}
@media (max-width: 1000px) {
  .sq31 {
    display: none;
  }
}

.sq32 {
  background-color: #009398;
  height: clamp(61px, 7.9427083333vw, 122px);
  right: 84px;
  bottom: 38px;
  width: clamp(61px, 7.9427083333vw, 122px);
}
@media (max-width: 768px) {
  .sq32 {
    height: 26px;
    right: 48px;
    top: 36px;
    width: 26px;
  }
}

.sq33 {
  background-color: #003288;
  height: clamp(22px, 2.8645833333vw, 44px);
  right: 0;
  bottom: 152px;
  width: clamp(22px, 2.8645833333vw, 44px);
}
@media (max-width: 768px) {
  .sq33 {
    background-color: #f07700;
    height: 80px;
    right: -40px;
    top: -20px;
    width: 80px;
  }
}

@media (max-width: 1000px) {
  .sq35 {
    background-color: #009398;
    height: 25px;
    right: 60px;
    top: 18px;
    width: 25px;
  }
}

@media (max-width: 1000px) {
  .sq36 {
    background-color: #f07700;
    height: 55px;
    right: -20px;
    top: 40px;
    width: 55px;
  }
}

@media (max-width: 768px) {
  .sq40 {
    background-color: #009398;
    top: -12px;
    height: 78px;
    right: 72px;
    width: 78px;
  }
}

@media (max-width: 768px) {
  .sq41 {
    background-color: #003288;
    top: 56px;
    height: 30px;
    right: 25px;
    width: 30px;
  }
}

@media (max-width: 768px) {
  .sq42 {
    background-color: #f07700;
    top: 84px;
    height: 19px;
    right: 120px;
    width: 19px;
  }
}

.sq45 {
  background-color: #f07700;
  top: -60px;
  height: clamp(85px, 11.0026041667vw, 169px);
  left: 100px;
  width: clamp(85px, 11.0026041667vw, 169px);
}
@media (max-width: 768px) {
  .sq45 {
    display: none;
  }
}

.sq46 {
  background-color: #f4f4f4;
  top: 50px;
  height: clamp(35px, 4.5572916667vw, 70px);
  left: 72px;
  width: clamp(35px, 4.5572916667vw, 70px);
}
@media (max-width: 768px) {
  .sq46 {
    display: none;
  }
}

.sq47 {
  background-color: #009398;
  top: 478px;
  height: clamp(91px, 11.8489583333vw, 182px);
  right: -110px;
  width: clamp(91px, 11.8489583333vw, 182px);
}
@media (max-width: 768px) {
  .sq47 {
    display: none;
  }
}

.sq48 {
  background-color: #f07700;
  top: 670px;
  height: clamp(20px, 2.6041666667vw, 40px);
  right: 82px;
  width: clamp(20px, 2.6041666667vw, 40px);
}
@media (max-width: 768px) {
  .sq48 {
    display: none;
  }
}/*# sourceMappingURL=index.css.map */