@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #EEEDE2;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.gloabal {
  overflow: hidden;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

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

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/* 共通パーツ */
.breadcrumbs {
  font-size: 14px;
  margin-top: 20px;
}

.home {
  color: #000 !important;
}

.archive {
  color: #000;
}

.section-width {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.section-width-md {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

.pan__ul {
  margin-top: 20px;
}
@media screen and (max-width: 896px) {
  .pan__ul {
    margin-top: 0;
  }
}

/*
コンテンツ幅を設定するための共通クラス
*/
.wrapper {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

/*
  セクションタイトル用の共通クラス
  */
.section-ttl {
  font-size: 4rem;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 896px) {
  .section-ttl {
    font-size: 2.4rem;
  }
}

/* 疑似要素でタイトル下に下線を引く */
.section-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background-color: #333;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.button-sp-wrap {
  display: none;
}
@media screen and (max-width: 1025px) {
  .button-sp-wrap {
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    font-size: 50px;
    color: #fff;
    background: #FFEA00;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 30;
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
  }
}

/*このクラスが付与されると表示する*/
.active {
  opacity: 1;
  visibility: visible;
}

.button-sp-link {
  text-align: center;
  width: 50%;
}
.button-sp-link:first-child {
  border-right: 1px solid black;
}
.button-sp-link > p {
  font-size: 1.3rem;
  color: #000;
  margin-top: -10px;
}
.button-sp-link-img > img {
  width: 25px;
  height: 25px;
  position: relative;
  bottom: 20px;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
  height: 100px;
  padding: 20px 30px 20px 20px;
  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;
}

#header .site-title {
  line-height: 1px;
  margin-top: 120px;
}
@media screen and (max-width: 1025px) {
  #header .site-title {
    margin-top: 0;
  }
}

#header .site-title a {
  display: block;
}

.header-r {
  margin-right: 150px;
}
.header-ttl {
  font-size: 2rem;
}
@media screen and (max-width: 1025px) {
  .header-ttl {
    display: none;
  }
}
@media screen and (max-width: 1025px) {
  .header-logo-pc {
    display: none;
  }
}
.header-logo-sp {
  display: none;
}
@media screen and (max-width: 1025px) {
  .header-logo-sp {
    display: block;
  }
}

/*
ハンバーガ―メニュー
*/
.hamburger {
  width: 130px;
  height: 100px;
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 20px;
  z-index: 60;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1025px) {
  .hamburger {
    right: 0px;
    width: 100px;
    height: 100px;
  }
}

.hamburger:hover {
  opacity: 0.7;
}

/* ハンバーガーメニューの線の設定（メニューが閉じている時） */
.hamburger span {
  width: 100px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 25px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 896px) {
  .hamburger span {
    width: 50px;
  }
}

/* 1本目の線の位置を設定 */
.hamburger span:nth-child(1) {
  top: 36px;
}

.hamburger span:nth-child(1)::before {
  content: "MENU";
  position: absolute;
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 14px;
}

/* 2本目の線の位置を設定 */
.hamburger span:nth-child(2) {
  top: 50px;
}

/* 3本目の線の位置を設定 */
.hamburger span:nth-child(3) {
  top: 64px;
}

/*
  ハンバーガーメニューの線の設定（メニューが開いている時）
  1本目の線を-45度回転
  */
.hamburger.active span:nth-child(1) {
  top: 75px;
  left: 30px;
  background: #000;
  -webkit-transform: rotate(-37deg);
          transform: rotate(-37deg);
}

/* 2本目と3本目は重ねて45度回転 */
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 75px;
  background: #000;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

.hamburger.active span:nth-child(1)::before {
  content: "CLOSE";
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  top: -50px;
  left: 55%;
  font-size: 14px;
}
@media screen and (max-width: 896px) {
  .hamburger.active span:nth-child(1)::before {
    top: -40px;
    -webkit-transform: rotate(37deg);
            transform: rotate(37deg);
  }
}

/*
  メニューの設定
  最初は閉じている状態なので、「opacity: 0;」「visibility: hidden;」
  で要素を非表示にしておく
  */
