@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300&display=swap");

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

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

.display--pc {
  display: none !important;
}

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

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

.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: 10px;
  right: 10px;
  width: 200px;
  height: 200px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#cta a {
  display: block;
}

@media (max-width: 750px) {
  #cta {
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
  }
}

#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: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 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;
    -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: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: 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;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 414px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 100px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: 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: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: 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: -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-color: #000;
}

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

.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;
  width: 1px;
  height: 35em;
  left: 50%;
  bottom: 0;
  background-color: #d8e53f;
  z-index: 1;
}

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

.fv .container {
  width: 100%;
  height: 97vw;
  background-image: url(../images/2503-2/fv.webp);
  background-size: cover;
  background-position: top center;
  position: relative;
}

@media (max-width: 750px) {
  .fv .container {
    height: 1260em;
    background-image: url(../images/2503-2/fv_sp.webp);
  }

  .fv__monitor {
    display: none;
  }
}

.fv .container .monitor {
  position: absolute;
  left: calc(50% - 465em);
  bottom: 110em;
  width: 930em;
}

@media (max-width: 750px) {
  .fv .container .monitor {
    width: 680em;
    /* bottom: 498em; */
    left: 32em;
  }
}

.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: -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;
  width: 100%;
  height: 170em;
  margin-top: 30em;
  background-color: #d8e53f;
  -webkit-box-shadow: 0 10em #b9b8b5;
  box-shadow: 0 10em #b9b8b5;
}

@media (max-width: 750px) {
  .fv .container .monitor .entry {
    height: 110em;
    -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: 15em;
  width: 24em;
  height: 24em;
  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: 25em;
  width: 24em;
  height: 24em;
  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: 56em;
  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;
}

.anchors {
  padding: 50em 30em;
  background: #172446;
}

.anchors__ttl {
  text-align: center;
  color: #fff;
  font-size: 36em;
}

.anchors__list {
  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: 60em auto 0;
}

.anchors__item {
  position: relative;
  margin: 0 15em;
  padding: 30em 20em 60em;
  background: #fff;
  border-radius: 10px;
}

@media (max-width: 750px) {
  .anchors__item {
    margin: 0;
  }

  .anchors__item+.anchors__item {
    margin-left: 20em;
  }
}

.anchors__item::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 20em;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 20em;
  height: 20em;
  border: 2px solid #172446;
  border-left: none;
  border-top: none;
}

.anchors__item a {
  -webkit-transition: .5s;
  transition: .5s;
}

.anchors__item a:hover {
  opacity: 0.7;
}

.anchors__number {
  position: absolute;
  top: -0.6em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 60em;
  font-weight: bold;
  font-family: "DIN Pro", sans-serif;
  color: #d8e53f;
}

.anchors__txt {
  margin-top: .5em;
  font-size: 23em;
  color: #172446;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 750px) {
  .anchors__txt {
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }
}

.artmake__heading {
  margin: -305em auto 0;
  text-align: center;
}

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

  .artmake01 .artmake__heading {
    padding: 0;
  }
}

.artmake__heading__number {
  font-family: "DIN Pro", sans-serif;
  color: #d8e53f;
  font-size: 80em;
  font-weight: bold;
}

@media (max-width: 750px) {
  .artmake__heading__number {
    font-size: 110em;
  }
}

.artmake__heading__hero {
  display: block;
  margin: 40em auto 0;
}

.artmake01 {
  position: relative;
  margin-top: 400em;
  padding: 1px 0 120em;
  background: #eeedec;
  text-align: center;
}

@media (max-width: 750px) {
  .artmake01 {
    padding: 1px 35em 120em;
  }
}

.artmake01 h3 {
  font-size: 46em;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.1em;
}

.artmake01 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%);
}

.artmake01 h3 strong {
  font-family: "DIN Pro", sans-serif;
  font-size: 1.5em;
  font-weight: bold;
}

.artmake01 h3 small {
  display: inline-block;
  margin-top: .5em;
  font-style: normal;
}

@media (max-width: 750px) {
  .artmake01 h3 small {
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }
}

.artmake01__ttl {
  display: block;
  margin: 60em auto;
}

