@charset "UTF-8";
@font-face {
  font-family: "DIN Pro";
  src: url("../webfonts/637-font.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

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

.din {
  font-family: "DIN Pro", sans-serif;
}

.mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-word;
}

html {
  overflow-x: hidden;
}

body {
  font-size: 100%;
  color: #172446;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  -webkit-text-size-adjust: none;
  margin-top: 70px;
}

@media screen and (max-width: 870px) {
  body {
    margin-top: 50px;
  }
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
share start
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.inner {
  padding: 0 180em;
  overflow: hidden;
}

@media (max-width: 750px) {
  .inner {
    padding: 0 40em;
  }
}

.pc {
  display: block;
}

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

.sp {
  display: none;
}

@media (max-width: 750px) {
  .sp {
    display: block;
  }
}

.sec {
  font-size: 0.94861px;
  font-size: 0.07321vw;
}

@media screen and (min-width: 1367px) {
  .sec {
    font-size: 1px;
  }
}

@media (max-width: 750px) {
  .sec {
    font-size: 1px;
    font-size: 0.13333vw;
  }
}

.dokidoki {
  -webkit-animation-name: dokidoki;
          animation-name: dokidoki;
  /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  /* アニメーションの動き（徐々に早く徐々に遅く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  /* アニメーションをループさせる */
}

@-webkit-keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
share end
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
cta start
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#cta {
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#cta img {
  display: block;
  width: 100%;
}

#cta.active {
  z-index: 9997;
  opacity: 1;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
cta end
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
header start
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header {
  height: 70px;
  background-color: #172446;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9997;
}

@media screen and (max-width: 870px) {
  .header {
    height: 50px;
  }
}

.header .inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
}

@media screen and (max-width: 870px) {
  .header .inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 870px) {
  .header__left {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 870px) {
  .header__left .logo {
    display: inline-block;
    margin: 0 auto;
  }
}

.header__left .logo img {
  width: 70px;
  display: block;
}

@media screen and (max-width: 870px) {
  .header__left .logo img {
    margin: 0 auto;
  }
}

@media screen and (max-width: 870px) {
  .header__right {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 9998;
    overflow: hidden;
    width: 100vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #172446;
    margin-top: 50px;
    height: calc(100vh - 50px);
    overflow-y: scroll;
  }
}

.header__right .nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 870px) {
  .header__right .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 414px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 100px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.header__right .nav__item {
  margin-right: 45px;
}

@media screen and (max-width: 870px) {
  .header__right .nav__item {
    margin-bottom: 1.5em;
    padding: 0 20px 0 30px;
    margin-right: 0;
    width: 100%;
  }
}

.header__right .nav__item:last-of-type {
  margin-right: 0;
}

.header__right .nav__item a {
  color: #fff;
  font-family: "DIN Pro", sans-serif;
  font-size: 20px;
  position: relative;
}

@media screen and (max-width: 870px) {
  .header__right .nav__item a {
    color: #d8e53f;
    font-size: 22px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .header__right .nav__item a::after {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    right: 0;
    width: 12px;
    height: 12px;
    margin: 0 10px;
    border-top: 2px solid #d8e53f;
    border-right: 2px solid #d8e53f;
  }
}

@media screen and (max-width: 870px) {
  .header__right .nav__item a span {
    display: block;
  }
}

@media screen and (max-width: 870px) {
  .header__right .nav__item a span.name {
    width: 4em;
  }
}

.header__right .nav__item a span.link__name {
  display: none;
  font-size: 0.6em;
  color: #fff;
  font-weight: normal;
  padding-left: 2em;
  position: relative;
}

.header__right .nav__item a span.link__name::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 130%;
  background-color: #d8e53f;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 870px) {
  .header__right .nav__item a span.link__name {
    display: block;
  }
}

.header__right .nav__item a:hover {
  color: #d8e53f;
}

@media screen and (max-width: 870px) {
  .header__right .nav__item a:hover {
    color: #d8e53f;
  }
}

.header__right .nav__item a:hover::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d8e53f;
}

@media screen and (max-width: 870px) {
  .header__right .nav__item a:hover::before {
    display: none;
  }
}

.header #burger {
  display: none;
  position: absolute;
  top: 0;
  right: 5px;
  z-index: 9999;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 870px) {
  .header #burger {
    display: block;
  }
}

.header #burger div {
  height: 3px;
  width: 25px;
  background-color: #d8e53f;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header #burger div::before, .header #burger div::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #d8e53f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header #burger div::before {
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header #burger div::after {
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header.active #burger div {
  height: 1px;
  background-color: #172446;
}

.header.active #burger div::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 870px) {
  .header.active #burger div::before {
    height: 2px;
  }
}

