@charset "UTF-8";
/*
 * # 主要 CSS
 *
 * - `_settings.scss` … 変数、関数を定義
 * - `_base.scss` … 要素セレクターを中心に、フォントや行間など全体で共通するスタイルを定義
 *
 * # ブレークポイント
 * 設計はモバイルファーストとする。
 *
 * - 共通スタイル
 *	- mq-s
 *	- mq-l
 */
@import url("../../../../../https@fonts.googleapis.com/css2@family=Inter_3Aital,opsz,wght_400,14..32,100..900;1,14..32,100..900&family=Montserrat_3Aital,wght_400,10005FA27E051");
/*
 * # ルートフォントサイズを定義
 *
 */
:root {
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  :root {
    font-size: 1rem;
  }
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.08em;
  color: #000;
  margin: 0;
  padding: 0;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 640px) {
  body {
    min-width: 1000px;
    background-color: #E1E5E8;
  }
}
/*
 * # スタイルリセット
 */
ul, ol, dl {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*
 * # リンク定義
 */
a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #000;
}

.no-touch a {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.no-touch a:hover {
  opacity: 0.6;
}

/*
 * # 外部リンク
 */
a[data-rel=external]:after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  background: transparent url("../image/icon-external.png") scroll no-repeat center center;
  background-size: contain;
  margin-right: 0.5em;
}

/*
 * # テキスト
 */
p {
  text-align: justify;
  text-justify: inter-ideograph;
}

/*
 * # 画像
 *
 * 画像はスモールウィンドウではcontainer内で100%で表示
 *
 */
img {
  max-width: 100%;
}

/*
 * #外部ライブラリのスタイル
 */
/*
 * =======================================================================================
 * slick.css
 * =======================================================================================
 */
.slick-list, .slick-slider, .slick-track {
  position: relative;
  display: block;
}

.slick-loading .slick-slide, .slick-loading .slick-track {
  visibility: hidden;
}

.slick-slider {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list, .slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  top: 0;
  left: 0;
}

.slick-track:after, .slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*
 * =======================================================================================
 * slick-theme.css
 * =======================================================================================
 */
.slick-dots, .slick-next, .slick-prev {
  position: absolute;
  display: block;
  padding: 0;
}

.slick-dots li button:before, .slick-next:before, .slick-prev:before {
  font-family: slick;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-loading .slick-list {
  background: url(ajax-loader.gif) center center no-repeat #fff;
}

@font-face {
  font-family: slick;
  font-weight: 400;
  font-style: normal;
  src: url(fonts/slick.eot);
  src: url(fonts/slick.eot@#iefix) format("embedded-opentype"), url(fonts/slick.woff) format("woff"), url(fonts/slick.ttf) format("truetype"), url(fonts/slick.svg#slick) format("svg");
}
.slick-next, .slick-prev {
  font-size: 0;
  line-height: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: 0;
  background: 0 0;
}

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
  color: transparent;
  outline: 0;
  background: 0 0;
}

.slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
  opacity: 1;
}

.slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
  opacity: 0.25;
}

.slick-next:before, .slick-prev:before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #fff;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

.slick-next:before, [dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

[dir=rtl] .slick-next:before {
  content: "←";
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  bottom: -25px;
  width: 100%;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}

.slick-dots li button:focus, .slick-dots li button:hover {
  outline: 0;
}

.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: #000;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #000;
}

.slick-dots li {
  margin: 0;
}

.slick-dots li button:before {
  opacity: 1;
  color: #eaeaea;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #c1a975;
}

/*
 * =======================================================================================
 * colorbox.css
 * =======================================================================================
 */
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
}

#colorbox {
  outline: 0;
}

#cboxContent {
  margin-top: 32px;
  overflow: visible;
  background: #000;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  background: #000;
  padding: 1px;
}

#cboxLoadingGraphic {
  background: url(images/loading.gif) no-repeat center center;
}

#cboxLoadingOverlay {
  background: #000;
}

#cboxTitle {
  position: absolute;
  top: -22px;
  left: 0;
  color: #000;
}

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -20px;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

/*
	User Style:の上書き
*/
#cboxOverlay {
  background: #000;
}

#cboxContent {
  background: #fff;
}

#cboxLoadedContent {
  background: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
}

#cboxLoadingOverlay {
  background: #fff;
}

#cboxIframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

#cboxClose {
  background: transparent url("../image/cbox-close-black.png") scroll no-repeat center center;
  background-size: 100% auto;
  width: 32px;
  height: 32px;
  top: -56px;
  right: 20px;
}

@media (min-width: 640px) {
  #cboxClose {
    width: 44px;
    height: 44px;
    top: -66px;
  }
}
/*
 * # ユーティリティークラス
 *
 * - メディアクエリ判別クラス
 * - 削除クラス
 * - 赤字クラス
 *
 */
.u-mediaquery {
  display: none;
  font-family: "mobile";
}

@media (min-width: 640px) {
  .u-mediaquery {
    font-family: "desktop";
  }
}
.u-hidden {
  display: none;
}

.u-hidden-s {
  display: none;
}