.artmake01__txt {
  font-size: 24em;
  font-weight: bold;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

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

.artmake01__txt.midium {
  font-size: 26em;
}

@media (max-width: 750px) {
  .artmake01__txt.midium {
    font-size: 32em;
  }
}

.artmake01__txt.large {
  margin-top: 1em;
  font-size: 32em;
}

.artmake01__txt.large+h3 {
  margin-top: 1em;
}

.artmake01__txt .maker.white {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(65%, #fff));
  background: -webkit-linear-gradient(transparent 60%, #fff 65%);
  background: linear-gradient(transparent 60%, #fff 65%);
}

.artmake01__txt strong {
  font-size: 1.5em;
}

@media (max-width: 750px) {
  .artmake01__txt strong {
    font-size: 1.2em;
  }
}

.artmake01__img {
  display: block;
  margin: 20em auto 50em;
}

.mt70 {
  margin-top: 70em;
}

.artmake01__img02 {
  display: block;
  position: relative;
  margin-top: 140em;
  padding-left: 10em;
}

.artmake01__img02::before {
  content: '';
  position: absolute;
  top: -100em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2px;
  height: 70em;
  background-color: #172446;
}

.artmake01__ttl {
  display: block;
  margin: 60em auto;
}

.artmake02 {
  position: relative;
  margin-top: 400em;
  padding: 1px 0 120em;
  background: #eeedec;
  text-align: center;
}

.artmake02__content {
  position: relative;
  width: 1180em;
  margin: 130em 0 0 auto;
  background: #fff;
  padding-top: 1px;
}

@media screen and (min-width: 751px) and (max-width: 1200px) {
  .artmake02__content {
    width: 93vw;
  }
}

@media screen and (min-width: 1200px) {
  .artmake02__content {
    margin: 130em auto 0;
  }
}

@media (max-width: 750px) {
  .artmake02__content {
    width: 696em;
  }
}

.artmake02__content::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -50vw;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100vw;
  height: 530em;
  background: #dce246;
}

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

.artmake02__content__inner {
  position: relative;
  width: 1180em;
  margin-right: auto;
  padding: 1px 0 75em 150em;
  background: #fff;
  text-align: left;
}

@media (max-width: 750px) {
  .artmake02__content__inner {
    width: 696em;
    padding: 1px 30em 75em 50em;
  }
}

.artmake02__content__ttl {
  display: block;
  position: relative;
  margin-top: -60em;
}

@media (max-width: 750px) {
  .artmake02__content__ttl {
    margin: -30em 0 0 -75em;
  }
}

.artmake02__content__ttl img {
  width: auto;
  height: 105px;
}

@media (max-width: 750px) {
  .artmake02__content__ttl img {
/*    height: 128em;*/
		height: auto;
  }
}

.artmake02__content__img {
  display: block;
  margin: 50em 0 0 50em;
}

@media (max-width: 750px) {
  .artmake02__content__img {
    margin-left: 0;
  }
}

.artmake02__content__img img {
  width: 655em;
  height: auto;
}

.artmake02__content__img.img02 img {
  width: 726em;
  height: auto;
}

.artmake02__content__box {
  width: 650em;
  margin-top: 40em;
  padding-left: 50em;
}

@media (max-width: 750px) {
  .artmake02__content__box {
    width: 100%;
    padding-left: 0;
  }
}

.artmake02__content__txt {
  font-size: 18em;
  font-weight: bold;
  text-align: center;
  line-height: 2;
}

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

.artmake02__content__txt .marker {
  display: inline;
  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%);
	font-feature-settings: "palt";
}

.artmake02__content__txt.txt-left {
  text-align: left;
}

.artmake02__content__notes {
  width: 780em;
  margin-top: 40em;
}

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

.artmake02__content__note {
  font-size: 12em;
  color: #909090;
  text-align: right;
}

@media (max-width: 750px) {
  .artmake02__content__note {
    font-size: 20em;
  }
}

.column {
  position: relative;
  padding: 1px 0 150em;
}

.column::after {
  content: '';
  position: absolute;
  bottom: 60em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2px;
  height: 70em;
  background-color: #172446;
}

@media (max-width: 750px) {
  .column::after {
    width: 1px;
  }
}

.column__heading {
  position: relative;
  padding: 1px 0 200em;
  background: #f1a88b;
  text-align: center;
}

.column__heading__lead {
  display: block;
  margin: -20em auto 0;
}

@media (max-width: 750px) {
  .column__heading__lead img {
    width: 280em;
  }
}

.column__heading__ttl__box {
  margin: 40em auto 0;
}

.column__heading__ttl {
  font-size: 32em;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 750px) {
  .column__heading__ttl {
    font-size: 42em;
  }
}

.column__heading__photo {
  display: block;
  position: relative;
  margin: -165em auto 0;
  text-align: center;
}

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

.column__catch {
  display: block;
  margin-top: 50em;
  text-align: center;
}

@media (max-width: 750px) {
  .column__catch {
    width: 540em;
    margin: 50em auto 0;
  }
}

.column_serif {
  display: block;
  position: relative;
  margin-top: 30em;
  text-align: center;
}

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

.column_sum {
  display: block;
  margin-top: 40em;
  padding-left: 10em;
  text-align: center;
}

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

.worries {
  position: relative;
  padding: 1px 0 150em;
  background: #eeedec;
}

.worries__heading {
  position: relative;
  padding: 1px 0 195em;
  background: #595962;
  text-align: center;
}

@media (max-width: 750px) {
  .worries__heading {
    padding: 1px 35em 195em;
  }
}

.worries__heading__lead {
  display: block;
  margin: -25em auto 0;
}

.worries__photo {
  display: block;
  position: relative;
  margin: -150em auto 0;
  text-align: center;
}

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

.worries__list {
  display: block;
  margin-top: 40em;
  text-align: center;
}

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

.worries__graf {
  display: block;
  margin-top: 60em;
  padding-right: 60em;
  text-align: center;
}

@media (max-width: 750px) {
  .worries__graf {
    padding: 0 90em 0 35em;
  }
}

.worries__recommend {
  display: block;
  text-align: center;
  margin-top: 24em;
}

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

.whats {
  position: relative;
  padding: 1px 0 150em;
  background: #eeedec;
}

@media (max-width: 750px) {
  .whats {
    padding-bottom: 90em;
  }
}

.whats__heading {
  position: relative;
  padding: 1px 0 190em;
  background: #d8e53f;
  text-align: center;
}

@media (max-width: 750px) {
  .whats__heading {
    padding: 1px 35em 190em;
  }
}

.whats__heading__lead {
  display: block;
  margin: -25em auto 0;
}

.whats__heading__lead img {
  width: 560em;
  height: auto;
}

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

.whats__photo {
  display: block;
  position: relative;
  margin: -150em auto 0;
  text-align: center;
}

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

.whats__photo img {
  width: 700em;
  height: auto;
}

.whats__content {
  width: 700em;
  margin: 40em auto 0;
}

@media (max-width: 750px) {
  .whats__content {
    width: 100%;
    padding: 0 35em;
  }
}

.whats__txt {
  font-size: 18em;
  font-weight: bold;
  line-height: 2.2;
}

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

.whats__txt .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%);
}