.header.active #burger div::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 870px) {
  .header.active #burger div::after {
    height: 2px;
  }
}

@media screen and (max-width: 870px) {
  .header.active .header__right {
    left: 0;
  }
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
header end
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
footer start
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.footer {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #172446;
}

@media (max-width: 750px) {
  .footer {
    height: 45px;
  }
}

.footer p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 750px) {
  .footer p {
    font-size: 14px;
  }
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
footer end
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.fv {
  position: relative;
}

.fv::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 35em;
  left: 50%;
  bottom: 0;
  background-color: #d8e53f;
  z-index: 1;
}

@media (max-width: 750px) {
  .fv::before {
    height: 30em;
  }
}

.fv .container {
  height: 1203em;
  background-image: url(../images/fv.png);
  background-size: cover;
  background-position: top center;
  position: relative;
}

@media (max-width: 750px) {
  .fv .container {
    height: 1800em;
    background-image: url(../images/fv-sp.png);
  }
}

.fv .container .monitor {
  position: absolute;
  left: 380em;
  bottom: 150em;
  width: 600em;
}

@media (max-width: 750px) {
  .fv .container .monitor {
    width: 570em;
    bottom: 150em;
    left: 110em;
  }
}

.fv .container .monitor img {
  display: block;
  width: 100%;
}

@media (max-width: 750px) {
  .fv .container .monitor img {
    margin-bottom: 35em;
  }
}

.fv .container .monitor .entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 80em;
  background-color: #d8e53f;
  -webkit-box-shadow: 0 10em #b9b8b5;
          box-shadow: 0 10em #b9b8b5;
}

@media (max-width: 750px) {
  .fv .container .monitor .entry {
    height: 145em;
    -webkit-box-shadow: 0 15em #b9b8b5;
            box-shadow: 0 15em #b9b8b5;
  }
}

.fv .container .monitor .entry:hover {
  opacity: 0.7;
}

@media (max-width: 750px) {
  .fv .container .monitor .entry:hover {
    opacity: 1;
  }
}

.fv .container .monitor .entry::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 10em;
  width: 12em;
  height: 12em;
  margin: 0 10em;
  border-top: 2em solid #172446;
  border-right: 2em solid #172446;
}

@media (max-width: 750px) {
  .fv .container .monitor .entry::before {
    width: 20em;
    height: 20em;
    right: 15em;
  }
}

.fv .container .monitor .entry::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 20em;
  width: 12em;
  height: 12em;
  margin: 0 10em;
  border-top: 2em solid #172446;
  border-right: 2em solid #172446;
}

@media (max-width: 750px) {
  .fv .container .monitor .entry::after {
    width: 20em;
    height: 20em;
    right: 25em;
  }
}

.fv .container .monitor .entry span {
  display: inline-block;
  font-size: 17em;
  font-weight: 500;
  color: #172446;
}

@media (max-width: 750px) {
  .fv .container .monitor .entry span {
    font-size: 38em;
  }
}

.title-area {
  margin-bottom: 75em;
  text-align: center;
}

.title-area .title {
  font-size: 42em;
  font-family: "DIN Pro", sans-serif;
}

.story {
  position: relative;
}

.story::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100em;
  background-color: #172446;
}

.story::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 35em;
  left: 50%;
  bottom: 0;
  background-color: #d8e53f;
  z-index: 1;
}

.story__top {
  padding-top: 110em;
  overflow: hidden;
}

@media (max-width: 750px) {
  .story__top {
    padding-top: 125em;
  }
}

.story__top img {
  display: block;
  width: 100%;
}

.story__bottom {
  padding-top: 100em;
  padding-bottom: 120em;
  color: #fff;
  text-align: center;
  background-image: url(../images/story-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 750px) {
  .story__bottom {
    background-image: none;
    background-color: #172446;
    padding-top: 85em;
    padding-bottom: 85em;
  }
}

.story__bottom .sub-title {
  margin-bottom: 75em;
}

@media (max-width: 750px) {
  .story__bottom .sub-title {
    margin-bottom: 80em;
  }
}

.story__bottom .sub-title p {
  display: inline-block;
  font-size: 24em;
  font-weight: 500;
  position: relative;
}

@media (max-width: 750px) {
  .story__bottom .sub-title p {
    font-size: 28em;
  }
}

.story__bottom .sub-title p::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -3em;
  background-color: #fff;
  width: 1.75em;
  height: 1px;
}

.story__bottom .sub-title p::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -3em;
  background-color: #fff;
  width: 1.75em;
  height: 1px;
}

.story__bottom h3 {
  font-size: 42em;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1.2em;
}