@media (min-width: 640px) {
  .u-hidden-s {
    display: block;
  }
  br.u-hidden-s {
    display: inline;
  }
  .u-hidden-l {
    display: none;
  }
}
@media (min-width: 1600px) {
  .u-hidden-l {
    display: block;
  }
  br.u-hidden-l {
    display: inline;
  }
  .u-hidden-xl {
    display: none;
  }
  br.u-hidden-xl {
    display: none;
  }
}
@media (max-width: 768px) {
  .u-hidden-sp {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .u-hidden-pc {
    display: none !important;
  }
}
.u-red {
  color: #f33 !important;
}
.u-red--bold {
  font-weight: bold;
}

.u-gray {
  color: rgb(167, 167, 167) !important;
}
.u-gray--bold {
  font-weight: bold;
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-left {
  text-align: left;
}

.u-ib {
  display: inline-block;
}

.u-small {
  font-size: 0.8em;
}

.u-double {
  position: relative;
}
.u-double::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  top: 30%;
}

.u-underline {
  text-decoration: underline;
}

.u-indent-important {
  text-indent: -4.4em;
  padding-left: 4.1em;
}

@media (min-width: 640px) {
  .u-indent-important {
    text-indent: -4.5em;
    padding-left: 4.1em;
  }
}
.u-indent {
  text-indent: -1.2em !important;
  padding-left: 1.2em !important;
}

.mt-none {
  margin-top: 0 !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

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

/*
 * =====================================================================================================
 * # レイアウト
 *
 * 命名は`.l-` で開始する
 * 幅に関する定義を記述
 * =====================================================================================================*
 */
/*
 * =====================================================================================================
 * .l-page
 * =====================================================================================================*
 */
.l-page {
  position: relative;
  padding-top: 60px;
}

@media (min-width: 640px) {
  .l-page {
    position: relative;
    padding-top: 170px;
  }
  .l-page::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 170px;
    top: 0;
    background-color: #fff;
  }
}
/*
 * =====================================================================================================
 * .l-frame
 * =====================================================================================================*
 */
.l-frame {
  width: 87.5%;
  margin: 0 auto;
  position: relative;
}

.l-frame--max {
  max-width: 1600px;
  margin: 0 auto;
}

.l-frame--full,
.l-frame--global,
.l-frame--global-top {
  width: 100%;
  height: 100%;
}

@media (min-width: 640px) {
  .l-frame {
    width: auto;
    max-width: 1600px;
    margin: 0 auto;
  }
  .l-frame--full {
    width: 100%;
    max-width: none;
  }
  .l-frame--large {
    width: 90%;
    max-width: 1440px;
  }
  .l-frame--medium {
    width: 80%;
    max-width: 1280px;
  }
  .l-frame--small {
    width: 66%;
    max-width: 1056px;
  }
  .l-frame--container {
    width: 90%;
  }
  .l-frame--container .l-frame--large {
    width: 88.8888888889%;
  }
  .l-frame--container .l-frame--medium {
    width: 82.4074074074%;
  }
  .l-frame--container .l-frame--small {
    width: 73.3333333333%;
  }
  .l-frame--episode {
    margin-top: 0;
  }
}
/*
 * =====================================================================================================
 * .l-col
 * マージンを入れて複数列を作成
 * =====================================================================================================*
 */
@media (min-width: 640px) {
  .l-col {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-col--center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-col--start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .l-col--end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 640px) {
  .l-col2 {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-col2__item {
    width: 46.969697%;
  }
  .l-col3__item {
    width: 30%;
  }
}
@media (min-width: 640px) {
  .ie9 .l-col2__item {
    display: inline-block;
    vertical-align: middle;
  }
}
/*
 * =====================================================================================================
 * .l-half
 * 50%の二分割
 * =====================================================================================================*
 */
@media (min-width: 640px) {
  .l-half {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-half__item {
    width: 50%;
  }
}
/*
* =====================================================================================================
* .l-col4
* =====================================================================================================*
*/
@media (min-width: 640px) {
  .l-col4 {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-col4__item {
    width: 25%;
  }
}
/*
* =====================================================================================================
* 各indexページ メイン画像周り
* =====================================================================================================*
*/
.t-index-hero {
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
  background-color: #d5e9f3;
  padding-top: 26px !important;
}
.t-index-hero::after {
  display: none;
}
.t-index-hero .c-hero__ttl {
  position: relative;
  left: 0;
  margin-left: 6%;
  font-size: 2.7142857143rem;
  letter-spacing: 0.05em;
}
.t-index-hero .c-hero__ttl span {
  display: block;
  font-size: 0.6em;
  margin-bottom: 0;
  margin-top: 0.5em;
}
.t-index-hero .c-hero__shoulder {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}
.t-index-hero .c-hero__shoulder .c-hero__shoulder__en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5714285714rem;
}
.t-index-hero .c-hero__shoulder .c-hero__shoulder__jp {
  border-radius: 20px;
  border: solid 1px #000;
  padding: 2px 6px;
  font-weight: bold;
  font-size: 0.7142857143rem;
  margin-left: 10px;
}
.t-index-hero .c-hero__pic {
  width: 100%;
  height: 100%;
  margin: 16px 0 0;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.t-index-hero .c-hero__pic:before {
  -webkit-filter: blur(20px) brightness(100%);
          filter: blur(20px) brightness(100%);
  position: absolute;
  background: inherit;
  content: "";
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  top: -30px;
  left: -30px;
}
.t-index-hero .c-hero__pic div {
  position: relative;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 250px;
  height: 180px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-position: center;
  background-size: cover;
}
.t-index-hero .c-hero__pic div img {
  width: 100%;
  height: auto;
}

@media (min-width: 640px) {
  .t-index-hero {
    padding-bottom: 0;
    padding-top: 27px !important;
  }
  .t-index-hero .c-hero__ttl {
    position: relative;
    left: 0;
    margin-left: 3.6666666667%;
    font-size: 5.625rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
  }
  .t-index-hero .c-hero__ttl span {
    font-size: 0.6em;
    margin-bottom: 0;
    margin-top: 0.5em;
  }
  .t-index-hero .c-hero__shoulder {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 4.3%;
  }
  .t-index-hero .c-hero__shoulder .c-hero__shoulder__en {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 3.25rem;
    letter-spacing: 0.04em;
  }
  .t-index-hero .c-hero__shoulder .c-hero__shoulder__jp {
    border-radius: 20px;
    border: solid 1px #000;
    padding: 4px 26px;
    font-weight: bold;
    font-size: 1rem;
    margin-left: 12px;
  }
  .t-index-hero .c-hero__pic {
    width: 100%;
    height: 480px;
    max-height: 480px;
    overflow: hidden;
    margin: 36px 0 0;
    display: -ms-grid;
    display: grid;
    place-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
  }
  .t-index-hero .c-hero__pic:before {
    -webkit-filter: blur(25px) brightness(100%);
            filter: blur(25px) brightness(100%);
    position: absolute;
    background: inherit;
    content: "";
  }
  .t-index-hero .c-hero__pic div {
    position: relative;
    overflow: hidden;
    display: -ms-grid;
    display: grid;
    place-content: center;
    width: 680px;
    height: 480px;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-position: center;
    background-size: cover;
  }
  .t-index-hero .c-hero__pic .c-hero__pic__l {
    position: relative;
    overflow: hidden;
    display: -ms-grid;
    display: grid;
    place-content: center;
    width: 1090px;
    height: 480px;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-position: center;
    background-size: cover;
  }
}
/*
* =====================================================================================================
* 各ページ タイトルアニメーション
* =====================================================================================================*
*/
.c-hero__shoulder {
  overflow: hidden;
}
.c-hero__shoulder .c-hero__shoulder__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.c-hero__shoulder .c-hero__shoulder__en .c-hero__shoulder__en-text {
  -webkit-animation-name: heroShoulderAnime;
          animation-name: heroShoulderAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
@-webkit-keyframes heroShoulderAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes heroShoulderAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-hero__shoulder .c-hero__shoulder__jp {
  -webkit-animation-name: heroShoulderTextAnime;
          animation-name: heroShoulderTextAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  opacity: 0;
}
@-webkit-keyframes heroShoulderTextAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes heroShoulderTextAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.c-hero__ttl {
  -webkit-animation-name: heroTtlAnime;
          animation-name: heroTtlAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
}
.c-hero__ttl span {
  -webkit-animation-name: heroTtlSpanAnime;
          animation-name: heroTtlSpanAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  opacity: 0;
}

@-webkit-keyframes heroTtlAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroTtlAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes heroTtlSpanAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes heroTtlSpanAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*
 * # コンポーネント
 *
 *
 */
/*
 * =====================================================================================================
 * .c-section
 * =====================================================================================================*
 */
.c-section {
  margin: 2rem auto;
}

@media (min-width: 640px) {
  .c-section {
    margin: 5rem auto;
  }
  .c-section__2l {
    margin-top: 10rem;
  }
  .c-section__woman {
    margin: 4rem auto;
  }
}
/*
 * =====================================================================================================
 * 背景色
 * =====================================================================================================*
 */
.c-bg-color {
  background-color: #F0F4F7;
}

/*
 * =====================================================================================================
 * .c-container
 * =====================================================================================================*
 */
.c-container {
  padding: 1px 0 1px;
  margin: 2rem auto;
}

.c-container--index {
  padding: 1px 0 1rem;
  background-color: transparent;
  margin: 0 auto -1rem;
  position: relative;
  z-index: 0;
}

.c-container--index-extra {
  padding-top: 1rem;
}

.c-container--index .c-breadcrumb {
  margin-top: 4rem;
}

@media (min-width: 640px) {
  .c-container {
    margin: 5rem auto;
  }
  .c-container--index {
    padding: 1rem 0 1rem;
    margin: 0 auto -1rem;
  }
  .c-container--index-extra {
    margin-top: 0rem;
    padding-top: 0rem;
  }
  .c-container--index .c-breadcrumb {
    margin-top: 6rem;
  }
}
/*
 * =====================================================================================================
 * タイポグラフィー
 * =====================================================================================================*
 */
.c-h1 {
  color: #fff;
  font-weight: normal;
  display: inline-block;
  width: 100%;
  font-size: 1.5714285714rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 40px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  letter-spacing: 0.15em;
  text-align: center;
}
.c-h1 span {
  font-size: 1.4285714286rem;
}
.c-h1 small {
  font-size: 0.7857142857rem;
}

.c-h2 {
  color: #008AD5;
  text-align: center;
  line-height: 1.5;
  font-size: 1.1428571429rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  margin: 1.5em 0 10px;
  letter-spacing: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-h3 {
  position: relative;
  font-size: 1.7142857143rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.06em;
  margin-top: 2em;
  line-height: 1.2916666667;
  padding-bottom: 0.4em;
}
.c-h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0.2em;
}

.c-h4 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.15em;
  color: #0E9BE8;
}

.c-h5 {
  margin-top: 2rem;
  font-weight: normal;
}

.c-h6 {
  margin-top: 0.875rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}

.c-p {
  line-height: 2;
  margin-top: 1em;
  letter-spacing: 0;
}
.c-p em {
  font-style: normal;
  border-bottom: 2px solid #E60000;
}

.c-p--break {
  word-break: break-all;
}

.c-p--indent {
  padding-left: 1.6em;
  text-indent: -1.5em;
  line-height: 2;
}

/* 「※1 」 */
.c-p--indent2 {
  padding-left: 2.2em;
  text-indent: -2.2em;
  line-height: 2;
}

/* 「ア. 」 */
.c-p--indent3 {
  padding-left: 1.9em;
  text-indent: -1.9em;
  line-height: 2;
}

.c-sub {
  margin-top: 1em;
  line-height: 2;
  font-size: 0.8571428571rem;
}

.c-sub p {
  text-indent: -1em;
  padding-left: 1em;
}

.c-p--indent2 p{
  text-indent: -2em;
  padding-left: 2em;
}

.c-sub--circle p {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.gray {
  background: rgb(247, 247, 247);
  padding: 0.5em;
}

em.c-em {
  font-style: normal;
  border-bottom: 2px solid #E60000;
}

.c-h--blue {
  color: #0B1B8F !important;
}

.c-note {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-left: 1.1em;
  text-indent: -1.1em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 1.1428571429rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: red;
}

.c-note_no-indent {
  padding-left: 0em;
  text-indent: 0em;
}

.c-small {
  display: inline-block;
  padding-top: 1em;
  font-size: 0.7142857143rem;
}

@media (min-width: 640px) {
  .c-h1 {
    font-size: 3rem;
    margin-left: 0;
    position: relative;
  }
  .c-h1 span {
    font-size: 2.625rem;
  }
  .c-h1 small {
    font-size: 1.125rem;
  }
  .c-h1--s {
    letter-spacing: 0.1em;
  }
  .c-h2 {
    font-size: 1.5rem;
    margin: 5rem 0 0;
  }
  .c-h3 {
    font-size: 2.25rem;
    margin-top: 5rem;
    line-height: 1.3611111111;
    padding-bottom: 0.325em;
  }
  .c-h3__extra {
    margin-top: 0;
  }
  .c-h4 {
    font-size: 1.375rem;
  }
  .c-p {
    margin-top: 1.5em;
    line-height: 1.875;
  }
  .c-sub {
    font-size: 0.875rem;
  }
  .c-note {
    letter-spacing: 0.12em;
    font-size: 1.375rem;
  }
  .c-center {
    text-align: center;
  }
}
/*
 * =====================================================================================================
 * リスト
 * =====================================================================================================*
 */
.c-ul__item {
  list-style-type: disc;
}

.c-ol__item {
  list-style-type: decimal;
}

.c-ol--kana .c-ol__item {
  list-style-type: katakana;
}

.c-ol--number .c-ol__item {
  list-style-type: decimal;
}

.c-ol--circle .c-ol__item {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em;
}

.c-ol--circle .c-ol__item span {
  position: absolute;
  left: 0;
  margin: 0;
}

.c-ul, .c-ol {
  padding-left: 1.5em;
  line-height: 2;
}
.c-ul .c-ul, .c-ol .c-ul {
  font-size: 0.875rem;
  padding-left: 2.5em;
}
.c-ul .c-ul .c-ul__item, .c-ol .c-ul .c-ul__item {
  list-style-type: circle;
}
.c-ul .c-ul .c-ul, .c-ol .c-ul .c-ul {
  font-size: 0.8125rem;
  padding-left: 2em;
}
.c-ul .c-ul .c-ul .c-ul__item, .c-ol .c-ul .c-ul .c-ul__item {
  list-style-type: disc;
}

.c-ul--indent {
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 2;
}
.c-ul--indent .c-ul__item {
  list-style-type: none;
}

.c-ul--important {
  padding-left: 2.4em;
  text-indent: -2.4em;
  line-height: 2;
}
.c-ul--important .c-ul__item {
  list-style-type: none;
}

.c-ol--kana {
  padding-left: 2em;
}

.c-ol--circle {
  position: relative;
  margin: 0;
  padding: 0;
}

/*
 * =====================================================================================================
 * .c-btn
 * =====================================================================================================*
 */
.c-btn {
  -js-display: inline-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 1em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
.c-btn a {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
  padding: 1.5em 6em 1.5em 2em;
  color: #000;
  text-decoration: none;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  width: 100%;
  border-top: 1px solid #2bb0d6;
  border-bottom: 1px solid #2bb0d6;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  background-color: #fff;
}
.c-btn a:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1em;
  top: calc(50% - 13px);
  width: 25px;
  height: 25px;
  background: transparent url("../image/icon-arrow.svg") scroll no-repeat center center;
  background-size: cover;
}

.c-btn-2l {
  -js-display: block;
  display: block;
}
.c-btn-2l a {
  -js-display: block;
  display: block;
}

.c-btn__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn__middle span {
  display: inline-block;
  margin-top: 0.5em;
  font-size: 0.8571428571rem;
}

.c-btn__middle-2l {
  display: block;
}
.c-btn__middle-2l span {
  display: inline-block;
  margin-top: 0.5em;
  color: #f33;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .c-btn {
    font-size: 1.125rem;
    min-height: 110px;
  }
  .c-btn a {
    padding: 1em 6em 1em 2em;
    min-height: 110px;
  }
  .c-btn__middle span {
    display: inline-block;
    margin-top: 0;
    font-size: 0.875rem;
  }
  .c-btn__middle-2l span {
    display: inline-block;
    margin-top: 0;
    font-size: 1.125rem;
  }
}
.c-btn--s {
  width: 100%;
  font-size: 0.875rem;
  min-height: auto;
}
.c-btn--s a {
  padding: 1.3em;
  padding-right: 4em;
  display: table;
}
.c-btn--s a[data-rel=external]:after {
  display: table-cell;
}

.c-btn--b {
  background-color: #0D20A4;
}
.c-btn--b a:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1em;
  top: 50%;
  width: 25px;
  height: 25px;
  margin-top: -13px;
  background: transparent url("../image/icon-btn-l.png") scroll no-repeat center center;
  background-size: 100% auto;
}

.c-btn--s-down a:before {
  width: 10px;
  height: 12px;
  margin-top: 6px;
  background-image: url("../image/icon-down.png");
  background-size: contain;
}

.l-col2__item .c-btn--s {
  width: 100%;
}
.l-col2__item .c-btn--s a {
  width: 100%;
}

@media (min-width: 640px) {
  .c-btn--s {
    width: 44.1919191919%;
    display: inline-block;
  }
  .c-btn--s a {
    width: 100%;
    padding-right: 3.5em;
    min-height: auto;
  }
  .c-btn--l {
    font-size: 1.75rem;
  }
}
.c-btn--movie a {
  padding-right: 3.5em;
}
.c-btn--movie a:before {
  background-image: url("../image/icon-movie-black.png");
}

.c-btn--pdf a {
  padding-right: 3.5em;
}
.c-btn--pdf a:after {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: -3px;
  margin-left: 0.5em;
  background-image: url("../image/icon-pdf.png");
  display: inline-block;
  background-size: 100% auto;
}

.c-btn--disable a {
  pointer-events: none;
}

.c-btn--comingsoon {
  position: relative;
}
.c-btn--comingsoon:before, .c-btn--comingsoon:after {
  content: "";
  position: absolute;
}
.c-btn--comingsoon:before {
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
  opacity: 0.8;
  z-index: 99;
}
.c-btn--comingsoon:after {
  width: 100%;
  text-align: center;
  left: 0;
  content: "Coming Soon";
  color: #000;
  z-index: 99;
  top: 50%;
  margin-top: -0.7em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  font-size: 1.125rem;
}

.c-btn--comingsoon_w:before {
  background-color: transparent;
}
.c-btn--comingsoon_w a {
  opacity: 0.2;
}

.c-btn--comingsoon_top {
  position: relative;
  pointer-events: none;
}
.c-btn--comingsoon_top:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.8;
  z-index: 1;
  top: 0;
  left: 0;
  border-radius: 8px;
}
.c-btn--comingsoon_top:after {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  content: "Coming Soon";
  color: #054BD1;
  z-index: 99;
  top: 50%;
  margin-top: -0.7em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: bold;
  font-size: 0.8rem;
}

.c-btn--comingsoon__footer {
  position: relative;
}
.c-btn--comingsoon__footer:before, .c-btn--comingsoon__footer:after {
  content: "";
  position: absolute;
}
.c-btn--comingsoon__footer:before {
  width: 90%;
  height: 100%;
  background-color: #eaeaeb;
  opacity: 0.9;
  z-index: 100;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.c-btn--comingsoon__footer:after {
  width: 100%;
  text-align: center;
  left: 0;
  content: "Coming Soon";
  color: #000;
  z-index: 99;
  top: 50%;
  margin-top: -0.7em;
  letter-spacing: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  font-size: 0.75rem;
  font-weight: 600;
}

.c-btn--center a {
  padding: 1em 2em 1em 2em;
}

.c-btn--center a span {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.ie9 .c-btn--center a {
  -js-display: inline-flex;
  vertical-align: middle;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ie9 .c-btn--center a span {
  display: block;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .ie9 .c-btn {
    min-height: 0;
  }
  .ie9 .c-btn a {
    display: inline-block;
    height: 100%;
    min-height: 0;
    padding: 2em;
  }
  .ie9 .c-btn--s {
    height: auto;
  }
  .ie9 .c-btn--s a {
    -js-display: inline-flex;
    vertical-align: middle;
    padding: 1em;
  }
  .ie9 .c-btn--s a span {
    display: table-cell;
    vertical-align: middle;
  }
  .ie9 .c-btn span {
    display: inline-block;
    height: 100%;
  }
  .ie9 .c-btn--s a[data-rel=external]:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 3em;
  }
  .c-btn--comingsoon__footer:before {
    width: 100%;
  }
}
.c-btn-trans {
  display: inline-block;
  width: 100%;
}
.c-btn-trans a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 0.8571428571rem;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
}
.c-btn-trans a span {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  will-change: width, border-radius, background-color;
}
.c-btn-trans a span::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 7px;
  left: auto;
  width: 3px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  will-change: background-color;
}
.c-btn-trans a span::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 7px;
  left: auto;
  width: 3px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  will-change: background-color;
}
.c-btn-trans a em {
  font-style: normal;
  font-family: "Open Sans", sans-serif;
  font-size: 0.8571428571rem;
}
.c-btn-trans a:hover {
  opacity: 0.9;
}

.c-btn-trans--white a span {
  border: 1px solid #ffffff;
}
.c-btn-trans--white a span::before {
  background-color: #ffffff;
}
.c-btn-trans--white a span::after {
  background-color: #ffffff;
}
.c-btn-trans--white a em {
  color: #ffffff;
}

.c-btn-trans-only {
  pointer-events: none;
}
.c-btn-trans-only span {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 0;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  will-change: width, border-radius, background-color;
}
.c-btn-trans-only span::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 7px;
  left: auto;
  width: 3px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  will-change: background-color;
}
.c-btn-trans-only span::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 7px;
  left: auto;
  width: 3px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  will-change: background-color;
}
.c-btn-trans-only em {
  display: inline-block;
  padding-left: 8px;
  font-style: normal;
  font-family: "Open Sans", sans-serif;
  font-size: 0.8571428571rem;
}