#navi {
  width: 100%;
  height: 100vh;
  background-color: #FFEA00;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  opacity: 0;
  text-align: center;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
  overflow-y: scroll;
}

/*
  ハンバーガーメニューがクリックされた際に、jQueryで#naviにactiveクラスを追加して、
  メニューを表示させる。
  */
#navi.active {
  opacity: 1;
  visibility: visible;
}

#navi .menu {
  margin-right: 10%;
}
@media screen and (max-width: 1025px) {
  #navi .menu {
    margin-right: 0;
  }
}

#navi .menu li {
  margin-bottom: 40px;
  text-align: left;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}
@media screen and (max-width: 896px) {
  #navi .menu li {
    margin-bottom: 15px;
  }
}

#navi .menu a {
  color: #000;
  font-size: 19px;
}

#navi .menu-r li {
  margin-bottom: 20px;
  text-align: left;
  padding-bottom: 10px;
}

#navi .menu-r a {
  color: #000;
  font-size: 13px;
  font-weight: 400;
}

#navi .btn {
  width: 250px;
  border: solid 1px #fff;
  color: #fff;
  display: block;
  font-weight: bold;
  padding: 15px 0;
  margin: 0 auto;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* ボタンの右と下の線は疑似要素で設定 */
#navi .btn::after {
  content: "";
  width: 250px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  padding: 15px 0;
  position: absolute;
  right: -6px;
  bottom: -6px;
}

#navi .btn:hover {
  background-color: #fff;
  color: #ff2a2a;
}

.menu-flex {
  width: 600px;
}
@media screen and (max-width: 1025px) {
  .menu-flex {
    width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 1025px) {
  .menu-flex {
    margin-top: 30px;
  }
}
.menu-flex-ttl {
  font-size: 1.9rem;
  color: #000;
  text-align: left;
}
.menu-flex__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 50px;
}
@media screen and (max-width: 1025px) {
  .menu-flex__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 896px) {
  .menu-flex__inner {
    margin-top: 30px;
  }
}

.navi__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
  margin: 180px auto 0;
}
@media screen and (max-width: 1025px) {
  .navi__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 30px auto 0;
  }
}
.navi__flex-logo {
  text-align: left;
}
@media screen and (max-width: 896px) {
  .navi__flex-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
}
.navi__flex-logo > a {
  width: 150px;
  display: block;
  margin-right: 20px;
}
@media screen and (max-width: 896px) {
  .navi__flex-logo > a {
    width: 50px;
  }
}
@media screen and (max-width: 896px) {
  .navi__flex-logo > img {
    width: 10%;
    margin-right: 30px;
  }
}

.sp__logo-txt {
  font-size: 1.3rem;
  color: #000;
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .sp__logo-txt {
    margin-top: 10px;
  }
}
.sp__logo-ttl {
  margin-top: 10px;
  font-size: 2.3rem;
  color: #000;
  position: relative;
  right: 10px;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.js-fade.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.sp-br {
  display: none;
}
@media screen and (max-width: 896px) {
  .sp-br {
    display: block;
  }
}

.mainvisual {
  position: relative;
  margin-bottom: 70px;
}
.mainvisual__img {
  padding-bottom: 100px;
  position: relative;
  left: -2%;
}
@media screen and (max-width: 480px) {
  .mainvisual__img {
    display: none;
  }
}
.mainvisual__img-sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .mainvisual__img-sp {
    display: block;
  }
}
.mainvisual__ttl {
  position: absolute;
  bottom: 0%;
  left: 2%;
  font-size: 10rem;
}
@media screen and (max-width: 1367px) {
  .mainvisual__ttl {
    font-size: 6rem;
  }
}
@media screen and (max-width: 480px) {
  .mainvisual__ttl {
    font-size: 4.3rem;
    bottom: -15%;
  }
}
.mainvisual__ttl > span {
  display: inline-block;
  font-size: 1.5rem;
}
.mainvisual__movie {
  display: block;
  width: 170px;
  height: 170px;
  position: relative;
}
.mainvisual__movie-wrap {
  position: absolute;
  top: 0;
  right: 10%;
}
@media screen and (max-width: 480px) {
  .mainvisual__movie-wrap {
    right: 2%;
  }
}
.mainvisual__sankaku {
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  width: 0;
  height: 0;
  border-left: 50px solid black;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}