@media (max-width: 750px) {
  .story__bottom h3 {
    font-size: 58em;
    line-height: 1.465;
    margin-bottom: 1.3em;
  }
}

.story__bottom .small {
  font-size: 20em;
  line-height: 2.5;
  margin-bottom: 1.25em;
}

@media (max-width: 750px) {
  .story__bottom .small {
    font-size: 28em;
    line-height: 2.6;
    margin-bottom: 0.5em;
  }
}

.story__bottom .small:last-of-type {
  margin-bottom: 0;
}

.story__bottom .yellow {
  font-size: 28em;
  line-height: 1.785;
  font-weight: 700;
  color: #d8e53f;
  margin-bottom: 1em;
}

@media (max-width: 750px) {
  .story__bottom .yellow {
    font-size: 35em;
    line-height: 1.97;
    margin-bottom: 0.3em;
  }
}

.point {
  background-color: #eeedec;
  padding-top: 110em;
  padding-bottom: 100em;
  position: relative;
}

@media (max-width: 750px) {
  .point {
    padding-top: 125em;
    padding-bottom: 120em;
  }
}

.point::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100em;
  background-color: #172446;
}

.point::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 35em;
  left: 50%;
  bottom: 0;
  background-color: #172446;
  z-index: 1;
}

.point .sub-title {
  margin-bottom: 135em;
  text-align: center;
}

@media (max-width: 750px) {
  .point .sub-title {
    margin-bottom: 150em;
  }
}

.point .sub-title p {
  font-size: 24em;
  font-weight: 700;
}

@media (max-width: 750px) {
  .point .sub-title p {
    font-size: 42em;
  }
}

.point .content {
  background-color: #fff;
  margin-left: 185em;
  margin-bottom: 150em;
  position: relative;
}

@media (max-width: 750px) {
  .point .content {
    margin-left: 40em;
    margin-bottom: 140em;
  }
}

.point .content::before {
  position: absolute;
  content: "";
  height: 95%;
  width: 185em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -185em;
  background-color: #d8e53f;
}

.point .content__top {
  position: relative;
  padding: 0 345em 0 160em;
  top: -50em;
  margin-bottom: 50em;
}

@media (max-width: 750px) {
  .point .content__top {
    padding: 0 45em;
  }
}

.point .content__top__title {
  display: block;
  width: 532em;
  margin-bottom: 40em;
}

@media (max-width: 750px) {
  .point .content__top__title {
    position: relative;
    left: -57em;
    width: 90vw;
    margin-bottom: 60em;
    max-width: none;
  }
}

.point .content__top__img {
  width: calc(1172em / 2);
  display: block;
  margin: 0 auto;
}

@media (max-width: 750px) {
  .point .content__top__img {
    width: 100%;
  }
}

.point .content__top h3 {
  text-align: center;
  font-size: 38em;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1.45em;
  line-height: 1.5;
}

@media (max-width: 750px) {
  .point .content__top h3 {
    font-size: 54em;
    line-height: 1.44;
  }
}

