@charset "UTF-8";
/*******************************************************
 *
 * Common
 *
 *******************************************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html.no-scroll {
  overflow: hidden;
}

body {
  position: relative;
  padding: 0;
  margin: 0;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  letter-spacing: 0.05em;
  line-height: 2.25;
  overflow: hidden;
}
@media (min-width: 992px) {
  body {
    font-size: 1.067vw;
  }
}

canvas {
  width: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

img, iframe {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

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

a, a:hover {
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
}

.textCenter {
  text-align: center;
}

.textUppercase {
  text-transform: uppercase;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flexboxCenter {
  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;
}

.flexboxSpaceBetween {
  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;
}
@media (min-width: 992px) {
  .flexboxSpaceBetween {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

.flexboxSpaceBetweenTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexboxSpaceBetweenCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexboxSpaceBetweenEnd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hiddenSp {
  display: none !important;
}
@media (min-width: 992px) {
  .hiddenSp {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .hiddenPc {
    display: none !important;
  }
}

.hiddenSpFlex {
  display: none !important;
}
@media (min-width: 992px) {
  .hiddenSpFlex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.hiddenPcFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  .hiddenPcFlex {
    display: none;
  }
}

.hidden {
  display: none !important;
}

.hoverFilter {
  overflow: hidden;
}
.hoverFilter img {
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hoverFilter:hover {
  opacity: 1;
}
.hoverFilter:hover img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*******************************************************
 *
 * Content Wrapper & Container
 *
 *******************************************************/
@media (min-width: 992px) {
  #contentWrapper {
    padding: 0 0 0 12%;
  }
}

.container {
  padding: 0 20px;
}
@media (min-width: 576px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 992px) {
  .container {
    padding: 0 9.09%;
  }
  .container--sm {
    padding: 0 12.12%;
  }
}
.container.pl0 {
  padding-left: 0;
}
.container.pr0 {
  padding-right: 0;
}

/*******************************************************
 *
 * Image Wrapper
 *
 *******************************************************/
.imgWrap {
  position: relative;
}

.imgWrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

/*******************************************************
 *
 * Video Wrapper
 *
 *******************************************************/
.videoWrap {
  position: relative;
}

.videoWrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

/*******************************************************
 *
 * Iframe Wrapper
 *
 *******************************************************/
.iframeWrap {
  position: relative;
}

.iframeWrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

/*******************************************************
 *
 * Global Title
 *
 *******************************************************/
.ttl {
  color: #0B3B6C;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2765957447;
  letter-spacing: 0.05em;
  margin: 0 0 35px;
}
@media (min-width: 992px) {
  .ttl {
    font-size: 2.4667vw;
    margin: 0 0 4vw;
  }
}
.ttl small {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
  line-height: 1.7272727273;
  text-transform: uppercase;
  text-align: right;
  padding: 0 25px 0 0;
  background: #0B3B6C;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  clip-path: polygon(0 0, 100% 0, calc(100% - 13px) 50%, 100% 100%, 0 100%, 0% 50%);
}
@media (min-width: 992px) {
  .ttl small {
    font-size: 1.467vw;
  }
}
.ttl__animation {
  display: block;
}
.ttl__animation span {
  display: inline-block;
  margin: 10px 0 0;
  padding: 0 0 0 20px;
  position: relative;
  color: #e4e4e4;
}
@media (min-width: 992px) {
  .ttl__animation span {
    padding: 0 0 0 2vw;
  }
}
.ttl__animation span i {
  font-weight: 700;
  font-style: normal;
  font-family: "Source Sans Pro", sans-serif;
}
.ttl__animation span i:first-child {
  position: absolute;
  left: 0;
}
.ttl__animation span em {
  font-style: normal;
  font-weight: bold;
}
.ttl__animation span:last-child {
  position: absolute;
  top: 10px;
  left: 0;
  color: #0B3B6C;
  clip-path: polygon(0 0, 0 0, 0 0);
  -webkit-transition: clip-path 1s cubic-bezier(0.24, 0.13, 0.26, 1.01) 0.5s;
  transition: clip-path 1s cubic-bezier(0.24, 0.13, 0.26, 1.01) 0.5s;
  margin: 0;
}
.ttl__animation span:last-child.is-inView {
  clip-path: polygon(0 0, 200% 0, 0 200%);
}

/*==============================
 Title Type 2
===============================*/
.ttl02 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  background: #0D7FBB;
  padding: 10px 20px;
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .ttl02 {
    font-size: 1.333vw;
    margin: 0 0 2vw;
    padding: 0 20px;
  }
}

/*==============================
 Title Type 3
===============================*/
.ttl03 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  background: #0D7FBB;
  padding: 10px 20px;
  margin: 0 0 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .ttl03 {
    font-size: 1.333vw;
    margin: 0 0 2vw;
    padding: 0 20px;
  }
}
.ttl03 .acc {
  font-size: 24px;
}
@media (min-width: 992px) {
  .ttl03 .acc {
    font-size: 1.8vw;
  }
}
.ttl03 .acc i {
  font-weight: 700;
  font-style: normal;
  font-family: "Source Sans Pro", sans-serif;
}

/*==============================
 Title Type 5
===============================*/
.ttl05 {
  margin: 0 0 35px;
}
@media (min-width: 992px) {
  .ttl05 {
    margin: 0 0 4vw;
  }
}
.ttl05 i {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 35px;
  line-height: 0;
  padding: 0 10px;
  position: relative;
  font-style: normal;
}
@media (min-width: 992px) {
  .ttl05 i {
    font-size: 40px;
  }
}
.ttl05 small {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.3513513514;
  text-align: right;
  padding: 4px 20px 4px 0;
  background: #0B3B6C;
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, calc(100% - 13px) 50%, 100% 100%, 0 100%, 0% 50%);
  text-align: left;
}
@media (min-width: 992px) {
  .ttl05 small {
    text-align: right;
    font-size: 37px;
    padding: 4px 60px 4px 0;
  }
}

/*******************************************************
 *
 * Global Button
 *
 *******************************************************/
.siteBtn {
  display: block;
  width: 100%;
  max-width: 183px;
  background: #0B3B6C;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  padding: 2px 30px;
  border-radius: 40px;
  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;
  margin: 50px auto 0;
}
@media (min-width: 992px) {
  .siteBtn {
    font-size: 1.067vw;
    max-width: 12.2vw;
    padding: 2px 2vw;
    margin: 5vw auto 0;
  }
}
.siteBtn:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin: 0 0 0 14px;
}

.siteBtn02 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  color: #0B3B6C;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  height: 96px;
  max-width: 400px;
  width: 100%;
}
.siteBtn02::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: 0 0 0 8px;
}
@media (min-width: 992px) {
  .siteBtn02 {
    font-size: 1.3333333333vw;
    height: 8vw;
    max-width: 33.3333333333vw;
  }
}
.siteBtn02--yellow {
  background: url("../images/common/btn_bg_yellow.jpg") no-repeat left top/cover;
}
.siteBtn02--blue {
  background: url("../images/common/btn_bg_blue.jpg") no-repeat left top/cover;
}
.siteBtn02--red {
  background: url("../images/common/btn_bg_red.jpg") no-repeat left top/cover;
}
.siteBtn02--green {
  background: url("../images/common/btn_bg_green.jpg") no-repeat left top/cover;
}

/*******************************************************
 *
 * Accents
 *
 *******************************************************/
.accent {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.accent--01, .accent--05, .accent--06 {
  width: 20.667vw;
}

.accent--02 {
  width: 15.333vw;
}

.accent--03 {
  width: 24.667vw;
}

.accent--04 {
  width: 16.133vw;
}

.accent--07 {
  width: 16vw;
}

/*******************************************************
 *
 * SMIs
 *
 *******************************************************/
.smis__item:not(:last-child) {
  margin: 0 15px 0 0;
}
@media (min-width: 992px) {
  .smis__item:not(:last-child) {
    margin: 0 1vw 0 0;
  }
}
.smis__link {
  color: #0B3B6C;
  font-size: 22px;
}
@media (min-width: 992px) {
  .smis__link {
    font-size: 1.467vw;
  }
}

/*******************************************************
 *
 * Marquee
 *
 *******************************************************/
.marquee {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: #0D7FBB;
}
.marquee p {
  opacity: 0.1;
  color: #0B3B6C;
  font-size: 80px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
  line-height: 1.125;
  text-transform: uppercase;
  width: var(--twm);
  text-shadow: var(--twm) 0 currentColor, calc(var(--twm) * -1) 0 currentColor, calc(var(--twm) * 2) 0 currentColor, calc(var(--twm) * 3) 0 currentColor, calc(var(--twm) * 4) 0 currentColor;
  will-change: transform;
  white-space: nowrap;
  -webkit-animation: marquee 15s linear infinite;
          animation: marquee 15s linear infinite;
}
@media (min-width: 992px) {
  .marquee p {
    font-size: 5.333vw;
  }
}
.marquee p span {
  white-space: nowrap;
}
.marquee p em {
  font-weight: bold;
  font-style: normal;
}
.marquee p:nth-child(5n+2) {
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}
.marquee p:nth-child(5n+3) {
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}
.marquee p:nth-child(5n+4) {
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
}
.marquee p:nth-child(5n) {
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
}
.marqueeVertical {
  left: 0;
  right: unset;
  z-index: 4;
  background: transparent;
}
.marqueeVertical .marquee__inner {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.marqueeVertical p {
  font-weight: 500;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  white-space: nowrap;
}
.marquee02 {
  --dot-bg: #E7F3F7;
  --dot-color: #fff;
  --dot-size: 2px;
  --dot-space: 12px;
  background: -webkit-gradient(linear, left top, right top, from(var(--dot-bg)), color-stop(1%, transparent)) center/var(--dot-space) var(--dot-space), -webkit-gradient(linear, left top, left bottom, from(var(--dot-bg)), color-stop(1%, transparent)) center/var(--dot-space) var(--dot-space), var(--dot-color);
  background: linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center/var(--dot-space) var(--dot-space), linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center/var(--dot-space) var(--dot-space), var(--dot-color);
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*******************************************************
 *
 * Lists
 *
 *******************************************************/
/*==============================
 List 01
===============================*/
.list01 {
  width: 100%;
  max-width: 675px;
  margin: 2% auto 0;
}
@media (min-width: 992px) {
  .list01 {
    max-width: 65%;
  }
}
.list01__item {
  margin: 6px 8px;
}
.list01__link {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  background: #0B3B6C;
  display: block;
  padding: 12px 20px;
  border-radius: 40px;
}
@media (min-width: 992px) {
  .list01__link {
    font-size: 1.133vw;
    padding: 0.8vw 1.333vw;
  }
}
.list01__link:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 1.333vw;
}

/*==============================
 List 02
===============================*/
.list02__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list02__item:not(:first-child) {
  margin: 20px 0 0;
}
@media (min-width: 992px) {
  .list02__item:not(:first-child) {
    margin: unset;
  }
}
.list02__itemDate {
  width: 140px;
  color: #fff;
  font-size: 14px;
  line-height: 2.8571428571;
  background: #0D7FBB;
  border-radius: 40px;
  text-align: center;
  padding: 12px;
}
@media (min-width: 992px) {
  .list02__itemDate {
    width: 12.96%;
    font-size: 0.933vw;
    padding: 0.4vw;
    margin-right: 15px;
  }
}
.list02__itemTxt {
  width: 100%;
  margin: 20px 0 0;
  padding: 20px;
  color: #0B3B6C;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px dotted #D5D5D6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .list02__itemTxt {
    width: 77.03%;
    margin: 0 0 0 2.667vw;
    padding: 1.333vw;
    font-size: 0.933vw;
  }
}
.list02__itemTxt p {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list02 .siteBadge {
  color: #fff;
  background: #0D7FBB;
  border-radius: 50%;
  padding: 5px;
  line-height: 1;
  display: inline-block;
}

/*==============================
 List 03
===============================*/
.list03__item {
  font-size: 14px;
  padding: 0 0 0 30px;
  position: relative;
}
@media (min-width: 992px) {
  .list03__item {
    font-size: 0.933vw;
    padding: 0 0 0 2vw;
  }
}
.list03__item:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0B3B6C;
  left: 0;
  top: 10px;
}
@media (min-width: 992px) {
  .list03__item:before {
    width: 0.467vw;
    height: 0.467vw;
    top: 0.667vw;
  }
}
.list03__item:not(:first-child) {
  margin: 5px 0 0;
}

/*******************************************************
 *
 * Cursor
 *
 *******************************************************/
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  pointer-events: none;
  z-index: 200;
}

/*******************************************************
 *
 * Lines BG
 *
 *******************************************************/