.circle {
  -webkit-animation: 13s linear infinite rotation1;
          animation: 13s linear infinite rotation1;
}

@-webkit-keyframes rotation1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_navi-wrap {
  position: fixed;
  bottom: 45%;
  right: 0;
  z-index: 50;
}
@media screen and (max-width: 1025px) {
  .cp_navi-wrap {
    display: none;
  }
}

.cp_navi {
  position: relative;
  width: 360px;
  height: auto;
}

.cp_navi #cp_sidenav a {
  position: absolute;
  right: -155px;
  width: 200px;
  height: 54px;
  padding: 12px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  border-radius: 30px;
  border: 2px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cp_navi #cp_sidenav a > img {
  margin-right: 10px;
}

.cp_span {
  font-size: 1.6rem;
  font-weight: bold;
}

.cp_navi #news {
  background-color: #FFEA00;
}
.search__icon {
  margin-bottom: 8px;
}
.search__wrap {
  display: block;
  background-color: #FFEA00;
  border-radius: 50%;
  border: 2px solid #000;
  width: 230px;
  text-align: center;
  padding: 20px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1367px) {
  .search__wrap {
    width: 180px;
    padding: 10px 10px 16px 10px;
  }
}
.search__wrap:first-child {
  margin-bottom: 20px;
}
.search__wrap-cont {
  position: fixed;
  bottom: 7%;
  right: 3%;
  z-index: 50;
}
@media screen and (max-width: 1367px) {
  .search__wrap-cont {
    bottom: 0%;
  }
}
@media screen and (max-width: 1025px) {
  .search__wrap-cont {
    display: none;
  }
}
.search__wrap > p {
  font-size: 1.5rem;
  line-height: 1.3;
  color: #000;
}
@media screen and (max-width: 1367px) {
  .search__wrap > p {
    font-size: 1.2rem;
  }
}
.img-slide {
  margin-bottom: 160px;
}
@media screen and (max-width: 1025px) {
  .img-slide {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 896px) {
  .img-slide {
    margin-top: 120px;
  }
}

/*
右から左へ
----------------------------*/
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*
  IE11対策
  ----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.d-demo {
  display: -ms-grid;
  overflow: hidden;
}

/*----------------------------*/
.d-demo__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.d-demo__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.d-demo__list--left {
  -webkit-animation: infinity-scroll-left 95s infinite linear 0.5s both;
          animation: infinity-scroll-left 95s infinite linear 0.5s both;
}

.d-demo__item {
  width: 28.5714285714vw;
}

.d-demo__item > img {
  width: 100%;
}

.loop03 {
  padding-top: 30px;
  padding-bottom: 0px;
  overflow: hidden;
}
@media screen and (max-width: 1025px) {
  .loop03 {
    padding-bottom: 0;
  }
}

.loop03__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  padding-top: 10px;
  padding-bottom: 10px;
}

.loop03__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 10rem;
}
@media screen and (max-width: 1025px) {
  .loop03__item {
    font-size: 6rem;
  }
}

.loop03__item:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.loop03__item:nth-child(even) {
  -webkit-animation: loop2 50s linear infinite;
          animation: loop2 50s linear infinite;
}

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

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
/*-------------------------------------------
/*-------------------------------------------
  にいがたの学習と体験
  -------------------------------------------*/