.point .content__top h3 .marker {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(65%, #d8e53f));
  background: -webkit-linear-gradient(transparent 60%, #d8e53f 65%);
  background: linear-gradient(transparent 60%, #d8e53f 65%);
}

.point .content__top p {
  text-align: center;
  font-size: 18em;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 2.5em;
}

@media (max-width: 750px) {
  .point .content__top p {
    font-size: 26em;
    text-align: left;
  }
}

.point .content__bottom {
  background-color: #172446;
  padding-bottom: 75em;
}

.point .content__bottom__title {
  padding: 0 345em 0 160em;
  text-align: center;
  margin-bottom: 60em;
  position: relative;
  top: -20em;
}

@media (max-width: 750px) {
  .point .content__bottom__title {
    padding: 0;
  }
}

.point .content__bottom__title span {
  margin: 0 auto;
  display: inline-block;
  font-size: 24em;
  padding: 0.3em 1em;
  font-weight: 700;
  color: #fff;
  background-color: #0e52a5;
  -webkit-box-shadow: 7px 7px 0px 1px black;
          box-shadow: 7px 7px 0px 1px black;
}

@media (max-width: 750px) {
  .point .content__bottom__title span {
    font-size: 26em;
    padding: 0.6em 1.3em;
  }
}

.point .content__bottom .photos {
  padding: 0 345em 0 160em;
}

@media (max-width: 750px) {
  .point .content__bottom .photos {
    margin-top: 35em;
    padding: 0 60em;
  }
}

.point .content__bottom .photos .photo {
  width: 580em;
  margin: 0 auto 18em;
}

@media (max-width: 750px) {
  .point .content__bottom .photos .photo {
    margin: 0 auto 35em;
  }
}

.point .content__bottom .photos .photo:last-of-type {
  margin-bottom: 0;
}

.point .content__bottom .photos .photo img {
  display: block;
  width: 100%;
}

.point .lists {
  margin-left: 185em;
}

@media (max-width: 750px) {
  .point .lists {
    margin-left: 40em;
  }
}

.point .lists .list {
  padding: 0 345em 50em 160em;
  background-color: #fff;
  margin-bottom: 150em;
  position: relative;
}

@media (max-width: 750px) {
  .point .lists .list {
    padding: 0 45em 50em;
    margin-bottom: 140em;
  }
}

.point .lists .list::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 185em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -185em;
  background-color: #d8e53f;
}

.point .lists .list:last-of-type {
  margin-bottom: 0;
}

.point .lists .list__title {
  position: relative;
  top: -56em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 750px) {
  .point .lists .list__title {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    top: -43em;
    left: -60em;
  }
}

.point .lists .list__title img {
  display: block;
  width: 106em;
  margin-right: 30em;
}

@media (max-width: 750px) {
  .point .lists .list__title img {
    width: 110em;
    margin-right: 65em;
  }
}

.point .lists .list__title h3 {
  font-size: 38em;
  font-weight: 700;
  font-style: italic;
}

@media (max-width: 750px) {
  .point .lists .list__title h3 {
    font-size: 54em;
    line-height: 1.44;
    text-align: center;
  }
}

.point .lists .list__title h3 .marker {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(65%, #d8e53f));
  background: -webkit-linear-gradient(transparent 60%, #d8e53f 65%);
  background: linear-gradient(transparent 60%, #d8e53f 65%);
}

.point .lists .list p {
  text-align: center;
  font-size: 18em;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 2.5em;
}

@media (max-width: 750px) {
  .point .lists .list p {
    font-size: 26em;
    text-align: left;
  }
}

.point .lists .list > img {
  display: block;
  width: 580em;
  margin: 0 auto;
}

@media (max-width: 750px) {
  .point .lists .list > img {
    width: 100%;
  }
}

.works {
  padding-top: 110em;
  padding-bottom: 100em;
  background-color: #172446;
  position: relative;
  text-align: center;
}

@media (max-width: 750px) {
  .works {
    padding-top: 125em;
    padding-bottom: 120em;
  }
}

.works::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100em;
  background-color: #d8e53f;
}

.works::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 35em;
  left: 50%;
  bottom: 0;
  background-color: #d8e53f;
  z-index: 1;
}

.works .title-area .title {
  color: #d8e53f;
}

.works .sub-title {
  margin-bottom: 135em;
  text-align: center;
}

@media (max-width: 750px) {
  .works .sub-title {
    margin-bottom: 70em;
  }
}

.works .sub-title p {
  font-size: 24em;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 750px) {
  .works .sub-title p {
    font-size: 42em;
  }
}

.works .swiper {
  margin-bottom: 60em;
}

@media (max-width: 750px) {
  .works .swiper {
    margin-bottom: 85em;
  }
}

.works .swiper .swiper-slide > p {
  margin-top: 1em;
  font-size: 20em;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

@media (max-width: 750px) {
  .works .swiper .swiper-slide > p {
    font-size: 30em;
    margin-top: 1.16em;
  }
}

.works .content {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  font-size: 12em;
  line-height: 1.75;
  color: #a8a5a8;
}

@media (max-width: 750px) {
  .works .content {
    font-size: 20em;
    line-height: 1.5;
    padding: 0 2.25em;
  }
}

.works .content dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.works .content dl dt {
  white-space: nowrap;
}

.works .content__bottom dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.menu {
  padding-top: 110em;
  background-color: #eeedec;
  position: relative;
  text-align: center;
}

@media (max-width: 750px) {
  .menu {
    padding-top: 125em;
  }
}

.menu::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100em;
  background-color: #172446;
}

.menu::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 35em;
  left: 50%;
  bottom: 0;
  background-color: #172446;
  z-index: 1;
}

.menu .sub-title {
  margin-bottom: 60em;
  text-align: center;
}

.menu .sub-title p {
  font-size: 24em;
  line-height: 1.3;
  font-weight: 700;
}

@media (max-width: 750px) {
  .menu .sub-title p {
    font-size: 42em;
  }
}

.menu .sub-title p span {
  font-size: 1.5em;
}

.menu .content {
  margin-bottom: 50em;
}

.menu .content p {
  font-size: 18em;
  font-weight: 700;
  line-height: 2;
  white-space: nowrap;
}

@media (max-width: 750px) {
  .menu .content p {
    font-size: 26em;
  }
}

.menu .icon {
  margin-bottom: 50em;
}

@media (max-width: 750px) {
  .menu .icon {
    padding: 0 45em;
    margin-bottom: 65em;
  }
}

.menu .icon img {
  width: 581.5em;
  margin: 0 auto;
  display: block;
}

@media (max-width: 750px) {
  .menu .icon img {
    width: 100%;
  }
}

.menu .lists {
  margin-bottom: 100em;
}

.menu .lists .list {
  position: relative;
  margin-bottom: 100em;
}

.menu .lists .list:last-of-type {
  margin-bottom: 0;
}

.menu .lists .list::before {
  position: absolute;
  content: "";
  width: 1187em;
  height: 245em;
  background-color: #fff;
  top: 55em;
  left: 0;
  z-index: 1;
}

.menu .lists .list__title {
  position: relative;
  width: 1140em;
  height: 110em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 480em;
  background-color: #172446;
  margin-bottom: 35em;
  z-index: 2;
}

@media (max-width: 750px) {
  .menu .lists .list__title {
    width: 710em;
    padding: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.menu .lists .list__title h3 {
  font-size: 50em;
  font-family: "DIN Pro", sans-serif;
  color: #d8e53f;
  padding-right: 1em;
  border-right: 1px solid #fff;
}

@media (max-width: 750px) {
  .menu .lists .list__title h3 {
    font-size: 60em;
    padding-right: 0.5em;
  }
}

.menu .lists .list__title span {
  font-size: 20em;
  margin-left: 1em;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}

@media (max-width: 750px) {
  .menu .lists .list__title span {
    font-size: 24em;
  }
}

.menu .lists .list__sub-title {
  position: relative;
  z-index: 2;
  font-size: 28em;
  font-weight: 700;
  margin-bottom: 1.6em;
}

@media (max-width: 750px) {
  .menu .lists .list__sub-title {
    font-size: 30em;
  }
}

.menu .lists .list__sub-title i {
  display: inline-block;
  font-size: 1.71em;
  padding: 0.1em 0.1em;
  margin: 0 0.1em;
  border: 1px solid #172446;
}

.menu .lists .list__sub-title i span {
  display: inline-block;
  font-size: 0.73em;
}

.menu .lists .list__img {
  position: relative;
  z-index: 2;
  width: 680em;
  max-width: 100%;
  margin: 0 auto;
}

.menu .lists .list__img img {
  display: block;
  width: 100%;
}

.menu .banner .container {
  height: 1170em;
  background-image: url(../images/banner.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 750px) {
  .menu .banner .container {
    height: 1700em;
    background-image: url(../images/banner-sp.jpg);
  }
}

.menu .banner .monitor {
  position: absolute;
  left: 417em;
  bottom: 160em;
  width: 600em;
}

@media (max-width: 750px) {
  .menu .banner .monitor {
    width: 570em;
    bottom: 150em;
    left: 95em;
  }
}

.menu .banner .monitor img {
  display: block;
  width: 100%;
}

@media (max-width: 750px) {
  .menu .banner .monitor img {
    margin-bottom: 35em;
  }
}

.menu .banner .monitor .entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 80em;
  background-color: #d8e53f;
  -webkit-box-shadow: 0 10em #b9b8b5;
          box-shadow: 0 10em #b9b8b5;
  position: relative;
}

@media (max-width: 750px) {
  .menu .banner .monitor .entry {
    height: 145em;
    -webkit-box-shadow: 0 15em #b9b8b5;
            box-shadow: 0 15em #b9b8b5;
  }
}

.menu .banner .monitor .entry:hover {
  opacity: 0.7;
}

@media (max-width: 750px) {
  .menu .banner .monitor .entry:hover {
    opacity: 1;
  }
}

.menu .banner .monitor .entry::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 10em;
  width: 12em;
  height: 12em;
  margin: 0 10em;
  border-top: 2em solid #172446;
  border-right: 2em solid #172446;
}

@media (max-width: 750px) {
  .menu .banner .monitor .entry::before {
    width: 20em;
    height: 20em;
    right: 15em;
  }
}

.menu .banner .monitor .entry::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 20em;
  width: 12em;
  height: 12em;
  margin: 0 10em;
  border-top: 2em solid #172446;
  border-right: 2em solid #172446;
}

@media (max-width: 750px) {
  .menu .banner .monitor .entry::after {
    width: 20em;
    height: 20em;
    right: 25em;
  }
}

.menu .banner .monitor .entry span {
  display: inline-block;
  font-size: 17em;
  font-weight: 500;
  color: #172446;
}

@media (max-width: 750px) {
  .menu .banner .monitor .entry span {
    font-size: 38em;
  }
}

.staff {
  background-color: #172446;
  padding-top: 110em;
  padding-bottom: 100em;
  background-color: #172446;
  position: relative;
  text-align: center;
}

@media (max-width: 750px) {
  .staff {
    padding-top: 125em;
    padding-bottom: 120em;
  }
}

.staff::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100em;
  background-color: #d8e53f;
}

.staff::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 35em;
  left: 50%;
  bottom: 0;
  background-color: #d8e53f;
  z-index: 1;
}

