@charset "UTF-8";
* {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  background-repeat: no-repeat;
}

html {
  font-size: 10px;
  line-height: 1.15;
  font-family: sans-serif;
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  color: #111;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "小塚ゴシック", "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-style: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}
body.lang-en {
  font-family: "Montserrat", "Arial", "Noto Sans JP", "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "小塚ゴシック", "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.4s;
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  text-underline-offset: 0.2em;
}
a:hover {
  opacity: 0.7;
}
a:active, a:hover {
  outline-width: 0;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 600px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
li {
  margin: 0;
  list-style: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 100%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

video,
iframe {
  vertical-align: bottom;
}

svg:not(:root) {
  overflow: hidden;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

dl {
  margin-block-start: 0;
  margin-block-end: 0;
}

dd {
  margin-left: 0;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

/*////////////////////////

 user common css

////////////////////////*/
/* Grid System width Flex */
.flexbox {
  display: flex;
}

.flex-inline {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-rev {
  flex-direction: column-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-align-stretch {
  align-items: stretch;
}

.flex-content-start {
  justify-content: flex-start;
}

.flex-content-end {
  justify-content: flex-end;
}

.flex-content-center {
  justify-content: center;
}

.flex-content-between {
  justify-content: space-between;
}

.flex-content-around {
  justify-content: space-around;
}

.flex-content-around {
  justify-content: stretch;
}

.gap5 {
  gap: 5px;
}

.gap10 {
  gap: 10px;
}

.gap15 {
  gap: 15px;
}

.gap20 {
  gap: 20px;
}

.gap25 {
  gap: 25px;
}

.gap30 {
  gap: 30px;
}

.gap35 {
  gap: 35px;
}

.gap40 {
  gap: 40px;
}

.gap45 {
  gap: 45px;
}

.gap50 {
  gap: 50px;
}

.gap55 {
  gap: 55px;
}

.gap60 {
  gap: 60px;
}

.imgbox,
.videobox {
  line-height: 1;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}

@media screen and (max-width: 1200px) {
  .min-xl {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .min-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .min-tab {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .min-mid {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .min-sp {
    display: none;
  }
}
@media screen and (min-width: 1201px) {
  .max-xl {
    display: none;
  }
}
@media screen and (min-width: 901px) {
  .max-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .max-tab {
    display: none;
  }
}
@media screen and (min-width: 601px) {
  .max-mid {
    display: none;
  }
}
@media screen and (min-width: 451px) {
  .max-sp {
    display: none;
  }
}
/* width */
.w50p {
  width: 50%;
}

.w100p {
  width: 100%;
}

.w-fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

.max-w100 {
  max-width: 100px;
}

.max-w110 {
  max-width: 110px;
}

.max-w120 {
  max-width: 120px;
}

.max-w130 {
  max-width: 130px;
}

.max-w140 {
  max-width: 140px;
}

.max-w150 {
  max-width: 150px;
}

.max-w160 {
  max-width: 160px;
}

.max-w170 {
  max-width: 170px;
}

.max-w180 {
  max-width: 180px;
}

.max-w190 {
  max-width: 190px;
}

.max-w200 {
  max-width: 200px;
}

.max-w210 {
  max-width: 210px;
}

.max-w220 {
  max-width: 220px;
}

.max-w230 {
  max-width: 230px;
}

.max-w240 {
  max-width: 240px;
}

.max-w250 {
  max-width: 250px;
}

.max-w260 {
  max-width: 260px;
}

.max-w270 {
  max-width: 270px;
}

.max-w280 {
  max-width: 280px;
}

.max-w290 {
  max-width: 290px;
}

.max-w300 {
  max-width: 300px;
}

.max-w310 {
  max-width: 310px;
}

.max-w320 {
  max-width: 320px;
}

.max-w330 {
  max-width: 330px;
}

.max-w340 {
  max-width: 340px;
}

.max-w350 {
  max-width: 350px;
}

.max-w360 {
  max-width: 360px;
}

.max-w370 {
  max-width: 370px;
}

.max-w380 {
  max-width: 380px;
}

.max-w390 {
  max-width: 390px;
}

.max-w400 {
  max-width: 400px;
}

.max-w410 {
  max-width: 410px;
}

.max-w420 {
  max-width: 420px;
}

.max-w430 {
  max-width: 430px;
}

.max-w440 {
  max-width: 440px;
}

.max-w450 {
  max-width: 450px;
}

.max-w460 {
  max-width: 460px;
}

.max-w470 {
  max-width: 470px;
}

.max-w480 {
  max-width: 480px;
}

.max-w490 {
  max-width: 490px;
}

.max-w500 {
  max-width: 500px;
}

.max-w510 {
  max-width: 510px;
}

.max-w520 {
  max-width: 520px;
}

.max-w530 {
  max-width: 530px;
}

.max-w540 {
  max-width: 540px;
}

.max-w550 {
  max-width: 550px;
}

.max-w560 {
  max-width: 560px;
}

.max-w570 {
  max-width: 570px;
}

.max-w580 {
  max-width: 580px;
}

.max-w590 {
  max-width: 590px;
}

.max-w600 {
  max-width: 600px;
}

/* ロゴ */
.logo {
  line-height: 1;
}
.logo a {
  display: block;
}

/***************************

object/_utility.scss

***************************/
/* ----- color ----- */
.base {
  color: #111;
}

.white {
  color: #fff;
}

.blue {
  color: #27b9ed;
}

.dark_blue {
  color: #1d2088;
}

/* ----- font ----- */
/* font-size */
.fz9 {
  font-size: 9px;
}

.fz10 {
  font-size: 10px;
}

.fz11 {
  font-size: 11px;
}

.fz12 {
  font-size: 12px;
}

.fz13 {
  font-size: 13px;
}

.fz14 {
  font-size: 14px;
}

.fz15 {
  font-size: 15px;
}

.fz16 {
  font-size: 16px;
}

.fz17 {
  font-size: 17px;
}

.fz18 {
  font-size: 18px;
}

.fz19 {
  font-size: 19px;
}

.fz20 {
  font-size: 20px;
}

.fz21 {
  font-size: 21px;
}

.fz22 {
  font-size: 22px;
}

.fz23 {
  font-size: 23px;
}

.fz24 {
  font-size: 24px;
}

.fz25 {
  font-size: 25px;
}

.fz26 {
  font-size: 26px;
}

.fz27 {
  font-size: 27px;
}

.fz28 {
  font-size: 28px;
}

.fz29 {
  font-size: 29px;
}

.fz30 {
  font-size: 30px;
}

.mincho {
  font-family: "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "ＭＳ 明朝", "MS Mincho", "Noto Serif JP", sans-serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

/* font-weight */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.black {
  font-weight: 900;
}

/* font-style */
.italic {
  font-style: italic;
}

/* ----- margin ----- */
.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.m0 {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mt105 {
  margin-top: 105px;
}

.mt110 {
  margin-top: 110px;
}

.mt115 {
  margin-top: 115px;
}

.mt120 {
  margin-top: 120px;
}

.mt125 {
  margin-top: 125px;
}

.mt130 {
  margin-top: 130px;
}

.mt135 {
  margin-top: 135px;
}

.mt140 {
  margin-top: 140px;
}

.mt145 {
  margin-top: 145px;
}

.mt150 {
  margin-top: 150px;
}

.mt155 {
  margin-top: 155px;
}

.mt160 {
  margin-top: 160px;
}

.mt165 {
  margin-top: 165px;
}

.mt170 {
  margin-top: 170px;
}

.mt175 {
  margin-top: 175px;
}

.mt180 {
  margin-top: 180px;
}

.mt185 {
  margin-top: 185px;
}

.mt190 {
  margin-top: 190px;
}

.mt195 {
  margin-top: 195px;
}

.mt200 {
  margin-top: 200px;
}

.mt205 {
  margin-top: 205px;
}

.mt210 {
  margin-top: 210px;
}

.mt215 {
  margin-top: 215px;
}

.mt220 {
  margin-top: 220px;
}

.mt225 {
  margin-top: 225px;
}

.mt230 {
  margin-top: 230px;
}

.mt235 {
  margin-top: 235px;
}

.mt240 {
  margin-top: 240px;
}

.mt245 {
  margin-top: 245px;
}

.mt250 {
  margin-top: 250px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.ml30 {
  margin-left: 30px;
}

.ml35 {
  margin-left: 35px;
}

.ml40 {
  margin-left: 40px;
}

.ml45 {
  margin-left: 45px;
}

.ml50 {
  margin-left: 50px;
}

.ml55 {
  margin-left: 55px;
}

.ml60 {
  margin-left: 60px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

.mr30 {
  margin-right: 30px;
}

.mr35 {
  margin-right: 35px;
}

.mr40 {
  margin-right: 40px;
}

.mr45 {
  margin-right: 45px;
}

.mr50 {
  margin-right: 50px;
}

.mr55 {
  margin-right: 55px;
}

.mr60 {
  margin-right: 60px;
}

/* ----- text ----- */
/* line-height */
.lh06 {
  line-height: 0.6;
}

.lh07 {
  line-height: 0.7;
}

.lh08 {
  line-height: 0.8;
}

.lh09 {
  line-height: 0.9;
}

.lh10 {
  line-height: 1;
}

.lh11 {
  line-height: 1.1;
}

.lh12 {
  line-height: 1.2;
}

.lh13 {
  line-height: 1.3;
}

.lh14 {
  line-height: 1.4;
}

.lh15 {
  line-height: 1.5;
}

.lh16 {
  line-height: 1.6;
}

.lh17 {
  line-height: 1.7;
}

.lh18 {
  line-height: 1.8;
}

.lh19 {
  line-height: 1.9;
}

.lh20 {
  line-height: 2;
}

.lh21 {
  line-height: 2.1;
}

.lh22 {
  line-height: 2.2;
}

/* letter-spacing */
.ls10 {
  letter-spacing: 0.01em;
}

.ls20 {
  letter-spacing: 0.02em;
}

.ls30 {
  letter-spacing: 0.03em;
}

.ls40 {
  letter-spacing: 0.04em;
}

.ls50 {
  letter-spacing: 0.05em;
}

.ls60 {
  letter-spacing: 0.06em;
}

.ls70 {
  letter-spacing: 0.07em;
}

.ls80 {
  letter-spacing: 0.08em;
}

.ls90 {
  letter-spacing: 0.09em;
}

.ls100 {
  letter-spacing: 0.1em;
}

.ls-10 {
  letter-spacing: -0.01em;
}

.ls-20 {
  letter-spacing: -0.02em;
}

.ls-30 {
  letter-spacing: -0.03em;
}

.ls-40 {
  letter-spacing: -0.04em;
}

.ls-50 {
  letter-spacing: -0.05em;
}

.ls-60 {
  letter-spacing: -0.06em;
}

.ls-70 {
  letter-spacing: -0.07em;
}

.ls-80 {
  letter-spacing: -0.08em;
}

/* text-align */
.t-center {
  text-align: center;
}

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

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

@media screen and (min-width: 601px) {
  .t-center_min-mid {
    text-align: center;
  }
}
@media screen and (min-width: 451px) {
  .t-center_min-sp {
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .t-center_max-sp {
    text-align: center;
  }
}
/* text-transform */
.uppercase {
  text-transform: uppercase;
}

/* text-decoration */
.underline {
  text-decoration-line: underline;
  text-decoration-color: inherit;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.6em;
}

/* writing-mode */
.ver-rl {
  writing-mode: vertical-rl;
}

/* vertical-align */
.ver-top {
  vertical-align: top;
}

.ver-mid {
  vertical-align: middle;
}

.ver-baseline {
  vertical-align: baseline;
}

.ver-bottom {
  vertical-align: bottom;
}

/* position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

/* list */
.list-disc li {
  text-indent: -1em;
  margin-left: 1em;
}
.list-disc li::before {
  content: "・";
}

.list-count li {
  list-style-type: decimal;
  margin-left: 1em;
}
.list-count li::before {
  content: "　";
}

/* border-radius */
.round {
  border-radius: 50%;
}

/* min-width */
.min100 {
  min-width: 100px;
}

.min180 {
  min-width: 180px;
}

/***************************

object/_component.scss

***************************/
.container_m {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .container_m {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 450px) {
  .container_m {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container_s {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .container_s {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 450px) {
  .container_s {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.hdg-type01 {
  background: linear-gradient(60deg, #00b0ec, #008cd1);
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  margin-left: auto;
  margin-right: auto;
}

.hdg-type02 {
  font-size: 56px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .hdg-type02 {
    font-size: 36px;
  }
}

.hdg-type03 {
  font-size: 36px;
  border-bottom: 5px solid #111;
  text-align: center;
  line-height: 2.1;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 450px) {
  .hdg-type03 {
    font-size: 30px;
    margin-bottom: 50px;
  }
}

.btn-style01 {
  display: block;
  background-color: #1d2088;
  border-radius: 7px;
  max-width: 920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  padding: 30px;
  filter: drop-shadow(7px 7px 0px rgba(0, 0, 0, 0.1));
  transform: translate(-7px, -7px);
  position: relative;
}
.btn-style01 i {
  font-weight: 400;
  font-size: 36px;
}
.btn-style01-icn {
  display: inline-block;
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 45px;
  top: calc(50% - 36px);
}
.btn-style01 .ri-external-link-fill {
  font-size: 20px;
  vertical-align: top;
  margin-left: 10px;
}
.btn-style01:hover {
  filter: none;
  transform: translate(0, 0);
}

@media screen and (max-width: 600px) {
  .btn-style01 {
    padding: 15px 15px 15px 65px;
    font-size: 26px;
  }
  .btn-style01-icn {
    left: 15px;
    min-width: 50px;
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
  }
  .btn-style01 i {
    font-size: 30px;
  }
}
.btn-style02 {
  display: block;
  width: 100%;
  max-width: 340px;
  line-height: 46px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #474e63;
  border-radius: 23px;
}
.btn-style02 .ri-external-link-fill {
  margin-left: 5px;
  vertical-align: top;
}

.table-style01 {
  background-color: #fff;
  width: 100%;
  border: 1px solid #555;
}
.table-style01-row {
  display: flex;
  gap: 0 3px;
  background-color: #e3ebec;
}
.table-style01-row:not(:last-child) {
  border-bottom: 1px solid #555;
}
.table-style01-dt {
  background-color: #bbdff0;
  border-right: 1px solid #555;
  padding: 30px 37px;
  min-width: 320px;
  width: 320px;
}
.table-style01-dd {
  background-color: #fff;
  border-left: 1px solid #555;
  padding: 30px 40px;
  width: 100%;
}
.table-style01-dd-row:not(:first-child) {
  border-top: 2px dotted #222;
  margin-top: 30px;
  padding-top: 25px;
}

@media screen and (max-width: 900px) {
  .table-style01-dt {
    min-width: 305px;
    width: 305px;
  }
}
@media screen and (max-width: 600px) {
  .table-style01-row {
    display: block;
  }
  .table-style01-dt {
    border-right: none;
    border-bottom: 1px solid #555;
    padding: 20px 30px;
    width: auto;
  }
  .table-style01-dt .fz28.mt15 {
    margin-top: 10px;
  }
  .table-style01-dd {
    border-left: none;
    border-top: 1px solid #555;
    padding: 30px;
    margin-top: 3px;
  }
}
.category {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background-color: #1d2088;
  line-height: 22px;
  padding: 0 5px;
  margin-bottom: 7px;
}

/***************************

layout/_header.scss

***************************/
.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: all 0.4s;
  padding: 45px 40px;
}
.header-right {
  position: absolute;
  color: #fff;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.language {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  border: 1px solid #fff;
  line-height: 30px;
  border-radius: 15px;
  min-width: 96px;
  width: 96px;
  text-align: center;
}
.language .ri-arrow-left-right-line {
  margin-right: 5px;
}

.gnav-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.gnav-link {
  display: block;
  color: #fff;
}

.header.scroll {
  background-color: #fff;
  padding: 35px 40px;
}
@media screen and (min-width: 1201px) {
  .header.scroll .gnav-link {
    color: #111;
  }
}
.header.scroll .header-right {
  color: #111;
}
.header.scroll .language {
  border: 1px solid #ddd;
}

.child-header {
  background-color: #fff;
}
.child-header .gnav-link {
  color: #111;
}
.child-header .header-right {
  color: #111;
}
.child-header .language {
  border: 1px solid #ddd;
}

@media screen and (min-width: 1201px) {
  .gnavBtn {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 28px 40px;
  }
  .header-right {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    text-align: right;
    margin-right: 40px;
  }
  .gnav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s;
    background-color: #fff;
    padding: 120px 30px;
  }
  .gnav.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .gnav-list {
    display: block;
    width: 100%;
  }
  .gnav-item {
    border-bottom: 1px solid #1d2088;
  }
  .gnav-link {
    display: block;
    padding: 20px;
    width: 100%;
    text-align: start;
    color: #111;
    text-align: center;
  }
  .gnavBtn {
    position: fixed;
    top: 0;
    right: 0;
    width: 75px;
    min-width: 75px;
    height: 75px;
    cursor: pointer;
    display: inline-block;
    border: none;
    outline: none;
    text-align: center;
    transition: all 0.4s;
  }
  .gnavBtn-bar {
    position: relative;
    margin: 0 auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: block;
    width: 32px;
    height: 1px;
    background-color: #fff;
    outline: 1px solid transparent;
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  .gnavBtn-bar::before, .gnavBtn-bar::after {
    content: "";
    position: absolute;
    display: block;
    margin: 0 auto;
    width: 32px;
    height: 1px;
    background-color: #fff;
    outline: 1px solid transparent;
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  .gnavBtn-bar::before {
    top: -8px;
  }
  .gnavBtn-bar::after {
    top: 8px;
  }
  .header.scroll {
    padding: 21px 40px;
  }
  .header.scroll .gnavBtn-bar,
  .header.scroll .gnavBtn-bar::before,
  .header.scroll .gnavBtn-bar::after {
    background-color: #111;
  }
  .gnavBtn.active .gnavBtn-bar {
    background-color: transparent;
  }
  .gnavBtn.active .gnavBtn-bar::before {
    transform: translateY(8px) rotate(45deg);
  }
  .gnavBtn.active .gnavBtn-bar::after {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav_open {
    overflow: hidden;
  }
  .nav_open .header-right {
    color: #111;
  }
  .nav_open .language {
    border: 1px solid #ddd;
  }
  .nav_open .gnavBtn-bar,
  .nav_open .gnavBtn-bar::before,
  .nav_open .gnavBtn-bar::after {
    background-color: #111;
  }
  .child-header .gnavBtn-bar,
  .child-header .gnavBtn-bar::before,
  .child-header .gnavBtn-bar::after {
    background-color: #111;
  }
}
@media screen and (max-width: 450px) {
  .header {
    padding: 21px 40px;
  }
  .header-right {
    margin-right: 0;
    text-align: left;
  }
  .gnav {
    padding: 90px 30px;
  }
}
/***************************

layout/_footer.scss

***************************/
.footer {
  margin-top: 180px;
  background-image: url(./img/common/footer-bg.png);
  background-position: center top;
  padding: 160px 0 100px;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.footer-link {
  display: inline-block;
  margin-top: 35px;
  font-size: 14px;
}
.footer-link .ri-external-link-fill {
  color: #ccc;
  vertical-align: top;
  margin-left: 5px;
}

.lang-en .footer-link .underline {
  text-underline-offset: 0.2em;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 225px;
  }
}
@media screen and (max-width: 600px) {
  .footer {
    padding-bottom: 185px;
  }
}
@media screen and (max-width: 450px) {
  .footer {
    margin-top: 110px;
    padding: 130px 0 185px;
  }
  .footer-list {
    display: block;
    text-align: center;
  }
  .footer-list li + li {
    margin-top: 20px;
  }
}
/***************************

object/_project.scss

***************************/
.entry {
  display: block;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.home-mv img {
  width: 100%;
}

.bg-dot {
  background-image: url(./img/top/bg-dot.png);
  background-position: right bottom;
  padding: 140px 0 150px;
}

.home-lead {
  text-align: center;
}
.home-lead-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 10px 0 30px;
}

.about {
  margin-top: 90px;
  background-color: #fff;
  border: 1px solid #555;
  padding: 60px 98px 100px;
  position: relative;
}
.about::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  border-bottom: 1px solid #555;
  background-color: #bbdff0;
}
.about-table {
  font-weight: 700;
  margin-bottom: 67px;
}
.about-table-row {
  display: flex;
}
.about-table-dt {
  font-size: 24px;
  border-bottom: 3px solid #474747;
  margin-right: 4px;
  min-width: 250px;
  width: 250px;
  padding: 15px 0;
}
.about-table-dd {
  border-bottom: 1px solid #474747;
  width: 100%;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 0;
  margin-bottom: 1px;
}
.about-table-dd .fz32 {
  font-size: 32px;
}

.home-message {
  margin: 135px 0;
}

.archive {
  border: 10px solid #eee;
  width: 100%;
  padding: 60px 90px;
}
.archive-title {
  font-size: 26px;
  border-bottom: 5px solid #111;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.archive-title .ri-movie-line {
  font-size: 36px;
  margin-right: 15px;
  display: inline-block;
}
.archive-list {
  display: grid;
  grid-template-columns: repeat(2, 280px);
  justify-content: center;
  gap: 45px 40px;
}

.bg-wave {
  background-image: url(./img/top/bg-wave-top.png), url(./img/top/bg-wave-bottom.png), url(./img/top/bg-dot2.png);
  background-position: center top, center top 89px, right top 135px;
  background-repeat: repeat-x, no-repeat, no-repeat;
  background-color: #d1f0f8;
}

.program {
  padding: 135px 0 120px;
}
.program-time {
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 500;
  font-size: 26px;
  background: linear-gradient(60deg, #00b0ec, #008cd1);
  padding: 0 15px;
  line-height: 32px;
}
.program-time-line {
  display: inline-block;
  background-color: #fff;
  width: 16px;
  height: 2px;
  margin: 0 10px 8px 10px;
}

.bg-wave2 {
  background-image: url(./img/top/bg-wave-white.png);
  background-repeat: repeat-x;
  padding-top: 30px;
}

.online {
  padding-top: 105px;
}
.online-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
  justify-content: center;
  margin-top: 60px;
}
.online-imgbox {
  border: 1px solid #ddd;
  aspect-ratio: 265/177;
  max-width: 265px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

@media screen and (max-width: 1200px) {
  .about .lh10.mt5 {
    line-height: 1.4;
    margin-top: 0;
  }
  .archive-list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .online-list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .about {
    padding: 60px 64px 75px;
  }
  .about-table-dt {
    min-width: 190px;
    width: 190px;
  }
  .archive {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 600px) {
  .entry {
    width: 150px;
    bottom: 15px;
    right: 15px;
  }
  .about-table-row {
    display: block;
  }
  .about-table-row + .about-table-row {
    margin-top: 30px;
  }
  .about-table-dt {
    width: auto;
  }
  .archive-list {
    grid-template-columns: repeat(1, 280px);
    gap: 40px;
  }
}
@media screen and (max-width: 450px) {
  .home-mv {
    height: 350px;
  }
  .home-mv img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .bg-dot {
    padding: 90px 0 120px;
  }
  .about {
    padding: 60px 28px;
  }
  .about .hdg-type01 {
    margin-bottom: 15px;
  }
  .about-table-dd .fz32 {
    font-size: 28px;
  }
  .home-message {
    margin: 110px 0;
  }
  .home-message .fz20.mt70 {
    margin-top: 50px;
  }
  .home-message .fz20.mb50 {
    margin-bottom: 40px;
  }
  .archive {
    padding: 35px 15px;
  }
  .archive-title {
    margin-bottom: 45px;
  }
  .program {
    padding: 70px 0 80px;
  }
  .program .white.mb45 {
    margin-bottom: 30px;
  }
  .program .btn-style01 {
    margin-top: 55px;
  }
  .online {
    padding-top: 40px;
  }
  .online-list {
    margin-top: 40px;
    grid-template-columns: repeat(1, 265px);
  }
}
.child {
  padding-top: 120px;
}
.child-mv {
  position: relative;
  margin-bottom: 100px;
}
.child-mv img {
  width: 100%;
}
.child-mv-title {
  color: #fff;
  font-size: 56px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.online-box {
  border: 1px solid #555;
  padding: 80px 98px 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.online-box::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  border-bottom: 1px solid #555;
  background-color: #e3ebec;
}
.online-textbox {
  width: calc(100% - 55px - 265px);
}
.online-textbox-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 18px;
  border-bottom: 1px solid #555;
  margin-bottom: 25px;
}
.online-links-item {
  display: flex;
  gap: 20px;
}
.online-links-item + .online-links-item {
  margin-top: 5px;
}
.online-links-link .underline {
  text-underline-offset: 0.2em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  word-break: break-all;
}
.online-links-link .ri-external-link-fill {
  vertical-align: top;
  margin-left: 5px;
}
.online-links-title {
  font-weight: bold;
  color: #1f8cb9;
  white-space: nowrap;
}
.online-document-list {
  display: flex;
  gap: 50px;
  justify-content: center;
  text-align: center;
}
.online-document-imgbox {
  border: 1px solid #ddd;
}
.online-movie-box {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.online-movie-box iframe {
  width: 100%;
  aspect-ratio: 560/315;
}

.child .online {
  margin-top: 150px;
  border-top: 1px solid #ebebeb;
}
.child .online .online-list {
  margin-top: 50px;
}

@media screen and (max-width: 1200px) {
  .child {
    padding-top: 90px;
  }
  .child-mv {
    height: 280px;
  }
  .child-mv img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .online-box {
    display: block;
    padding: 80px 60px 70px;
  }
  .online-imgbox {
    margin-left: auto;
    margin-right: auto;
  }
  .online-textbox {
    width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 450px) {
  .child {
    padding-top: 75px;
  }
  .child-mv {
    margin-bottom: 80px;
  }
  .child-mv-title {
    font-size: 38px;
  }
  .online-box {
    padding: 60px 30px 50px;
  }
  .online-links-item {
    display: block;
  }
  .online-links-item + .online-links-item {
    margin-top: 25px;
  }
  .online-links-title {
    margin-bottom: 5px;
  }
  .online-document-list {
    display: block;
  }
  .online-document-item + .online-document-item {
    margin-top: 50px;
  }
  .online-document.mt150,
  .online-movie.mt150,
  .child .online {
    margin-top: 110px;
  }
  .child .online {
    padding-top: 60px;
  }
  .child .online .online-list {
    margin-top: 35px;
  }
}
.message-textbox {
  line-height: 2.2;
}
.message-text {
  font-size: 18px;
}
.message-text p + p {
  margin-top: 20px;
}
.message-list {
  margin-top: 90px;
}
.message-item {
  display: flex;
  gap: 50px;
  align-items: center;
}
.message-item:not(:first-child) {
  border-top: 2px dotted #222;
  margin-top: 40px;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .message-item {
    gap: 40px;
  }
}
@media screen and (max-width: 600px) {
  .message-item {
    display: block;
  }
  .message-item dd {
    margin-top: 25px;
  }
}
@media screen and (max-width: 450px) {
  .message .btn-style01 {
    margin-top: 50px;
  }
  .message-list {
    margin-top: 65px;
  }
}
.sitepolicy-title {
  color: #1f8cb9;
  font-size: 24px;
  margin-bottom: 25px;
}
.sitepolicy-item + .sitepolicy-item {
  margin-top: 50px;
}
.sitepolicy-item-item + .sitepolicy-item-item {
  margin-top: 25px;
}
.sitepolicy .list-count {
  margin-top: 10px;
  margin-left: 20px;
}
.sitepolicy .list-count li + li {
  margin-top: 5px;
}

/* 231120 */
.entry{
  display: none;
}