@media (min-width: 640px) {
  .c-btn-trans a {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 0.8571428571rem;
    font-family: "Open Sans", sans-serif;
  }
  .c-btn-trans a:hover {
    opacity: 0.7;
  }
  .c-btn-trans-only span {
    width: 25px;
    height: 25px;
  }
  .c-btn-trans-only span::before {
    top: 10px;
    right: 9px;
    width: 4px;
  }
  .c-btn-trans-only span::after {
    top: 13px;
    right: 9px;
    width: 4px;
  }
  .c-btn-trans-only em {
    font-size: 1rem;
  }
  .c-btn-trans-only:hover {
    opacity: 0.7;
  }
}
/*
 * =====================================================================================================
 * .c-table
 * =====================================================================================================*
 */
.c-table {
  border-collapse: collapse;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  font-size: 0.6428571429rem;
  line-height: 2;
}
.c-table th, .c-table td {
  border-bottom: 1px solid #2bb0d6;
  padding: 1em;
}
.c-table th table th,
.c-table th table td, .c-table td table th,
.c-table td table td {
  border-style: none;
  padding: 0;
  background-color: transparent;
  vertical-align: middle;
}
.c-table tr:last-of-type th {
  border-bottom: none;
}
.c-table tr th.border-bottom {
  border-bottom: #2bb0d6 1px solid;
}
.c-table tr:last-of-type td {
  border-bottom: none;
}
.c-table .bb_none {
  border-bottom: none;
}
.c-table tr th:last-of-type {
  border-right: none;
}
.c-table th {
  background-color: #2bb0d6;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 1em 0.55em;
}
.c-table th.u-center {
  text-align: center;
}
.c-table th.u-left {
  text-align: left;
}
.c-table .c-table__vam {
  vertical-align: middle;
}
.c-table .c-table__left {
  border-left: none;
}
.c-table td {
  border-left: 1px solid #2bb0d6;
  color: #000;
  background-color: #fff;
}
.c-table td em {
  font-style: normal;
  border-bottom: 2px solid #E60000;
}
.c-table .c-table__w0 {
  width: 0%;
}
.c-table .c-table__w5 {
  width: 5%;
}
.c-table .c-table__w10 {
  width: 10%;
}
.c-table .c-table__w15 {
  width: 15%;
}
.c-table .c-table__w20 {
  width: 20%;
}
.c-table .c-table__w25 {
  width: 25%;
}
.c-table .c-table__w30 {
  width: 30%;
}
.c-table .c-table__w35 {
  width: 35%;
}
.c-table .c-table__w40 {
  width: 40%;
}
.c-table .c-table__w45 {
  width: 45%;
}
.c-table .c-table__w50 {
  width: 50%;
}
.c-table .c-table__w55 {
  width: 55%;
}
.c-table .c-table__w60 {
  width: 60%;
}
.c-table .c-table__w65 {
  width: 65%;
}
.c-table .c-table__w70 {
  width: 70%;
}
.c-table .c-table__w75 {
  width: 75%;
}
.c-table .c-table__w80 {
  width: 80%;
}
.c-table .c-table__w85 {
  width: 85%;
}
.c-table .c-table__w90 {
  width: 90%;
}
.c-table .c-table__w95 {
  width: 95%;
}
.c-table .c-table__w100 {
  width: 100%;
}
.c-table .c-table__diagonal {
  padding: 0;
  position: relative;
}
.c-table .c-table__diagonal svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-table--thvam th {
  vertical-align: middle;
}