.staff .title-area .title {
  color: #d8e53f;
}

.staff .sub-title {
  margin-bottom: 90em;
  text-align: center;
}

@media (max-width: 750px) {
  .staff .sub-title {
    margin-bottom: 60em;
  }
}

.staff .sub-title p {
  font-size: 24em;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 750px) {
  .staff .sub-title p {
    font-size: 42em;
  }
}

@media (max-width: 750px) {
  .staff .items {
    padding: 0 45em;
  }
}

.staff .items .item {
  position: relative;
  margin-bottom: 95em;
}

@media (max-width: 750px) {
  .staff .items .item {
    margin-bottom: 120em;
  }
}

.staff .items .item:last-of-type {
  margin-bottom: 0;
}

.staff .items .item:last-of-type::before {
  display: none;
}

.staff .items .item::before {
  position: absolute;
  content: "";
  top: 150em;
  right: 0;
  width: 1100em;
  height: 835em;
  border-top: 2px solid #d8e53f;
  border-left: 2px solid #d8e53f;
  border-bottom: 2px solid #d8e53f;
  background-color: #182955;
}

@media (max-width: 750px) {
  .staff .items .item::before {
    display: none;
  }
}

.staff .items .item:nth-child(even)::before {
  right: auto;
  left: 0;
  border-right: 2px solid #d8e53f;
  border-left: 0;
}