.link-blk__wrap {
  margin-top: 100px;
}
@media screen and (max-width: 1025px) {
  .link-blk__wrap {
    margin-top: 50px;
  }
}
.link-blk__wrap > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 2px solid #000;
}
.link-blk__wrap > ul > li {
  width: 20%;
  background-color: #fff;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .link-blk__wrap > ul > li {
    width: 50%;
  }
}
@media screen and (max-width: 896px) {
  .link-blk__wrap > ul > li:nth-child(2n) {
    border-right: none;
  }
}
.link-blk__wrap > ul > li:nth-child(5) {
  border-right: 0;
}
@media screen and (max-width: 896px) {
  .link-blk__wrap > ul > li:nth-child(5) {
    border-right: 2px solid black;
  }
}
.link-blk__wrap > ul > li:nth-child(6) {
  border-bottom: 0;
}
@media screen and (max-width: 896px) {
  .link-blk__wrap > ul > li:nth-child(6) {
    border-bottom: 2px solid black;
  }
}
.link-blk__wrap > ul > li:nth-child(7) {
  border-bottom: 0;
}
@media screen and (max-width: 896px) {
  .link-blk__wrap > ul > li:nth-child(7) {
    border-bottom: 2px solid black;
  }
}
.link-blk__wrap > ul > li:nth-child(8) {
  border-bottom: 0;
}
@media screen and (max-width: 896px) {
  .link-blk__wrap > ul > li:nth-child(8) {
    border-bottom: 2px solid black;
  }
}
.link-blk__wrap > ul > li:nth-child(9) {
  border-bottom: 0;
}
.link-blk__wrap > ul > li:nth-child(10) {
  border-right: 0;
  border-bottom: 0;
}
.link-blk__wrap > ul > li > a {
  display: block;
  color: #000;
  font-size: 1.6rem;
  width: 100%;
  height: 100%;
  padding: 10px;
}
@media screen and (max-width: 896px) {
  .link-blk__wrap > ul > li > a {
    font-size: 1.2rem;
  }
}
.link-blk__wrap > ul > li > a:hover {
  background-color: #FFEA00;
  opacity: 1;
}

.home-news {
  margin-bottom: 100px;
}
@media screen and (max-width: 1025px) {
  .home-news {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 896px) {
  .home-news {
    margin-bottom: 40px;
  }
}
.home-news__slide {
  margin-top: 80px;
}
@media screen and (max-width: 896px) {
  .home-news__slide {
    margin-top: 40px;
  }
}

.new-icon {
  padding: 8px 0 10px 0;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 10px;
  width: 80px;
  border-radius: 50%;
  background-color: #FFEA00;
  font-size: 2rem;
  border: 1px solid black;
  z-index: 10;
}

.news__ttl {
  font-size: 2rem;
  border-bottom: 1px solid #000;
  display: inline;
  line-height: 1.6;
}
.news__txt {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 20px;
}

.tag {
  background-color: #D9D9D9;
  width: 45%;
  text-align: center;
  padding: 6px 6px;
  border-radius: 30px;
  font-size: 1.3rem;
  margin-bottom: 15px;
  margin-right: 5%;
}
@media screen and (max-width: 896px) {
  .tag {
    width: 47%;
  }
}
@media screen and (max-width: 896px) {
  .tag:nth-child(2n) {
    margin-right: 0;
  }
}
.tag-wrap {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 40px;
}

@media screen and (max-width: 896px) {
  .sp-width {
    width: 80%;
  }
}

.splide__slide {
  position: relative;
}
.splide__slide > a {
  color: #000;
}
.splide__slide > a > img {
  width: 100%;
  margin-bottom: 20px;
}

.splide__arrow {
  top: 33% !important;
  width: 30px !important;
}
@media screen and (max-width: 896px) {
  .splide__arrow {
    top: 30% !important;
  }
}

.splide__arrow--prev {
  left: -3em;
}

.splide__arrow--next {
  right: -3em;
}

.splide__arrow:disabled {
  opacity: 1;
}

.splide__arrow {
  background-color: transparent;
}

.splide__pagination li {
  display: none;
}

.swiper-container {
  width: 600px;
  height: 300px;
  margin: 40px auto;
}

.support-menu {
  max-width: 800px;
  width: 90%;
  margin: 100px auto;
}
@media screen and (max-width: 1025px) {
  .support-menu {
    margin: 60px auto 0px;
  }
}
.support-menu > p {
  font-size: 2.3rem;
  text-align: center;
}
.support-menu__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (max-width: 1025px) {
  .support-menu__flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.support-menu__flex > li {
  width: 40%;
  margin-right: 3%;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1025px) {
  .support-menu__flex > li {
    width: 48%;
    margin-right: 0;
  }
}
.support-menu__flex > li:nth-child(2n) {
  margin-right: 0;
}
.support-menu__flex > li > a {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  display: block;
  font-size: 1.5rem;
  color: #000;
  padding: 10px;
}
@media screen and (max-width: 1025px) {
  .support-menu__flex > li > a {
    font-size: 1.2rem;
  }
}
.support-menu__flex > li > a:hover {
  background-color: #FFEA00;
  opacity: 1;
}

.btn-big {
  font-size: 1.5rem;
  position: relative;
  width: 300px;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #000;
}
.btn-big-sec {
  width: 600px;
  font-size: 1.5rem;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #000;
}
@media screen and (max-width: 1025px) {
  .btn-big-sec {
    width: 90%;
    padding: 30px;
  }
}
.btn-big-sec > a {
  padding: 40px 40px 40px 120px;
  display: block;
  width: 100%;
  color: #000;
  font-size: 1.5rem;
  height: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 896px) {
  .btn-big-sec > a {
    padding: 0;
  }
}
.btn-big-sec::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 130px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../../top/img/Arrow.svg);
  width: 80px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 1025px) {
  .btn-big-sec::after {
    right: 20px;
    width: 100px;
  }
}
@media screen and (max-width: 1025px) {
  .btn-big-sec::after {
    width: 70px;
  }
}
.btn-big > a {
  padding: 20px 30px;
  display: block;
  width: 100%;
  color: #000;
  font-size: 1.5rem;
  height: 100%;
  position: relative;
  z-index: 2;
}
.btn-big::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../../top/img/Arrow.svg);
  width: 80px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-big-thr {
  margin-top: 30px;
  text-align: right;
  position: relative;
}
.btn-big-thr > a {
  color: #000;
  font-size: 1.5rem;
}
.btn-big-thr > a > img {
  width: 50px;
  position: relative;
  bottom: 2px;
}