.artmake03 {
  position: relative;
  margin-top: 390em;
  padding: 1px 0 120em;
  background: #172446;
  text-align: center;
}

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

.artmake03__ttl__box {
  position: relative;
  margin-top: 120em;
}

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

.artmake03__ttl {
  position: relative;
  text-align: center;
  font-family: "DIN Pro", sans-serif;
  color: #d8e53f;
  font-size: 42em;
  font-weight: 400;
}

.artmake03__txt {
  margin-top: 3em;
  text-align: center;
  color: #fff;
  font-size: 24em;
  font-weight: bold;
}

@media (max-width: 750px) {
  .artmake03__txt {
    margin-top: 2em;
    font-size: 42em;
  }
}

.artmake03__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;
  margin-top: 30em;
  padding: 0 180em;
}

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

.artmake03__list::after {
  display: block;
  content: '';
  width: 310em;
}

.artmake03__item {
  width: 330em;
  margin-bottom: 30em;
}

.artmake03__note__box {
  width: 615em;
  margin: 76em auto 0;
}

@media (max-width: 750px) {
  .artmake03__note__box {
    width: 100%;
    padding: 0 50em;
  }
}

.artmake03__note {
  color: #a8a5a8;
  text-align: left;
  line-height: 2;
  font-size: 20em;
}

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

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