.staff .items .item > p {
  color: #fff;
  font-size: 18em;
  text-align: center;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

@media (max-width: 750px) {
  .staff .items .item > p {
    font-size: 28em;
    line-height: 2.143;
  }
}

.staff .items .item .staff-img {
  display: block;
  width: 597em;
  margin-left: 390em;
  margin-bottom: 45em;
  position: relative;
  z-index: 1;
}

@media (max-width: 750px) {
  .staff .items .item .staff-img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50em;
  }
}

.staff .items .item .insta-area {
  width: 597em;
  margin-left: 390em;
  margin-top: 60em;
  position: relative;
  z-index: 1;
}

@media (max-width: 750px) {
  .staff .items .item .insta-area {
    width: 100%;
    margin-left: 0;
  }
}

.staff .items .item .insta-area .readmore {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 40em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200em;
  height: 50em;
  background-color: #172446;
}

@media (max-width: 750px) {
  .staff .items .item .insta-area .readmore {
    width: 340em;
    height: 85em;
    bottom: 60em;
  }
}

.staff .items .item .insta-area .readmore span {
  display: inline-block;
  font-size: 18em;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 750px) {
  .staff .items .item .insta-area .readmore span {
    font-size: 30em;
  }
}

.staff .items .item .insta-area .staff-insta {
  display: block;
  width: 100%;
}

.flow {
  padding-top: 110em;
  padding-bottom: 100em;
  position: relative;
}

@media (max-width: 750px) {
  .flow {
    padding-top: 125em;
    padding-bottom: 120em;
  }
}

.flow::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100em;
  background-color: #172446;
}

.flow::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 35em;
  left: 50%;
  bottom: 0;
  background-color: #172446;
  z-index: 1;
}

.flow .sub-title {
  margin-bottom: 135em;
  text-align: center;
}

@media (max-width: 750px) {
  .flow .sub-title {
    margin-bottom: 70em;
  }
}

.flow .sub-title p {
  font-size: 24em;
  font-weight: 700;
}

@media (max-width: 750px) {
  .flow .sub-title p {
    font-size: 42em;
  }
}

.flow .flowSwiper {
  position: relative;
}

@media (max-width: 750px) {
  .flow .flowSwiper {
    padding: 0 80em;
  }
}

.flow .swiper-slide {
  position: relative;
}

.flow .swiper-slide .step {
  position: absolute;
  width: 90em;
  top: -45em;
  left: -45em;
}

@media (max-width: 750px) {
  .flow .swiper-slide .step {
    width: 110em;
    top: -55em;
    left: -55em;
  }
}

.flow .swiper-slide .flow-img {
  display: block;
  margin-bottom: 30em;
}

@media (max-width: 750px) {
  .flow .swiper-slide .flow-img {
    margin-bottom: 45em;
  }
}

.flow .swiper-slide h3 {
  font-size: 24em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25em;
}