.linesBg {
  position: absolute;
  width: 95%;
  height: 100%;
  border-left: 1px solid #F6F6F6;
  border-right: 1px solid #F6F6F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
.linesBg div {
  width: 1px;
  height: 100%;
  background: #F6F6F6;
}

/*******************************************************
 *
 * Text and Image Flexbox
 *
 *******************************************************/
.txtImg {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .txtImg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.txtImg__con {
  width: 100%;
  margin: 30px 0 0;
}
@media (min-width: 992px) {
  .txtImg__con {
    width: 41.66%;
    margin: unset;
  }
}
.txtImg .imgWrap {
  width: 100%;
  max-width: 500px;
}
@media (min-width: 992px) {
  .txtImg .imgWrap {
    max-width: 53.7%;
  }
}

.txt-form-conf {
  display: none;
}

.mw_wp_form_preview .txt-form-entry {
  display: none;
}

.mw_wp_form_preview .txt-form-conf {
  display: block;
}

/*******************************************************
 *
 * Forms
 *
 *******************************************************/
.single-forms #contentFull p {
  font-size: 0;
  line-height: 1;
}

.single-forms #contentFull .mw_wp_form p {
  font-size: 14px;
  line-height: 2.25;
}

/*******************************************************
 *
 * Banner Area
 *
 *******************************************************/
.bnrArea__bnr {
  display: block;
  margin: 0 auto 40px;
  max-width: 600px;
  width: 100%;
}
@media (min-width: 992px) {
  .bnrArea__bnr {
    max-width: 40vw;
    margin: 0 auto 3.3333333333vw;
  }
}
.bnrArea__btn {
  margin-left: auto;
  margin-right: auto;
}
.bnrArea__btn:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .bnrArea__btn:not(:last-child) {
    margin-bottom: 2.6666666667vw;
  }
}

/*******************************************************
 *
 * Header
 *
 *******************************************************/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (min-width: 992px) {
  .header {
    width: 12vw;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 20px 0;
}
@media (min-width: 992px) {
  .header__inner {
    -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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 2vw;
    min-height: 100vh;
  }
}
@media (min-width: 1600px) {
  .header__inner {
    padding: 30px;
  }
}
.header .burgerMenu {
  width: 40px;
  height: 30px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 992px) {
  .header .burgerMenu {
    width: 2.667vw;
    height: 2vw;
  }
}
.header .burgerMenu div {
  width: 100%;
  height: 4px;
  background: #EB6168;
}
.header .burgerMenu__txt {
  color: #EB6168;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0.667vw 0 0;
}
@media (min-width: 992px) {
  .header .burgerMenu__txt {
    font-size: 0.933vw;
  }
}
.header__txt {
  color: #0B3B6C;
  font-size: 0.733vw;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
  letter-spacing: 0.08em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 11.84vh 0 0;
  line-height: 1;
}
@media (max-width: 991px) {
  .header__txt {
    display: none;
  }
}
.header #nav {
  margin: 9.84vh 0 0;
}
.header #nav li {
  line-height: 1;
}
.header #nav li:not(:first-child) {
  margin: 1vw 0 0;
}
@media (min-width: 1600px) {
  .header #nav li:not(:first-child) {
    margin: 18px 0 0;
  }
}
.header #nav li a {
  display: block;
  white-space: nowrap;
  color: #0B3B6C;
  font-size: 0.933vw;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
}
.header #nav li a.bg {
  color: #fff;
  font-weight: 500;
  padding: 5px 5px 4px;
}
.header #nav li a.bg--pink {
  background: #EB6168;
  border: 1px solid #EB6168;
}
.header #nav li a.bg--blue {
  background: #0B3B6C;
  border: 1px solid #0B3B6C;
}
.header::-webkit-scrollbar {
  width: 3px;
}
.header::-webkit-scrollbar-thumb {
  background-color: #0B3B6C;
}