.review .sub-title {
  text-align: center;
  font-size: 24em;
  font-weight: bold;
}

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

.review__ttl {
  position: relative;
  padding-top: 120em;
}

.review__star {
  display: block;
  margin-top: 60em;
  text-align: center;
}

.review__star img {
  width: 323em;
}

@media (max-width: 750px) {
  .review__star img {
    width: 413em;
  }
}

.review__note {
  margin-top: 40em;
  text-align: center;
}

.review__note__txt {
  font-size: 16em;
  color: #040000;
}

@media (max-width: 750px) {
  .review__note__txt {
    font-size: 20em;
  }
}

.review__card {
  width: 700em;
  margin: 30em auto;
  padding: 50em 60em;
  background: #fff;
}

@media (max-width: 750px) {
  .review__card {
    width: 680em;
    margin-top: 80em;
    padding: 60em 40em;
  }

  .review__card+.review__card {
    margin-top: 30em;
  }
}

.review__card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30em;
}

.review__card__thumb {
  width: 75em;
  margin-right: 40em;
}

@media (max-width: 750px) {
  .review__card__thumb {
    width: 90em;
    margin-right: 26em;
  }
}

.review__card__ttl {
  font-size: 24em;
  font-weight: 600;
  color: #252525;
  line-height: 1.6;
}

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

.review__card__txt {
  font-size: 18em;
  line-height: 2;
}

@media (max-width: 750px) {
  .review__card__txt {
    font-size: 22em;
  }
}

.cta {
  position: relative;
  padding: 1px 0 150em;
  background: #eeedec;
}

.staff+.cta {
  margin-top: 140em;
  background: #fff;
}

.cta__heading {
  position: relative;
  padding: 1px 0 140em;
  background: #d8e53f;
  text-align: center;
}

.cta__heading__lead {
  display: block;
  position: relative;
  margin: -39em auto 0;
  text-align: center;
  z-index: 1;
}

.cta__heading__lead img {
  width: 680em;
}

.cta__photo {
  display: block;
  position: relative;
  margin: -110em auto 0;
  text-align: center;
}

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

.cta__content {
  display: block;
  width: 600em;
  margin: 44em auto 0;
}

@media (max-width: 750px) {
  .cta__content {
    width: 100%;
    padding: 0 30em;
  }
}

.cta__catch {
  display: block;
  position: relative;
  margin: 40em auto 0;
  text-align: center;
}

.cta__catch img {
  width: 600em;
}

@media (max-width: 750px) {
  .cta__catch img {
    width: 640em;
  }
}

.cta.second .cta__catch img {
  width: 702em;
}

@media (max-width: 750px) {
  .cta.second .cta__catch img {
    width: 640em;
  }
}

.cta .entry {
  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;
  width: 600em;
  height: 80em;
  margin: 30em auto 0;
  background-color: #d8e53f;
  -webkit-box-shadow: 0 10em #b9b8b5;
  box-shadow: 0 10em #b9b8b5;
}

@media (max-width: 750px) {
  .cta .entry {
    width: 680em;
    height: 160em;
  }
}

.cta .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;
}

.cta .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;
}

.cta .entry span {
  display: inline-block;
  font-size: 20em;
  font-weight: 500;
  color: #172446;
}

@media (max-width: 750px) {
  .cta .entry span {
    font-size: 40em;
  }
}

.story {
  position: relative;
  padding-top: 100em;
}

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

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

.story__lead {
  display: block;
  text-align: center;
}

.story__lead img {
  width: 780em;
}

@media (max-width: 750px) {
  .story__lead img {
    width: 620em;
  }
}

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

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