@media (max-width: 750px) {
  .flow .swiper-slide h3 {
    font-size: 34em;
    margin-bottom: 1em;
  }
}

.flow .swiper-slide p {
  text-align: center;
  font-size: 16em;
  font-weight: 500;
  line-height: 2.22;
  white-space: nowrap;
}

@media (max-width: 750px) {
  .flow .swiper-slide p {
    position: relative;
    left: -3em;
    width: 100vw;
    font-size: 25em;
    line-height: 1.92;
  }
}

.flow .swiper-button-next {
  background-image: url(../images/angle.png) !important;
  background-size: cover;
  background-repeat: no-repeat;
  width: 27em;
  height: 65em;
  position: absolute;
  right: 300em;
  top: 185em;
}

@media (max-width: 750px) {
  .flow .swiper-button-next {
    right: 10px;
  }
}

.flow .swiper-button-prev {
  background-image: url(../images/angle.png) !important;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  width: 27em;
  height: 65em;
  position: absolute;
  left: 300em;
  top: 185em;
}

@media (max-width: 750px) {
  .flow .swiper-button-prev {
    left: 10px;
  }
}

.qa {
  background-color: #525258;
  padding-top: 110em;
  padding-bottom: 100em;
  position: relative;
}

@media (max-width: 750px) {
  .qa {
    padding-top: 125em;
    padding-bottom: 120em;
  }
}

.qa::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100em;
  background-color: #d8e53f;
}

.qa::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 35em;
  left: 50%;
  bottom: 0;
  background-color: #d8e53f;
  z-index: 1;
}

.qa .title-area .title {
  color: #d8e53f;
}

.qa .sub-title {
  margin-bottom: 90em;
  text-align: center;
}

.qa .sub-title p {
  font-size: 24em;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 750px) {
  .qa .sub-title p {
    font-size: 42em;
  }
}

.qa .questions {
  color: #fff;
}

.qa .questions .inner {
  padding: 0 320em;
}

@media (max-width: 750px) {
  .qa .questions .inner {
    padding: 0;
  }
}

.qa .questions .accordion {
  border-bottom: 1px solid #fff;
}

.qa .questions .accordion:first-of-type {
  border-top: 1px solid #fff;
}

.qa .questions .accordion .accordion-hidden {
  display: none;
}

.qa .questions .accordion .accordion-open {
  font-size: 20em;
  line-height: 2.11;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  padding: 2em 1em 2em 1em;
  position: relative;
}

@media (max-width: 750px) {
  .qa .questions .accordion .accordion-open {
    font-size: 28em;
    padding: 2em 2em 2em 1.6em;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.qa .questions .accordion .accordion-open:hover {
  cursor: pointer;
}

.qa .questions .accordion .accordion-open__left {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 1.65em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  z-index: 1;
  font-family: "DIN Pro", sans-serif;
  color: #d8e53f;
  white-space: nowrap;
}

@media (max-width: 750px) {
  .qa .questions .accordion .accordion-open__left {
    margin-right: 0.2em;
    width: 1.1em;
    position: relative;
    top: 0.1em;
  }
}

@media (max-width: 750px) {
  .qa .questions .accordion .accordion-open__right {
    width: calc(100% - 1.1em);
  }
}

.qa .questions .accordion .accordion-open .plus {
  position: absolute;
  right: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.1815em;
  height: 1.1815em;
}

@media (max-width: 750px) {
  .qa .questions .accordion .accordion-open .plus {
    right: 0.8em;
  }
}

.qa .questions .accordion .accordion-open .plus div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.qa .questions .accordion .accordion-open .plus div:last-of-type {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translate(-50%, -50%) rotate(-450deg);
          transform: translate(-50%, -50%) rotate(-450deg);
}

.qa .questions .accordion .accordion-hidden:checked + .accordion-open .plus div:last-of-type {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.qa .questions .accordion .accordion-close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  font-size: 18em;
}

.qa .questions .accordion .accordion-close__left {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 1.83em;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  font-family: "DIN Pro", sans-serif;
  white-space: nowrap;
}

@media (max-width: 750px) and (max-width: 750px) {
  .qa .questions .accordion .accordion-close__left {
    margin-right: 0.2em;
    width: 1.1em;
  }
}

@media (max-width: 750px) {
  .qa .questions .accordion .accordion-close__right {
    width: calc(100% - 1.1em);
  }
}

.qa .questions .accordion .accordion-hidden:checked + .accordion-open + .accordion-close {
  background-color: #172446;
  font-size: 18em;
  font-weight: 500;
  height: auto;
  opacity: 1;
  padding: 2.22em 1.11em 2.22em 1.11em;
  line-height: 2.11;
  border-top: 1px solid #fff;
}

@media (max-width: 750px) {
  .qa .questions .accordion .accordion-hidden:checked + .accordion-open + .accordion-close {
    padding: 2em 1.6em 2em 1.6em;
    font-size: 26em;
  }
}

.access {
  padding-top: 110em;
  position: relative;
}

@media (max-width: 750px) {
  .access {
    padding-top: 125em;
  }
}

.access::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100em;
  background-color: #172446;
}

.access .sub-title {
  margin-bottom: 90em;
  text-align: center;
}

.access .sub-title p {
  font-size: 24em;
  font-weight: 700;
  color: #172446;
}

@media (max-width: 750px) {
  .access .sub-title p {
    font-size: 42em;
    line-height: 1.43;
  }
}

.access .inner {
  padding: 0 180em;
}

@media (max-width: 750px) {
  .access .inner {
    padding: 0 45em;
  }
}

.access .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 125em;
}