/*-------------------------------------------
/*-------------------------------------------
5つのモデルコース
  -------------------------------------------*/
.section-lineup {
  overflow: hidden;
  padding: 120px 0;
}
.section-lineup .slick-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 48px;
  height: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sliderArea {
  margin-top: 100px;
}
@media screen and (max-width: 896px) {
  .sliderArea {
    margin-top: 50px;
  }
}

.full-screen > .slick-dots {
  bottom: -45px !important;
}

.slick-dots li {
  background-color: transparent !important;
  padding: 0 !important;
  margin-right: 0px !important;
  margin-top: 30px !important;
  border: none !important;
}

.slick-slide {
  text-align: center;
  margin: 0 50px;
  border: 2px solid #000;
  background-color: #fff !important;
  padding: 50px 70px 30px;
}
@media screen and (max-width: 1025px) {
  .slick-slide {
    margin: 0 20px;
    padding: 20px;
  }
}

.prev-arrow {
  background-image: url(../../top/img/prev.svg);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 13%;
  z-index: 1;
}
@media screen and (max-width: 896px) {
  .prev-arrow {
    left: 1%;
  }
}

.next-arrow {
  background-image: url(../../top/img/next.svg);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 13%;
  z-index: 1;
}
@media screen and (max-width: 896px) {
  .next-arrow {
    right: 1%;
  }
}