@media (min-width: 992px) {
  .fh {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
/*==============================
 Fixed Menu
===============================*/
.fm {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  overflow-y: auto;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  opacity: 0;
}
.fm.is-visible {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.fm__inner {
  padding: 20px 0;
  min-height: 100vh;
}
.fm__top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fm__logo {
  width: 110px;
}
.fm .closeBtn {
  width: 35px;
  height: 35px;
  position: relative;
}
.fm .closeBtn div {
  width: 100%;
  height: 4px;
  background: #EB6168;
  position: absolute;
}
.fm .closeBtn div:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 15px;
  left: 2px;
}
.fm .closeBtn div:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 16px;
  left: 2px;
}
.fm .closeBtnWrap p {
  color: #EB6168;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}
.fm #nav2 {
  padding: 0 10px;
  margin: 10px 0 0;
}
.fm #nav2 > li.has-children > a {
  padding: 20px 25px 20px 0;
}
.fm #nav2 > li.has-children > a:before, .fm #nav2 > li.has-children > a:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: #0B3B6C;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.fm #nav2 > li.has-children > a:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.fm #nav2 li a {
  color: #0B3B6C;
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 20px 0;
  border-bottom: 1px solid #D5D5D5;
  position: relative;
}
.fm #nav2 li.is-active a:after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
.fm #nav2 .submenu {
  display: none;
  padding: 10px 0;
  border-bottom: 1px solid #D5D5D5;
}
.fm #nav2 .submenu li a {
  padding: 10px 20px;
  border-bottom: none;
}
.fm__btns {
  padding: 0 5px;
  margin: 45px 0 0;
}
.fm__btnsItem {
  width: 50%;
  padding: 5px;
}
.fm__btnsItem.w-full {
  width: 100%;
}
.fm__btns a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.025em;
  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;
  background: #0D7FBB;
  padding: 8px;
}
.fm__btns a.bg-dark {
  background-color: #0B3B6C;
}
.fm__btns a.bg-emphasis {
  background-color: #EB6168;
}
.fm__btns a i {
  margin: 0 5px 0 0;
}
.fm .smis {
  margin: 35px 0 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fm .smis li a {
  font-size: 30px;
}
.fm__topBtn {
  color: #0B3B6C;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  margin: 10px 0 0;
}
.fm__topBtn span {
  text-decoration: underline;
}
.fm__copyright {
  font-size: 11px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #0D7FBB;
  margin: 10px 0 0;
}

::-webkit-full-page-media, :future, :root .fm__inner {
  padding: 20px 0 80px;
}

/*******************************************************
 *
 * Footer Top
 *
 *******************************************************/
.footerTop {
  padding: 100px 0;
  z-index: 2;
}
@media (min-width: 992px) {
  .footerTop {
    padding: 13.333vw 0;
  }
}
.footerTop__bnr {
  width: 100%;
  max-width: 600px;
  margin: auto;
  display: block;
}
@media (min-width: 992px) {
  .footerTop__bnr {
    max-width: 55.55%;
  }
}
.footerTop .siteBtn02 {
  margin: 50px auto 0;
}
@media (min-width: 992px) {
  .footerTop .siteBtn02 {
    margin: 3.333vw auto 0;
  }
}

/*******************************************************
 *
 * Footer
 *
 *******************************************************/
.footer {
  color: #0B3B6C;
  font-weight: 500;
  letter-spacing: 0;
  background: #F7F7F7;
  padding: 40px 0 60px;
  z-index: 5;
}
@media (min-width: 992px) {
  .footer {
    padding: 3.333vw 0;
  }
}
.footer .container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 20px 50px;
}
@media (min-width: 992px) {
  .footer .container {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 0 20px;
  }
}
.footer__left {
  width: 100%;
}
@media (min-width: 992px) {
  .footer__left {
    width: 26%;
  }
}
.footer__left a {
  color: #0B3B6C;
}
.footer__logo {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media (min-width: 992px) {
  .footer__logo {
    font-size: 1.267vw;
  }
}
.footer__logo img {
  width: 120px;
}
@media (min-width: 992px) {
  .footer__logo img {
    width: 44.28%;
  }
}
.footer__logo p {
  margin: 10px 0 0;
}
.footer__address, .footer__phone {
  line-height: 1.625;
}
.footer__address {
  margin: 20px 0 0;
}
@media (max-width: 991px) {
  .footer__copyright {
    margin: 5px 0 0;
  }
}

/*******************************************************
 *
 * Lower Page
 *
 *******************************************************/
.pageMarquee {
  position: absolute;
  width: 100%;
  top: 0;
  padding: 40px;
  z-index: 5;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 4;
}
@media (min-width: 992px) {
  .pageMarquee {
    padding: 2vw;
    width: 88%;
  }
}
.pageMarquee .marquee {
  position: absolute;
  height: 100%;
  width: 100% !important;
  background: transparent;
  overflow: visible;
}
.pageMarquee .marquee__inner {
  margin-top: -60px;
}
@media (min-width: 992px) {
  .pageMarquee .marquee__inner {
    margin-top: -3.333vw;
  }
}
.pageMarquee .marquee p {
  mix-blend-mode: overlay;
  color: #00a7e5;
  font-size: 200px;
  font-weight: 100;
  line-height: 1;
}
@media (min-width: 992px) {
  .pageMarquee .marquee p {
    font-size: 13.333vw;
  }
}
.pageMarqueeVertical .marquee__inner {
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
@media (max-width: 991px) {
  .page .header__txt, .pageMarqueeVertical {
    display: none;
  }
}

.lpWrapper {
  color: #0B3B6C;
  padding: 80px 0 200px;
}
@media (min-width: 992px) {
  .lpWrapper {
    padding: 5.333vw 0 13.333vw;
  }
}
.lpWrapper .marquee:not(.pageMarqueeVertical) .marquee__inner {
  overflow: hidden;
  margin: 0 0 0 auto;
}
@media (min-width: 992px) {
  .lpWrapper .marquee:not(.pageMarqueeVertical) .marquee__inner {
    width: 100%;
  }
}
.lpWrapper .tableWrapper {
  overflow-x: auto;
}

/*==============================
 Lower Page Banner
===============================*/
.lpBnr:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #8B9CA5;
  mix-blend-mode: multiply;
  z-index: 2;
}
.lpBnr__img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.lpBnr__img canvas {
  min-height: 330px;
}
.lpBnr__txt {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lpBnr__txt p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
@media (min-width: 992px) {
  .lpBnr__txt p {
    font-size: 0.933vw;
  }
}
.lpBnr__txt h1 {
  margin-top: 10px;
  font-size: 32px;
  line-height: 1.40625;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 992px) {
  .lpBnr__txt h1 {
    font-size: 2.133vw;
    margin-top: 0.667vw;
  }
}

/*==============================
 Breadcrumb
===============================*/
.breadcrumbsWrap {
  position: relative;
  padding: 20px 0;
  color: #0D7FBB;
  font-size: 14px;
  line-height: 1.4285714286;
  z-index: 5;
}
@media (min-width: 992px) {
  .breadcrumbsWrap {
    font-size: 0.933vw;
    padding: 1.333vw 0;
  }
}
.breadcrumbsWrap a {
  color: #0D7FBB;
}

/*==============================
 Lower Page Content Full
===============================*/
#contentFull {
  min-height: 250px;
}

/*==============================
 Box
===============================*/
.box {
  text-align: center;
  padding: 60px 0 80px;
}
@media (min-width: 992px) {
  .box {
    padding: 4vw 0 5.333vw;
  }
}
.box .container {
  position: relative;
  z-index: 2;
}
.box .ttl {
  color: #fff;
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .box .ttl {
    margin: 0 0 2.667vw;
    font-size: 2.467vw;
  }
}
.box .ttl__animation {
  display: inline-block;
}
.box .ttl__animation span {
  margin: 0;
}
.box .ttl__animation span:first-child {
  color: #0B3B6C;
}
.box .ttl__animation span:last-child {
  color: #fff;
  top: 0;
}
.box .list01 {
  margin-top: 55px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.box--gray .ttl__animation span:first-child, .box--yellow .ttl__animation span:first-child {
  color: #fff;
}
.box--gray .ttl__animation span:last-child, .box--yellow .ttl__animation span:last-child {
  color: #0B3B6C;
}
.box--gray .marquee p, .box--yellow .marquee p {
  opacity: 0.03;
}
.box--gray .marquee {
  background: #EDEDED;
}
.box--yellow .marquee {
  background: #FCF6EC;
}

/*==============================
 Covid Info
===============================*/
.covidInfo {
  width: 100%;
  margin: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .covidInfo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .covidInfo {
    width: 87.96%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.covidInfo__item {
  width: 275px;
}
@media (min-width: 768px) {
  .covidInfo__item {
    margin: 15px;
  }
}
@media (min-width: 992px) {
  .covidInfo__item {
    width: 29.42%;
    margin: unset;
  }
}
.covidInfo__item:not(:first-child) {
  margin: 20px 0 0;
}
@media (min-width: 768px) {
  .covidInfo__item:not(:first-child) {
    margin: unset;
  }
}
.covidInfo__itemImg {
  width: 220px;
  margin: auto;
}
@media (min-width: 992px) {
  .covidInfo__itemImg {
    width: 81.48%;
  }
}
.covidInfo__itemTxt {
  color: #fff;
  letter-spacing: 0;
  line-height: 1.875;
  margin: 20px 0 0;
}
@media (min-width: 992px) {
  .covidInfo__itemTxt {
    margin: 1.333vw 0 0;
  }
}

/*==============================
 Lower Page Form
===============================*/
.IntbtnForm {
  text-align: center;
  margin: 50px auto;
}
.IntbtnForm a.siteBtn--oc {
  text-align: center;
  color: #fff;
  padding: 1.3333333333vw 3.3333333333vw;
  background-color: #0B3B6C;
}

@media (min-width: 992px) {
  .cf__field.quaterwidth {
    max-width: 70%;
  }
}
.cf__field.fullWidth textarea {
  width: 100%;
}
.cf__field.fullWidthBlue {
  background-color: #0B3B6C;
  width: 100%;
  text-align: center;
}
.cf__field.fullWidthBlue a {
  color: #fff;
  font-weight: bold;
}
.cf__field__birthday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (min-width: 992px) {
  .cf__field__birthday {
    max-width: 70%;
  }
}
.cf__field__birthday input {
  margin-left: 20px;
}
.cf__field__birthday input:first-of-type {
  margin-left: 0;
}
.cf__top {
  padding: 60px 0 50px;
}
@media (min-width: 992px) {
  .cf__top {
    padding: 4vw 0 3.333vw;
  }
}
.cf__top .container {
  z-index: 2;
}
.cf__topTxt {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin: 30px 0 0;
}
@media (min-width: 992px) {
  .cf__topTxt {
    font-size: 1.333vw;
    margin: 2vw 0 0;
  }
}
.cf__pagination {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cf__paginationItem {
  width: calc(33.33% - 10px);
  height: 50px;
  color: #0D7FBB;
  font-weight: bold;
  background: #0B3B6C;
  border: 2px solid #0B3B6C;
  border-radius: 40px;
  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;
}
@media (min-width: 992px) {
  .cf__paginationItem {
    height: 3.333vw;
  }
}
.cf__formTopPart__text {
  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;
  font-weight: bold;
  color: #0B3B6C;
}
.cf__formTopPart__text-span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #0B3B6C;
  padding: 0 3.3333333333vw 0 0.6666666667vw;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
@media (min-width: 992px) {
  .cf__formTopPart__text-span {
    font-size: 1.6vw;
  }
}
.cf__formTopPart__text-large {
  font-size: 20px;
  font-weight: bold;
  margin-right: 2vw;
}
@media (min-width: 992px) {
  .cf__formTopPart__text-large {
    font-size: 2.6666666667vw;
  }
}
.cf__formTopPart__text-normal {
  font-size: 20px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .cf__formTopPart__text-normal {
    font-size: 2.6666666667vw;
  }
}
.cf__formTopPart__text-dtl {
  text-align: center;
  color: #0B3B6C;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .cf__formTopPart__text-dtl {
    font-size: 1.3333333333vw;
  }
}
.cf__middle, .cf__bot {
  width: 100%;
  max-width: 700px;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .cf__middle, .cf__bot {
    max-width: 72.22%;
    padding: unset;
  }
}
.cf__middle {
  margin: 100px auto 0;
}
@media (min-width: 992px) {
  .cf__middle {
    margin: 10vw auto 0;
  }
}
.cf__middle.noMarginTop {
  margin: 0 auto;
}
.cf__row:not(:first-child) {
  margin: 25px 0 0;
}
@media (min-width: 992px) {
  .cf__row:not(:first-child) {
    margin: 1.667vw 0 0;
  }
}
.cf__row label {
  color: #0B3B6C;
  font-weight: 600;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 10px;
}
@media (min-width: 992px) {
  .cf__row label {
    margin: 0 0 0.667vw;
  }
}
.cf__row label .required {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: #0D7FBB;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 10px;
  margin: 0 0 0 10px;
}
@media (min-width: 992px) {
  .cf__row label .required {
    font-size: 0.933vw;
    padding: 0.333vw 0.667vw;
    margin: 0 0 0 0.667vw;
  }
}
.cf__row label + p {
  color: #0B3B6C;
}
.cf__field {
  width: 100%;
}
.cf__field input, .cf__field select {
  width: 100%;
  height: 50px;
  font-size: 14px;
  padding: 0 20px;
  border: 1px solid #D5D5D5;
  border-radius: 5px;
  outline: none;
}
@media (min-width: 992px) {
  .cf__field input, .cf__field select {
    font-size: 0.933vw;
    height: 3.333vw;
    padding: 0 1.333vw;
  }
}
.cf__field select {
  color: #0B3B6C;
  padding: 0 35px 0 20px;
  background: url("../images/common/arrow_down.png") no-repeat 92% center/12px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (min-width: 992px) {
  .cf__field select {
    padding: 0 2.333vw 0 1.333vw;
    background-size: 0.8vw 0.667vw;
  }
}
.cf__field--small {
  max-width: 300px;
}
@media (min-width: 992px) {
  .cf__field--small {
    max-width: 20vw;
  }
}
.cf__field br {
  display: none;
}
.cf__radio p {
  font-weight: 600;
}
.cf__radio .cf__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cf__radio .cf__field .mwform-radio-field:not(:first-child) {
  margin: 0 0 0 30px;
}
@media (min-width: 992px) {
  .cf__radio .cf__field .mwform-radio-field:not(:first-child) {
    margin: 0 0 0 2vw;
  }
}
.cf__radio input {
  display: none;
}
.cf__radio .mwform-radio-field-text {
  position: relative;
  padding: 0 0 0 24px;
}
.cf__radio .mwform-radio-field-text:before, .cf__radio .mwform-radio-field-text:after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.cf__radio .mwform-radio-field-text:before {
  left: 0;
  width: 14px;
  height: 14px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#8f8f8f), color-stop(#757575), color-stop(#5b5b5d), color-stop(#424445), to(#2a2d2f));
  background-image: linear-gradient(to top, #8f8f8f, #757575, #5b5b5d, #424445, #2a2d2f);
}
.cf__radio .mwform-radio-field-text:after {
  left: 3px;
  width: 8px;
  height: 8px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.16);
}
.cf__radio input:checked + .mwform-radio-field-text:after {
  background: #0D7FBB;
}
.cf__postal .cf__field {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cf__postal .cf__field p:first-child {
  margin: 0 15px 0 0;
}
.cf__postal .cf__field__zip div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.cf__address .cf__field:not(:first-of-type) {
  margin: 15px 0 0;
}
@media (min-width: 992px) {
  .cf__address .cf__field:not(:first-of-type) {
    margin: 1vw 0 0;
  }
}
.cf .mwform-tel-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.cf__courseCol {
  width: 100%;
}
.cf__courseCol:not(:first-child) {
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  .cf__courseCol {
    width: 35%;
  }
  .cf__courseCol:not(:first-child) {
    margin: 0 0 0 0.667vw;
  }
}
.cf__courseCol > label {
  color: #0D7FBB;
  font-weight: 600;
}
.cf__courseCol > label + br {
  display: none;
}
.cf__courseCol input {
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
  padding: 0;
  border-color: #D5D5D5;
}
.cf__course .mwform-checkbox-field {
  line-height: 1;
  font-size: 14px;
}
@media (min-width: 992px) {
  .cf__course .mwform-checkbox-field {
    font-size: 0.933vw;
  }
}
.cf__participation p {
  font-weight: 600;
}
.cf__participationRow {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .cf__participationRow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.cf__participationRow > .cf__field:not(:first-child) {
  margin: 20px 0 0;
}
@media (min-width: 992px) {
  .cf__participationRow > .cf__field:not(:first-child) {
    margin: 0 0 0 1.333vw;
  }
}
.cf__bot {
  margin: 80px auto 0;
}
@media (min-width: 992px) {
  .cf__bot {
    margin: 9.333vw auto 0;
  }
}
.cf__privacy {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cf__privacy .mwform-checkbox-field-text {
  display: none;
}
.cf__privacy input {
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
  padding: 0;
  border-color: #D5D5D5;
}
.cf__privacy a {
  color: #0D7FBB;
  text-decoration: underline;
}
.cf__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0D7FBB;
  color: #fff;
  width: 100%;
  max-width: 400px;
  height: 50px;
  margin: 20px auto 0;
  border-radius: 5px;
  position: relative;
  cursor: none;
}
@media (min-width: 992px) {
  .cf__btn {
    max-width: 66%;
    height: 3.333vw;
    margin: 1.333vw auto 0;
  }
}
.cf__btn input {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  font-size: 0;
  background: transparent;
  border: none;
  outline: none;
}
.cf__btn i {
  margin: 0 0 0 10px;
}
.cf__accent01 {
  top: 13%;
  right: 2.667vw;
}
.cf__accent02 {
  top: 53%;
  right: 2.667vw;
}
.cf__accent03 {
  top: 37%;
  left: 3.333vw;
}
.cf__accent04 {
  top: 75%;
  left: 3.333vw;
}
.cf > p {
  font-size: 0;
  line-height: 0;
}

.mw_wp_form_input .cf__btnSubmitTxt {
  display: none;
}
.mw_wp_form_input .cf__paginationItem:first-child {
  background: #fff;
}

.mw_wp_form_confirm .cf__privacy {
  display: none;
}
.mw_wp_form_confirm .cf__btnConfirmTxt {
  display: none;
}
.mw_wp_form_confirm .cf__paginationItem:nth-child(2) {
  background: #fff;
}
.mw_wp_form_confirm .cf__field {
  padding: 10px 20px;
  border: 1px solid #D5D5D5;
  border-radius: 5px;
}

.mw_wp_form_complete .container {
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*******************************************************
 *
 * CARD
 *
 *******************************************************/
/*-----------------------------------------------
  card 01
-----------------------------------------------*/
.card01__img {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .card01__img {
    margin-bottom: 1.2vw;
  }
}
.card01__ttl {
  margin-bottom: 10px;
  color: #0B3B6C;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2941176471;
}
.card01__ttl a {
  color: #0B3B6C;
}
.card01__ttl a i {
  margin-left: 12px;
}
@media (min-width: 992px) {
  .card01__ttl {
    margin-bottom: 0.6666666667vw;
    font-size: 1.1333333333vw;
  }
}
.card01__txt {
  background: #F7F7F8;
  color: #0B3B6C;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  padding: 10px;
}
@media (min-width: 992px) {
  .card01__txt {
    padding: 0.6666666667vw;
  }
}

/*******************************************************
 *
 * FAQ
 *
 *******************************************************/
.faq__ttl, .faq__content {
  position: relative;
  padding: 10px 15px 10px 47px;
}
.faq__ttl span, .faq__content span {
  position: absolute;
  left: 15px;
  font-size: 24px;
  line-height: 1;
}
@media (min-width: 992px) {
  .faq__ttl, .faq__content {
    padding: 0.6666666667vw 1.3333333333vw 0.6666666667vw 5.8666666667vw;
  }
  .faq__ttl span, .faq__content span {
    left: 1.3333333333vw;
    font-size: 2.6666666667vw;
  }
}
.faq__ttl {
  background: #157FBB;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}
.faq__ttl span {
  top: 10px;
}
@media (min-width: 992px) {
  .faq__ttl {
    font-size: 1.3333333333vw;
    margin-bottom: 1.3333333333vw;
  }
  .faq__ttl span {
    top: 0.1333333333vw;
  }
}
.faq__content {
  color: #0B3B6C;
  font-weight: 600;
  line-height: 1.875;
  margin: 0;
}
.faq__content:not(:last-child) {
  margin-bottom: 20px;
}
.faq__content span {
  top: 12px;
}
@media (min-width: 992px) {
  .faq__content:not(:last-child) {
    margin-bottom: 2.6666666667vw;
  }
  .faq__content span {
    top: 0.2vw;
  }
}

/*******************************************************
 *
 * Top Page
 *
 *******************************************************/
/*==============================
 Top Banner
===============================*/
.hpBnr {
  width: 100%;
  height: 100vh;
}
.hpBnr__accent {
  position: absolute;
  width: 60px;
  z-index: 2;
}
.hpBnr .slider {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
}
.hpBnr .slider > .slick-list, .hpBnr .slider .slick-track {
  font-size: 0;
  height: 100%;
}
.hpBnr .slider__item {
  height: 100%;
  overflow: hidden;
}
.hpBnr .slider__imgMain {
  width: 53.33vw;
  height: 81.46%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
  position: absolute;
  z-index: 2;
  opacity: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  -webkit-transition: all 2s ease-in-out;
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
}
@media (min-width: 992px) {
  .hpBnr .slider__imgMain {
    width: 23.2vw;
    height: calc(100% - 5.51vw);
    -o-object-position: top;
       object-position: top;
    left: 0;
    margin: auto;
  }
}
.hpBnr .slider__imgSecondary {
  position: absolute;
  transition: all 1.5s ease-in-out;
  -moz-transition: all 1.5s ease-in-out;
  -webkit-transition: all 1.5s ease-in-out;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
.hpBnr .slider__imgSecondary:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.hpBnr .slider__imgSecondary img {
  position: relative;
  width: 100%;
  opacity: 0;
  transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -webkit-transition-delay: 6.5s;
          transition-delay: 6.5s;
  z-index: 4;
}
.hpBnr .slider__imgSecondary--left {
  top: -16vw;
  left: -8vw;
  width: 70.867vw;
}
@media (min-width: 576px) {
  .hpBnr .slider__imgSecondary--left {
    width: 53.867vw;
  }
}
@media (min-width: 992px) {
  .hpBnr .slider__imgSecondary--left {
    top: 20.14vh;
    left: 4.16%;
    width: 27.533vw;
  }
}
.hpBnr .slider__imgSecondary--left:before {
  background: url("../images/top/slider_polygon01.png") no-repeat center center/100% 100%;
}
.hpBnr .slider__imgSecondary--right {
  top: 45vw;
  left: -15vw;
  width: 65.533vw;
}
@media (min-width: 576px) {
  .hpBnr .slider__imgSecondary--right {
    left: -8vw;
    width: 44.533vw;
  }
}
@media (min-width: 992px) {
  .hpBnr .slider__imgSecondary--right {
    top: 38.5vh;
    right: 7.63%;
    width: 26.4vw;
    left: unset;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
.hpBnr .slider__imgSecondary--right:before {
  background: url("../images/top/slider_polygon02.png") no-repeat center center/100% 100%;
}
.hpBnr .slider__caption {
  position: absolute;
  width: 62.667vw;
  left: 9.33%;
  bottom: 11.29%;
  z-index: 4;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  transition: all 1.5s ease-in-out;
  -moz-transition: all 1.5s ease-in-out;
  -webkit-transition: all 1.5s ease-in-out;
  -webkit-transition-delay: 5s;
          transition-delay: 5s;
}
@media (min-width: 992px) {
  .hpBnr .slider__caption {
    width: 29.03%;
    left: 50%;
    -webkit-transform: translate(-50%, 200%);
            transform: translate(-50%, 200%);
    bottom: 18.95%;
  }
}
.hpBnr .slider__caption h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.125;
  text-shadow: 0px 0px 15px rgba(11, 59, 108, 0.3);
}
@media (min-width: 576px) {
  .hpBnr .slider__caption h2 {
    font-size: 13.333vw;
  }
}
@media (min-width: 992px) {
  .hpBnr .slider__caption h2 {
    font-size: 5.333vw;
  }
}
.hpBnr .slider__caption h2 em {
  font-style: normal;
  font-weight: bold;
}
.hpBnr .slider__logo {
  width: 51.06%;
  max-width: 120px;
  margin: 0.667vw 0 0;
  display: block;
}
@media (min-width: 992px) {
  .hpBnr .slider__logo {
    width: 31%;
    margin: 0.667vw auto 0;
  }
}
.hpBnr .slider__catch {
  position: absolute;
  top: -10vh;
  left: 0;
  width: 53.19%;
  max-width: 125px;
}
@media (min-width: 576px) {
  .hpBnr .slider__catch {
    left: 21.27%;
  }
}
@media (min-width: 992px) {
  .hpBnr .slider__catch {
    width: 66%;
    left: unset;
    top: -30%;
    right: -50%;
    max-width: 266px;
  }
}
.hpBnr .slider .triangle {
  width: 85vw;
  height: 89.667vw;
  position: absolute;
  right: 20%;
  bottom: 10px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
@media (min-width: 992px) {
  .hpBnr .slider .triangle {
    width: 40vw;
    height: 42.667vw;
    left: 50%;
    right: unset;
    bottom: 4.14%;
    -webkit-transform: translateX(-75%) rotate(30deg);
            transform: translateX(-75%) rotate(30deg);
  }
}
.hpBnr .slider .triangle div {
  position: absolute;
  background: #EB6168;
}
.hpBnr .slider .triangle div:first-child {
  width: 7px;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  left: 67%;
  top: 10%;
  clip-path: polygon(0 0, 100% 10px, 100% calc(100% - 10px), 0 100%);
}
.hpBnr .slider .triangle div:nth-child(2) {
  height: 7px;
  bottom: 0;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
}
.hpBnr .slider .triangle div:nth-child(3) {
  width: 7px;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(-19deg);
          transform: rotate(-19deg);
  -webkit-transform-origin: inherit;
          transform-origin: inherit;
  clip-path: polygon(0 10px, 100% 0, 100% 100%, 0 calc(100% - 10px));
}
.hpBnr .slider .triangle--front {
  z-index: 3;
}
.hpBnr .slider .triangle--front div:first-child {
  background: transparent !important;
}
.hpBnr .slider .triangle--back {
  z-index: 1;
}
.hpBnr__accent {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  z-index: 2;
  display: none;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .hpBnr__accent {
    width: 7.6vw;
  }
}
.hpBnr__accent--01 {
  top: 60%;
  left: 20%;
}
.hpBnr__accent--02 {
  top: 20%;
  left: 20%;
}
.hpBnr__accent--03 {
  top: 40%;
  left: 80%;
}
.hpBnr__accent--02 {
  top: 70%;
  left: 70%;
}
.hpBnr canvas {
  height: 100vh;
}
.hpBnr .reset-animation .slider__imgMain, .hpBnr .reset-animation .slider__imgSecondary {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0s ease-out;
  transition: all 0s ease-out;
}
.hpBnr .reset-animation .slider__imgSecondary img {
  opacity: 0;
  -webkit-transition: all 0s ease-out;
  transition: all 0s ease-out;
}
.hpBnr .reset-animation .slider__caption {
  -webkit-transform: translate(-50%, 200%);
          transform: translate(-50%, 200%);
  -webkit-transition: all 0s ease-out;
  transition: all 0s ease-out;
}
.hpBnr .slick-active .slider__imgMain, .hpBnr .slick-active .slider__imgSecondary {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (min-width: 992px) {
  .hpBnr .slick-active .slider__imgSecondary--right {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.hpBnr .slick-active .slider__imgSecondary img {
  opacity: 1;
}
.hpBnr .slick-active .slider__caption {
  -webkit-transform: translate(0);
          transform: translate(0);
}
@media (min-width: 992px) {
  .hpBnr .slick-active .slider__caption {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.hpBnr .slick-active .triangle div:first-child {
  -webkit-animation: draw 1s ease-out 6s;
          animation: draw 1s ease-out 6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.hpBnr .slick-active .triangle div:nth-child(2) {
  -webkit-animation: draw2 1s ease-out 7s;
          animation: draw2 1s ease-out 7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.hpBnr .slick-active .triangle div:nth-child(3) {
  -webkit-animation: draw3 1s ease-out 8s;
          animation: draw3 1s ease-out 8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.hpBnr__spBtn {
  position: fixed;
  width: calc(100% - 8px);
  left: 4px;
  bottom: 4px;
  border-radius: 2px;
  z-index: 10;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hpBnr__spBtn {
    position: absolute;
  }
}
.hpBnr__spBtn a {
  position: relative;
  width: 25%;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  background: #0B3B6C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 0;
  line-height: 1.2;
  height: 48px;
}
@media (min-width: 992px) {
  .hpBnr__spBtn a {
    font-size: 3.467vw;
  }
}
.hpBnr__spBtn a:last-child {
  width: 100%;
}
.hpBnr__spBtn a::before {
  content: "";
  border-radius: 1px;
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: -3px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hpBnr__spBtn a span {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.hpBnr__spBtn a i,
.hpBnr__spBtn a svg {
  margin: 0 3px 0 0;
}
.hpBnr__spBtn a:nth-of-type(1) {
  background: #EB6168;
}
.hpBnr__spBtn a:nth-of-type(2) {
  background: #00D5E6;
}
.hpBnr__spBtn a:last-of-type {
  background: #006BB0;
  padding: 15px 0;
}

@-webkit-keyframes draw {
  0% {
    height: 0;
  }
  100% {
    height: calc(110% - 2px);
  }
}

@keyframes draw {
  0% {
    height: 0;
  }
  100% {
    height: calc(110% - 2px);
  }
}
@-webkit-keyframes draw2 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes draw2 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes draw3 {
  0% {
    height: 0;
  }
  100% {
    height: 95%;
  }
}
@keyframes draw3 {
  0% {
    height: 0;
  }
  100% {
    height: 95%;
  }
}
/*==============================
 Top Topics
===============================*/
.hpTopics {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .hpTopics {
    padding: 4.667vw 0 6.667vw;
  }
}
.hpTopics .topics .slick-list {
  margin: 0 -15px;
  padding: 0 30.83% 0 0;
  font-size: 0;
}
.hpTopics .topics__item {
  padding: 0 15px;
}
.hpTopics__nextBtn {
  width: 6.667vw;
  height: 6.667vw;
  border: 3px solid #0B3B6C;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0B3B6C;
  font-size: 0.933vw;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  border-radius: 50%;
  position: absolute;
  right: 10vw;
  bottom: -5.333vw;
  z-index: 5;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.hpTopics__nextBtn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hpTopics__nextBtn span:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.567vw solid transparent;
  border-bottom: 0.567vw solid transparent;
  border-left: 0.667vw solid #0B3B6C;
  border-radius: 3px;
  margin: 0 0 0 5px;
  letter-spacing: 0.05em;
}
.hpTopics__nextBtn:hover {
  color: #fff;
  background: #0B3B6C;
}
.hpTopics__nextBtn:hover span:after {
  border-left-color: #fff;
}
.hpTopics .slick-prev {
  display: none !important;
}

.hpTopics-bottom {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .hpTopics-bottom {
    padding: 0 0 18vw;
  }
}

/*==============================
 Top Course
===============================*/
@media (min-width: 992px) {
  .hpCourse {
    padding: 4.667vw 0 6.667vw;
  }
}
.hpCourse .container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 991px) {
  .hpCourse .container {
    padding: 0;
  }
}
.hpCourse .hpCourse__img {
  width: calc(100% + 20px);
}
@media (min-width: 992px) {
  .hpCourse .hpCourse__img {
    width: 70%;
  }
}
.hpCourse .hpCourse__con {
  width: 100%;
  padding: 50px 0;
  z-index: 3;
}
@media (min-width: 992px) {
  .hpCourse .hpCourse__con {
    width: 53.33%;
    margin: 5.333vw 0 0 -23.33%;
    padding: 2vw 10px 4vw;
  }
}
.hpCourse .hpCourse__conInner {
  position: relative;
  z-index: 2;
}
.hpCourse .hpCourse__con .ttl {
  padding: 0 20px;
}
@media (min-width: 992px) {
  .hpCourse .hpCourse__con .ttl {
    padding: 0;
  }
}
.hpCourse .hpCourse__con .ttl small {
  margin: 0 0 0 -20px !important;
  padding: 0 25px 0 38px !important;
}
@media (min-width: 992px) {
  .hpCourse .hpCourse__con .ttl small {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .hpCourse .hpCourse__con .ttl__animation {
    margin: 0 0 0 6.25%;
  }
}
.hpCourse .hpCourse__con .ttl span {
  color: #000;
  padding: 0 0 0 20px;
}
.hpCourse .hpCourse__con .ttl span:last-child {
  color: #fff;
}
@media (min-width: 992px) {
  .hpCourse .hpCourse__con .ttl span {
    font-size: 2.467vw;
    padding: 0 0 0 2vw;
  }
}
.hpCourse .hpCourse__con .ttl span em {
  font-size: 40px;
  font-style: normal;
}
@media (min-width: 992px) {
  .hpCourse .hpCourse__con .ttl span em {
    font-size: 2.667vw;
  }
}
@media (min-width: 576px) {
  .hpCourse .hpCourse__con .ttl span br {
    display: none;
  }
}
.hpCourse .hpCourse__con .list01 {
  padding: 0 20px;
}
@media (min-width: 992px) {
  .hpCourse .hpCourse__con .list01 {
    padding: 0;
    max-width: 27vw;
  }
}
.hpCourse .hpCourse__con .list01 li {
  width: 100%;
}
@media (min-width: 576px) {
  .hpCourse .hpCourse__con .list01 li {
    width: auto;
  }
}
.hpCourse .hpCourse__con .list01 li a {
  display: inline-block;
  white-space: nowrap;
}
.hpCourse .hpCourse__con .marquee {
  width: 100%;
}
.hpCourse .accent--01 {
  width: 153px;
  top: 43vw;
  right: 2.667vw;
  z-index: 5;
}
@media (min-width: 992px) {
  .hpCourse .accent--01 {
    width: 20.667vw;
    top: -1vw;
    right: 2.667vw;
    z-index: 2;
  }
}
.hpCourse .accent--02 {
  bottom: 4.667vw;
  left: 3.333vw;
}
.hpCourse .accent--03 {
  bottom: -7.667vw;
  right: 17.333vw;
  z-index: 3;
}

/*==============================
 Top Management
===============================*/
.hpManagement {
  padding: 70px 0;
  z-index: 5;
}
@media (min-width: 992px) {
  .hpManagement {
    padding: 6.667vw 0;
  }
}
.hpManagement .hpManagement__bg {
  width: 100%;
  height: 25.11%;
  top: unset;
  right: unset;
  left: 0;
  bottom: 70px;
  background: #FCAE30;
  z-index: 1;
}
@media (min-width: 992px) {
  .hpManagement .hpManagement__bg {
    width: 66.66%;
    height: 100%;
    bottom: 0;
    left: 9.09%;
  }
}
.hpManagement .hpManagement__bg p {
  color: #DE7939;
}
.hpManagement .hpManagement__bg span {
  display: block;
}
.hpManagement__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
}
@media (min-width: 992px) {
  .hpManagement__inner {
    padding: 3.333vw 4vw 3vw;
  }
}
.hpManagement__inner p {
  color: #F0952A;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5555555556;
  margin: 0.667vw 0 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 992px) {
  .hpManagement__inner p {
    color: #F47A2D;
    font-size: 1.467vw;
  }
}
.hpManagement__ttl {
  color: #F47A2D;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.375;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 992px) {
  .hpManagement__ttl {
    color: #fff;
    font-size: 2.467vw;
    line-height: 1.3513513514;
  }
}
.hpManagement .siteBtn {
  max-width: 300px;
  background: #F47A2D;
  margin: 30px auto 0;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
@media (min-width: 992px) {
  .hpManagement .siteBtn {
    max-width: 20vw;
    margin: 2vw 0 0;
    background: #DE7939;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.hpManagement__img {
  width: 114%;
  margin: 0 -27% 0 0;
  max-width: unset;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 992px) {
  .hpManagement__img {
    position: absolute;
    width: 66.83%;
    height: calc(100% + 60px);
    right: -2.5%;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
    margin: unset;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media (max-width: 991px) {
  .hpManagement .accent--07 {
    width: 240px;
    top: 100px;
    left: -40px;
  }
}

/*==============================
 Top School
===============================*/
@media (min-width: 992px) {
  .hpSchool {
    padding: 6.667vw 0;
  }
}
.hpSchool .contents {
  margin: -7px;
  -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;
}
@media (min-width: 768px) {
  .hpSchool .contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.hpSchool .contents__item {
  width: 100%;
  max-width: 375px;
  padding: 7px;
}
@media (min-width: 768px) {
  .hpSchool .contents__item {
    width: 50%;
    max-width: unset;
  }
}
@media (min-width: 992px) {
  .hpSchool .contents__item {
    width: 33.33%;
  }
}
.hpSchool .contents__ttl {
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1.4583333333;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  padding: 0 7.5%;
  z-index: 3;
}
@media (min-width: 992px) {
  .hpSchool .contents__ttl {
    font-size: 1.6vw;
  }
}
.hpSchool .contents__ttl span {
  font-size: 32px;
  margin: 0 5px;
  display: inline-block;
}
@media (min-width: 992px) {
  .hpSchool .contents__ttl span {
    font-size: 2.267vw;
  }
}
.hpSchool .contents__item:nth-child(1) p {
  color: #87519D;
}
.hpSchool .contents__item:nth-child(2) p {
  color: #1DAA9B;
}
.hpSchool .contents__item:nth-child(3) p {
  color: #EB6168;
}
.hpSchool .contents__item:nth-child(4) p {
  color: #0B3B6C;
}
.hpSchool .contents__item:nth-child(5) p {
  color: #F0952A;
}
.hpSchool .accent--04 {
  top: 11vw;
  right: 6.333vw;
}
.hpSchool .accent--05 {
  bottom: -5.333vw;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

/*==============================
 Top Information
===============================*/
.hpInformation {
  padding: 70px 0;
}
@media (min-width: 992px) {
  .hpInformation {
    padding: 6.667vw 0;
  }
}
.hpInformation .info {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 992px) {
  .hpInformation .info {
    gap: 0;
  }
}
.hpInformation .info__item {
  width: 45%;
  max-width: 500px;
}
@media (min-width: 992px) {
  .hpInformation .info__item {
    width: 47.22%;
    max-width: unset;
  }
}
.hpInformation .info__item:last-child {
  margin: 40px 0 0;
}
@media (min-width: 992px) {
  .hpInformation .info__item:last-child {
    margin: 0;
  }
}
.hpInformation .info__img {
  overflow: hidden;
}
.hpInformation .info__con {
  margin: 5px 0 0;
}
@media (max-width: 991px) {
  .hpInformation .info__con {
    height: auto !important;
  }
}
.hpInformation .info__date {
  color: #0B3B6C;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}
.hpInformation .info__ttl {
  color: #0B3B6C;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .hpInformation .info__ttl {
    font-size: 1.333vw;
  }
}
.hpInformation .info__tag {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  display: inline-block;
  background: #0B3B6C;
  padding: 6px 10px;
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  .hpInformation .info__tag {
    font-size: 0.933vw;
  }
}
.hpInformation .accent--04 {
  top: 11vw;
  right: 6.333vw;
}
.hpInformation .accent--06 {
  bottom: 7.21%;
  left: 0;
}

/*==============================
 Top Campus
===============================*/
.hpCampus {
  padding: 10px 0 0;
}
@media (min-width: 992px) {
  .hpCampus {
    padding: 6.667vw 0 0;
  }
}
.hpCampus__calendar {
  padding: 5px 0 0;
  background: #F0F1F1;
  margin: 0 auto 50px;
}
@media (min-width: 992px) {
  .hpCampus__calendar {
    margin: 0 auto 12.333vw;
  }
}
.hpCampus .legend {
  padding: 0 10px;
}
.hpCampus .legend__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}
.hpCampus .legend__item span {
  width: 10px;
  height: 10px;
  margin: 0 15px 0 0;
}
.hpCampus .legend__item:not(:last-child) {
  margin: 0 20px 0 0;
}
.hpCampus .legend__item:nth-child(1) span {
  background: #38ae97;
}
.hpCampus .legend__item:nth-child(2) span {
  background: #c9564a;
}
.hpCampus .legend__item:nth-child(3) span {
  background: #f29442;
}
.hpCampus .legend__item:nth-child(4) span {
  background: #52a7e0;
}
.hpCampus .legend__item:nth-child(5) span {
  background: #4287b5;
}
.hpCampus .ai1ec-calendar-toolbar, .hpCampus .ai1ec-pull-left, .hpCampus .ai1ec-subscribe-container {
  display: none !important;
}
.hpCampus .ai1ec-btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 8px;
}
.hpCampus .ai1ec-btn-group {
  float: none !important;
  margin: 0 !important;
}
.hpCampus .ai1ec-btn-group a {
  margin: 0 2px;
  margin: 0 !important;
}
.hpCampus__links {
  width: 100%;
  max-width: 315px;
  padding: 5px 0 0;
  margin: 50px auto 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hpCampus__links {
    width: 80%;
    max-width: unset;
  }
}
@media (min-width: 992px) {
  .hpCampus__links {
    width: 83.33%;
    max-width: unset;
    margin: 12.333vw auto 0;
    margin: 0 auto;
  }
}
.hpCampus .cta {
  margin: 0 -15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .hpCampus .cta {
    margin: 0 -1.133vw;
  }
}
.hpCampus .cta__item {
  width: 100%;
  padding: 15px;
}
@media (min-width: 768px) {
  .hpCampus .cta__item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .hpCampus .cta__item {
    width: 25%;
    padding: 0 1.133vw;
  }
}
.hpCampus .cta__link {
  border-radius: 10px;
  overflow: hidden;
}
.hpCampus .cta__txt {
  color: #0B3B6C;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
  z-index: 3;
}
@media (min-width: 992px) {
  .hpCampus .cta__txt {
    color: #fff;
    font-size: 1.133vw;
  }
}
.hpCampus .cta__txt:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin: 0 0 0 14px;
}

/*==============================
 Top Merits
===============================*/
.hpMerits {
  padding: 40px 0 0;
}
@media (min-width: 992px) {
  .hpMerits {
    padding: 6.667vw 0 0;
  }
}
.hpMerits .ttl {
  margin: 0;
}
.hpMerits .features {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -12px;
  z-index: 2;
}
@media (min-width: 992px) {
  .hpMerits .features {
    margin: 0 -1.467vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
.hpMerits .features__item {
  width: 100%;
  max-width: 330px;
  padding: 12px;
}
@media (min-width: 992px) {
  .hpMerits .features__item {
    width: 33.33%;
    max-width: unset;
    padding: 0 1.467vw;
  }
}
.hpMerits .features__ttl {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
@media (min-width: 992px) {
  .hpMerits .features__ttl {
    font-size: 1.6vw;
  }
}
.hpMerits .features__box {
  background: #fff;
  color: #0B3B6C;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8333333333;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .hpMerits .features__box {
    font-size: 1.2vw;
    padding: 2vw;
  }
}
.hpMerits .features__box a {
  color: #0B3B6C;
}
.hpMerits .features__box span {
  display: block;
}
.hpMerits .features__box em {
  font-size: 24px;
  font-style: normal;
  line-height: 1.375;
}
@media (min-width: 992px) {
  .hpMerits .features__box em {
    font-size: 1.6vw;
  }
}
.hpMerits__bot {
  padding: 70px 0;
}
@media (min-width: 992px) {
  .hpMerits__bot {
    padding: 11.667vw 0 13.333vw;
  }
}
.hpMerits__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: visible;
  background: transparent;
}
.hpMerits__bgCol {
  width: 100%;
  height: 100%;
  background: #0D7FBB;
  position: absolute;
  top: 0;
  left: 20px;
  clip-path: polygon(0 10%, 100% 0%, 100% 85%, 0% 100%);
}
@media (min-width: 992px) {
  .hpMerits__bgCol {
    width: 56%;
    left: unset;
    clip-path: polygon(0 15%, 100% 0%, 100% 85%, 0% 100%);
  }
}
.hpMerits__bgCol:last-child {
  right: 20px;
  top: 23.01%;
  background: #0B3B6C;
  left: unset;
  height: 80%;
}
@media (min-width: 992px) {
  .hpMerits__bgCol:last-child {
    top: 0;
    right: 0;
    height: 100%;
  }
}
.hpMerits__bgCol:last-child p {
  color: #0D7FBB;
}

/*==============================
 Top Admissions
===============================*/
.hpAdmission {
  padding: 5px 0 85px;
  margin-top: 50px;
  margin-bottom: -80px;
}
@media (min-width: 768px) {
  .hpAdmission {
    padding: 0.667vw 0vw 8.8vw;
    margin-bottom: -58px;
    margin-top: 100px;
  }
}
.hpAdmission .admissions__item {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .hpAdmission .admissions__item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .hpAdmission .admissions__item {
    padding: 1.333vw;
    font-size: 1vw;
  }
}
.hpAdmission .admissions__item p:first-of-type {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .hpAdmission .admissions__item p:first-of-type {
    font-size: 1.533vw;
  }
}
.hpAdmission .admissions__item a {
  color: #fff;
  display: block;
  padding: 35px 30px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .hpAdmission .admissions__item a {
    padding: 2.133vw 2vw;
  }
}
.hpAdmission .admissions__item:nth-child(1) a {
  background: #1DAA9B;
}
.hpAdmission .admissions__item:nth-child(2) a {
  background: #EB6168;
}
.hpAdmission .admissions__item:nth-child(3) a {
  background: #87519D;
}
.hpAdmission .admissions__item:nth-child(4) a {
  background: #F0952A;
}

/*******************************************************
 *
 * Course Page
 *
 *******************************************************/
.page-id-34154 .footerTop {
  display: none;
}

.lpCourse .box {
  padding: 60px 0 40px;
}
@media (min-width: 992px) {
  .lpCourse .box {
    padding: 4vw 0 3vw;
  }
}
.lpCourse__catchTxt {
  margin: 0 0 25px;
  color: #0B3B6C;
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .lpCourse__catchTxt {
    font-size: 1.333vw;
    margin: 0 0 1.667vw;
  }
}
.lpCourse__list {
  margin: 60px 0 0 0;
}
@media (min-width: 992px) {
  .lpCourse__list {
    margin: 6.667vw 0 0 0;
  }
}
.lpCourse .accent {
  top: 0;
  right: 2vw;
}
.lpCourse .ttl {
  font-size: 22px;
}
@media (min-width: 992px) {
  .lpCourse .ttl {
    font-size: 28px;
  }
}

.lpCourseList__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
}
@media (min-width: 992px) {
  .lpCourseList__wrap {
    margin-top: 200px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 24px;
  }
}
.lpCourseList__item {
  width: 100%;
}
@media (min-width: 992px) {
  .lpCourseList__item {
    width: calc(50% - 12.5px);
  }
}
@media (min-width: 992px) {
  .lpCourseList__item:nth-child(odd) {
    margin-top: -60px;
  }
}
@media (min-width: 992px) {
  .lpCourseList__item:nth-child(even) {
    margin-top: 60px;
  }
}

/*******************************************************
 *
 * Entry Page
 *
 *******************************************************/
.lpEEntry__campusItem:first-child {
  margin: 100px 0 0;
}
@media (min-width: 992px) {
  .lpEEntry__campusItem:first-child {
    margin: 10vw 0 0;
  }
}
.lpEEntry__campusItem:not(:first-child) {
  margin: 60px 0 0;
}
@media (min-width: 992px) {
  .lpEEntry__campusItem:not(:first-child) {
    margin: 5.333vw 0 0;
  }
}
.lpEEntry__campusItem p + .list02 {
  margin: 45px 0 0;
}
@media (min-width: 992px) {
  .lpEEntry__campusItem p + .list02 {
    margin: 3vw 0 0;
  }
}
.lpEEntry__campusBnr {
  width: 100%;
  max-width: 600px;
  margin: auto;
}
@media (min-width: 992px) {
  .lpEEntry__campusBnr {
    max-width: 81.48%;
  }
}
.lpEEntry__schedNote {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
  margin: 30px 0 0;
}
@media (min-width: 992px) {
  .lpEEntry__schedNote {
    margin: 1vw 0 0 18.51%;
  }
}
.lpEEntry__schedImg {
  width: 100%;
  max-width: 600px;
  margin: 25px auto 0;
}
@media (min-width: 992px) {
  .lpEEntry__schedImg {
    max-width: 55.55%;
    margin: 1.667vw auto 0;
  }
}
.lpEEntry__schedImg + p {
  line-height: 1.5;
  margin: 25px auto 0;
}
@media (min-width: 992px) {
  .lpEEntry__schedImg + p {
    margin: 1.667vw auto 0;
  }
}
.lpEEntry__access {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.042vw 2.604vw;
}
@media (min-width: 992px) {
  .lpEEntry__access {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px 50px;
  }
}
.lpEEntry__accessMaps {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin: 50px auto 0;
  max-width: 500px;
  width: 100%;
}
@media (min-width: 992px) {
  .lpEEntry__accessMaps {
    max-width: 67vw;
    gap: 3.3333333333vw;
    margin: 3.3333333333vw auto 0;
  }
}
.lpEEntry__accessMap {
  width: 100%;
}
@media (min-width: 992px) {
  .lpEEntry__accessMap {
    width: calc(50% - 2vw);
  }
}
.lpEEntry__accessMapTtl {
  background: #F7F7F7;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  line-height: 1.875;
  margin: 0 0 20px;
  padding: 5px 16px;
}
.lpEEntry__accessMapTtl::before {
  content: "\f3c5";
  color: #0B3B6C;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2em;
  line-height: 1;
  margin: 0 8px 0 0;
}
@media (min-width: 992px) {
  .lpEEntry__accessMapTtl {
    margin: 0 0 1.3333333333vw;
  }
}
.lpEEntry .siteBtn02 {
  margin: 50px auto 0;
}
.lpEEntry .siteBtn02.short {
  height: 47px;
}
@media (min-width: 992px) {
  .lpEEntry .siteBtn02 {
    margin: 4.667vw auto 0;
  }
  .lpEEntry .siteBtn02.short {
    height: 4vw;
  }
}
.lpEEntry .box--gray {
  margin: 100px 0;
}
@media (min-width: 992px) {
  .lpEEntry .box--gray {
    margin: 10vw 0;
  }
}

/*******************************************************
 *
 * Individual Briefing Page
 *
 *******************************************************/
.lpIBS {
  margin: 40px 0 0;
}
@media (min-width: 992px) {
  .lpIBS {
    margin: 2.6666666667vw 0 0;
  }
}
.lpIBS section + section {
  margin: 100px 0 0;
}
@media (min-width: 992px) {
  .lpIBS section + section {
    margin: 10vw 0 0;
  }
}
.lpIBS__mainItem:not(:first-child) {
  margin: 60px 0 0;
}
@media (min-width: 992px) {
  .lpIBS__mainItem:not(:first-child) {
    margin: 5.333vw 0 0;
  }
}
.lpIBS__mainContact {
  line-height: 1.75;
}
.lpIBS__mainContact .phone {
  font-size: 40px;
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  .lpIBS__mainContact .phone {
    font-size: 2.667vw;
    font-weight: bold;
  }
}
.lpIBS__mainContact .phone + .siteBtn02 {
  margin: 25px auto 0 !important;
}
@media (min-width: 992px) {
  .lpIBS__mainContact .phone + .siteBtn02 {
    margin: 1.667vw auto 0 !important;
  }
}
.lpIBS .siteBtn02 {
  margin: 50px auto 0;
}
@media (min-width: 992px) {
  .lpIBS .siteBtn02 {
    margin: 4.667vw auto 0;
  }
}
.lpIBS .box--gray {
  margin: 100px 0 0;
}
@media (min-width: 992px) {
  .lpIBS .box--gray {
    margin: 10vw 0 0;
  }
}

/*******************************************************
 *
 * Single Course Page
 *
 *******************************************************/
.singleCourse .breadcrumbsWrap {
  position: absolute;
  top: 26px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0;
  height: 40px;
  width: calc(100% - 60px);
}
@media (min-width: 992px) {
  .singleCourse .breadcrumbsWrap {
    position: relative;
    top: auto;
    left: auto;
    padding: 20px 0;
    width: 100%;
  }
}
.singleCourse .ttl span {
  line-height: 1.3513513514;
}
.singleCourse .ttl.textCenter .ttl__animation {
  display: inline-block;
}
.singleCourse .ttl.textCenter .ttl__animation span:last-child {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
.singleCourse .ttl em {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  display: block;
  margin: 16px 0 0;
  line-height: 1.6363636364;
}
@media (min-width: 992px) {
  .singleCourse .ttl em {
    font-size: 1.467vw;
    margin: 1.0667vw 0 0;
  }
}
.singleCourse .ttl em + small {
  color: #0B3B6C;
  font-size: 14px;
  background: transparent;
  padding: 0 !important;
  margin: 10px 0 0 !important;
  display: block;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 992px) {
  .singleCourse .ttl em + small {
    font-size: 0.933vw;
    margin: 0.667vw 0 0 !important;
  }
}
.singleCourse .borderedBox {
  background: #fff;
  border: 1px solid #D5D5D5;
  border-radius: 10px;
  margin: auto;
  padding: 20px;
}
@media (min-width: 768px) {
  .singleCourse .borderedBox {
    padding: 2.133vw 6.667vw;
  }
}
.singleCourse .note {
  font-size: 14px;
  line-height: 1.8571428571;
}
@media (min-width: 992px) {
  .singleCourse .note {
    font-size: 0.933vw;
  }
}
.singleCourse .section {
  margin: 80px 0 0;
}
@media (min-width: 992px) {
  .singleCourse .section {
    margin: 13.3333333333vw 0 0;
  }
}
.singleCourse .targets {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .singleCourse .targets {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: -5px 0 0;
  }
}
.singleCourse .targets__item {
  position: relative;
  padding: 0 0 0 30px;
}
@media (min-width: 992px) {
  .singleCourse .targets__item {
    margin: 5px 2.333vw 0 0;
  }
}
.singleCourse .targets__item:before {
  position: absolute;
  content: "国";
  left: 0;
  top: 6px;
  color: #fff;
  background: #0B3B6C;
  line-height: 1;
  padding: 3px;
}
.singleCourse .targets__item--disc:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.singleCourse .accent--01 {
  top: -8.667vw;
  right: 2vw;
  z-index: 3;
}
.singleCourse .accent--02 {
  bottom: -3vw;
  left: 3.333vw;
  z-index: 1;
}
.singleCourse .accent--center {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.singleCourse__youtube {
  max-width: 860px;
  margin: 0 auto 5rem;
}
@media (min-width: 768px) {
  .singleCourse__youtube {
    margin: 0 auto 10rem;
  }
}
.singleCourse__lists .bg-gray {
  background: #f7f7f7;
}
.singleCourse__list {
  padding: 50px 0;
}
.singleCourse__list-flexbox {
  gap: 0 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .singleCourse__list-flexbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.singleCourse__list-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .singleCourse__list-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.singleCourse .course__details {
  width: 100%;
}
@media (min-width: 992px) {
  .singleCourse .course__details {
    width: calc(100% - 450px);
  }
}
.singleCourse .course__image {
  width: 100%;
}
@media (min-width: 992px) {
  .singleCourse .course__image {
    width: 400px;
    max-width: 100%;
  }
}
.singleCourse .course__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 2.25;
}
.singleCourse .course__name {
  position: relative;
  background: #0B3B6C;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.7272727273;
  text-transform: uppercase;
  text-align: right;
  padding: 5px 25px 5px 50px;
  margin-left: -50px;
  background: #0B3B6C;
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, calc(100% - 13px) 50%, 100% 100%, 0 100%, 0% 50%);
}
@media (min-width: 992px) {
  .singleCourse .course__name {
    font-size: 1.467vw;
    padding: 0 25px 0 50px;
  }
}
.singleCourse .course__name::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: #0D7FBB;
}

/*-----------------------------------------------
  target section
-----------------------------------------------*/
.singleCourse__target {
  padding: 0 0 100px;
}
.singleCourse__target .container {
  position: relative;
  top: -30px;
  z-index: 1;
}
.singleCourse__target .tab__nav {
  margin-bottom: 40px;
  gap: 5px;
}
@media (min-width: 992px) {
  .singleCourse__target .tab__nav {
    gap: 0 12px;
  }
}
.singleCourse__target .tab__link {
  padding: 0 15px;
  font-size: 14px;
  border-radius: 17px;
  background-color: #fff;
  border: 1px solid #D5D5D5;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.singleCourse__target .tab__link.is-active, .singleCourse__target .tab__link:hover {
  color: #fff;
  background: #0D7FBB;
  border-color: transparent;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.singleCourse__target .borderedBox {
  display: none;
}
.singleCourse__target .borderedBox.is-active {
  display: block;
}

/*-----------------------------------------------
  top section
-----------------------------------------------*/
.singleCourse__top {
  margin: 0 !important;
}
.singleCourse__top .ttl {
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .singleCourse__top .ttl {
    margin: 0 0 3.333vw;
  }
}
.singleCourse__top .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 992px) {
  .singleCourse__top .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.singleCourse__top .imgWrap {
  width: 100%;
  margin-left: auto;
}
.singleCourse__top .imgWrap img {
  -o-object-position: top 30% left 50%;
     object-position: top 30% left 50%;
}
@media (min-width: 992px) {
  .singleCourse__top .imgWrap {
    width: 50%;
    max-width: unset;
    margin: unset;
  }
}
.singleCourse__topCon {
  width: 100%;
  color: #fff;
  font-size: 18px;
  line-height: 1.7777777778;
  margin: 30px 0 0;
}
@media (min-width: 992px) {
  .singleCourse__topCon {
    font-size: 1.2vw;
    width: 50%;
    padding: 0 5.09% 0 0;
    margin: unset;
  }
}
.singleCourse__topConInner {
  padding: 0 20px;
}
@media (min-width: 992px) {
  .singleCourse__topConInner {
    padding: 0 0 0 2vw;
  }
}
.singleCourse__top .imgWrap img {
  max-width: unset;
  left: unset;
}
@media (max-width: 991px) {
  .singleCourse__top .imgWrap img {
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  .singleCourse__top .imgWrap img {
    top: -7vw;
  }
}
.singleCourse__top .ttl__animation {
  margin: 25px 0 0;
}
@media (min-width: 992px) {
  .singleCourse__top .ttl__animation {
    margin: 1.667vw 0 0;
  }
}

.singleCourse__box {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #868686;
  border-radius: 10px;
  background: #fff;
  padding: 15px 30px;
  margin: 40px 0 0;
  gap: 0 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 550px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 992px) {
  .singleCourse__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.singleCourse__box .img {
  margin-top: 10px;
}
.singleCourse__boxLeft {
  color: #0B3B6C;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (min-width: 992px) {
  .singleCourse__boxLeft {
    font-size: 1.067vw;
  }
}
.singleCourse__boxLeft .flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 0 10px;
}
@media (min-width: 992px) {
  .singleCourse__boxLeft .flexbox {
    gap: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: initial;
  }
}
.singleCourse__boxLeft p.bordered {
  border: 1px solid #0B3B6C;
  padding: 4px;
  letter-spacing: 0;
  line-height: 1;
  font-size: 14px;
}
.singleCourse__boxLeft .intro__boxYear {
  margin: 0 !important;
}
.singleCourse__box img {
  max-width: 152px;
}
@media (min-width: 992px) {
  .singleCourse__box img {
    height: 3.63vw;
    max-width: 100%;
  }
}
.singleCourse__boxRight {
  max-width: 278px;
  font-size: 14px;
  line-height: 2.2857142857;
}

/*-----------------------------------------------
  curriculum section
-----------------------------------------------*/
.singleCourse__curriculum {
  padding: 0 0 50px;
}
.singleCourse__curriculum .ttl05 {
  position: relative;
  top: -25px;
}
@media (min-width: 576px) {
  .singleCourse__curriculum .list03 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
@media (min-width: 992px) {
  .singleCourse__curriculum .list03 {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
.singleCourse__curriculum .list03__item {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.singleCourse__curriculum .note {
  text-align: right;
  margin: 25px 6.94% 0 0;
}
@media (min-width: 992px) {
  .singleCourse__curriculum .note {
    margin: 1.667vw 6.94% 0 0;
  }
}
.singleCourse__curriculum .container {
  position: relative;
  z-index: 1;
}
.singleCourse__curriculum .borderedBox {
  display: none;
}
.singleCourse__curriculum .borderedBox.is-active {
  display: block;
}

/*-----------------------------------------------
  timetable section
-----------------------------------------------*/
.singleCourse__timetable .tab__nav {
  margin-bottom: 40px;
  gap: 5px;
}
@media (min-width: 992px) {
  .singleCourse__timetable .tab__nav {
    gap: 0 12px;
  }
}
.singleCourse__timetable .tab__link {
  padding: 0 15px;
  font-size: 14px;
  border-radius: 17px;
  background-color: #fff;
  border: 1px solid #D5D5D5;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.singleCourse__timetable .tab__link.is-active, .singleCourse__timetable .tab__link:hover {
  color: #fff;
  background: #0D7FBB;
  border-color: transparent;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.singleCourse__timetable table {
  width: 1000px;
  border-spacing: 12px;
  table-layout: fixed;
  margin: auto;
}
.singleCourse__timetable table td,
.singleCourse__timetable table th {
  font-size: 14px;
  width: 140px;
}
.singleCourse__timetable table tr {
  position: relative;
}
.singleCourse__timetable table tr:not(:first-child):after {
  position: absolute;
  content: "";
  width: calc(100% - 175px);
  height: 2px;
  border-bottom: 1px dotted #D5D5D6;
  bottom: 0;
  right: 0;
}
.singleCourse__timetable table tr th {
  color: #fff;
  font-weight: bold;
  background: #0D7FBB;
  padding: 4px 10px;
  border-radius: 40px;
}
.singleCourse__timetable table tr th:first-child {
  width: 180px !important;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.singleCourse__timetable table tr th:first-child div {
  width: 140px;
  background: #0B3B6C;
  margin: 0 35px 0 0;
  border-radius: 40px;
  padding: 4px 10px;
}
.singleCourse__timetable table tr td {
  line-height: 1.4285714286;
}
.singleCourse__timetable table tr td:first-child {
  width: 180px !important;
}
.singleCourse__timetable table tr td:first-child div {
  background: #EFEFEF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 12px;
  border-radius: 40px;
  margin: 0 35px 0 0;
  width: 140px;
}
.singleCourse__timetable table tr td:first-child div span {
  color: #D5D5D5;
  font-size: 34px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  line-height: 1.1764705882;
  margin: 0 5px 0 0;
}
.singleCourse__timetable .note {
  margin: 35px auto 0;
  max-width: 1000px;
}
.singleCourse__timetable .tableWrapper {
  display: none;
}
.singleCourse__timetable .tableWrapper.is-active {
  display: block;
}

/*-----------------------------------------------
  graduates section
-----------------------------------------------*/
.singleCourse__graduates .graduate {
  -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;
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #D5D5D5;
}
.singleCourse__graduates .graduate:last-child {
  padding: 50px 0 0;
}
@media (min-width: 768px) {
  .singleCourse__graduates .graduate {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 3.333vw 0;
  }
}
.singleCourse__graduates .graduate__img {
  width: 100%;
  max-width: 180px;
}
.singleCourse__graduates .graduate__img canvas {
  background-color: #EFEFEF;
}
@media (min-width: 768px) {
  .singleCourse__graduates .graduate__img {
    width: 31.48%;
    max-width: 100%;
  }
}
.singleCourse__graduates .graduate__info {
  width: 100%;
  margin: 30px 0 0;
}
@media (min-width: 768px) {
  .singleCourse__graduates .graduate__info {
    width: 63.88%;
    margin: unset;
  }
}
.singleCourse__graduates .graduate__ttl {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin: 0 0 25px;
  text-align: center;
}
@media (min-width: 768px) {
  .singleCourse__graduates .graduate__ttl {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .singleCourse__graduates .graduate__ttl {
    font-size: 1.333vw;
    margin: 0 0 1.667vw;
  }
}
.singleCourse__graduates .graduate__ttl small {
  color: #768493;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  display: block;
  margin: 0 0 25px;
}
@media (min-width: 992px) {
  .singleCourse__graduates .graduate__ttl small {
    margin: 0 0 1.667vw;
  }
}
.singleCourse__graduates .graduate__infoBox {
  background: #F7F7F8;
  padding: 26px;
  margin: 26px 0 0 auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  text-align: left;
  width: 100%;
}
@media (min-width: 992px) {
  .singleCourse__graduates .graduate__infoBox {
    padding: 1.7333333333vw;
    margin: 1.733vw 0 0 auto;
    font-size: 0.933vw;
    width: 63.88%;
  }
}
.singleCourse__graduates .graduate__infoBox p,
.singleCourse__graduates .graduate__infoBox div {
  position: relative;
  z-index: 2;
}
.singleCourse__graduates .graduate__school {
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .singleCourse__graduates .graduate__school {
    font-size: 0.933vw;
  }
}
.singleCourse__graduates .graduate__name {
  font-size: 11px;
  margin: 10px 0 0;
}
.singleCourse__graduates .graduate__name em {
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
}
@media (min-width: 992px) {
  .singleCourse__graduates .graduate__name {
    font-size: 0.733vw;
    margin: 0.6666666667vw 0 0;
  }
  .singleCourse__graduates .graduate__name em {
    font-size: 1.2vw;
  }
}
.singleCourse__graduates .graduate__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0 0;
}
.singleCourse__graduates .graduate__list dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}
@media (min-width: 768px) {
  .singleCourse__graduates .graduate__list {
    margin: 0.6666666667vw 0 0;
  }
}
.singleCourse__graduates .graduate__certificates {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .singleCourse__graduates .graduate__certificates {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.singleCourse__graduates .graduate__certificates div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.singleCourse__graduates .graduate:nth-child(odd):before, .singleCourse__graduates .graduate:nth-child(odd):after {
  position: absolute;
  content: "";
}
.singleCourse__graduates .graduate:nth-child(odd):before {
  top: -2.667vw;
  right: -6vw;
  width: 20.667vw;
  height: 24vw;
  background: url("../images/common/accent_01.png") no-repeat center center/contain;
}
.singleCourse__graduates .graduate:nth-child(odd):after {
  width: 15.333vw;
  height: 10.667vw;
  bottom: 10.667vw;
  left: 11vw;
  background: url("../images/common/accent_02.png") no-repeat center center/contain;
}
.singleCourse__graduates .graduate:nth-child(even):before {
  position: absolute;
  content: "";
  width: 25vw;
  height: 16.667vw;
  bottom: 13.333vw;
  left: -10.333vw;
  background: url("../images/common/accent_03.png") no-repeat center center/contain;
}

/*-----------------------------------------------
  graph section
-----------------------------------------------*/
.singleCourse__graph {
  padding: 0 0 100px;
  --dot-bg: #fff;
  --dot-color: #EDEDED;
  --dot-size: 2px;
  --dot-space: 12px;
  background: -webkit-gradient(linear, left top, right top, from(var(--dot-bg)), color-stop(1%, transparent)) center/var(--dot-space) var(--dot-space), -webkit-gradient(linear, left top, left bottom, from(var(--dot-bg)), color-stop(1%, transparent)) center/var(--dot-space) var(--dot-space), var(--dot-color);
  background: linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center/var(--dot-space) var(--dot-space), linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center/var(--dot-space) var(--dot-space), var(--dot-color);
}
.singleCourse__graph .ttl05 {
  position: relative;
  top: -25px;
  margin-bottom: 0;
}
.singleCourse__graph .graph {
  -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;
}
@media (min-width: 992px) {
  .singleCourse__graph .graph {
    margin-top: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.singleCourse__graph .graph__left {
  width: 100%;
  max-width: 400px;
}
@media (min-width: 992px) {
  .singleCourse__graph .graph__left {
    max-width: 46.66%;
  }
}
.singleCourse__graph .graph__right {
  width: 100%;
  max-width: none;
  margin: 30px 0 0;
}
@media (min-width: 992px) {
  .singleCourse__graph .graph__right {
    max-width: 37.03%;
    margin: 3.333vw 0 0;
  }
}
.singleCourse__graph .text {
  font-size: 22px;
  font-weight: 500;
}
.singleCourse__graph .caption {
  font-size: 14px;
  font-weight: 500;
}

/*-----------------------------------------------
  employment section
-----------------------------------------------*/
.singleCourse__employment .ttl05 {
  margin-bottom: 1vw;
}
.singleCourse__employment .caption {
  font-size: 14px;
}
.singleCourse__employment .borderedBox {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .singleCourse__employment .borderedBox {
    margin-top: 60px;
  }
}
@media (min-width: 576px) {
  .singleCourse__employment .list03 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
.singleCourse__employment .list03__item {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.singleCourse__employment .caption {
  font-size: 14px;
  font-weight: 500;
}

/*-----------------------------------------------
  feature section
-----------------------------------------------*/
.singleCourse__feature .courseFeature {
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .singleCourse__feature .courseFeature {
    margin: 0 0 4.6666666667vw;
  }
}
.singleCourse__feature .courseFeature__ttlWrap {
  position: relative;
  color: #fff;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .singleCourse__feature .courseFeature__ttlWrap {
    margin-bottom: 2.6666666667vw;
  }
}
.singleCourse__feature .courseFeature__num {
  position: absolute;
  left: 0;
  bottom: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #157FBB;
  border-radius: 80px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  aspect-ratio: 1;
  width: 72px;
}
.singleCourse__feature .courseFeature__num span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 0.85;
  margin-top: 3px;
}
@media (min-width: 992px) {
  .singleCourse__feature .courseFeature__num {
    font-size: 1vw;
    width: 5.3333333333vw;
  }
  .singleCourse__feature .courseFeature__num span {
    font-size: 3.0666666667vw;
  }
}
.singleCourse__feature .courseFeature__ttl {
  background-color: #157FBB;
  font-size: 16px;
  line-height: 1.45;
  padding: 5px 20px 5px 36px;
  margin-left: auto;
  width: calc(100% - 36px);
}
@media (min-width: 992px) {
  .singleCourse__feature .courseFeature__ttl {
    font-size: 1.4666666667vw;
    padding: 0.3333333333vw 1.3333333333vw 0.3333333333vw 2.6666666667vw;
    width: calc(100% - 2.6666666667vw);
  }
}
.singleCourse__feature .courseFeature__content {
  padding-left: 30px;
}
@media (min-width: 992px) {
  .singleCourse__feature .courseFeature__content {
    padding-left: 2vw;
  }
}
.singleCourse__feature .courseFeature__case {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .singleCourse__feature .courseFeature__case {
    margin-top: 5.3333333333vw;
  }
}
.singleCourse__feature .courseFeature__caseTxt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .singleCourse__feature .courseFeature__caseTxt {
    font-size: 1.3333333333vw;
    margin-bottom: 4vw;
  }
}
.singleCourse__feature .courseFeature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 45px;
  margin: 60px 0 0;
}
@media (min-width: 992px) {
  .singleCourse__feature .courseFeature__list {
    gap: 2.6666666667vw 3vw;
    margin: 4vw 0 0;
  }
}
.singleCourse__feature .courseFeature__item {
  width: 100%;
}
@media (min-width: 768px) {
  .singleCourse__feature .courseFeature__item {
    width: calc(50% - 22.5px);
  }
}
@media (min-width: 992px) {
  .singleCourse__feature .courseFeature__item {
    width: calc(33.3333333333% - 2vw);
  }
}
.singleCourse__feature .caseDetail--wschool {
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .singleCourse__feature .caseDetail--wschool {
    padding-bottom: 3.3333333333vw;
    margin-bottom: 3.3333333333vw;
  }
}
.singleCourse__feature .caseDetail__ttl {
  color: #0B3B6C;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.7;
}
@media (min-width: 992px) {
  .singleCourse__feature .caseDetail__ttl {
    font-size: 1.3333333333vw;
    margin-bottom: 2vw;
  }
}
.singleCourse__feature .caseDetail__inner {
  position: relative;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 10;
}
.singleCourse__feature .caseDetail__list {
  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;
  gap: 30px 0;
}
@media (min-width: 768px) {
  .singleCourse__feature .caseDetail__list {
    min-width: 820px;
  }
}
@media (min-width: 992px) {
  .singleCourse__feature .caseDetail__list {
    width: 100%;
  }
}
.singleCourse__feature .caseDetail__item {
  position: relative;
  width: 100%;
}
.singleCourse__feature .caseDetail__item:not(:last-child)::after {
  content: "";
  background: #F7F7F8;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -19px;
  clip-path: polygon(0 0, 50% 20px, 100% 0);
  height: 20px;
  width: 60px;
}
.singleCourse__feature .caseDetail__item:not(:last-child)::after {
  content: "";
  background: #F7F7F8;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -19px;
  clip-path: polygon(0 0, 50% 20px, 100% 0);
  height: 20px;
  width: 60px;
}
.singleCourse__feature .caseDetail__item:first-child::after {
  background: #EFEFEF;
}
@media (min-width: 768px) {
  .singleCourse__feature .caseDetail__item:nth-child(1) {
    width: 13.75%;
  }
  .singleCourse__feature .caseDetail__item:nth-child(2) {
    width: 48.75%;
  }
  .singleCourse__feature .caseDetail__item:nth-child(3) {
    width: 33.75%;
  }
}
@media (min-width: 992px) {
  .singleCourse__feature .caseDetail__item:nth-child(1) {
    width: 18.5185185185%;
  }
  .singleCourse__feature .caseDetail__item:nth-child(2) {
    width: 47.962962963%;
  }
  .singleCourse__feature .caseDetail__item:nth-child(3) {
    width: 28.7037037037%;
  }
  .singleCourse__feature .caseDetail__item:not(:last-child)::after {
    content: none;
  }
}
.singleCourse__feature .caseDetail__label {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7272727273;
  text-align: center;
  padding: 5px 10px;
}
.singleCourse__feature .caseDetail__label--001 {
  background: #EFEFEF;
  color: #2E2E2E;
}
.singleCourse__feature .caseDetail__label--002 {
  background: #0B3B6C;
}
.singleCourse__feature .caseDetail__label--003 {
  background: #157FBB;
}
@media (min-width: 768px) {
  .singleCourse__feature .caseDetail__label {
    padding: 0 2vw 0 1.3333333333vw;
    margin-bottom: 1.3333333333vw;
    clip-path: polygon(0 0, calc(100% - 1.3333333333vw) 0, 100% 50%, calc(100% - 1.3333333333vw) 100%, 0 100%, 0% 50%);
  }
}
@media (min-width: 992px) {
  .singleCourse__feature .caseDetail__label {
    font-size: 1.4666666667vw;
  }
}
.singleCourse__feature .caseDetail__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
  padding: 20px;
  z-index: 1;
}
.singleCourse__feature .caseDetail__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F7F7F8;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .singleCourse__feature .caseDetail__body {
    background: transparent;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 15px 20px 0 0;
  }
  .singleCourse__feature .caseDetail__body::before {
    height: 80%;
  }
}
@media (min-width: 992px) {
  .singleCourse__feature .caseDetail__body {
    padding: 30px 1.3333333333vw 0 0;
  }
  .singleCourse__feature .caseDetail__body::before {
    height: 80%;
  }
}
@media (min-width: 768px) {
  .singleCourse__feature .caseDetail__box {
    background: #F7F7F8;
    padding: 2vw;
    width: 100%;
  }
}
.singleCourse__feature .caseDetail__img {
  margin-top: 10px;
  height: 100px;
}
.singleCourse__feature .caseDetail__img img {
  height: 100%;
  width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  .singleCourse__feature .caseDetail__img {
    height: auto;
    max-height: 150px;
    height: 10vw;
  }
}
.singleCourse__feature .caseDetail__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .singleCourse__feature .caseDetail__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .singleCourse__feature .caseDetail__content--002 {
    margin-left: -18px;
  }
  .singleCourse__feature .caseDetail__content--004 {
    margin-left: -90px;
  }
}
@media (min-width: 992px) {
  .singleCourse__feature .caseDetail__content--004 {
    margin-left: -6.6666666667vw;
    margin-left: -53%;
    margin-left: max(-53%, -130px);
  }
}
.singleCourse__feature .caseDetail__txt {
  font-weight: 700;
  line-height: 1.5625;
}
.singleCourse__feature .caseDetail__subTxt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142857143;
}
@media (min-width: 992px) {
  .singleCourse__feature .caseDetail__subTxt {
    font-size: 0.9333333333vw;
  }
}

/*-----------------------------------------------
  sanno section
-----------------------------------------------*/
.singleCourse__sannoItems {
  width: 100%;
  gap: 40px 60px;
  margin: auto;
}
@media (min-width: 992px) {
  .singleCourse__sannoItems {
    gap: 2.6666666667vw 4vw;
  }
}
.singleCourse__sannoItem {
  width: 100%;
}
@media (min-width: 992px) {
  .singleCourse__sannoItem {
    width: calc(50% - 2vw);
  }
}
.singleCourse__sanno .sannoBord {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.singleCourse__sanno .sannoBord__head {
  width: 100%;
}
.singleCourse__sanno .sannoBord__ttl {
  color: #0B3B6C;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4166666667;
  text-align: center;
}
.singleCourse__sanno .sannoBord__ttl span {
  font-size: 22px;
  line-height: 1;
}
@media (min-width: 992px) {
  .singleCourse__sanno .sannoBord__ttl {
    font-size: 1.3333333333vw;
  }
  .singleCourse__sanno .sannoBord__ttl span {
    font-size: 1.6vw;
  }
}
.singleCourse__sanno .sannoBord__label {
  position: relative;
  background: #0B3B6C;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
  padding: 3px 15px;
  margin: auto;
  max-width: 444px;
  width: calc(100% - 30px);
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%);
}
@media (min-width: 992px) {
  .singleCourse__sanno .sannoBord__label {
    max-width: 100%;
    font-size: 1.3333333333vw;
    padding: 0 25px;
    width: calc(100% - 2.6666666667vw);
    clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 50%, 100% 100%, 0 100%, 20px 50%);
  }
}
.singleCourse__sanno .sannoBord__label span {
  font-size: 20px;
  letter-spacing: 0.05em;
}
.singleCourse__sanno .sannoBord__label span .num {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  vertical-align: bottom;
}
@media (min-width: 992px) {
  .singleCourse__sanno .sannoBord__label span {
    font-size: 2vw;
  }
  .singleCourse__sanno .sannoBord__label span .num {
    font-size: 3.3333333333vw;
    line-height: 1.2;
  }
}
.singleCourse__sanno .sannoBord__box {
  border: 1px solid #D5D5D5;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: -6px 0 35px;
  max-width: 480px;
  width: 100%;
}
@media (min-width: 992px) {
  .singleCourse__sanno .sannoBord__box {
    margin: -0.4vw 0 2.3333333333vw;
    height: 16.3333333333vw;
    max-width: 100%;
  }
  .singleCourse__sanno .sannoBord__box--short {
    height: 15.3333333333vw;
  }
}
.singleCourse__sanno .sannoBord__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 26px 20px 20px 20px;
}
@media (min-width: 992px) {
  .singleCourse__sanno .sannoBord__inner {
    padding: 2.1333333333vw 20px 0 20px;
  }
}
.singleCourse__sanno .sannoBord__btn {
  margin-top: auto;
}
.singleCourse__sanno .sannoBord__btn a {
  background: #157FBB;
  border-radius: 50vh;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
  padding: 6px 30px;
}
.singleCourse__sanno .sannoBord__btn a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 14px;
}
@media (min-width: 992px) {
  .singleCourse__sanno .sannoBord__btn a {
    font-size: 1.1333333333vw;
    padding: 0.5333333333vw 2vw;
  }
}
.singleCourse__sanno .sannoBord__lead {
  border-bottom: 2px solid #0B3B6C;
  color: #0B3B6C;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  padding: 0 20px 10px;
  margin-bottom: 14px;
}
.singleCourse__sanno .sannoBord__lead span {
  font-size: 15px;
}
@media (min-width: 992px) {
  .singleCourse__sanno .sannoBord__lead {
    font-size: 1.2vw;
    padding: 0 1.3333333333vw 0.6666666667vw;
    margin-bottom: 1.2vw;
  }
  .singleCourse__sanno .sannoBord__lead span {
    font-size: 1.1333333333vw;
  }
}
.singleCourse__sanno .sannoBord__txt {
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .singleCourse__sanno .sannoBord__txt {
    font-size: 0.9333333333vw;
  }
}
.singleCourse__sanno .sannoBord__footTxt {
  background: #EDEDED;
  color: #0B3B6C;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  margin-top: auto;
  padding: 10px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  max-width: 420px;
  width: calc(100% - 30px);
}
@media (min-width: 992px) {
  .singleCourse__sanno .sannoBord__footTxt {
    font-size: 1.0666666667vw;
    max-width: 100%;
    padding: 0.8vw;
    width: calc(100% - 4vw);
  }
}
.singleCourse__sanno .sannoBord__list {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  margin: 0;
}
@media (min-width: 576px) {
  .singleCourse__sanno .sannoBord__list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 4vw;
       -moz-column-gap: 4vw;
            column-gap: 4vw;
  }
}
.singleCourse__sanno .sannoBord__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.singleCourse__sanno .sannoBord__item:not(:first-child) {
  margin: 14px 0 0;
}
.singleCourse__sanno .sannoBord__item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #157FBB;
  border-radius: 43px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  height: 26px;
  width: 43px;
}
.singleCourse__sanno .sannoBord__item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #0B3B6C;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 992px) {
  .singleCourse__sanno .sannoBord__item {
    -webkit-column-gap: 0.8vw;
       -moz-column-gap: 0.8vw;
            column-gap: 0.8vw;
  }
  .singleCourse__sanno .sannoBord__item:not(:first-child) {
    margin: 0.9333333333vw 0 0;
  }
  .singleCourse__sanno .sannoBord__item dt {
    font-size: 0.9333333333vw;
    height: 1.7333333333vw;
    width: 2.8666666667vw;
  }
}

/*-----------------------------------------------
  flow section
-----------------------------------------------*/
.singleCourse__flow .flow__figure {
  margin: 0 0 40px;
  width: 100%;
  overflow-x: scroll;
}
.singleCourse__flow .flow__figure img {
  display: block;
  margin: 0 auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.singleCourse__flow .flow__bnr img {
  display: block;
  max-width: 623px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*-----------------------------------------------
  banner area
-----------------------------------------------*/
.singleCourse__ocBnrArea .ocBnr {
  background: url("../images/course/w_school/course_wschool_bnr.jpg") no-repeat right 20% center/cover;
  padding: 30px 0 40px;
}
@media (min-width: 992px) {
  .singleCourse__ocBnrArea .ocBnr {
    background: url("../images/course/w_school/course_wschool_bnr.jpg") no-repeat center center/cover;
    padding: 3.3333333333vw 0 4vw;
  }
}
.singleCourse__ocBnrArea .ocBnr__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  width: 100%;
}
@media (min-width: 992px) {
  .singleCourse__ocBnrArea .ocBnr__inner {
    width: 50%;
  }
}
.singleCourse__ocBnrArea .ocBnr__ttl {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .singleCourse__ocBnrArea .ocBnr__ttl {
    margin-bottom: 1.3333333333vw;
  }
}
.singleCourse__ocBnrArea .ocBnr__txt {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6666666667;
  text-shadow: 1px 1px 3px rgb(255, 255, 255);
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .singleCourse__ocBnrArea .ocBnr__txt {
    font-size: 1.2vw;
    text-shadow: none;
    margin-bottom: 3.3333333333vw;
  }
}

/*-----------------------------------------------
  button area
-----------------------------------------------*/
.singleCourse__btnArea {
  margin: 100px 0 60px;
}
.singleCourse__btnArea .siteBtn02 {
  margin: auto;
}
@media (min-width: 992px) {
  .singleCourse__btnArea {
    margin: 13.3333333333vw 0 6.6666666667vw;
  }
}

/*******************************************************
 * SAMPLE PAGE *
 *******************************************************/
/* === sample__sec01 === */
.sample__sec01-list {
  margin: -25px -15px;
}
.sample__sec01-item {
  padding: 25px 15px;
  width: 100%;
}

/* === sample__sec02 === */
.sample__sec02-list {
  margin: -30px;
}
.sample__sec02-item {
  padding: 30px;
  width: 100%;
}

/*******************************************************
 * SAMPLE PAGE Media Queries *
 *******************************************************/
@media (min-width: 576px) {
  /* === sample__sec01 === */
  .sample__sec01-item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  /* === sample__sec01 === */
  .sample__sec01-item {
    width: 33.33333%;
  }
  /* === sample__sec02 === */
  .sample__sec02-item {
    width: 50%;
  }
}
/*******************************************************
 *
 * 404 Page
 *
 *******************************************************/
.error404 #contentFull {
  margin: 0;
  min-height: 500px;
  padding: 150px 0 0;
}
.error404 h1 {
  margin: 0 0 50px;
}
.error404__inner {
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.error404__inner p:not(:first-of-type) {
  margin: 40px 0 0;
}