@media (max-width: 750px) {
  .access .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 750px) and (max-width: 750px) {
  .access .item {
    margin-bottom: 105em;
  }
}

.access .item__left {
  width: 50%;
}

@media (max-width: 750px) {
  .access .item__left {
    width: 100%;
    margin-bottom: 70em;
  }
}

.access .item__left .iframe-wrap {
  height: 500em;
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* = height ÷ width × 100 */
}

@media (max-width: 750px) {
  .access .item__left .iframe-wrap {
    height: 400em;
    padding-top: 62.5%;
  }
}

.access .item__left .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access .item__right {
  margin-left: 45em;
}

@media (max-width: 750px) {
  .access .item__right {
    width: 100%;
    margin-left: 0;
  }
}

.access .item__right h3 {
  font-size: 24em;
  font-weight: 700;
  line-height: 1.83;
  margin-bottom: 1.875em;
}

.access .item__right dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16em;
  font-weight: 500;
  line-height: 3;
}

@media (max-width: 750px) {
  .access .item__right dl {
    font-size: 26em;
    line-height: 1;
    margin-bottom: 1.54em;
  }
}

@media (max-width: 750px) {
  .access .item__right dl:last-of-type {
    margin-bottom: 0;
  }
}

.access .item__right dl dt {
  width: 6em;
}

@media (max-width: 750px) {
  .access .item__right dl dt {
    line-height: 1.34;
  }
}

.access .item__right dl dd {
  width: calc(100% - 6em);
}

@media (max-width: 750px) {
  .access .item__right dl dd {
    line-height: 1.34;
  }
}

.access .banner .container {
  height: 1170em;
  background-image: url(../images/banner02.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 750px) {
  .access .banner .container {
    height: 1638em;
    background-image: url(../images/banner02-sp.jpg);
  }
}

.access .banner .monitor {
  position: absolute;
  left: 417em;
  bottom: 160em;
  width: 600em;
}

@media (max-width: 750px) {
  .access .banner .monitor {
    width: 570em;
    bottom: 170em;
    left: 94em;
  }
}

.access .banner .monitor img {
  display: block;
  width: 100%;
}

@media (max-width: 750px) {
  .access .banner .monitor img {
    margin-bottom: 35em;
  }
}

.access .banner .monitor .entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 80em;
  background-color: #d8e53f;
  -webkit-box-shadow: 0 10em #b9b8b5;
          box-shadow: 0 10em #b9b8b5;
  position: relative;
}

@media (max-width: 750px) {
  .access .banner .monitor .entry {
    height: 145em;
    -webkit-box-shadow: 0 15em #b9b8b5;
            box-shadow: 0 15em #b9b8b5;
  }
}

.access .banner .monitor .entry:hover {
  opacity: 0.7;
}

@media (max-width: 750px) {
  .access .banner .monitor .entry:hover {
    opacity: 1;
  }
}

.access .banner .monitor .entry::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 10em;
  width: 12em;
  height: 12em;
  margin: 0 10em;
  border-top: 2em solid #172446;
  border-right: 2em solid #172446;
}

@media (max-width: 750px) {
  .access .banner .monitor .entry::before {
    width: 20em;
    height: 20em;
    right: 15em;
  }
}

.access .banner .monitor .entry::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 20em;
  width: 12em;
  height: 12em;
  margin: 0 10em;
  border-top: 2em solid #172446;
  border-right: 2em solid #172446;
}

@media (max-width: 750px) {
  .access .banner .monitor .entry::after {
    width: 20em;
    height: 20em;
    right: 25em;
  }
}

.access .banner .monitor .entry span {
  display: inline-block;
  font-size: 17em;
  font-weight: 500;
  color: #172446;
}

@media (max-width: 750px) {
  .access .banner .monitor .entry span {
    font-size: 38em;
  }
}