.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: -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 (max-width: 750px) {
  .point .lists .list__title {
    -webkit-box-pack: 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: -ms-flexbox;
  display: flex;
}

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

.works .content__bottom dl {
  display: -webkit-box;
  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: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: 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;
    -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: -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;
  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;
  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;
}

.staff .items .item.item02::before {
  height: 460em;
}

@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;
  line-height: 2.3;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

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

.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 (min-width:751px) {
	.staff .items .item .insta-area{
		background-color: #fff;
	}
}

@media (max-width: 750px) {
  .staff .items .item .insta-area {
    width: 100%;
    margin-left: 0;
  }
  .slick-slide img{
    display: block !important;
  }
}

.staff .items .item .insta-area .readmore {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 40em;
  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;
  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%;
}

@media (min-width:751px) {
  .staff .items .item .insta-area .staff-insta {
			width: 80%;
			margin: auto;
			padding-top: 30px;
  }
} 

/* @media (max-width: 750px) {
  .staff-insta {
    display: none !important;
  }
} */


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

@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: #172446;
  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.every-open {
  border-bottom: 1px solid #172446;
}

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

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

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

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

.every-open .accordion-hidden:checked+.accordion-open {
  color: #172446;
  background: #eeedec;
  border-bottom: 1px solid #172446;
}

@media (max-width: 750px) {
  .qa .questions .accordion .accordion-open {
    font-size: 28em;
    padding: 2em 2em 2em 1.6em;
    -webkit-box-align: 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;
}

.qa .questions .accordion.every-open .accordion-open__left {
  color: #172446;
}

@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.every-open .accordion-open .plus {
  display: none;
}

.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.every-open .accordion-open {
  position: relative;
  background: #eeedec;
  color: #172446;
}

.qa .questions .accordion.every-open .accordion-open::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #172446 transparent transparent transparent;
}

.qa .questions .accordion.every-open .accordion-open::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #eeedec transparent transparent transparent;
}

.qa .questions .accordion .accordion-close {
  display: -webkit-box;
  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.every-open .accordion-close {
  background-color: #172446;
  font-size: 18em;
  font-weight: 500;
  height: auto;
  opacity: 1;
  padding: 2em 1.6em 2em 1.6em;
  line-height: 2.11;
  background: #d8e53f;
  color: #172446;
  border-top: 1px solid #172446;
}

@media (max-width: 750px) {
  .qa .questions .accordion.every-open .accordion-close {
    font-size: 26em;
  }
}

.qa .questions .accordion .accordion-close__left {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 1.83em;
  line-height: 1;
  font-weight: 700;
  color: #172446;
  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;
  background: #d8e53f;
  color: #172446;
  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: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 125em;
}

@media (max-width: 750px) {
  .access .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -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: -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: 1430em;
  background-image: url(../images/2209/banner02.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

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

.access .banner .monitor {
  position: absolute;
  left: 50%;
  bottom: 150em;
  width: 600em;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 750px) {
  .access .banner .monitor {
    width: 660em;
    bottom: 90em;
  }

  .monitor__pic {
    display: none;
  }
}

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

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

.access .banner .monitor .entry {
  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;
  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;
  }
}

.remodal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: transparent;
}

.remodal-close {
  position: absolute;
  top: -4em;
  left: auto;
  right: 9em;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color .2s;
  transition: color .2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

@media (max-width: 750px) {
  .remodal-close {
    right: 0;
  }
}

.remodal-close:before {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 50px;
  font-weight: 100;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.price__table01 {
  display: block;
  width: 1100em;
  margin: -40em auto 0;
}

@media (max-width: 750px) {
  .price__table01 {
    width: 680em;
  }
}

.price__table02 {
  display: block;
  width: 680em;
  margin: -40em auto 0;
}

.price--sttl {
  margin-top: 76em;
}

.price__note {
  width: 680em;
  margin: 20px auto 0;
}

.price__note li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 16em;
  color: #a8a5a8;
  text-align: left;
  line-height: 1.4;
}

/* アニメーションの指定です */

@media (min-width: 750px) {
  .flex {
    display: none;
  }
}


@media (max-width: 750px) {
  .flex {
    display: flex;
    flex-wrap: unset !important;
    gap: 15px;
    width: 160%;
    margin-left: -15px;
  }
}

@media (min-width: 750px) {
  .staff-insta {
    display: none;
  }
}

/*
@media (min-width: 750px) {
  .slider {
    display: none;
  }
}
*/


/*
.slick-dotted.slick-slider {
  display: none;
}
*/


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

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

