@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Noto+Sans+JP:wght@100..900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

input, button, textarea, select, option {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

/**
 * メディアクエリ
 * @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] - 縮小を停止するウィンドウ幅
 */
body {
  min-width: 320px;
  color: #202124;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  letter-spacing: 0.03em;
  background-color: var(--bg-white);
}
@media screen and (min-width: 751px) {
  body {
    min-width: 1100px;
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  body {
    font-size: 3.7333333333vw;
  }
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

picture {
  display: block;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}

.mulish {
  font-family: "Mulish", serif;
}

.annotation {
  display: block;
  font-size: 12px;
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 750px) {
  .annotation {
    font-size: 2.9333333333vw;
  }
}

.no-event {
  pointer-events: none;
}

:root {
  --main-blue: #2F2FBE;
  --main-dark-blue: #2F2FBE;
  --bg-white: #FDFDFD;
  --bg-gray:#F0F1F4;
  --border-blue:#BFC4DD;
  --border-gray:#D9DCEB;
  --ci-net-black: #323239;
  --ci-net-blue: #2727AD;
  --ci-net-blue02: #A6A9B9;
  --ci-net-blue03: #DADFF8;
  --ci-net-yellow: #FFD800;
  --ci-net-gray01: #D2D5E3;
  --ci-net-gray02: #E7EAF8;
  --ci-net-gray03: #F5F6FA;
  --ci-net-gray04: #B9BED1;
  --ci-net-gray05: #BFC4DD;
  --ci-net-gray06: #D0D4E3;
  --ci-net-gray07:#F2F3F7;
}

.global-header {
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0px 0px 30px 0px rgba(32, 30, 126, 0.1);
}
@media screen and (min-width: 751px) {
  .global-header {
    min-width: 1100px;
  }
}
.global-header .header-inner {
  width: 100%;
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .global-header .header-inner {
    padding-left: 4vw;
  }
}
.global-header .header-logo {
  width: 210px;
}
@media screen and (max-width: 750px) {
  .global-header .header-logo {
    width: 36.8vw;
  }
}
.global-header .header-contents {
  display: flex;
  align-items: center;
}
.global-header .header-contents-block {
  position: relative;
}
.global-header .header-contents-block:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--main-blue);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media screen and (min-width: 751px) {
  .global-header .header-contents-block:hover:after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@media screen and (min-width: 751px) {
  .global-header .header-contents-block.is-select:after {
    transform: scale(1, 1);
  }
}
.global-header .header-menu {
  display: flex;
  gap: 30px;
  font-size: 16px;
  font-weight: bold;
  margin-right: 40px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
.global-header .header-menu .header-menu-list {
  position: relative;
}
.global-header .header-menu .header-menu-list:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -12px;
  background-color: var(--main-blue);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.global-header .header-menu .header-menu-list:hover:after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.global-header .header-menu .header-menu-list.is-select:after {
  transform: scale(1, 1);
}
.global-header .header-menu .header-menu-list.is-select .icon-arrow-accordion {
  display: inline-block;
  transform: rotate(180deg);
}
.global-header .header-menu i {
  margin-left: 6px;
  font-size: 15px;
}
.global-header .header-menu i.icon-window:before {
  color: var(--main-blue);
}
.global-header .header-sns {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border-blue);
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 750px) {
  .global-header .header-sns {
    width: 16vw;
    height: 16vw;
  }
}
.global-header .header-sns .header-sns-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.global-header .header-sns .header-sns-wrap {
  display: flex;
}
.global-header .header-sns .header-sns-wrap .header-sns-icon img {
  width: 30px;
}
@media screen and (max-width: 750px) {
  .global-header .header-sns .header-sns-wrap .header-sns-icon img {
    width: 5.8666666667vw;
  }
}
.global-header .header-sns .header-sns-text {
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
  color: var(--main-blue);
}
@media screen and (max-width: 750px) {
  .global-header .header-sns .header-sns-text {
    font-size: 2.9333333333vw;
    margin-top: 0.6666666667vw;
  }
}
.global-header .header-search {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border-blue);
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 750px) {
  .global-header .header-search {
    width: 16vw;
    height: 16vw;
  }
}
.global-header .header-search .header-search-text {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--main-blue);
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .global-header .header-search .header-search-text {
    font-size: 2.9333333333vw;
  }
}
.global-header .header-search .header-search-text .icon-search {
  font-size: 30px;
  margin-bottom: 6px;
}
@media screen and (max-width: 750px) {
  .global-header .header-search .header-search-text .icon-search {
    font-size: 5.8666666667vw;
    margin-bottom: 0.9333333333vw;
  }
}
.global-header .header-hamburger {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  color: var(--main-blue);
  flex-direction: column;
  border-left: 1px solid var(--border-blue);
  padding-top: 22px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .global-header .header-hamburger {
    width: 16vw;
    height: 16vw;
    padding-top: 4vw;
  }
}
.global-header .header-hamburger .header-hamburger-border {
  position: relative;
  width: 44px;
  height: 18px;
}
@media screen and (max-width: 750px) {
  .global-header .header-hamburger .header-hamburger-border {
    width: 8vw;
    height: 3.7333333333vw;
  }
}
.global-header .header-hamburger .header-hamburger-border span {
  width: 100%;
  height: 2px;
  background-color: var(--main-blue);
  border-radius: 3px;
  position: absolute;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 750px) {
  .global-header .header-hamburger .header-hamburger-border span {
    height: 0.5333333333vw;
    border-radius: 0.8vw;
  }
}
.global-header .header-hamburger .header-hamburger-border span:nth-child(1) {
  top: 0;
}
.global-header .header-hamburger .header-hamburger-border span:nth-child(2) {
  top: 8px;
}
@media screen and (max-width: 750px) {
  .global-header .header-hamburger .header-hamburger-border span:nth-child(2) {
    top: 1.6vw;
  }
}
.global-header .header-hamburger .header-hamburger-border span:nth-child(3) {
  bottom: 0;
}
.global-header .header-hamburger .header-hamburger-text {
  font-size: 15px;
  margin-top: 10px;
  font-weight: 800;
}
@media screen and (max-width: 750px) {
  .global-header .header-hamburger .header-hamburger-text {
    font-size: 3.2vw;
    margin-top: 2vw;
  }
}
.global-header .header-business {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  top: 80px;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 750px) {
  .global-header .header-business {
    display: none;
  }
}
.global-header .header-business .header-business-wrap {
  width: 100%;
  background-color: var(--bg-gray);
}
.global-header .header-business .header-business-block {
  padding: 70px 0;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.global-header .header-business.is-show {
  opacity: 1;
  visibility: visible;
}
.global-header .header-business .header-business-block-title {
  font-weight: bold;
  color: var(--main-blue);
  font-size: 26px;
}
.global-header .header-business .header-business-block-link {
  margin-top: 20px;
  font-weight: bold;
}
.global-header .header-business .header-business-block-right {
  padding-left: 65px;
  border-left: 1px solid var(--border-blue);
  display: flex;
  gap: 40px;
}
.global-header .header-business .header-business-block-right .header-business-nav-title {
  font-weight: bold;
}
.global-header .header-business .header-business-block-right .header-business-nav-title:nth-child(n+2) {
  margin-top: 20px;
}
.global-header .header-business .header-business-block-right .header-business-nav-list {
  font-size: 14px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.global-header .header-business .header-business-block-right .header-business-nav-list:before {
  content: "";
  display: block;
  background-color: #BABED1;
  width: 6px;
  height: 2px;
  margin-right: 5px;
}
@media screen and (max-width: 750px) {
  .global-header .header-business .header-business-block-right .header-business-nav-list:before {
    width: 1.8666666667vw;
    height: 0.2666666667vw;
    margin-right: 1.8666666667vw;
  }
}
.global-header .header-business .header-business-block-right .icon-window:before {
  color: #BFC4DD;
  margin-left: 5px;
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  .global-header .header-business .header-business-block-right .icon-window:before {
    margin-left: 1.3333333333vw;
    font-size: 4vw;
  }
}
.global-header .header-searchInner {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  top: 80px;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 750px) {
  .global-header .header-searchInner {
    top: 16vw;
    height: calc(100vh - 16vw);
  }
}
.global-header .header-searchInner.is-show {
  opacity: 1;
  visibility: visible;
}
.global-header .header-searchInner .header-searchInner-wrap {
  width: 100%;
  background-color: var(--bg-gray);
  padding: 50px 0;
}
@media screen and (max-width: 750px) {
  .global-header .header-searchInner .header-searchInner-wrap {
    padding-top: 10.6666666667vw;
    padding-bottom: 13.3333333333vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.global-header .header-searchInner .header-searchInner-block {
  width: 650px;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .global-header .header-searchInner .header-searchInner-block {
    width: 100%;
  }
}
.global-header .header-searchInner .header-searchInner-title {
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .global-header .header-searchInner .header-searchInner-title {
    font-size: 4.2666666667vw;
  }
}
.global-header .header-searchInner .header-searchInner-box {
  margin-top: 20px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .global-header .header-searchInner .header-searchInner-box {
    margin-top: 5.3333333333vw;
  }
}
.global-header .header-searchInner .header-searchInner-box .header-searchInner-input {
  width: 100%;
  height: 50px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-left: 1px solid var(--border-blue);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  background-color: #fff;
  padding: 0 20px;
}
@media screen and (max-width: 750px) {
  .global-header .header-searchInner .header-searchInner-box .header-searchInner-input {
    height: 13.3333333333vw;
    padding-left: 4vw;
    border-top-left-radius: 0.8vw;
    border-bottom-left-radius: 0.8vw;
  }
}
.global-header .header-searchInner .header-searchInner-box .header-searchInner-btn {
  background-color: var(--main-blue);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 0 12px;
  position: absolute;
  right: 0;
  cursor: pointer;
  height: 50px;
}
@media screen and (max-width: 750px) {
  .global-header .header-searchInner .header-searchInner-box .header-searchInner-btn {
    height: 13.3333333333vw;
    padding-left: 3.6vw;
    padding-right: 3.6vw;
    border-top-right-radius: 0.8vw;
    border-bottom-right-radius: 0.8vw;
  }
}
.global-header .header-searchInner .header-searchInner-box .header-searchInner-btn .icon-search:before {
  font-size: 25px;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .global-header .header-searchInner .header-searchInner-box .header-searchInner-btn .icon-search:before {
    font-size: 5.8666666667vw;
  }
}
.global-header .header-searchInner .header-searchInner-close {
  position: absolute;
  right: -7px;
  top: -10px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .global-header .header-searchInner .header-searchInner-close {
    width: 8vw;
    height: 8vw;
    top: -2.6666666667vw;
    right: -1.3333333333vw;
  }
}
.global-header .header-searchInner .header-searchInner-close span {
  position: absolute;
  width: 17px;
  height: 2px;
  background-color: #9397A5;
  transform: rotate(45deg);
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .global-header .header-searchInner .header-searchInner-close span {
    width: 4.8vw;
    height: 0.5333333333vw;
  }
}
.global-header .header-searchInner .header-searchInner-close span:first-child {
  transform: rotate(45deg);
}
.global-header .header-searchInner .header-searchInner-close span:last-child {
  transform: rotate(-45deg);
}
.global-header .header-menuInner {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  top: 80px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner {
    top: 16vw;
    height: calc(100vh - 16vw);
    overflow-y: scroll;
  }
}
@media screen and (min-width: 751px) {
  .global-header .header-menuInner .header-menuInner-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-rows: 47px 47px 47px 1fr;
    grid-template-columns: 630px 140px;
    -moz-column-gap: 80px;
    column-gap: 80px;
    width: 850px;
  }
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-block {
    padding-top: 10.6666666667vw;
    padding-bottom: 22.6666666667vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.global-header .header-menuInner .header-menuInner-block-list .header-menuInner-block-list-text {
  font-size: 18px;
  color: var(--main-blue);
  font-weight: bold;
}
.global-header .header-menuInner .header-menuInner-block-list .header-menuInner-block-list-text .icon-window:before {
  color: var(--main-blue);
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-block-list .header-menuInner-block-list-text {
    font-size: 4.2666666667vw;
  }
}
.global-header .header-menuInner .header-menuInner-block-list:first-child {
  grid-row: 1/5;
  grid-column: 1/1;
}
.global-header .header-menuInner .header-menuInner-block-list:first-child .header-menuInner-block-list-text {
  display: block;
  color: var(--main-blue);
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .global-header .header-menuInner .header-menuInner-block-list:first-child .header-menuInner-block-list-text {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-blue);
  }
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-block-list:first-child .header-menuInner-block-list-text {
    display: flex;
    justify-content: space-between;
  }
}
.global-header .header-menuInner .header-menuInner-block-list:first-child .header-menuInner-block-list-text .icon-arrow-accordion:before {
  font-size: 4.5333333333vw;
}
.global-header .header-menuInner .header-menuInner-block-list:nth-child(2) {
  grid-row: 1/2;
  grid-column: 2/3;
}
.global-header .header-menuInner .header-menuInner-block-list:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2/3;
}
.global-header .header-menuInner .header-menuInner-block-list:nth-child(4) {
  grid-row: 3/4;
  grid-column: 2/3;
}
.global-header .header-menuInner .header-menuInner-block-list:nth-child(5) {
  grid-row: 4/5;
  grid-column: 2/3;
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-block-list:nth-child(n+2) {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-block-list {
    font-size: 4.2666666667vw;
    padding-bottom: 5.3333333333vw;
    border-bottom: 1px solid var(--border-blue);
  }
}
.global-header .header-menuInner .header-menuInner-block-list.is-open .icon-arrow-accordion {
  transform: rotate(180deg);
}
.global-header .header-menuInner .header-menuInner-block-list .icon-window:before {
  color: #BFC4DD;
  margin-left: 5px;
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-block-list .icon-window:before {
    margin-left: 1.3333333333vw;
    font-size: 4vw;
  }
}
.global-header .header-menuInner .header-menuInner-block-list.sns-menu a {
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-block-list.sns-menu a {
    align-items: center;
    gap: 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-block-list.sns-menu img {
    width: 8vw;
  }
}
@media screen and (min-width: 751px) {
  .global-header .header-menuInner .header-menuInner-nav {
    padding-top: 30px;
    display: grid;
    -moz-column-gap: 40px;
    column-gap: 40px;
    grid-template-areas: "item1 item3" "item2 .";
  }
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-nav {
    padding-left: 4vw;
    padding-right: 4vw;
    overflow: hidden;
    height: 0;
    transition: 0.5s ease;
  }
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-block {
    padding-top: 9.3333333333vw;
  }
}
@media screen and (min-width: 751px) {
  .global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-block:first-child {
    grid-area: item1;
  }
}
@media screen and (min-width: 751px) {
  .global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-block:nth-child(2) {
    grid-area: item2;
  }
}
@media screen and (min-width: 751px) {
  .global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-block:last-child {
    grid-area: item3;
  }
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-block:last-child {
    padding-bottom: 5.3333333333vw;
  }
}
.global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-title {
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-title {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 751px) {
  .global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-title:nth-child(n+2) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-title:nth-child(n+2) {
    margin-top: 5.3333333333vw;
  }
}
.global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-list {
  font-size: 14px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-list {
    font-size: 3.4666666667vw;
    margin-top: 4vw;
  }
}
.global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-list:before {
  content: "";
  display: block;
  background-color: #BABED1;
  width: 6px;
  height: 2px;
  margin-right: 5px;
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-nav .header-menuInner-nav-list:before {
    width: 1.8666666667vw;
    height: 0.2666666667vw;
    margin-right: 1.8666666667vw;
  }
}
.global-header .header-menuInner .header-menuInner-bottom {
  background: linear-gradient(60deg, rgb(43, 30, 198) 0%, rgb(74, 108, 255) 100%);
}
@media screen and (min-width: 751px) {
  .global-header .header-menuInner .header-menuInner-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}
.global-header .header-menuInner .header-menuInner-bottom .header-menuInner-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  color: #fff;
  max-width: 1286px;
  margin: auto;
  font-size: 12px;
  opacity: 0.8;
}
@media screen and (min-width: 751px) {
  .global-header .header-menuInner .header-menuInner-bottom .header-menuInner-bottom-inner {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-bottom .header-menuInner-bottom-inner {
    display: block;
    font-size: 3.4666666667vw;
    padding-top: 6.6666666667vw;
    padding-bottom: 6.6666666667vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.global-header .header-menuInner .header-menuInner-bottom .header-menuInner-bottom-nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-bottom .header-menuInner-bottom-nav {
    display: block;
    margin-bottom: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media screen and (min-width: 751px) {
  .global-header .header-menuInner .header-menuInner-bottom .header-menuInner-bottom-nav .header-menuInner-bottom-nav-list:not(:first-child) {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #fff;
  }
}
@media screen and (max-width: 750px) {
  .global-header .header-menuInner .header-menuInner-bottom .header-menuInner-bottom-nav .header-menuInner-bottom-nav-list:not(:first-child) {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (min-width: 751px) {
  .global-header .header-menuInner .header-menuInner-bottom .header-menuInner-bottom-nav .header-menuInner-bottom-nav-list {
    transition: opacity 0.3s ease;
  }
  .global-header .header-menuInner .header-menuInner-bottom .header-menuInner-bottom-nav .header-menuInner-bottom-nav-list:hover {
    opacity: 0.7;
  }
}
.global-header.is-open {
  background-color: var(--bg-gray);
}
.global-header.is-open .header-menu,
.global-header.is-open .header-sns,
.global-header.is-open .header-search {
  opacity: 0;
  visibility: hidden;
}
.global-header.is-open .header-hamburger {
  background-color: var(--main-blue);
  color: #fff;
}
.global-header.is-open .header-hamburger .header-hamburger-border span {
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .global-header.is-open .header-hamburger .header-hamburger-border span {
    height: 0.5333333333vw;
    border-radius: 0.8vw;
  }
}
.global-header.is-open .header-hamburger .header-hamburger-border span:nth-child(1) {
  transform: rotate(-22deg);
  top: 45%;
}
.global-header.is-open .header-hamburger .header-hamburger-border span:nth-child(2) {
  opacity: 0;
}
.global-header.is-open .header-hamburger .header-hamburger-border span:nth-child(3) {
  transform: rotate(22deg);
  bottom: 45%;
}
.global-header.is-open .header-menuInner {
  opacity: 1;
  visibility: visible;
}

.global-footer {
  position: relative;
}
.global-footer .footer-page-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@-webkit-keyframes topPageMotion {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50.1% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes topPageMotion {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50.1% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  .global-footer .footer-page-top {
    right: 2.6666666667vw;
    bottom: 5.3333333333vw;
  }
}
.global-footer .footer-page-top.is-show {
  opacity: 1;
  visibility: visible;
}
.global-footer .footer-page-top .footer-page-top-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: var(--main-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-page-top .footer-page-top-link {
    width: 12vw;
    height: 12vw;
  }
}
.global-footer .footer-page-top .footer-page-top-link img {
  width: 13px;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-page-top .footer-page-top-link img {
    width: 3.4666666667vw;
  }
}
@media screen and (min-width: 751px) {
  .global-footer .footer-page-top .footer-page-top-link:hover img {
    -webkit-animation: topPageMotion 0.5s ease;
    animation: topPageMotion 0.5s ease;
  }
}
.global-footer .footer-top {
  max-width: 1366px;
  margin: auto;
  background-image: url("/assets/img/common/footer-img.pc.png");
  background-repeat: no-repeat;
  background-position: bottom 0 right 103px;
  background-size: 715px;
}
@media screen and (min-width: 751px) {
  .global-footer .footer-top {
    padding: 70px 0 65px;
  }
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top {
    padding-top: 13.3333333333vw;
    padding-bottom: 40.5333333333vw;
    background-size: 100%;
    background-position: bottom center;
    background-image: url("/assets/img/common/footer-img.sp.png");
  }
}
.global-footer .footer-top .footer-top-inner {
  margin: auto;
  max-width: 1070px;
}
@media screen and (min-width: 751px) {
  .global-footer .footer-top .footer-nav {
    display: grid;
    grid-template-rows: 47px 47px 1fr;
    grid-template-columns: 875px 100px;
    -moz-column-gap: 95px;
    column-gap: 95px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-blue);
  }
}
.global-footer .footer-top .footer-nav-list .footer-nav-list-text .icon-window:before {
  color: var(--main-blue);
}
.global-footer .footer-top .footer-nav-list:first-child {
  grid-row: 1/4;
  grid-column: 1/1;
}
.global-footer .footer-top .footer-nav-list:first-child .footer-nav-list-text {
  display: block;
  font-size: 18px;
  color: var(--main-blue);
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .global-footer .footer-top .footer-nav-list:first-child .footer-nav-list-text {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-blue);
  }
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-nav-list:first-child .footer-nav-list-text {
    display: flex;
    justify-content: space-between;
    font-size: 4.2666666667vw;
  }
}
.global-footer .footer-top .footer-nav-list:first-child .footer-nav-list-text .icon-arrow-accordion:before {
  font-size: 4.5333333333vw;
}
.global-footer .footer-top .footer-nav-list:nth-child(2) {
  grid-row: 1/2;
  grid-column: 2/3;
}
.global-footer .footer-top .footer-nav-list:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2/3;
}
.global-footer .footer-top .footer-nav-list:nth-child(4) {
  grid-row: 3/4;
  grid-column: 2/3;
}
.global-footer .footer-top .footer-nav-list:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-nav-list:not(:first-child) {
    margin-top: 5.3333333333vw;
  }
}
.global-footer .footer-top .footer-nav-list:not(:first-child) .footer-nav-list-text {
  color: var(--main-blue);
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-nav-list:not(:first-child) .footer-nav-list-text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-nav-list {
    font-size: 4.2666666667vw;
    padding-bottom: 5.3333333333vw;
    border-bottom: 1px solid var(--border-blue);
  }
}
.global-footer .footer-top .footer-nav-list.is-open .icon-arrow-accordion {
  transform: rotate(180deg);
}
.global-footer .footer-top .footer-nav-list .icon-window:before {
  color: #BFC4DD;
  margin-left: 5px;
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-nav-list .icon-window:before {
    margin-left: 1.3333333333vw;
    font-size: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .global-footer .footer-top .footer-subNav {
    padding-top: 30px;
    display: flex;
    gap: 55px;
  }
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-subNav {
    padding-left: 4vw;
    padding-right: 4vw;
    overflow: hidden;
    height: 0;
    transition: 0.5s ease;
  }
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-subNav .footer-subNav-block {
    padding-top: 9.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-subNav .footer-subNav-block:last-child {
    padding-bottom: 5.3333333333vw;
  }
}
.global-footer .footer-top .footer-subNav .footer-subNav-title {
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-subNav .footer-subNav-title {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 751px) {
  .global-footer .footer-top .footer-subNav .footer-subNav-title:nth-child(n+2) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-subNav .footer-subNav-title:nth-child(n+2) {
    margin-top: 5.3333333333vw;
  }
}
.global-footer .footer-top .footer-subNav .footer-subNav-list {
  font-size: 14px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-subNav .footer-subNav-list {
    font-size: 3.4666666667vw;
    margin-top: 4vw;
  }
}
.global-footer .footer-top .footer-subNav .footer-subNav-list:before {
  content: "";
  display: block;
  background-color: #BABED1;
  width: 6px;
  height: 2px;
  margin-right: 5px;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-subNav .footer-subNav-list:before {
    width: 1.8666666667vw;
    height: 0.2666666667vw;
    margin-right: 1.8666666667vw;
  }
}
.global-footer .footer-top .footer-links {
  margin-top: 70px;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-links {
    margin-top: 13.3333333333vw;
  }
}
.global-footer .footer-top .footer-links .footer-logo {
  width: 240px;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-links .footer-logo {
    width: 64vw;
  }
}
.global-footer .footer-top .footer-links .footer-logo img {
  width: 100%;
}
.global-footer .footer-top .footer-links .footer-sns-link {
  margin-top: 30px;
  color: var(--main-blue);
  width: 120px;
  padding-bottom: 3px;
  display: block;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-links .footer-sns-link {
    margin-top: 6.6666666667vw;
    width: 33.3333333333vw;
    padding-bottom: 1.3333333333vw;
  }
}
.global-footer .footer-top .footer-links .footer-sns-wrap {
  display: flex;
  align-items: center;
}
.global-footer .footer-top .footer-links .footer-sns-wrap .footer-sns-title {
  font-size: 14px;
  margin-right: 3px;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-links .footer-sns-wrap .footer-sns-title {
    font-size: 3.7333333333vw;
    margin-right: 1.3333333333vw;
  }
}
.global-footer .footer-top .footer-links .footer-sns-wrap .footer-sns-icon {
  width: 25px;
  margin-left: 3px;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-top .footer-links .footer-sns-wrap .footer-sns-icon {
    width: 8vw;
    margin-left: 0.2666666667vw;
  }
}
.global-footer .footer-top .footer-links .footer-sns-wrap .footer-sns-icon img {
  width: 100%;
}
.global-footer .footer-bottom {
  background: linear-gradient(60deg, rgb(43, 30, 198) 0%, rgb(74, 108, 255) 100%);
}
.global-footer .footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  color: #fff;
  max-width: 1286px;
  margin: auto;
  font-size: 12px;
  opacity: 0.8;
}
@media screen and (min-width: 751px) {
  .global-footer .footer-bottom .footer-bottom-inner {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 750px) {
  .global-footer .footer-bottom .footer-bottom-inner {
    display: block;
    font-size: 3.4666666667vw;
    padding-top: 6.6666666667vw;
    padding-bottom: 6.6666666667vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.global-footer .footer-bottom .footer-bottom-nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .global-footer .footer-bottom .footer-bottom-nav {
    display: block;
    margin-bottom: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media screen and (min-width: 751px) {
  .global-footer .footer-bottom .footer-bottom-nav .footer-bottom-nav-list:not(:first-child) {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #fff;
  }
}
@media screen and (max-width: 750px) {
  .global-footer .footer-bottom .footer-bottom-nav .footer-bottom-nav-list:not(:first-child) {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (min-width: 751px) {
  .global-footer .footer-bottom .footer-bottom-nav .footer-bottom-nav-list {
    transition: opacity 0.3s ease;
  }
  .global-footer .footer-bottom .footer-bottom-nav .footer-bottom-nav-list:hover {
    opacity: 0.7;
  }
}

.c-breadcrumbs {
  background-color: var(--bg-gray);
  overflow: auto;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  /*Google Chrome、Safariへの対応*/
}
.c-breadcrumbs:-webkit-scrollbar {
  display: none;
}
.c-breadcrumbs .c-breadcrumbs-wrap {
  display: flex;
  align-items: center;
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .c-breadcrumbs .c-breadcrumbs-wrap {
    font-size: 3.4666666667vw;
  }
}
.c-breadcrumbs .c-breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 20px 0;
}
@media screen and (max-width: 750px) {
  .c-breadcrumbs .c-breadcrumbs-list {
    padding-top: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
  }
}
.c-breadcrumbs .c-breadcrumbs-list:not(:first-child):before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: var(--border-blue);
  margin: 0 8px;
}
@media screen and (max-width: 750px) {
  .c-breadcrumbs .c-breadcrumbs-list:not(:first-child):before {
    width: 2.6666666667vw;
    height: 0.2666666667vw;
    margin-left: 2.1333333333vw;
    margin-right: 2.1333333333vw;
  }
}

/*----ボタン---*/
.c-btnBlue {
  background-color: var(--main-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s ease;
  border: 1px solid var(--main-blue);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .c-btnBlue {
    border-radius: 0.8vw;
  }
}
.c-btnBlue .c-btnIconBefore:before {
  color: #fff;
  font-size: 20px;
  margin-right: 5px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 750px) {
  .c-btnBlue .c-btnIconBefore:before {
    font-size: 5.0666666667vw;
    margin-right: 1.3333333333vw;
  }
}
.c-btnBlue .c-icon-circle {
  z-index: 2;
}
.c-btnBlue span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.c-btnBlue:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
  transform: scale(0, 1);
  transform-origin: right top;
  border-radius: 5px;
}
@media screen and (min-width: 751px) {
  .c-btnBlue:hover {
    color: var(--main-blue);
  }
  .c-btnBlue:hover .c-btnIconBefore:before {
    color: var(--main-blue);
  }
  .c-btnBlue:hover:after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

.c-btnWhite {
  background-color: #fff;
  color: var(--main-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s ease;
  border: 1px solid var(--main-blue);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .c-btnWhite {
    border-radius: 0.8vw;
  }
}
.c-btnWhite .c-btnIconBefore:before {
  color: var(--main-blue);
  font-size: 20px;
  margin-right: 5px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 750px) {
  .c-btnWhite .c-btnIconBefore:before {
    font-size: 5.0666666667vw;
    margin-right: 1.3333333333vw;
  }
}
.c-btnWhite .c-icon-circle {
  z-index: 2;
}
.c-btnWhite span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.c-btnWhite:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: var(--main-blue);
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
  transform: scale(0, 1);
  transform-origin: right top;
  border-radius: 5px;
}
@media screen and (min-width: 751px) {
  .c-btnWhite:hover {
    color: #fff;
  }
  .c-btnWhite:hover .c-btnIconBefore:before {
    color: #fff;
  }
  .c-btnWhite:hover:after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

/*---テキストリンク---*/
.c-text-link {
  color: var(--main-blue);
  display: inline;
  background-image: linear-gradient(#2F2FBE, #2F2FBE);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  padding-bottom: 5px;
  transition: background-size 0.4s ease;
}
@-webkit-keyframes borderMotion {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    background-position: bottom right;
  }
  50.1% {
    background-size: 0 1px;
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}
@keyframes borderMotion {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    background-position: bottom right;
  }
  50.1% {
    background-size: 0 1px;
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}
@media screen and (min-width: 751px) {
  .c-text-link:hover {
    -webkit-animation: borderMotion 0.7s ease;
    animation: borderMotion 0.7s ease;
  }
}
@media screen and (max-width: 750px) {
  .c-text-link {
    padding-bottom: 0.9333333333vw;
  }
}
.c-text-link .icon-arrow-right,
.c-text-link .icon-window {
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .c-text-link .icon-arrow-right,
.c-text-link .icon-window {
    margin-left: 1.8666666667vw;
  }
}
.c-text-link.colorWhite {
  color: #fff;
  background-image: linear-gradient(#fff, #fff);
}
.c-text-link.colorWhite .icon-arrow-right:before {
  color: #fff;
}

.c-text-linkReturn {
  color: var(--main-blue);
  display: inline;
  background-image: linear-gradient(#2F2FBE, #2F2FBE);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  padding-bottom: 5px;
  transition: background-size 0.4s ease;
}
@-webkit-keyframes borderMotionReturn {
  0% {
    background-size: 100% 1px;
    background-position: bottom left;
  }
  50% {
    background-size: 0 1px;
    background-position: bottom left;
  }
  50.1% {
    background-size: 0 1px;
    background-position: bottom right;
  }
  100% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
}
@keyframes borderMotionReturn {
  0% {
    background-size: 100% 1px;
    background-position: bottom left;
  }
  50% {
    background-size: 0 1px;
    background-position: bottom left;
  }
  50.1% {
    background-size: 0 1px;
    background-position: bottom right;
  }
  100% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
}
@media screen and (min-width: 751px) {
  .c-text-linkReturn:hover {
    -webkit-animation: borderMotionReturn 0.7s ease;
    animation: borderMotionReturn 0.7s ease;
  }
}
@media screen and (max-width: 750px) {
  .c-text-linkReturn {
    padding-bottom: 0.9333333333vw;
  }
}
.c-text-linkReturn .icon-arrow-left {
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .c-text-linkReturn .icon-arrow-left {
    margin-left: 1.8666666667vw;
  }
}
.c-text-linkReturn.colorWhite {
  color: #fff;
  background-image: linear-gradient(#fff, #fff);
}
.c-text-linkReturn.colorWhite .icon-arrow-right:before {
  color: #fff;
}

@media screen and (min-width: 751px) {
  .c-text-linkColor {
    transition: color 0.4s ease;
  }
  .c-text-linkColor:hover {
    color: var(--main-blue);
  }
}

@media screen and (min-width: 751px) {
  .c-text-linkBorder {
    background-image: linear-gradient(#2F2FBE, #2F2FBE);
    background-size: 0 1px;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-bottom: 3px;
    transition: background-size 0.4s ease;
  }
  .c-text-linkBorder:hover {
    background-size: 100% 1px;
    background-position: bottom left;
    color: var(--main-blue);
  }
}

/*---アイコン矢印動き---*/
@-webkit-keyframes arrowMotion {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  50.1% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrowMotion {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  50.1% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.c-arrow-motion {
  display: inline-block;
}
@media screen and (min-width: 751px) {
  .c-arrow-motion:hover {
    -webkit-animation: arrowMotion 0.7s ease;
    animation: arrowMotion 0.7s ease;
  }
}

/*---アイコン矢印逆動き---*/
@-webkit-keyframes arrowMotionReturn {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50.1% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrowMotionReturn {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50.1% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.c-arrow-motionReturn {
  display: inline-block;
}
@media screen and (min-width: 751px) {
  .c-arrow-motionReturn:hover {
    -webkit-animation: arrowMotionReturn 0.7s ease;
    animation: arrowMotionReturn 0.7s ease;
  }
}

/*---アイコンリンク(丸)---*/
.c-icon-circle {
  transition: background-color 0.4s ease;
  border-radius: 50%;
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.c-icon-circle .icon-arrow-right,
.c-icon-circle .icon-window {
  transition: color 0.4s ease;
  font-size: 15px;
}
.c-icon-circle .icon-arrow-right:before,
.c-icon-circle .icon-window:before {
  color: #606477;
}
@media screen and (max-width: 750px) {
  .c-icon-circle .icon-arrow-right,
.c-icon-circle .icon-window {
    font-size: 4vw;
  }
}

/*---リンクパネル---*/
.c-link-panel {
  border: 1px solid transparent;
  box-shadow: 0px 0px 10px 0px rgba(32, 30, 126, 0.1);
  transition: border 0.4s ease;
  border-radius: 10px;
}
@media screen and (max-width: 750px) {
  .c-link-panel {
    border-radius: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .c-link-panel:hover {
    border: 1px solid var(--main-blue);
  }
}

@media screen and (min-width: 751px) {
  .c-link-motion:hover .c-arrow-motion {
    -webkit-animation: arrowMotion 0.7s ease;
    animation: arrowMotion 0.7s ease;
  }
  .c-link-motion:hover .c-arrow-motionReturn {
    -webkit-animation: arrowMotionReturn 0.7s ease;
    animation: arrowMotionReturn 0.7s ease;
  }
  .c-link-motion:hover .c-icon-circle {
    background-color: var(--main-blue);
    border: 1px solid var(--main-blue);
  }
  .c-link-motion:hover .c-icon-circle .icon-arrow-right:before,
.c-link-motion:hover .c-icon-circle .icon-window:before {
    color: #fff;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .c-link-motion:hover .c-text-link {
    -webkit-animation: borderMotion 0.7s ease;
    animation: borderMotion 0.7s ease;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .c-link-motion:hover .c-text-linkBorder {
    background-size: 100% 1px;
    background-position: bottom left;
    color: var(--main-blue);
  }
}
@media screen and (min-width: 751px) {
  .c-link-motion:hover .c-hoverBlue {
    transition: color 0.4s ease;
    color: var(--main-blue);
  }
}
@media screen and (min-width: 751px) {
  .c-link-motion.bgYellow .c-text-linkBorder {
    background-image: linear-gradient(#000, #000);
    color: #000;
  }
}
@media screen and (min-width: 751px) {
  .c-link-motion.bgBlue .c-text-linkBorder {
    background-image: linear-gradient(#fff, #fff);
    color: #fff;
  }
}

.c-form-lead {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-form-lead {
    text-align: left;
  }
}
.c-form-lead h3 {
  font-weight: bold;
  font-size: 30px;
}
@media screen and (max-width: 750px) {
  .c-form-lead h3 {
    font-size: 5.8666666667vw;
    line-height: 1.6;
  }
}
.c-form-lead p {
  margin-top: 25px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .c-form-lead p {
    margin-top: 4vw;
  }
}
.c-form-lead small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .c-form-lead small {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
}

.c-form-wrap {
  margin-top: 60px;
  max-width: 700px;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .c-form-wrap {
    margin-top: 10.6666666667vw;
  }
}

.c-form-flow {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 60px;
  margin-top: 100px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .c-form-flow {
    margin-top: 10.6666666667vw;
    height: 13.3333333333vw;
  }
}
.c-form-flow.form-flow {
  background-image: url("/assets/img/contact/flow01.png");
}
@media screen and (max-width: 750px) {
  .c-form-flow.form-flow {
    background-image: url("/assets/img/contact/flow01.sp.png");
  }
}
.c-form-flow.conf-flow {
  background-image: url("/assets/img/contact/flow02.png");
}
@media screen and (max-width: 750px) {
  .c-form-flow.conf-flow {
    background-image: url("/assets/img/contact/flow02.sp.png");
  }
}
.c-form-flow.done-flow {
  background-image: url("/assets/img/contact/flow03.png");
}
@media screen and (max-width: 750px) {
  .c-form-flow.done-flow {
    background-image: url("/assets/img/contact/flow03.sp.png");
  }
}
.c-form-flow li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #9397A5;
}
@media screen and (max-width: 750px) {
  .c-form-flow li {
    font-size: 3.2vw;
    gap: 1.3333333333vw;
  }
}
.c-form-flow li span {
  font-size: 14px;
  width: 26px;
  height: 26px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9397A5;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .c-form-flow li span {
    font-size: 3.2vw;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.c-form-flow li:first-child {
  margin-right: 164px;
  margin-left: 93px;
}
@media screen and (max-width: 750px) {
  .c-form-flow li:first-child {
    margin-right: 8.4vw;
    margin-left: 2.4vw;
  }
}
.c-form-flow li:nth-child(2) {
  margin-right: 200px;
}
@media screen and (max-width: 750px) {
  .c-form-flow li:nth-child(2) {
    margin-right: 12vw;
    line-height: 1.25;
  }
  .c-form-flow li:nth-child(2) span {
    line-height: 1;
  }
}
.c-form-flow li.active {
  color: #fff;
}
.c-form-flow li.active span {
  color: var(--main-blue);
  background-color: #fff;
}

.c-input-block,
.c-select-block {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .c-input-block,
.c-select-block {
    margin-top: 5.3333333333vw;
  }
}
.c-input-block .c-error-text,
.c-select-block .c-error-text {
  margin-top: 5px;
}
@media screen and (max-width: 750px) {
  .c-input-block .c-error-text,
.c-select-block .c-error-text {
    margin-top: 1.3333333333vw;
  }
}
.c-input-block .c-form-note,
.c-select-block .c-form-note {
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .c-input-block .c-form-note,
.c-select-block .c-form-note {
    margin-top: 2.1333333333vw;
  }
}

.c-radio-block {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .c-radio-block {
    margin-top: 6.6666666667vw;
  }
}
.c-radio-block > .c-error-text {
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .c-radio-block > .c-error-text {
    margin-top: 2.6666666667vw;
  }
}
.c-radio-block .c-radio-block-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 15px;
}
@media screen and (max-width: 750px) {
  .c-radio-block .c-radio-block-wrap {
    margin-top: 4vw;
    gap: 2.6666666667vw;
  }
}

.c-textarea-block {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .c-textarea-block {
    margin-top: 6.6666666667vw;
  }
}
.c-textarea-block .c-error-text {
  margin-top: 5px;
}
@media screen and (max-width: 750px) {
  .c-textarea-block .c-error-text {
    margin-top: 1.3333333333vw;
  }
}

.c-form-input,
.c-form-textarea {
  display: block;
  border-radius: 3px;
  border: var(--border-blue) 1px solid;
  padding: 15px 16px;
  font-size: 16px;
  width: 100%;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .c-form-input,
.c-form-textarea {
    border-radius: 0.8vw;
    font-size: 3.4666666667vw;
    padding: 3.3333333333vw;
    margin-top: 2.6666666667vw;
  }
}
.c-form-input::-moz-placeholder, .c-form-textarea::-moz-placeholder {
  opacity: 0.4;
}
.c-form-input::placeholder,
.c-form-textarea::placeholder {
  opacity: 0.4;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.c-form-select {
  display: block;
  border-radius: 3px;
  border: var(--border-blue) 1px solid;
  padding: 15px 16px;
  font-size: 16px;
  width: 235px;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .c-form-select {
    border-radius: 0.8vw;
    font-size: 3.4666666667vw;
    padding: 3.3333333333vw;
    margin-top: 2.6666666667vw;
    width: 50.6666666667vw;
  }
}
.c-form-select .placeholder {
  color: #A49B9C;
}

.c-form-select-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-form-select-wrap:after {
  display: block;
  position: absolute;
  font-family: "icomoon";
  content: "\e901";
  color: #2f2fbe;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
}

.c-form-name {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 750px) {
  .c-form-name {
    gap: 2.1333333333vw;
  }
}
.c-form-name .c-form-name-required {
  color: #fff;
  font-size: 10px;
  background-color: #FF0000;
  border-radius: 3px;
  width: 32px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .c-form-name .c-form-name-required {
    border-radius: 0.8vw;
    font-size: 2.6666666667vw;
    width: 7.4666666667vw;
    height: 4.2666666667vw;
  }
}

.c-form-input-short {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .c-form-input-short {
    margin-top: 2.6666666667vw;
    gap: 2.6666666667vw;
  }
}
.c-form-input-short span {
  font-weight: bold;
}
.c-form-input-short .c-form-input {
  width: 235px;
  margin-top: 0;
}
@media screen and (max-width: 750px) {
  .c-form-input-short .c-form-input {
    width: 50.6666666667vw;
  }
}

.c-form-radio {
  font-weight: bold;
}
.c-form-radio input[type=radio] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-blue);
  border-radius: 50%;
  vertical-align: -0.3660322108vw;
  margin-right: 10px;
}
@media screen and (min-width: 1366px) {
  .c-form-radio input[type=radio] {
    vertical-align: -5px;
  }
}
@media screen and (max-width: 750px) {
  .c-form-radio input[type=radio] {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    vertical-align: -1.3333333333vw;
  }
}
.c-form-radio input[type=radio]:checked {
  border: 2px solid var(--main-blue);
}
.c-form-radio input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--main-blue);
  content: "";
}
@media screen and (max-width: 750px) {
  .c-form-radio input[type=radio]:checked:before {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}
.c-form-radio span {
  margin-left: 6px;
  font-size: 13px;
  font-weight: normal;
}
@media screen and (max-width: 750px) {
  .c-form-radio span {
    margin-left: 1.3333333333vw;
    font-size: 2.6666666667vw;
  }
}

.c-form-textarea {
  height: 240px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .c-form-textarea {
    height: 64vw;
  }
}

.c-file-block {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .c-file-block {
    margin-top: 6.6666666667vw;
  }
}
.c-file-block .c-file-wrap {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .c-file-block .c-file-wrap {
    margin-top: 4vw;
  }
}
.c-file-block .c-error-text {
  margin-top: 5px;
}
@media screen and (max-width: 750px) {
  .c-file-block .c-error-text {
    margin-top: 1.3333333333vw;
  }
}
.c-file-block ul {
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .c-file-block ul {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 750px) {
  .c-file-block ul li {
    margin-top: 1.3333333333vw;
  }
}

.c-form-file {
  font-size: 16px;
  background-color: #DCDEEA;
  border: 1px solid #BFC4DD;
  border-radius: 3px;
  margin-right: 15px;
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .c-form-file {
    width: 33.3333333333vw;
    height: 9.3333333333vw;
    border-radius: 0.8vw;
    margin-right: 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.c-form-file input[type=file],
.c-form-file .filename,
.c-form-file .filedata {
  width: 0;
  height: 0;
}

.c-file-clear-btn {
  content: "";
  display: none;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  background-image: url("/assets/img/contact/clear-icon.png");
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .c-file-clear-btn {
    width: 8vw;
    height: 8vw;
    margin-left: 4vw;
  }
}

.c-form-note,
.c-form-annotation {
  display: block;
  font-size: 13px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .c-form-note,
.c-form-annotation {
    font-size: 3.2vw;
  }
}

.c-error-text {
  display: none;
}

.c-error-box .c-form-input,
.c-error-box .c-form-textarea,
.c-error-box .c-form-select {
  border: #F00C0C 1px solid;
  background-color: #FCEDED;
}
.c-error-box .c-form-note {
  color: #F00C0C;
}
.c-error-box .c-error-text {
  display: block;
  color: #F00C0C;
  font-size: 13px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .c-error-box .c-error-text {
    font-size: 3.2vw;
  }
}

/*---共通ボタン---*/
.c-form-btn {
  cursor: pointer;
  width: 340px;
  height: 80px;
  margin-inline: auto;
  border-radius: 15px;
  position: relative;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .c-form-btn {
    top: 5%;
    width: 76vw;
    height: 16vw;
    border-radius: 2.6666666667vw;
    margin-top: 8vw;
    font-size: 3.4666666667vw;
  }
}
.c-form-btn .c-form-btn-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 750px) {
  .c-form-btn .c-form-btn-icon {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    right: 3.4666666667vw;
  }
}

.c-return-btn {
  margin-top: 20px;
  text-align: center;
  display: block;
  margin-inline: auto;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .c-return-btn {
    margin-top: 5.3333333333vw;
  }
}

/*---確認ボタン---*/
.c-confirmation {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .c-confirmation {
    margin-top: 13.3333333333vw;
  }
}
.c-confirmation .c-confirmation-text {
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .c-confirmation .c-confirmation-text {
    text-align: left;
    font-size: 3.2vw;
  }
}
.c-confirmation .c-confirmation-checkbox {
  margin-top: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .c-confirmation .c-confirmation-checkbox {
    margin-top: 4vw;
    justify-content: flex-start;
  }
}
.c-confirmation .c-confirmation-checkbox input[type=checkbox] {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  margin-right: 10px;
  border: 2px solid var(--border-blue);
}
@media screen and (max-width: 750px) {
  .c-confirmation .c-confirmation-checkbox input[type=checkbox] {
    width: 6.1333333333vw;
    height: 6.1333333333vw;
    border-radius: 1.0666666667vw;
    margin-right: 1.8666666667vw;
  }
}
.c-confirmation .c-confirmation-checkbox input[type=checkbox]:checked {
  border: 2px solid var(--main-blue);
  background-color: var(--main-blue);
}
.c-confirmation .c-confirmation-checkbox input[type=checkbox]:checked:before {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%) rotate(50deg);
  width: 5px;
  height: 11px;
  border-right-width: 3px;
  border-bottom-width: 3px;
  border-right-color: #fff;
  border-right-style: solid;
  border-bottom-color: #fff;
  border-bottom-style: solid;
  content: "";
}
@media screen and (max-width: 750px) {
  .c-confirmation .c-confirmation-checkbox input[type=checkbox]:checked:before {
    top: 5%;
    width: 1.3333333333vw;
    height: 2.9333333333vw;
    border-right-width: 0.5333333333vw;
    border-bottom-width: 0.5333333333vw;
  }
}
.c-confirmation .c-confirmation-btn {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .c-confirmation .c-confirmation-btn {
    margin-top: 8vw;
  }
}
.c-confirmation .c-confirmation-btn .c-form-btn {
  pointer-events: none;
  opacity: 0.3;
}
.c-confirmation .c-confirmation-checkbox:has(:checked) ~ .c-confirmation-btn .c-form-btn {
  opacity: 1;
  pointer-events: visible;
}
.c-confirmation .c-error-text {
  width: 380px;
  margin-top: 8px;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .c-confirmation .c-error-text {
    margin-top: 2vw;
    width: 100%;
  }
}

/*---送信ボタン---*/
.c-send-btn {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .c-send-btn {
    margin-top: 16vw;
  }
}

/*----確認ページ----*/
.c-conf {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .c-conf {
    margin-top: 10.6666666667vw;
  }
}
.c-conf dl {
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-blue);
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 750px) {
  .c-conf dl {
    margin-top: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
    gap: 2.6666666667vw;
    flex-direction: column;
  }
}
.c-conf dt {
  width: 200px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .c-conf dt {
    width: 100%;
  }
}
.c-conf dd {
  margin-left: 100px;
  flex: 1;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .c-conf dd {
    margin-left: 0;
  }
}

/*---送信後ページ---*/
.c-done-text {
  text-align: center;
  margin-top: 80px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .c-done-text {
    margin-top: 10.6666666667vw;
    text-align: left;
  }
}

.c-done-btn {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .c-done-btn {
    margin-top: 10.6666666667vw;
  }
}

.c-pageTitle {
  background: linear-gradient(60deg, rgb(43, 30, 198) 0%, rgb(74, 108, 255) 100%);
  padding: 100px 0 100px 130px;
}
@media screen and (max-width: 750px) {
  .c-pageTitle {
    padding-left: 5.3333333333vw;
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
}
.c-pageTitle .c-pageTitle-text {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .c-pageTitle .c-pageTitle-text {
    font-size: 8vw;
  }
}

.c-sectionTitle {
  font-weight: bold;
  font-size: 30px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .c-sectionTitle {
    font-size: 5.8666666667vw;
    padding-left: 3.4666666667vw;
  }
}
.c-sectionTitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 32px;
  margin-right: 15px;
  background-color: var(--main-blue);
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 750px) {
  .c-sectionTitle:before {
    margin-right: 2.6666666667vw;
    width: 0.8vw;
    height: 6.1333333333vw;
    top: 1.8666666667vw;
  }
}
.c-sectionTitle .mulish {
  font-size: 34px;
  font-weight: 800;
}
@media screen and (max-width: 750px) {
  .c-sectionTitle .mulish {
    font-size: 6.6666666667vw;
  }
}

/*---modal---*/
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.45);
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.c-modal.is-show {
  opacity: 1;
  visibility: visible;
}
.c-modal .c-modal-wrap {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 1070px;
  padding: 75px 85px;
}
@media screen and (max-width: 750px) {
  .c-modal .c-modal-wrap {
    width: 89.3333333333vw;
    padding-top: 14.6666666667vw;
    padding-left: 6.6666666667vw;
    padding-right: 5.3333333333vw;
    padding-bottom: 10.6666666667vw;
  }
}
.c-modal .c-modal-close {
  position: absolute;
  cursor: pointer;
  top: 25px;
  right: 25px;
  border-radius: 50%;
  background-color: var(--bg-gray);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .c-modal .c-modal-close {
    width: 8vw;
    height: 8vw;
    top: 3.2vw;
    right: 3.2vw;
  }
}
.c-modal .c-modal-close span {
  position: absolute;
  width: 17px;
  height: 2px;
  background-color: #9397A5;
  transform: rotate(45deg);
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .c-modal .c-modal-close span {
    width: 3.4666666667vw;
    height: 0.5333333333vw;
  }
}
.c-modal .c-modal-close span:last-child {
  transform: rotate(-45deg);
}

.c-news .c-news-list:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .c-news .c-news-list:not(:first-child) {
    margin-top: 5.3333333333vw;
  }
}
.c-news .c-news-list:not(:last-child) {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-blue);
}
@media screen and (max-width: 750px) {
  .c-news .c-news-list:not(:last-child) {
    padding-bottom: 5.3333333333vw;
  }
}
.c-news .c-news-list-link {
  display: flex;
  align-items: baseline;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .c-news .c-news-list-link {
    flex-wrap: wrap;
  }
}
.c-news .c-news-data {
  color: #9397A5;
  width: 85px;
}
@media screen and (max-width: 750px) {
  .c-news .c-news-data {
    width: 22.6666666667vw;
  }
}
.c-news .c-news-tag {
  width: 110px;
  height: 23px;
  text-align: center;
  font-size: 12px;
  color: var(--main-blue);
  background-color: #E8EDFC;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 25px;
}
@media screen and (max-width: 750px) {
  .c-news .c-news-tag {
    width: 25.8666666667vw;
    height: 5.3333333333vw;
    font-size: 2.9333333333vw;
    border-radius: 0.8vw;
    margin-left: 3.3333333333vw;
  }
}
.c-news .c-news-text {
  font-size: 14px;
  line-height: 1.75;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding-bottom: 5px;
  margin-left: 25px;
  transition: color 0.3s ease;
  text-box: trim-start text;
}
@media screen and (max-width: 750px) {
  .c-news .c-news-text {
    font-size: 3.4666666667vw;
    margin-top: 3.3333333333vw;
    padding-bottom: 0;
    width: 100%;
    flex: auto;
    margin-left: 0;
  }
}
.c-news.colorWhite .c-news-data {
  color: #fff;
}
.c-news.colorWhite .c-news-tag {
  color: #fff;
  background-color: transparent;
  border: 1px solid #FFFFFF;
}
.c-news.colorWhite .c-news-text {
  color: #fff;
}

.c-pagination {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .c-pagination {
    margin-top: 10.6666666667vw;
  }
}
.c-pagination:not(:has(a)) {
  display: none;
}
.c-pagination .c-pagination-arrowBefore i,
.c-pagination .c-pagination-arrowNext i {
  pointer-events: none;
}
.c-pagination .c-pagination-arrowBefore i:before,
.c-pagination .c-pagination-arrowNext i:before {
  font-size: 18px;
  color: var(--border-blue);
}
@media screen and (max-width: 750px) {
  .c-pagination .c-pagination-arrowBefore i:before,
.c-pagination .c-pagination-arrowNext i:before {
    font-size: 4vw;
  }
}
.c-pagination .c-pagination-arrowBefore.is-active i,
.c-pagination .c-pagination-arrowNext.is-active i {
  pointer-events: visible;
}
.c-pagination .c-pagination-arrowBefore.is-active i:before,
.c-pagination .c-pagination-arrowNext.is-active i:before {
  color: var(--main-blue);
}
.c-pagination .c-pagination-number {
  margin: 0 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 750px) {
  .c-pagination .c-pagination-number {
    margin-left: 4vw;
    margin-right: 4vw;
    gap: 3.3333333333vw;
  }
}
.c-pagination .c-pagination-number-list a, .c-pagination .c-pagination-number-list span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
@media screen and (max-width: 750px) {
  .c-pagination .c-pagination-number-list a, .c-pagination .c-pagination-number-list span {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }
}
.c-pagination .c-pagination-number-list:has(.prev, .next) {
  display: none;
}
.c-pagination .c-pagination-number-list.page-on a, .c-pagination .c-pagination-number-list.page-on span {
  background-color: var(--main-blue);
  color: #fff;
  border: none;
}
@media screen and (min-width: 751px) {
  .c-pagination .c-pagination-number-list:hover a {
    background-color: var(--main-blue);
    color: #fff;
    border: none;
  }
}
.c-pagination .page-numbers.dots {
  border: none;
  width: auto;
  height: auto;
}

/* 全体的な非表示設定（Webkit系: Chrome, Safari, Edge） */
.scroll-container::-webkit-scrollbar {
  display: none;
}

/* Firefox */
.scroll-container {
  scrollbar-width: none; /* スクロールバーを非表示にする */
  -ms-overflow-style: none; /* IE/Edge (旧バージョン) */
}

@media screen and (max-width: 750px) {
  .scroll-wrapper {
    position: relative;
  }
  .scroll-container {
    position: relative;
    overflow: auto;
    width: 89.3333333333vw;
    padding-bottom: 2.6666666667vw;
  }
  .custom-scrollbar-horizontal,
.custom-scrollbar-vertical {
    position: absolute;
    background: #E7EAF8;
    border-radius: 4vw;
  }
  .custom-scrollbar-horizontal {
    height: 2.6666666667vw;
    bottom: -2.6666666667vw;
    left: 0;
    width: 100%;
  }
  .custom-scrollbar-vertical {
    width: 2.6666666667vw;
    top: 0;
    right: -2.6666666667vw;
    height: 100%;
  }
  .custom-thumb {
    background: #B9BED1;
    border-radius: 4vw;
    position: absolute;
    cursor: pointer;
  }
  .custom-thumb-horizontal {
    height: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
  .custom-thumb-vertical {
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 751px) {
  .l-container {
    padding: 120px 0 150px;
  }
}
@media screen and (max-width: 750px) {
  .l-container {
    padding-top: 13.3333333333vw;
    padding-bottom: 26.6666666667vw;
  }
}

@media screen and (max-width: 750px) {
  .l-wSp {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.l-w760 {
  max-width: 760px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .l-w760 {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.l-w900 {
  max-width: 900px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .l-w900 {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.l-w986 {
  max-width: 986px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .l-w986 {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.l-w1070 {
  max-width: 1070px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .l-w1070 {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.l-w1166 {
  max-width: 1166px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .l-w1166 {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.l-w1170 {
  max-width: 1170px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .l-w1170 {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.l-w1220 {
  max-width: 1220px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .l-w1220 {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.l-w1286 {
  max-width: 1286px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .l-w1286 {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}