.home-model__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  .home-model__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home-model__card-img {
  margin-bottom: 16px;
}
.home-model__card-l {
  width: 20%;
}
@media screen and (max-width: 1025px) {
  .home-model__card-l {
    width: 100%;
  }
}
@media screen and (max-width: 896px) {
  .home-model__card-l-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home-model__card-r {
  width: 70%;
}
@media screen and (max-width: 1025px) {
  .home-model__card-r {
    width: 100%;
  }
}
.home-model__card-r-ttl {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 30px;
}
.home-model__card-r-ttl > h5 {
  font-size: 2rem;
  letter-spacing: 0.4em;
}
.home-model__card-r-ttl > p {
  font-size: 1.5rem;
}
.home-model__card-r-txt {
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 2;
}
.home-model__card-r-btn {
  text-align: right;
  margin-top: 90px;
}
@media screen and (max-width: 896px) {
  .home-model__card-r-btn {
    margin-top: 20px;
    bottom: 10px !important;
  }
}
.home-model__card-r-btn > a {
  color: #000;
  font-size: 1.4rem;
  position: relative;
  margin-right: 120px;
}
.home-model__card-r-btn > a::after {
  content: "";
  position: absolute;
  left: 80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../../top/img/Arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 16px;
}
.home-model__card-course {
  font-size: 1.6rem;
}
.home-model__card-num {
  font-size: 5.6rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FFEA00;
  border: 2px solid #000;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  line-height: 1.4;
  margin: 10px auto 20px;
}
@media screen and (max-width: 1025px) {
  .home-model__card-num {
    width: 60px;
    height: 60px;
    font-size: 3rem;
    line-height: 1.8;
    margin: 10px 0 20px 10px;
  }
}
.home-model__card-ttl-wrap {
  margin: 0 auto;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.6;
  letter-spacing: 1em;
}
@media screen and (max-width: 1025px) {
  .home-model__card-ttl-wrap {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin-bottom: 20px;
  }
}
.home-model__card-ttl-wrap > p {
  font-size: 2rem;
}
@media screen and (max-width: 1025px) {
  .home-model__card-ttl-wrap > p {
    font-size: 1.6rem;
    text-align: left;
  }
}

/*-------------------------------------------
/*-------------------------------------------
特集
  -------------------------------------------*/
.home-issue {
  margin-top: 160px;
}
@media screen and (max-width: 896px) {
  .home-issue {
    margin-top: 100px;
  }
}
.home-issue__ttl {
  text-align: center;
}
@media screen and (max-width: 896px) {
  .home-issue__ttl {
    margin-bottom: -20px;
  }
}
.home-issue__ttl > h6 {
  font-size: 3rem;
}
.home-issue__ttl > p {
  font-size: 2rem;
}
.home-issue__bg {
  background-image: url(../../top/img/home-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 200px;
  height: 1200px;
  position: relative;
}
@media screen and (max-width: 1025px) {
  .home-issue__bg {
    height: 1200px;
  }
}
.home-issue__bg-ttl {
  font-size: 2rem;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  bottom: 7%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1025px) {
  .home-issue__bg-ttl {
    bottom: 2%;
  }
}
@media screen and (max-width: 896px) {
  .home-issue__bg-ttl {
    bottom: 9%;
  }
}
.home-issue__bg-ttl > p {
  margin-left: 17px;
  letter-spacing: 0.5em;
}
.home-issue__bg-ttl > p:last-child {
  margin-left: 0;
}
.home-issue__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1025px) {
  .home-issue__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.home-issue__bottom-flex {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-top: 100px;
  margin-bottom: 200px;
}
@media screen and (max-width: 1025px) {
  .home-issue__bottom-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 896px) {
  .home-issue__bottom-flex {
    margin-top: 0px;
  }
}
.home-issue__bottom-sp {
  display: none;
}
@media screen and (max-width: 1025px) {
  .home-issue__bottom-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1025px) {
  .home-issue__bottom-sp > img {
    width: 40%;
  }
}
@media screen and (max-width: 1025px) {
  .home-issue__bottom-sp > img:first-child {
    margin-right: 3%;
  }
}
@media screen and (max-width: 1025px) {
  .home-issue__bottom-sp > img:last-child {
    width: 46%;
  }
}
.home-issue__bottom-img {
  width: 300px;
}
@media screen and (max-width: 1025px) {
  .home-issue__bottom-img.order01 {
    display: none;
  }
}
@media screen and (max-width: 1025px) {
  .home-issue__bottom-img.order02 {
    display: none;
  }
}
.home-issue__bottom-ttl {
  font-size: 5rem;
  margin: 0 80px;
  line-height: 1.3;
}
@media screen and (max-width: 1025px) {
  .home-issue__bottom-ttl {
    font-size: 4.2rem;
    margin: 0 auto 40px;
  }
}

.issue__ttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-right: 14%;
}
@media screen and (max-width: 1025px) {
  .issue__ttl {
    margin-right: 0;
  }
}
.issue__ttl > div {
  border-right: 1px solid #000;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  display: table;
}

.issue__txt {
  width: 50%;
}
@media screen and (max-width: 1025px) {
  .issue__txt {
    width: 100%;
    margin-top: 50px;
  }
}
.issue__txt.mt {
  margin-top: 0;
}
@media screen and (max-width: 1025px) {
  .issue__txt.mt {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1025px) {
  .issue__txt.mt {
    margin-bottom: -30px;
  }
}
.issue__txt > p {
  font-size: 1.8rem;
  line-height: 2;
}

.slide-container {
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 40px auto 0;
}

.regular {
  width: 70%;
  margin: 50px auto 0;
}
@media screen and (max-width: 1025px) {
  .regular {
    width: 90%;
  }
}
@media screen and (max-width: 896px) {
  .regular {
    width: 100%;
  }
}

.slider.sec {
  width: 90%;
  max-width: 700px;
  margin: 30px auto 90px;
}
@media screen and (max-width: 896px) {
  .slider.sec {
    width: 95%;
  }
}

.slide-card {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}
@media screen and (max-width: 1025px) {
  .slide-card {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    height: auto !important;
  }
}
.slide-card.sec {
  padding: 0 !important;
  background-color: white !important;
  border: none !important;
}
.slide-card__img {
  margin: 0 auto;
}
.slide-card__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-card__des {
  color: black;
  padding: 20px;
}
.slide-card__des-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.slide-card__des-top > p:first-child {
  font-size: 1.5rem;
  margin-right: 10px;
}
.slide-card__des-top > p:last-child {
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
}
.slide-card__des-top > p:last-child > span {
  font-size: 2rem;
}
.slide-card__des-center {
  text-align: left;
}
.slide-card__des-center > h5 {
  font-size: 2.2rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 896px) {
  .slide-card__des-center > h5 {
    font-size: 1.8rem;
  }
}
.slide-card__des-center > p {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.slick-prev:before {
  background-image: url(../../top/img/prev.svg);
  background-repeat: no-repeat;
  background-size: contain;
  font-family: "" !important;
  font-size: 28px !important;
  opacity: 1 !important;
  color: transparent !important;
}

.slick-prev {
  z-index: 10;
}
@media screen and (max-width: 1025px) {
  .slick-prev {
    left: -13px !important;
  }
}
@media screen and (max-width: 896px) {
  .slick-prev {
    left: 0px !important;
  }
}

.slick-next {
  right: -15px !important;
}
@media screen and (max-width: 1025px) {
  .slick-next {
    right: -10px !important;
  }
}
@media screen and (max-width: 896px) {
  .slick-next {
    right: 10px !important;
  }
}

.slick-next:before {
  background-image: url(../../top/img/next.svg);
  background-repeat: no-repeat;
  background-size: contain;
  font-family: "" !important;
  font-size: 28px !important;
  opacity: 1 !important;
  color: transparent !important;
}

.slick-dots li.slick-active button:before {
  color: #FFEA00 !important;
}

/*-------------------------------------------
/*-------------------------------------------
にいがたの地理的特徴と魅力
  -------------------------------------------*/
.map {
  width: 60%;
  height: 100%;
}
@media screen and (max-width: 1025px) {
  .map {
    width: 100%;
  }
}
.map__wrap {
  text-align: center;
}

/*-------------------------------------------
/*-------------------------------------------
お知らせ
  -------------------------------------------*/
.home-news-info__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 180px;
  margin-bottom: 200px;
}
@media screen and (max-width: 1025px) {
  .home-news-info__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 90px;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 896px) {
  .home-news-info__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 70px;
    margin-bottom: 50px;
  }
}
.home-news-info__blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-top: 1px solid #000;
  padding: 30px 0;
}
@media screen and (max-width: 1025px) {
  .home-news-info__blk {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home-news-info__blk:last-child {
  border-bottom: 1px solid #000;
}
.home-news-info__blk-l {
  margin-right: 50px;
}
@media screen and (max-width: 1025px) {
  .home-news-info__blk-l {
    margin-bottom: 20px;
  }
}
.home-news-info__blk-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}
@media screen and (max-width: 1025px) {
  .home-news-info__blk-wrap {
    width: 100%;
    margin-top: 30px;
  }
}
.home-news-info__blk .date {
  font-size: 1.6rem;
}
.home-news-info__blk .info-txt {
  font-size: 1.6rem;
}
.home-news-info__blk-r > a {
  color: #0066CC;
  font-size: 1.5rem;
  display: block;
  margin-top: 10px;
}
.home-news-info__ttl {
  text-align: center;
  font-size: 3rem;
  margin-right: 11%;
}
@media screen and (max-width: 1025px) {
  .home-news-info__ttl {
    margin-right: 0;
  }
}
.home-news-info__ttl > p {
  font-size: 2rem;
}

/*-------------------------------------------
/*-------------------------------------------
下の共通エリア
  -------------------------------------------*/
.bottom-wrap {
  background-color: #FFEA00;
  margin: 200px 0 100px;
}
@media screen and (max-width: 1025px) {
  .bottom-wrap {
    margin: 70px 0 50px;
    padding: 20px;
  }
}
.bottom-wrap__panf {
  width: 90%;
  margin: 0 auto;
  max-width: 900px;
  padding: 10px 0;
}
.bottom-ul {
  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 screen and (max-width: 1025px) {
  .bottom-ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bottom-l__li {
  margin-right: 50px;
}
@media screen and (max-width: 1025px) {
  .bottom-l__li {
    margin-right: 0;
  }
}
@media screen and (max-width: 1025px) {
  .bottom-l__logo {
    text-align: center;
  }
}
.bottom-l__ttl {
  font-size: 2.2rem;
  text-align: left;
  margin: 50px 0;
}
.bottom-l__btn > a {
  width: 240px;
  display: block;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.5rem;
}
@media screen and (max-width: 1025px) {
  .bottom-l__btn > a {
    margin: 0 auto;
  }
}
.bottom-r__li {
  position: relative;
  bottom: 70px;
}
@media screen and (max-width: 1025px) {
  .bottom-r__li {
    bottom: 0;
    margin-top: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 1025px) {
  .bottom-r__li > img {
    width: 80%;
    margin: 0 auto;
  }
}
.bottom-bg {
  background-image: url(../../top/img/bottom-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 600px;
  position: relative;
}
.bottom-bg__txt {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.bottom-bg__txt > p {
  margin-left: 10px;
  line-height: 1.4;
  letter-spacing: 0.2em;
}
.bottom-bg__txt > p:last-child {
  margin-left: 0;
}
.bottom-link {
  padding: 60px 0;
}
.bottom-link__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1025px) {
  .bottom-link__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bottom-link__li {
  width: 33%;
  margin-right: 3%;
}
@media screen and (max-width: 1025px) {
  .bottom-link__li {
    margin-right: 0;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}
.bottom-link__li:last-child {
  margin-right: 0;
}

/*-------------------------------------------
  フッター
  -------------------------------------------*/
#footer {
  background-color: #000;
  padding: 70px 0 70px 0;
  position: relative;
}

.footer__top {
  position: absolute;
  top: -22%;
  right: 2%;
  display: block;
  color: #000;
}
@media screen and (max-width: 1025px) {
  .footer__top {
    top: -8%;
  }
}
.footer__top > img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-top: 50px;
  position: relative;
  right: 14px;
}
.footer__ttl > p {
  font-size: 1.5rem;
  color: #fff;
}
.footer-navi__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  .footer-navi__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 896px) {
  .footer-navi__l {
    margin-bottom: 30px;
  }
}
.footer__logo {
  margin: 30px 0 70px;
}
@media screen and (max-width: 896px) {
  .footer__logo {
    margin: 30px 0 30px;
  }
}
.footer-menu {
  margin-right: 10%;
}
.footer-menu > li {
  margin-bottom: 20px;
}
.footer-menu > li > a {
  font-size: 1.5rem;
}
.footer-menu-r > li {
  margin-bottom: 20px;
}
.footer-menu-r > li > a {
  font-size: 1.3rem;
}
.footer-menu-flex {
  width: 500px;
}
@media screen and (max-width: 896px) {
  .footer-menu-flex {
    width: 90%;
  }
}
.footer-menu-flex__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 896px) {
  .footer-menu-flex__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#murakami,
#niigata,
#nagaoka,
#yuzawa,
#jyo,
#yahiko,
#sado {
  padding-top: 130px;
  margin-top: -130px;
}