@media (min-width: 640px) {
  .c-table {
    font-size: 0.875rem;
  }
  .c-table th {
    white-space: nowrap;
    width: 1em;
  }
  .c-table__vertical {
    display: inline-block;
    white-space: normal;
    width: 1em;
  }
}
.c-table-swiper {
  overflow: scroll;
  position: relative;
}
.c-table-swiper:before {
  content: "下記の表は横にスワイプできます。";
  color: #f33;
  display: block;
  font-size: 0.7142857143rem;
  position: absolute;
  top: 0;
}

@media (min-width: 640px) {
  .c-table-swiper {
    overflow: auto;
  }
}
th.c-table--white {
  background-color: #ffffff;
  color: #000000;
}

.c-table-swiper th {
  text-align: center;
}

@media print {
  .c-table-swiper {
    position: unset !important;
    width: 100%;
    overflow: visible !important;
  }
  .c-table-swiper:before {
    content: "";
  }
  .ie .c-table-swiper .c-table,
  .ie9 .c-table-swiper .c-table {
    border-collapse: separate !important;
    display: table;
    table-layout: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .ie .c-table-swiper .c-table th, .ie .c-table-swiper .c-table td,
  .ie9 .c-table-swiper .c-table th,
  .ie9 .c-table-swiper .c-table td {
    word-wrap: break-word;
    white-space: normal !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/*
 * =====================================================================================================
 * .c-breadcrumb
 * =====================================================================================================*
 */
.c-breadcrumb {
  font-size: 0.7857142857rem;
  padding: 1.5rem 20px 0;
  background-color: #fff;
}

.c-breadcrumb__item {
  display: inline-block;
}
.c-breadcrumb__item:not(:first-child):before {
  content: "/";
  color: #000;
  margin-right: 0.5em;
}
.c-breadcrumb__item span, .c-breadcrumb__item a {
  color: #000;
  text-decoration: none;
}

@media (min-width: 640px) {
  .c-breadcrumb {
    font-size: 0.6875rem;
    padding: 1.5rem 3.25% 0;
  }
}
/*
 * =====================================================================================================
 * .c-hero
 * =====================================================================================================*
*/
.c-hero {
  position: relative;
  padding-top: 40px;
}
.c-hero__title {
  z-index: 1;
  position: absolute;
  top: 48px;
  left: 20px;
}
.c-hero__title-role {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.c-hero__title-role p {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.c-hero__title-role span {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #000000;
  border-radius: 200px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.c-hero__title h1 {
  margin-bottom: 130px;
  font-size: 38px;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.c-hero__title h1 span {
  display: block;
  font-size: 18px;
}
.c-hero__title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.24em;
}
.c-hero__title h2 span {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: inline-block;
  width: auto;
  padding: 6px 6px;
  background-color: #ffffff;
}
.c-hero__title ul {
  display: inline-block;
  padding: 17px 40px 17px 20px;
  background-color: #ffffff;
}
.c-hero__title ul li {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
}
.c-hero__image {
  position: relative;
  margin-top: 30px;
}
.c-hero__image__wrap {
  overflow: hidden;
}
.c-hero__image__wrap img {
  width: 117.666%;
  max-width: none;
  margin-left: -6%;
  height: auto;
}
.c-hero__button {
  position: absolute;
  right: 3.3333333333%;
  bottom: 120px;
}
.c-hero__button a {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 143px;
  height: 143px;
  background-color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
}
.c-hero__button a span {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  line-height: 1;
}
.c-hero__button a p {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.06em;
}
.c-hero__button a img {
  display: block;
  margin-top: 6px;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 640px) {
  .c-hero {
    position: relative;
    padding-top: 40px;
  }
  .c-hero__title {
    z-index: 1;
    position: absolute;
    top: 42px;
    left: 3.6666666667%;
  }
  .c-hero__title-role {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    margin-left: 6px;
  }
  .c-hero__title-role p {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 52px;
    letter-spacing: 0.04em;
    line-height: 1;
  }
  .c-hero__title-role span {
    display: inline-block;
    padding: 8px 26px;
    border: 1px solid #000000;
    border-radius: 200px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1;
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  .c-hero__title h1 {
    margin-bottom: 0.5em;
    font-size: 90px;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
  .c-hero__title h1 span {
    display: block;
    font-size: 36px;
    line-height: 1;
    margin-top: 15px;
  }
  .c-hero__title h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 26px;
    letter-spacing: 0.24em;
    line-height: 1;
  }
  .c-hero__title h2 span {
    -ms-flex-item-align: start;
        align-self: flex-start;
    display: inline-block;
    width: auto;
    padding: 12px 12px;
    background-color: #ffffff;
    letter-spacing: 0.2em;
  }
  .c-hero__title ul {
    display: inline-block;
    padding: 17px 40px 17px 20px;
    background-color: #ffffff;
  }
  .c-hero__title ul li {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
  }
  .c-hero__image {
    position: relative;
    margin-top: -60px;
  }
  .c-hero__image__wrap {
    overflow: hidden;
  }
  .c-hero__image__wrap img {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .c-hero__button {
    position: absolute;
    right: 3.3333333333%;
    bottom: 120px;
  }
  .c-hero__button a {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    width: 143px;
    height: 143px;
    background-color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
  }
  .c-hero__button a span {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    line-height: 1;
  }
  .c-hero__button a p {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.06em;
  }
  .c-hero__button a img {
    display: block;
    margin-top: 6px;
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
/*
 * =====================================================================================================
 * .c-profile
 * =====================================================================================================*
*/
.c-profile {
  z-index: 1;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -20px 20px 0;
  padding: 30px 20px 40px;
  border-radius: 8px;
  background-color: #2BB0D6;
}
.c-profile-head {
  width: 49.8305084746%;
}
.c-profile-head p {
  z-index: 1;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #ffffff;
}
.c-profile-head > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: -4px;
}
.c-profile-details {
  width: 100%;
  padding-top: 30px;
}
.c-profile-details * {
  color: #ffffff;
}
.c-profile-details__lead {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 6px 4px 6px 17px;
  color: #000000;
  background-color: #ffffff;
  border-radius: 200px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.16em;
  line-height: 1;
}
.c-profile-details h3 {
  padding-bottom: 0.5em;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.c-profile-details__position {
  padding-bottom: 16px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0;
}
.c-profile-details__text {
  padding-bottom: 2em;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0;
}
.c-profile-details table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-profile-details table th, .c-profile-details table td {
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.84;
}
.c-profile-details table th {
  width: 68px;
}
.c-profile-details table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (min-width: 640px) {
  .c-profile {
    z-index: 1;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 93.3333333333%;
    margin: -75px auto 0;
    padding: 50px 10% 80px;
    border-radius: 8px;
    background-color: #2BB0D6;
  }
  .c-profile-head {
    width: 36.3636363636%;
  }
  .c-profile-head p {
    z-index: 1;
    position: relative;
    margin-left: -14px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 48px;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #ffffff;
    top: 2px;
    left: -4px;
  }
  .c-profile-head > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: -18px;
  }
  .c-profile-details {
    width: 52.2727272727%;
    padding-top: 26px;
  }
  .c-profile-details * {
    color: #ffffff;
  }
  .c-profile-details__lead {
    display: inline-block;
    margin-bottom: 30px;
    padding: 6px 7px 6px 17px;
    color: #000000;
    background-color: #ffffff;
    border-radius: 200px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.16em;
    line-height: 1;
  }
  .c-profile-details h3 {
    padding-bottom: 0.5em;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0;
  }
  .c-profile-details__position {
    padding-bottom: 2.5em;
    font-size: 13px;
    font-weight: bold;
    line-height: 2;
  }
  .c-profile-details__text {
    padding-bottom: 3.7em;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0;
  }
  .c-profile-details table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-profile-details table th, .c-profile-details table td {
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.84;
  }
  .c-profile-details table th {
    width: 86px;
  }
  .c-profile-details table td {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
/*
 * =====================================================================================================
 * .c-description
 * =====================================================================================================*
 */
/*
 * =====================================================================================================
 * .c-pagenav
 * =====================================================================================================*
 */
.c-pagenav {
  width: 90%;
  margin: 0 auto;
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*
 * =====================================================================================================
 * .c-pdf
 * =====================================================================================================*
 */
.c-pdf {
  margin-top: 4em;
  display: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1em;
}

.c-pdf__text {
  font-size: 0.875rem;
  display: table-cell;
  vertical-align: middle;
  line-height: 2;
}

.c-pdf__btn {
  margin-top: 1em;
  display: table-cell;
  vertical-align: middle;
  padding-left: 2em;
}

@media (min-width: 640px) {
  .c-pdf {
    display: table;
  }
}
/*
* =====================================================================================================
* .c-goto-cat-footer
* =====================================================================================================*
*/
.c-goto-cat-footer {
  position: fixed;
  right: 20px;
  bottom: 60px;
  z-index: 10;
  display: none;
}
.c-goto-cat-footer span {
  display: block;
}

.c-modal-inline {
  display: table-cell;
  background: #fff;
  border: 1px solid #000;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 50%;
  width: 82px;
  height: 82px;
  letter-spacing: 0;
}
.c-modal-inline::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("../image/gnav-cross.svg");
}

.c-goto-cat-footer__en {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.c-goto-cat-footer__jp {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 0.6428571429rem;
}

@media (min-width: 640px) {
  .c-goto-cat-footer {
    right: 3.33%;
    bottom: 3%;
  }
  .c-modal-inline {
    width: 142px;
    height: 142px;
  }
  .c-modal-inline::after {
    width: 15px;
    height: 15px;
  }
  .c-goto-cat-footer__en {
    font-size: 1.5rem;
  }
  .c-goto-cat-footer__jp {
    font-size: 0.8125rem;
  }
}
#colorbox .t-cat-footer-container {
  margin: 0;
  padding: 0 0 1rem;
}
#colorbox .t-cat-footer {
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  #colorbox .t-cat-footer-container {
    margin: 0;
    padding: 1rem 0 2rem;
  }
}
.c-movie {
  width: 90%;
  margin: 0 auto 2rem auto;
}

@media (min-width: 640px) {
  .c-movie {
    width: 240px;
    margin: 0 auto 3rem auto;
  }
}
.c-movie a {
  display: block;
}

.c-movie img {
  width: 100%;
}

.c-movie--text {
  color: #ffffff;
  padding-bottom: 1rem;
  font-size: 14px;
}

[data-inview] {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease 0s, -webkit-transform 0.6s ease 0s;
  transition: opacity 0.4s ease 0s, -webkit-transform 0.6s ease 0s;
  transition: opacity 0.4s ease 0s, transform 0.6s ease 0s;
  transition: opacity 0.4s ease 0s, transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s;
}
[data-inview].js-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*
* =====================================================================================================
* hover アニメーション
* =====================================================================================================*
*/
@media (min-width: 640px) {
  .c-hoverImage__item {
    overflow: hidden;
    display: block;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0.64, 1) 0s;
    transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0.64, 1) 0s;
    transition: transform 0.5s cubic-bezier(0.56, 0, 0.64, 1) 0s;
    transition: transform 0.5s cubic-bezier(0.56, 0, 0.64, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.56, 0, 0.64, 1) 0s;
  }
  .c-hoverImage__item img {
    display: block;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0.64, 1) 0s;
    transition: -webkit-transform 0.5s cubic-bezier(0.56, 0, 0.64, 1) 0s;
    transition: transform 0.5s cubic-bezier(0.56, 0, 0.64, 1) 0s;
    transition: transform 0.5s cubic-bezier(0.56, 0, 0.64, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.56, 0, 0.64, 1) 0s;
  }
  .c-hoverImage a:hover {
    opacity: 1;
  }
  .c-hoverImage a:hover .c-hoverImage__item {
    -webkit-transform: scale(0.98) rotate(0.1deg);
            transform: scale(0.98) rotate(0.1deg);
  }
  .c-hoverImage a:hover img {
    -webkit-transform: scale(1.1) rotate(0.1deg);
            transform: scale(1.1) rotate(0.1deg);
  }
}
.c-hero__txt--center {
  text-align: center;
}

/*
 * =======================================================================================
 * .c-header
 * =======================================================================================
 */
.c-header__wrap {
  position: relative;
}

.c-header {
  width: 100%;
  position: fixed;
  z-index: 100;
  background-color: #fff;
  -webkit-transition: padding 0.4s, -webkit-transform 0.4s;
  transition: padding 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, padding 0.4s;
  transition: transform 0.4s, padding 0.4s, -webkit-transform 0.4s;
  border-bottom: 1px solid #D1D2DB;
}

@media (min-width: 640px) {
  .c-header {
    min-width: 1000px;
    max-width: 1600px;
    top: 0;
  }
}
/*
 * =======================================================================================
 * .c-header__upper
 * =======================================================================================
 */
.c-header__upper {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 8px 3.3333333333%;
  border-bottom: 1px solid #D1D2DB;
}
.c-header__upper p {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1;
}
.c-header__upper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 14px;
  margin-left: auto;
}
.c-header__upper ul li {
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
}
.c-header__upper ul li.u-comingsoon {
  pointer-events: none;
  opacity: 0.2;
}
.c-header__upper ul li:nth-of-type(3) {
  padding-right: 14px;
}
.c-header__upper ul a {
  text-decoration: none;
}
.c-header__upper ul img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 640px) {
  .c-header__upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 8px 3.3333333333%;
    border-bottom: 1px solid #D1D2DB;
  }
  .c-header__upper p {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1;
  }
  .c-header__upper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 14px;
    margin-left: auto;
  }
  .c-header__upper ul li {
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
  }
  .c-header__upper ul li:nth-of-type(3) {
    padding-right: 14px;
  }
  .c-header__upper ul a {
    text-decoration: none;
  }
  .c-header__upper ul img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.c-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
.c-header__inner__logo {
  width: 254px;
}
.c-header__inner__list {
  width: 576px;
  display: none;
}
.c-header__inner__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px 9px;
}
.c-header__inner__list ul a {
  display: inline-block;
  padding: 9px 14px;
  border: 1px solid #D1D2DB;
  border-radius: 200px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}
.c-header__inner__list ul li.is-active a {
  border: none;
  color: #ffffff;
  background-color: #2BB0D6;
}
.c-header__inner__button {
  background-color: #2BB0D6;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.c-header__inner__button:hover {
  opacity: 0.7;
  cursor: pointer;
}
.c-header__inner__button span {
  display: inline-block;
  margin-top: 9px;
  font-size: 6px;
  color: #fff;
}
.c-header__inner__button span::before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  margin: 0 auto 6px;
  background-image: url("../image/header-btn-open.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (min-width: 640px) {
  .c-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 14px 3.3333333333%;
  }
  .c-header__inner__logo {
    width: 254px;
  }
  .c-header__inner__list {
    width: 730px;
    display: block;
  }
  .c-header__inner__list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 7px 9px;
  }
  .c-header__inner__list ul a {
    display: inline-block;
    padding: 9px 14px;
    border: 1px solid #D1D2DB;
    border-radius: 200px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
  }
  .c-header__inner__list ul li.is-active a {
    border: none;
    color: #ffffff;
    background-color: #2BB0D6;
  }
  .c-header__inner__button {
    background-color: #2BB0D6;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .c-header__inner__button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
  .c-header__inner__button span {
    display: inline-block;
    margin-top: 0;
    font-size: 9px;
    color: #fff;
  }
  .c-header__inner__button span::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto 0.5em;
    background-image: url("../image/header-btn-open.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
/*
 * =======================================================================================
 * .c-header__nav-container
 * =======================================================================================
 */
.c-header__nav-container__inner {
  display: none;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media (min-width: 640px) {
  .c-header__nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-header__nav-container__inner {
    display: block;
  }
}
/*
 * =======================================================================================
 * .c-header__menu
 * =======================================================================================
 */
.c-header__menu {
  background-color: #2BB0D6;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.c-header__menu:hover {
  opacity: 0.7;
  cursor: pointer;
}
.c-header__menu div {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.4285714286rem;
  color: #fff;
}
.c-header__menu div::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto 0.5em;
  background-image: url("../image/header-btn-open.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (min-width: 640px) {
  .c-header__menu {
    width: 60px;
    height: 60px;
    border-radius: 6px;
  }
  .c-header__menu div {
    font-size: 0.5625rem;
  }
  .c-header__menu div::before {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 640px) {
  .js-gnav-fix .c-header {
    -webkit-transform: translateY(-38px);
            transform: translateY(-38px);
  }
}
/*
* =======================================================================================
* .c-header-gnav
* =======================================================================================
*/
.c-header-gnav {
  padding: 20px 20px 50px;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 1000;
  height: 100vh;
  width: 100%;
  background-color: #e4e7eb;
  overflow: auto;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
}

.c-header-gnav__inner {
  position: relative;
}

.c-header-gnav__inner__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-header-gnav__inner__wrap .c-header__nav-container {
  margin-top: 0;
}

.c-header-gnav__btn div::before {
  width: 12px;
  height: 12px;
  background-image: url("../image/header-btn-close.svg");
  margin-top: 2px;
}

@media (min-width: 640px) {
  .c-header-gnav {
    padding: 35px 3.25% 80px;
    min-width: 1000px;
    overflow: auto;
  }
  .c-header-gnav__inner__wrap {
    margin-bottom: 30px;
  }
  .c-header-gnav__inner__wrap .c-header__nav-container {
    margin-top: -10px;
  }
  .c-header-gnav__btn div::before {
    width: 14px;
    height: 14px;
    margin-top: 4px;
  }
}
/*
* =======================================================================================
*  .is-gnav-active .c-header-gnav の設定（gnavオープン状態）
* =======================================================================================
*/
.is-gnav-active .c-header-gnav {
  left: 0;
}

/*
 * =====================================================================================================
 * .c-footer
 * =====================================================================================================*
 */
.c-footer {
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FFFFFF;
}
.c-footer a {
  text-decoration: none;
  color: #000;
}

@media (min-width: 640px) {
  .c-footer {
    padding-left: 3.25%;
    padding-right: 3.25%;
    padding-top: 30px;
  }
}
/*
 * =====================================================================================================
 * .c-footer__policy-copy
 * =====================================================================================================*
 */
.c-footer__policy-copy {
  padding: 30px 0 20px;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 0.7857142857rem;
  letter-spacing: 0.04em;
}

@media (min-width: 640px) {
  .c-footer__policy-copy {
    width: 37.1666666667%;
    margin-left: auto;
    padding: 40px 0 62px;
    font-size: 14px;
  }
}
/*
 * =====================================================================================================
 * .c-footer__copy
 * =====================================================================================================*
 */
.c-footer__copy {
  display: inline;
}

/*
 * =====================================================================================================
 * .c-footer__policy
 * =====================================================================================================*
 */
.c-footer__policy {
  display: inline-block;
}
.c-footer__policy::before {
  content: "| ";
}

/*
 * =====================================================================================================
 * .c-footer__rewind
 * =====================================================================================================*
 */
.c-footer__rewind {
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  bottom: 20px;
  right: 6.25%;
}

@media (min-width: 640px) {
  .c-footer__rewind {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 3.25%;
  }
}
/*
 * =====================================================================================================
 * .c-gnav
 * =====================================================================================================*
 */
.c-gnav {
  padding-top: 20px;
  color: #000;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-gnav a {
  text-decoration: none;
  color: #000;
}
.c-gnav .c-gnav__nav {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.c-gnav .c-gnav__block {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}
.c-gnav .c-gnav__keishicho {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media (max-width: 640px) {
  .c-gnav__nav {
    width: 100%;
  }
}
@media (min-width: 640px) {
  .c-gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 3.5714285714%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .c-gnav .c-gnav__nav {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .c-gnav .c-gnav__block {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 35.1851851852%;
  }
  .c-gnav__block {
    width: 35.1851851852%;
  }
}
/*
 * =====================================================================================================
 * .c-gnav__btns
 * =====================================================================================================*
 */
.c-gnav__btns {
  margin-bottom: 20px;
}

.c-gnav__btns__item {
  margin-bottom: 10px;
}
.c-gnav__btns__item a {
  display: block;
  padding: 1.1em 0 1.1em calc(24px + 2em);
  background-color: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 200px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0;
  position: relative;
}
.c-gnav__btns__item a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent none scroll no-repeat center center;
  background-size: 100% auto;
}
.c-gnav__btns__item.c-btn--comingsoon_w:before {
  border-radius: 100px;
}

.c-gnav__btns__item--download a {
  border-color: #3159b5;
  color: #3059B5;
}

.c-gnav__btns__item--entry a {
  border-color: #E0652E;
  color: #E0652E;
}

.c-gnav__btns__item--event a {
  border-color: #EDBE13;
  color: #EDBE13;
}

.c-gnav__btns__item--line a {
  border-color: #21BF23;
  color: #21BF23;
}

.c-gnav__btns__item--x a {
  border-color: #000000;
  color: #000000;
}

.c-gnav__btns__item--instagram a {
  border-color: #ff47a7;
  color: #ff47a7;
}

.c-gnav__btns__item--webseminar a {
  border-color: #A89574;
  color: #A89574;
}

.c-gnav__btns__item--pamphlet a {
  border-color: #0E8CD9;
  color: #3059B5;
}

.c-gnav__btns__item--mypage a {
  border-color: #EB8952;
  color: #EB8952;
}

.c-gnav__btns__item--download a:after {
  background-image: url("../image/gnav-download.svg");
}

.c-gnav__btns__item--entry a:after {
  background-image: url("../image/gnav-entry.svg");
}

.c-gnav__btns__item--event a:after {
  background-image: url("../image/gnav-event.svg");
}

.c-gnav__btns__item--line a:after {
  background-image: url("../image/gnav-line.svg");
}

.c-gnav__btns__item--x a:after {
  background-image: url("../image/gnav-x.svg");
}

.c-gnav__btns__item--instagram a:after {
  background-image: url("../image/gnav-instagram.png");
}

.c-gnav__btns__item--webseminar a:after {
  background-image: url("../image/gnav-webseminar.svg");
}

.c-gnav__btns__item--pamphlet a:after {
  background-image: url("../image/gnav-pamphlet.svg");
}

.c-gnav__btns__item--mypage a:after {
  background-image: url("../image/gnav-mypage.svg");
}

.c-btn--comingsoon_w {
  position: relative;
  pointer-events: none;
}
.c-btn--comingsoon_w:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
  opacity: 0.8;
  z-index: 1;
}
.c-btn--comingsoon_w:after {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  content: "Coming Soon";
  color: #0E9BE8;
  z-index: 99;
  top: 50%;
  margin-top: -0.7em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: bold;
  font-size: 1.125rem;
}

@media (min-width: 640px) {
  .c-gnav__btns {
    margin-bottom: 30px;
  }
  .c-gnav__btns__item a {
    padding: 1.6em 0 1.6em calc(38px + 2.3em);
    font-size: 1.125rem;
  }
  .c-gnav__btns__item a:after {
    left: 38px;
  }
}
/*
 * =====================================================================================================
 * .c-gnav__nav
 * =====================================================================================================*
 */
.c-gnav__nav__item {
  border-bottom: 1px solid #B0B0B8;
}
.c-gnav__nav__item:first-child {
  border-top: 1px solid #B0B0B8;
}

.c-gnav__nav__item__heading {
  padding: 0;
}
.c-gnav__nav__item__heading > a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 0.9285714286rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 0;
  letter-spacing: 0.04em;
}
.c-gnav__nav__item__heading a > span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.4285714286rem;
  display: inline-block;
  margin-right: 1rem;
  color: #2BB0D6;
  letter-spacing: 0.04em;
}
.c-gnav__nav__item__heading.c-gnav__nav__item__heading--welfare > a {
  display: -ms-inline-grid;
  display: -moz-inline-grid;
  display: inline-grid;
}
.c-gnav__nav__item__heading.c-gnav__nav__item__heading--welfare > a span {
  margin-right: 0;
}

.c-gnav__nav__item__heading--has-children {
  position: relative;
  cursor: pointer;
}
.c-gnav__nav__item__heading--has-children:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url("../image/gnav-cross.svg");
  top: calc(50% - 9px);
  right: 3%;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.c-gnav__nav__item__heading--has-children.is-active:after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.c-gnav__nav__item__children {
  overflow: hidden;
}

.c-gnav__nav__item__child {
  padding-bottom: 1.5em;
}

.c-gnav__nav__item__child__item {
  font-size: 0.8571428571rem;
}
.c-gnav__nav__item__child__item b, .c-gnav__nav__item__child__item span, .c-gnav__nav__item__child__item a {
  display: inline-block;
}
.c-gnav__nav__item__child__item b {
  font-weight: normal;
  margin-bottom: 0.25em;
}
.c-gnav__nav__item__child__item span {
  margin-right: 1em;
}
.c-gnav__nav__item__child__item a {
  padding: 0.25em 0;
}
.c-gnav__nav__item__child__item a + a {
  margin-left: 1em;
}
.c-gnav__nav__item__child__item.c-btn--comingsoon_w:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.8;
  z-index: 1;
}
.c-gnav__nav__item__child__item.c-btn--comingsoon_w:after {
  position: absolute;
  width: 100%;
  text-align: left;
  left: 4px;
  content: "Coming Soon";
  color: #0E9BE8;
  z-index: 99;
  top: 66%;
  margin-top: -0.7em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: bold;
  font-size: 12px;
}
.c-gnav__nav__item__child__item.c-btn--comingsoon_w a,
.c-gnav__nav__item__child__item.c-btn--comingsoon_w span {
  opacity: 0.2;
}

.c-gnav__nav--comingsoon {
  position: relative;
  pointer-events: none;
}
.c-gnav__nav--comingsoon:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e4e7eb;
  opacity: 0.8;
  z-index: 1;
}
.c-gnav__nav--comingsoon:after {
  position: absolute;
  display: inline-block;
  width: auto;
  text-align: center;
  left: 0;
  content: "coming soon";
  color: #054BD1;
  z-index: 200;
  top: 75%;
  margin-top: -0.7em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: bold;
  font-size: 11px;
}

.c-gnav__nav--comingsoon_header {
  position: relative;
  pointer-events: none;
}
.c-gnav__nav--comingsoon_header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.8;
  z-index: 1;
}
.c-gnav__nav--comingsoon_header:after {
  position: absolute;
  display: inline-block;
  width: auto;
  text-align: center;
  left: 0;
  content: "coming soon";
  color: #054BD1;
  z-index: 200;
  top: 46%;
  left: 0px;
  margin-top: -0.7em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: bold;
  font-size: 11px;
}
@media (min-width: 640px) {
  .c-gnav__nav--comingsoon_header:after {
    left: -10px;
    top: 32%;
  }
}

@media (min-width: 640px) {
  .c-gnav__nav {
    width: 55.5555555556%;
  }
  .c-gnav__nav__item__heading {
    padding: 0;
  }
  .c-gnav__nav__item__heading > a {
    font-size: 0.9375rem;
    padding: 1.1em 0;
  }
  .c-gnav__nav__item__heading a > span {
    margin-right: 1em;
    font-size: 1.75rem;
  }
  .c-gnav__nav__item__heading.c-gnav__nav__item__heading--welfare > a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .c-gnav__nav__item__heading.c-gnav__nav__item__heading--welfare > a span {
    margin-right: 1rem;
  }
  .c-gnav__nav__item__child__item {
    letter-spacing: 0.04em;
    font-size: clamp(13px, 1.2vw, 14px);
    font-weight: bold;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(2) .c-gnav__nav__item__children {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 1fr;
    grid-template-columns: 50% 1fr;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(2) .c-gnav__nav__item__children .c-gnav__nav__item__child:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(2) .c-gnav__nav__item__children .c-gnav__nav__item__child:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(2) .c-gnav__nav__item__children .c-gnav__nav__item__child:nth-of-type(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(3) .c-gnav__nav__item__children {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 1fr;
    grid-template-columns: 50% 1fr;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(3) .c-gnav__nav__item__children .c-gnav__nav__item__child:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(3) .c-gnav__nav__item__children .c-gnav__nav__item__child:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(3) .c-gnav__nav__item__children .c-gnav__nav__item__child:nth-of-type(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(6) .c-gnav__nav__item__children {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 1fr;
    grid-template-columns: 50% 1fr;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(6) .c-gnav__nav__item__children .c-gnav__nav__item__child:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(6) .c-gnav__nav__item__children .c-gnav__nav__item__child:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(6) .c-gnav__nav__item__children .c-gnav__nav__item__child:nth-of-type(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(6) .c-gnav__nav__item__children .c-gnav__nav__item__child:nth-of-type(4) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  .c-gnav__nav .c-gnav__nav__item:nth-of-type(6) .c-gnav__nav__item__children .c-gnav__nav__item__child:nth-of-type(5) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
}
/*
* =====================================================================================================
* .c-gnav__keishicho
* =====================================================================================================*
*/
.c-gnav__keishicho {
  margin-top: 40px;
}

@media (min-width: 640px) {
  .c-gnav__keishicho {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 7.8947368421%;
  }
}
/*
* =====================================================================================================
* .c-gnav__keishicho__emblem
* =====================================================================================================*
*/
.c-gnav__keishicho__emblem {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 0.8571428571rem;
}
.c-gnav__keishicho__emblem img {
  width: 114px;
  margin-bottom: 1em;
}

@media (min-width: 640px) {
  .c-gnav__keishicho__emblem {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: clamp(12.5px, 1.33vw, 16px);
  }
}
/*
* =====================================================================================================
* .c-gnav__keishicho__block
* =====================================================================================================*
*/
@media (min-width: 640px) {
  .c-gnav__keishicho__block {
    margin-top: -0.4em;
  }
}
/*
* =====================================================================================================
* .c-gnav__keishicho__info
* =====================================================================================================*
*/
.c-gnav__keishicho__info {
  margin-top: 1rem;
}

.c-gnav__keishicho__info__item {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 0.7857142857rem;
}
.c-gnav__keishicho__info__item img {
  width: 25px;
  vertical-align: baseline;
  margin-right: 3px;
}
.c-gnav__keishicho__info__item span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.4285714286rem;
  display: inline-block;
}
.c-gnav__keishicho__info__item span + span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 0.7857142857rem;
}

@media (min-width: 640px) {
  .c-gnav__keishicho__info {
    margin-top: 0;
  }
  .c-gnav__keishicho__info__item {
    font-size: 0.6875rem;
  }
  .c-gnav__keishicho__info__item img {
    width: 28px;
    margin-right: 6px;
  }
  .c-gnav__keishicho__info__item span {
    font-size: 1.375rem;
    font-size: clamp(18px, 1.83vw, 22px);
  }
  .c-gnav__keishicho__info__item span + span {
    font-size: 0.8125rem;
    display: block;
    padding-left: 31px;
  }
  .c-gnav__keishicho__info__item:nth-of-type(2) span {
    padding-left: 6px;
  }
  .c-gnav__keishicho__info__item:nth-of-type(2) span + span {
    padding-left: 0;
  }
}
/*
* =====================================================================================================
* .c-gnav__sns
* =====================================================================================================*
*/
.c-gnav__sns {
  margin-top: 1em;
}

.c-gnav__sns__item a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0;
  display: block;
  position: relative;
  padding: 0.25em 0 0.25em 31px;
}
.c-gnav__sns__item a:after {
  content: "";
  display: block;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 21px;
  height: 21px;
}

.c-gnav__sns__item--x a:after {
  background-image: url("../image/gnav-x.svg");
}

.c-gnav__sns__item--youtube a:after {
  background-image: url("../image/gnav-youtube.svg");
}

@media (min-width: 640px) {
  .c-gnav__sns {
    margin-top: 1em;
  }
  .c-gnav__sns__item {
    margin-top: 0.5em;
  }
  .c-gnav__sns__item a {
    font-size: clamp(12px, 1.1vw, 14px);
  }
  .c-gnav__sns__item a:after {
    width: 24px;
    height: 24px;
  }
}