@charset "UTF-8";
.main {
  width: 100%;
  overflow: hidden;
}

.l-container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP";
  color: #333333;
}

.m-container {
  width: 100%;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .l-container {
    color: #333333;
    font-family: "Noto Sans JP";
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}
.br-sp {
  display: none;
}

.br-tab {
  display: none;
}

.br-pc {
  display: block;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .br-sp {
    display: block;
  }
  .br-tab {
    display: none;
  }
  .br-pc {
    display: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .br-sp {
    display: none;
  }
  .br-tab {
    display: block;
  }
  .br-pc {
    display: none;
  }
}
.header {
  position: fixed; /*fixedを設定して固定*/
  height: 80px; /*高さ指定*/
  width: 100%; /*横幅指定*/
  z-index: 110; /*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  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;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  text-align: center;
  padding: 16px 20px 20px 40px;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}
.header_nav {
  width: 100%;
  max-width: 680px;
}
.header_ul {
  width: 100%;
}
.header_li {
  position: relative;
  max-width: 230px;
  width: 100%;
  margin: 0 8px;
}
.header_li_btnarea01 {
  color: #000;
  width: 100%;
  max-width: 230px;
  top: 0px;
}
.header_li_btnarea02 {
  color: #FFF;
  position: absolute;
  width: 100%;
  max-width: 230px;
  top: 0px;
}
.header_logo {
  max-width: 300px;
  width: 100%;
  margin-top: 8px;
}
.header_logo_img {
  width: 50%;
}
.header_list {
  width: 100%;
  max-width: 300px;
}

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

/*fixedでブロックがなくなるのではじめの要素のトップに余白を持たせる*/
section#area-1 {
  padding-top: 100px;
}

/*==ふわっと出現させるためのCSS*/
/*　上に上がる動き　*/
#header.UpMove {
  position: fixed;
  width: 100%;
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    　transform: translateY(0);
  }
  to {
    opacity: 0;
    　transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    　transform: translateY(0);
  }
  to {
    opacity: 0;
    　transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  position: fixed;
  width: 100%;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    　transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    　transform: translateY(0);
  }
}
/*========= レイアウトのためのCSS ===============*/
h1 {
  font-size: 1.2rem;
}

h2 {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 30px 0;
}

p {
  margin-top: 20px;
}

small {
  background: #333;
  color: #fff;
  display: block;
  text-align: center;
  padding: 20px;
}

nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav ul li a {
  display: block;
  text-decoration: none;
  padding: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  nav ul li a {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .header {
    position: fixed; /*fixedを設定して固定*/
    height: 60px; /*高さ指定*/
    width: 100%; /*横幅指定*/
    z-index: 999; /*最前面へ*/
    /*以下はレイアウトのためのCSS*/
    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;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    text-align: center;
    padding: 20px 20px 20px 24px;
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
  }
  .header_nav {
    width: 100%;
    max-width: 680px;
    display: none;
  }
  .header_ul {
    width: 100%;
  }
  .header_li {
    position: relative;
    max-width: 230px;
    width: 100%;
    margin: 0 8px;
  }
  .header_li_btnarea01 {
    color: #000;
    width: 100%;
    max-width: 230px;
    top: 0px;
  }
  .header_li_btnarea02 {
    color: #FFF;
    position: absolute;
    width: 100%;
    max-width: 230px;
    top: 0px;
  }
  .header_logo {
    max-width: 230px;
    width: 100%;
    text-align: left;
    margin-top: 0px;
  }
  .header_logo_img {
    width: 50%;
  }
  .header_list {
    width: 100%;
    max-width: 300px;
  }
  /*このクラスが付与されると表示する*/
  .active {
    opacity: 1;
    visibility: visible;
  }
  /*fixedでブロックがなくなるのではじめの要素のトップに余白を持たせる*/
  section#area-1 {
    padding-top: 100px;
  }
  /*==ふわっと出現させるためのCSS*/
  /*　上に上がる動き　*/
  #header.UpMove {
    position: fixed;
    width: 100%;
    -webkit-animation: UpAnime 0.5s forwards;
            animation: UpAnime 0.5s forwards;
  }
  @-webkit-keyframes UpAnime {
    from {
      opacity: 1;
      　transform: translateY(0);
    }
    to {
      opacity: 0;
      　transform: translateY(-100px);
    }
  }
  @keyframes UpAnime {
    from {
      opacity: 1;
      　transform: translateY(0);
    }
    to {
      opacity: 0;
      　transform: translateY(-100px);
    }
  }
  /*　下に下がる動き　*/
  #header.DownMove {
    position: fixed;
    width: 100%;
  }
  @-webkit-keyframes DownAnime {
    from {
      opacity: 0;
      -webkit-transform: translateY(-100px);
              transform: translateY(-100px);
    }
    to {
      opacity: 1;
      　transform: translateY(0);
    }
  }
  @keyframes DownAnime {
    from {
      opacity: 0;
      -webkit-transform: translateY(-100px);
              transform: translateY(-100px);
    }
    to {
      opacity: 1;
      　transform: translateY(0);
    }
  }
  /*========= レイアウトのためのCSS ===============*/
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 30px 0;
  }
  p {
    margin-top: 20px;
  }
  small {
    background: #333;
    color: #fff;
    display: block;
    text-align: center;
    padding: 20px;
  }
  nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  nav ul li a {
    display: block;
    text-decoration: none;
    padding: 6px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 480px) and (max-width: 768px) {
  nav ul li a {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .header {
    position: fixed; /*fixedを設定して固定*/
    height: 80px; /*高さ指定*/
    width: 100%; /*横幅指定*/
    z-index: 999; /*最前面へ*/
    /*以下はレイアウトのためのCSS*/
    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;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    text-align: center;
    padding: 20px 20px 20px 40px;
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
  }
  .header_nav {
    width: 100%;
    max-width: 440px;
  }
  .header_ul {
    width: 100%;
  }
  .header_li {
    position: relative;
    max-width: 180px;
    width: 100%;
    margin: 0 8px;
  }
  .header_li_btnarea01 {
    color: #000;
    width: 100%;
    max-width: 230px;
    top: 0px;
  }
  .header_li_btnarea02 {
    color: #FFF;
    position: absolute;
    width: 100%;
    max-width: 230px;
    top: 0px;
  }
  .header_logo {
    max-width: 300px;
    width: 100%;
  }
  .header_logo_img {
    width: 50%;
  }
  .header_list {
    width: 100%;
    max-width: 300px;
  }
  /*このクラスが付与されると表示する*/
  .active {
    opacity: 1;
    visibility: visible;
  }
  /*fixedでブロックがなくなるのではじめの要素のトップに余白を持たせる*/
  section#area-1 {
    padding-top: 100px;
  }
  /*==ふわっと出現させるためのCSS*/
  /*　上に上がる動き　*/
  #header.UpMove {
    position: fixed;
    width: 100%;
    -webkit-animation: UpAnime 0.5s forwards;
            animation: UpAnime 0.5s forwards;
  }
  @-webkit-keyframes UpAnime {
    from {
      opacity: 1;
      　transform: translateY(0);
    }
    to {
      opacity: 0;
      　transform: translateY(-100px);
    }
  }
  @keyframes UpAnime {
    from {
      opacity: 1;
      　transform: translateY(0);
    }
    to {
      opacity: 0;
      　transform: translateY(-100px);
    }
  }
  /*　下に下がる動き　*/
  #header.DownMove {
    position: fixed;
    width: 100%;
  }
  @-webkit-keyframes DownAnime {
    from {
      opacity: 0;
      -webkit-transform: translateY(-100px);
              transform: translateY(-100px);
    }
    to {
      opacity: 1;
      　transform: translateY(0);
    }
  }
  @keyframes DownAnime {
    from {
      opacity: 0;
      -webkit-transform: translateY(-100px);
              transform: translateY(-100px);
    }
    to {
      opacity: 1;
      　transform: translateY(0);
    }
  }
  /*========= レイアウトのためのCSS ===============*/
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 30px 0;
  }
  p {
    margin-top: 20px;
  }
  small {
    background: #333;
    color: #fff;
    display: block;
    text-align: center;
    padding: 20px;
  }
  nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  nav ul li a {
    display: block;
    text-decoration: none;
    padding: 6px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) and (max-width: 768px) {
  nav ul li a {
    font-size: 0.8rem;
  }
}
.spbnr {
  display: none;
}
.spbnr_nav {
  width: 100%;
  max-width: 680px;
}
.spbnr_ul {
  width: 100%;
}
.spbnr_li {
  position: relative;
  max-width: 220px;
  width: 100%;
}
.spbnr_li_btnarea01 {
  color: #000;
  width: 100%;
  max-width: 188px;
  top: 0px;
}
.spbnr_li_btnarea02 {
  color: #FFF;
  position: absolute;
  width: 100%;
  max-width: 220px;
  top: 0px;
}
.spbnr_logo {
  max-width: 300px;
  width: 100%;
}
.spbnr_logo_img {
  width: 50%;
}
.spbnr_list {
  width: 100%;
  max-width: 300px;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .spbnr {
    position: fixed; /*fixedを設定して固定*/
    height: 60px; /*高さ指定*/
    width: 100%; /*横幅指定*/
    z-index: 100; /*最前面へ*/
    /*以下はレイアウトのためのCSS*/
    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;
    text-align: center;
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
    bottom: 0%;
  }
  .spbnr_nav {
    width: 100%;
    max-width: 680px;
  }
  .spbnr_ul {
    width: 100%;
  }
  .spbnr_li {
    position: relative;
    max-width: 220px;
    width: 100%;
  }
  .spbnr_li_btnarea01 {
    color: #000;
    width: 100%;
    max-width: 188px;
    top: 0px;
  }
  .spbnr_li_btnarea02 {
    color: #FFF;
    position: absolute;
    width: 100%;
    max-width: 220px;
    top: 0px;
  }
  .spbnr_logo {
    max-width: 300px;
    width: 100%;
  }
  .spbnr_logo_img {
    width: 50%;
  }
  .spbnr_list {
    width: 100%;
    max-width: 300px;
  }
  /*このクラスが付与されると表示する*/
  .active {
    opacity: 1;
    visibility: visible;
  }
  /*fixedでブロックがなくなるのではじめの要素のトップに余白を持たせる*/
  section#area-1 {
    padding-top: 100px;
  }
  /*==ふわっと出現させるためのCSS*/
  /*　上に上がる動き　*/
  #header.UpMove {
    position: fixed;
    width: 100%;
    -webkit-animation: UpAnime 0.5s forwards;
            animation: UpAnime 0.5s forwards;
  }
  @-webkit-keyframes UpAnime {
    from {
      opacity: 1;
      　transform: translateY(0);
    }
    to {
      opacity: 0;
      　transform: translateY(-100px);
    }
  }
  @keyframes UpAnime {
    from {
      opacity: 1;
      　transform: translateY(0);
    }
    to {
      opacity: 0;
      　transform: translateY(-100px);
    }
  }
  /*　下に下がる動き　*/
  #header.DownMove {
    position: fixed;
    width: 100%;
  }
  @-webkit-keyframes DownAnime {
    from {
      opacity: 0;
      -webkit-transform: translateY(-100px);
              transform: translateY(-100px);
    }
    to {
      opacity: 1;
      　transform: translateY(0);
    }
  }
  @keyframes DownAnime {
    from {
      opacity: 0;
      -webkit-transform: translateY(-100px);
              transform: translateY(-100px);
    }
    to {
      opacity: 1;
      　transform: translateY(0);
    }
  }
  /*========= レイアウトのためのCSS ===============*/
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 30px 0;
  }
  p {
    margin-top: 20px;
  }
  small {
    background: #333;
    color: #fff;
    display: block;
    text-align: center;
    padding: 20px;
  }
  nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  nav ul li a {
    display: block;
    text-decoration: none;
    padding: 6px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 480px) and (max-width: 768px) {
  nav ul li a {
    font-size: 0.8rem;
  }
}
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: relative;
  z-index: 1001;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
.hamburger_inner {
  width: 100%;
  max-width: 500px;
}
.hamburger_inner_img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 76px;
}
.hamburger_inner_wrap {
  border-left: 1px solid;
}
.hamburger_inner_btnarea {
  margin-top: 100px;
}
.hamburger_inner_btnarea_btn {
  margin-bottom: 20px;
}

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

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background-color: rgba(0, 0, 0, 0.6);
  /*動き*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  right: 0%;
  max-width: 500px;
  background: #FFF;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 40px;
  height: 100vh;
}

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: "Noto Sans JP";
  text-align: left;
  margin-left: 32px;
  padding: 20px 0 20px 0;
  font-size: 20px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 1.3%;
  right: 2%;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #000;
  width: 64%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-30deg);
          transform: translateY(6px) rotate(-30deg);
  width: 64%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(30deg);
          transform: translateY(-6px) rotate(30deg);
  width: 64%;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: relative;
    z-index: 1001;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    opacity: 0;
    visibility: hidden;
  }
  .hamburger_inner {
    width: 100%;
    height: 100vh;
  }
  .hamburger_inner_img {
    width: 100%;
    max-width: 230px;
    margin-bottom: 0px;
  }
  .hamburger_inner_wrap {
    border-left: 1px solid;
    margin-top: 54px;
  }
  .hamburger_inner_btnarea {
    margin-top: 48px;
  }
  .hamburger_inner_btnarea_btn {
    margin-bottom: 20px;
  }
  /*このクラスが付与されると表示する*/
  .up {
    opacity: 1;
    visibility: visible;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  #g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0; /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background-color: rgba(0, 0, 0, 0.6);
    /*動き*/
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #g-nav.panelactive {
    opacity: 1;
    z-index: 999;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    right: 0%;
    max-width: 500px;
    background: #FFF;
  }
  /*ナビゲーション*/
  #g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 20px 24px 24px;
  }
  #g-nav.panelactive ul {
    display: block;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #333;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-family: "Noto Sans JP";
    text-align: left;
    margin-left: 24px;
    padding: 12px 0;
    font-size: 18px;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 0.8%;
    right: 2%;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #000;
    width: 64%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-30deg);
            transform: translateY(6px) rotate(-30deg);
    width: 64%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(30deg);
            transform: translateY(-6px) rotate(30deg);
    width: 64%;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .hamburger {
    display: block;
    position: relative;
    z-index: 1001;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    opacity: 0;
    visibility: hidden;
  }
  .hamburger_inner {
    width: 100%;
    height: 100vh;
  }
  .hamburger_inner_img {
    width: 100%;
    max-width: 230px;
    margin-bottom: 0px;
  }
  .hamburger_inner_wrap {
    border-left: 1px solid;
    margin-top: 54px;
  }
  .hamburger_inner_btnarea {
    margin-top: 48px;
  }
  .hamburger_inner_btnarea_btn {
    margin-bottom: 20px;
  }
  /*このクラスが付与されると表示する*/
  .up {
    opacity: 1;
    visibility: visible;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  #g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0; /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background-color: rgba(0, 0, 0, 0.6);
    /*動き*/
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #g-nav.panelactive {
    opacity: 1;
    z-index: 999;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    right: 0%;
    max-width: 500px;
    background: #FFF;
  }
  /*ナビゲーション*/
  #g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 20px 24px 24px;
  }
  #g-nav.panelactive ul {
    display: block;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #333;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-family: "Noto Sans JP";
    text-align: left;
    margin-left: 24px;
    padding: 12px 0;
    font-size: 18px;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 1%;
    right: 2%;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #000;
    width: 64%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-30deg);
            transform: translateY(6px) rotate(-30deg);
    width: 64%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(30deg);
            transform: translateY(-6px) rotate(30deg);
    width: 64%;
  }
}
.single-item .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 300px;
  background: #fff;
}

.single-item .card p {
  font-size: 2rem;
}

.hero {
  position: relative;
  height: 812px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.hero_up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 14px 20px 20px 40px;
  height: 60px;
  background-color: #FFF;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hero_up_logo {
  max-width: 300px;
  width: 100%;
  padding-top: 16px;
}
.hero_up_logo_img {
  width: 50%;
}
.hero_up_btnarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 680px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 50;
}
.hero_up_btnarea_01 {
  max-width: 230px;
  width: 100%;
  margin-right: 16px;
}
.hero_up_btnarea_02 {
  max-width: 230px;
  width: 100%;
}
.hero_logo {
  width: 100%;
  max-width: 300px;
}
.hero_img {
  width: 50%;
  text-align: right;
}
.hero_link {
  position: absolute;
  top: 34%;
  left: 10%;
}
.hero_textarea {
  z-index: 100;
  position: absolute;
  bottom: 4%;
  width: 100%;
  max-width: 510px;
}
.hero_textarea_main01 {
  color: #FFF;
  font-size: 20px;
  font-family: "Noto Sans JP";
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 8px 20px;
}
.hero_textarea_main02 {
  color: #FFF;
  font-size: 20px;
  font-family: "Noto Sans JP";
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 8px 20px;
  margin-top: 20px;
}
.hero_textarea_main03 {
  color: #FFF;
  font-size: 20px;
  font-family: "Noto Sans JP";
  line-height: 30px;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 8px 20px;
  margin-top: 20px;
}
.hero_textarea02 {
  z-index: 100;
  position: absolute;
  bottom: 4%;
  right: 4%;
  width: 100%;
  max-width: 712px;
}
.hero_textarea02_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hero_textarea02_wrap_item {
  margin-right: 32px;
}
.hero_textarea02_wrap_item_ttl {
  color: #868686;
  font-size: 16px;
  font-family: "Noto Sans JP";
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hero_textarea02_wrap_item_ttl_border {
  border-top: solid 1px #BABABA;
  width: 100%;
  max-width: 320px;
  margin-top: 8px;
}
.hero_textarea02_wrap_item_text {
  color: #000000;
  font-size: 28px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #F9F255));
  background: linear-gradient(transparent 80%, #F9F255 0%);
}
.hero_textarea02_wrap_item02_ttl {
  color: #868686;
  font-size: 16px;
  font-family: "Noto Sans JP";
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hero_textarea02_wrap_item02_ttl_border {
  border-top: solid 1px #BABABA;
  width: 100%;
  max-width: 56px;
  margin-top: 8px;
}
.hero_textarea02_wrap_item02_text {
  color: #000000;
  font-size: 28px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #F9F255));
  background: linear-gradient(transparent 70%, #F9F255 0%);
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .hero {
    position: relative;
    height: 610px;
  }
  .hero_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 10px;
    height: 60px;
    background-color: #FFF;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .hero_up_logo {
    max-width: 230px;
    width: 100%;
    padding-top: 10px;
    margin-left: 14px;
  }
  .hero_up_logo_img {
    width: 50%;
  }
  .hero_up_btnarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 120px;
    width: 100%;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-top: 20px;
    z-index: 50;
    position: absolute;
    top: 52%;
    right: 0%;
  }
  .hero_up_btnarea_01 {
    max-width: 230px;
    width: 100%;
    margin-right: 0;
  }
  .hero_up_btnarea_02 {
    max-width: 230px;
    width: 100%;
  }
  .hero_logo {
    width: 100%;
    max-width: 300px;
  }
  .hero_img {
    width: 50%;
    text-align: right;
  }
  .hero_link {
    position: absolute;
    top: 23%;
    left: 9%;
  }
  .hero_textarea {
    z-index: 100;
    position: absolute;
    bottom: 28%;
    width: 100%;
    max-width: 390px;
  }
  .hero_textarea_main01 {
    color: #FFF;
    font-size: 14px;
    font-family: "Noto Sans JP";
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 8px 20px;
  }
  .hero_textarea_main02 {
    color: #FFF;
    font-size: 14px;
    font-family: "Noto Sans JP";
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 8px 20px;
    margin-top: 8px;
  }
  .hero_textarea_main03 {
    color: #FFF;
    font-size: 14px;
    font-family: "Noto Sans JP";
    line-height: 20px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 8px 20px;
    margin-top: 8px;
  }
  .hero_textarea02 {
    z-index: 100;
    position: absolute;
    bottom: 8%;
    left: 0%;
    width: 100%;
    max-width: 375px;
  }
  .hero_textarea02_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero_textarea02_wrap_item {
    margin-right: 24px;
  }
  .hero_textarea02_wrap_item_ttl {
    color: #868686;
    font-size: 12px;
    font-family: "Noto Sans JP";
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hero_textarea02_wrap_item_ttl_border {
    border-top: solid 1px #BABABA;
    width: 100%;
    max-width: 23px;
    margin-top: 8px;
  }
  .hero_textarea02_wrap_item_text {
    color: #000000;
    font-size: 18px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    background: none;
    line-height: 32px;
  }
  .hero_textarea02_wrap_item_text span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #F9F255));
    background: linear-gradient(transparent 80%, #F9F255 0%);
  }
  .hero_textarea02_wrap_item_text_dot {
    display: none;
  }
  .hero_textarea02_wrap_item02_ttl {
    color: #868686;
    font-size: 12px;
    font-family: "Noto Sans JP";
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hero_textarea02_wrap_item02_ttl_border {
    border-top: solid 1px #BABABA;
    width: 100%;
    max-width: 70px;
    margin-top: 8px;
  }
  .hero_textarea02_wrap_item02_text {
    color: #000000;
    font-size: 28px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #F9F255));
    background: linear-gradient(transparent 70%, #F9F255 0%);
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .hero {
    position: relative;
    height: 1040px;
  }
  .hero_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 10px;
    height: 60px;
    background-color: #FFF;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hero_up_logo {
    max-width: 300px;
    width: 100%;
    padding-top: 10px;
    margin-left: 24px;
  }
  .hero_up_logo_img {
    width: 50%;
  }
  .hero_up_btnarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 440px;
    width: 100%;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-top: 20px;
    z-index: 50;
  }
  .hero_up_btnarea_01 {
    max-width: 180px;
    width: 100%;
    margin-right: 16px;
  }
  .hero_up_btnarea_02 {
    max-width: 180px;
    width: 100%;
  }
  .hero_logo {
    width: 100%;
    max-width: 300px;
  }
  .hero_img {
    width: 50%;
    text-align: right;
  }
  .hero_link {
    position: absolute;
    top: 40%;
    left: 9%;
  }
  .hero_textarea {
    z-index: 100;
    position: absolute;
    bottom: 19%;
    width: 100%;
    max-width: 510px;
  }
  .hero_textarea_main01 {
    color: #FFF;
    font-size: 20px;
    font-family: "Noto Sans JP";
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 8px 20px;
  }
  .hero_textarea_main02 {
    color: #FFF;
    font-size: 20px;
    font-family: "Noto Sans JP";
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 8px 20px;
    margin-top: 24px;
  }
  .hero_textarea_main03 {
    color: #FFF;
    font-size: 20px;
    font-family: "Noto Sans JP";
    line-height: 30px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 8px 20px;
    margin-top: 24px;
  }
  .hero_textarea02 {
    z-index: 100;
    position: absolute;
    bottom: 7%;
    right: 4%;
    width: 100%;
    max-width: 712px;
  }
  .hero_textarea02_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .hero_textarea02_wrap_item {
    margin-right: 32px;
  }
  .hero_textarea02_wrap_item_ttl {
    color: #868686;
    font-size: 16px;
    font-family: "Noto Sans JP";
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hero_textarea02_wrap_item_ttl_border {
    border-top: solid 1px #BABABA;
    width: 100%;
    max-width: 320px;
    margin-top: 8px;
  }
  .hero_textarea02_wrap_item_text {
    color: #000000;
    font-size: 28px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #F9F255));
    background: linear-gradient(transparent 80%, #F9F255 0%);
  }
  .hero_textarea02_wrap_item02_ttl {
    color: #868686;
    font-size: 16px;
    font-family: "Noto Sans JP";
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hero_textarea02_wrap_item02_ttl_border {
    border-top: solid 1px #BABABA;
    width: 100%;
    max-width: 56px;
    margin-top: 8px;
  }
  .hero_textarea02_wrap_item02_text {
    color: #000000;
    font-size: 28px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #F9F255));
    background: linear-gradient(transparent 70%, #F9F255 0%);
  }
}
.hero_imgarea {
  max-width: 1100px;
  width: 100%;
  position: absolute;
  right: 0%;
  top: 2%;
}

.slider {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.slider img {
  height: auto;
  width: 100%;
}

/*slick setting*/
.slick-prev:before,
.slick-next:before {
  color: #000;
}

.slick-prev:before, .slick-next:before {
  display: none;
}

.slick-dots {
  position: absolute;
  bottom: 40%;
  display: grid;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  left: -8%;
  max-width: 30px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 6px 10px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 100%;
  color: #EAECED;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .hero_imgarea {
    max-width: 1100px;
    width: 100%;
    position: absolute;
    right: 0%;
    top: 0%;
  }
  .slider {
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
  }
  .slider img {
    height: 320px;
    width: 100%;
    max-width: 480px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  /*slick setting*/
  .slick-prev:before,
  .slick-next:before {
    color: #000;
  }
  .slick-prev:before, .slick-next:before {
    display: none;
  }
  .slick-dots {
    position: absolute;
    bottom: 25%;
    display: grid;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    left: 4%;
    max-width: 30px;
  }
  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 6px 10px;
    padding: 0;
    cursor: pointer;
  }
  .slick-dots li button:before {
    font-family: "slick";
    font-size: 12px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "•";
    text-align: center;
    opacity: 100%;
    color: #EAECED;
    -webkit-font-smoothing: antialiased;
  }
  .slick-next {
    right: 0%;
  }
}
.award {
  background-color: #EAECED;
  padding-bottom: 30px;
}
.award_ttl {
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP";
  text-align: center;
  margin: 0 auto;
  padding: 40px 0 36px;
}
.award_ttl_left {
  width: 100%;
  max-width: 16px;
  margin-right: 20px;
}
.award_ttl_right {
  width: 100%;
  max-width: 16px;
  margin-left: 20px;
}
.award_imgarea {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 40px;
}
.award_imgarea_img {
  height: 100%;
  max-height: 96px;
  margin: 0 12px;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .award {
    background-color: #EAECED;
  }
  .award_ttl {
    font-size: 14px;
    font-weight: 700;
    font-family: "Noto Sans JP";
    text-align: center;
    margin: 0 auto;
    padding: 28px 0 22px;
  }
  .award_ttl_left {
    width: 100%;
    max-width: 16px;
    margin-right: 4px;
  }
  .award_ttl_right {
    width: 100%;
    max-width: 16px;
    margin-left: 4px;
  }
  .award_imgarea {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    padding: 0 0 40px;
    overflow: scroll;
    white-space: nowrap;
  }
  .award_imgarea_img {
    height: 100%;
    max-height: 68px;
    margin: 0 8px;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .award {
    background-color: #EAECED;
  }
  .award_ttl {
    font-size: 20px;
    font-weight: 700;
    font-family: "Noto Sans JP";
    text-align: center;
    margin: 0 auto;
    padding: 24px 0;
  }
  .award_ttl_left {
    width: 100%;
    max-width: 16px;
    margin-right: 4px;
  }
  .award_ttl_right {
    width: 100%;
    max-width: 16px;
    margin-left: 4px;
  }
  .award_imgarea {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 0 40px;
    overflow: scroll;
    white-space: nowrap;
  }
  .award_imgarea_img {
    height: 100%;
    max-height: 120px;
    margin: 0 12px;
  }
}
.noswipe {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.noswipe_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.noswipe_wrap_img {
  height: 100%;
  max-height: 100px;
  margin: 0 12px;
}

.swiper_container {
  max-width: 400px;
  margin: 0 auto;
  display: none;
}

/* スライダーのwrapper */
.infinite-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* スライド */
.infinite-slider .swiper-slide {
  height: 60px !important; /* 高さを指定 */
  width: auto !important;
}

/* スライド内の画像 */
.infinite-slider .swiper-slide img {
  width: auto;
  height: 100%;
}

.swiper-slide_img {
  height: 100%;
  max-height: 120px;
  margin: 0 12px;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .noswipe {
    display: none;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .noswipe_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .noswipe_wrap_img {
    height: 100%;
    max-height: 100px;
    margin: 0 12px;
  }
  .swiper_container {
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
  /* スライダーのwrapper */
  .infinite-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
  }
  /* スライド */
  .infinite-slider .swiper-slide {
    height: 60px !important; /* 高さを指定 */
    width: auto !important;
  }
  /* スライド内の画像 */
  .infinite-slider .swiper-slide img {
    width: auto;
    height: 100%;
  }
  .swiper-slide_img {
    height: 100%;
    max-height: 120px;
    margin: 0 12px;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .noswipe {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
  .noswipe_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .noswipe_wrap_img {
    height: 100%;
    max-height: 56px;
    margin: 0 6px;
  }
  .swiper_container {
    max-width: 400px;
    margin: 0 auto;
    display: none;
  }
  /* スライダーのwrapper */
  .infinite-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
  }
  /* スライド */
  .infinite-slider .swiper-slide {
    height: 60px !important; /* 高さを指定 */
    width: auto !important;
  }
  /* スライド内の画像 */
  .infinite-slider .swiper-slide img {
    width: auto;
    height: 100%;
  }
  .swiper-slide_img {
    height: 100%;
    max-height: 120px;
    margin: 0 12px;
  }
}
.worries {
  background-image: url("../img/worries_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.worries_inner {
  text-align: center;
}
.worries_inner_item {
  width: 100%;
  max-width: 150px;
  margin-top: 140px;
}
.worries_inner_text {
  color: #FFF;
  font-size: 32px;
  font-weight: 500;
  font-family: "Noto Sans JP";
  line-height: 48px;
  margin-top: 50px;
}
.worries_inner_commentarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px 0 0;
  padding-bottom: 138px;
}
.worries_inner_commentarea_item {
  color: #333333;
  font-size: 18px;
  font-family: "Noto Sans JP";
  line-height: 28px;
  width: 100%;
  max-width: 306px;
  background-color: #FFF;
  border-radius: 20px;
  padding: 32px 24px;
  margin: 0 30px;
  position: relative;
}
.worries_inner_commentarea_item_01 {
  position: absolute;
  left: 47%;
  bottom: -14%;
}
.worries_inner_commentarea_item_02 {
  position: absolute;
  right: 46%;
  bottom: -14%;
}
.worries_inner_commentarea_item_span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #EAECED));
  background: linear-gradient(transparent 70%, #EAECED 0%);
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .worries {
    background-image: url("../img/worries_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
  }
  .worries_inner {
    text-align: center;
  }
  .worries_inner_item {
    width: 100%;
    max-width: 100px;
    margin-top: 62px;
  }
  .worries_inner_text {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    font-family: "Noto Sans JP";
    line-height: 30px;
    margin-top: 30px;
  }
  .worries_inner_commentarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 46px 0 0;
    padding-bottom: 52px;
  }
  .worries_inner_commentarea_item {
    color: #333333;
    font-size: 14px;
    font-family: "Noto Sans JP";
    line-height: 22px;
    width: 100%;
    max-width: 306px;
    background-color: #FFF;
    border-radius: 20px;
    padding: 32px 24px;
    margin: 0 auto 24px;
    position: relative;
  }
  .worries_inner_commentarea_item_01 {
    position: absolute;
    left: -7%;
    bottom: 40%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .worries_inner_commentarea_item_02 {
    position: absolute;
    right: -7%;
    bottom: 38%;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .worries_inner_commentarea_item_span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #EAECED));
    background: linear-gradient(transparent 70%, #EAECED 0%);
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .worries {
    background-image: url("../img/worries_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .worries_inner {
    text-align: center;
  }
  .worries_inner_item {
    width: 100%;
    max-width: 118px;
    margin-top: 80px;
  }
  .worries_inner_text {
    color: #FFF;
    font-size: 32px;
    font-weight: 500;
    font-family: "Noto Sans JP";
    line-height: 48px;
    margin-top: 24px;
  }
  .worries_inner_commentarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0 0;
    padding-bottom: 130px;
  }
  .worries_inner_commentarea_item {
    color: #333333;
    font-size: 14px;
    font-family: "Noto Sans JP";
    line-height: 24px;
    width: 100%;
    max-width: 240px;
    background-color: #FFF;
    border-radius: 20px;
    padding: 24px 12px;
    margin: 0 8px;
    position: relative;
  }
  .worries_inner_commentarea_item_01 {
    position: absolute;
    left: 44%;
    bottom: -17%;
  }
  .worries_inner_commentarea_item_02 {
    position: absolute;
    right: 44%;
    bottom: -17%;
  }
  .worries_inner_commentarea_item_span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #EAECED));
    background: linear-gradient(transparent 70%, #EAECED 0%);
  }
}
.about {
  background-color: #EAECED;
  position: relative;
}
.about_border {
  position: absolute;
  top: -5.5%;
  left: 50%;
}
.about_inner {
  text-align: center;
  padding-bottom: 120px;
}
.about_inner_item {
  width: 100%;
  max-width: 150px;
  margin-top: 140px;
}
.about_ttl {
  color: #333333;
  font-size: 32px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  margin-bottom: 56px;
  margin-top: 30px;
}
.about_ttl_span {
  font-size: 40px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FFF));
  background: linear-gradient(transparent 70%, #FFF 0%);
}
.about_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about_wrap_item {
  font-size: 16px;
  font-family: "Noto Sans JP";
  line-height: 30px;
  width: 100%;
  max-width: 372px;
  background-color: #FFF;
  margin: 0 8px;
  -webkit-box-shadow: 8px 8px 12px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 8px 8px 12px -4px rgba(0, 0, 0, 0.2);
}
.about_wrap_item_img {
  width: 100%;
}
.about_wrap_item_text {
  padding-top: 24px;
}
.about_wrap_item_text_span {
  font-size: 20px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #F9F255));
  background: linear-gradient(transparent 70%, #F9F255 0%);
}
.about_wrap_item_text01 {
  padding-top: 12px;
  padding-bottom: 12px;
}
.about_wrap_item_text01_span {
  font-size: 20px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #F9F255));
  background: linear-gradient(transparent 70%, #F9F255 0%);
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .about {
    background-color: #EAECED;
    position: relative;
  }
  .about_border {
    position: absolute;
    top: -2%;
    left: 50%;
    height: 52px;
  }
  .about_inner {
    text-align: center;
    padding-bottom: 60px;
  }
  .about_inner_item {
    width: 100%;
    max-width: 100px;
    margin-top: 76px;
    margin-bottom: 0px;
  }
  .about_ttl {
    color: #333333;
    font-size: 20px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin-bottom: 40px;
    margin-top: 24px;
  }
  .about_ttl_span {
    font-size: 28px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FFF));
    background: linear-gradient(transparent 70%, #FFF 0%);
  }
  .about_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about_wrap_item {
    font-size: 16px;
    font-family: "Noto Sans JP";
    line-height: 30px;
    width: 100%;
    max-width: 372px;
    background-color: #FFF;
    margin: 0 8px 30px;
    -webkit-box-shadow: 8px 8px 12px -4px rgba(0, 0, 0, 0.2);
            box-shadow: 8px 8px 12px -4px rgba(0, 0, 0, 0.2);
  }
  .about_wrap_item_img {
    width: 100%;
  }
  .about_wrap_item_text {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
  }
  .about_wrap_item_text_span {
    font-size: 18px;
    font-weight: 700;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #F9F255));
    background: linear-gradient(transparent 70%, #F9F255 0%);
  }
  .about_wrap_item_text01 {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
  }
  .about_wrap_item_text01_span {
    font-size: 18px;
    font-weight: 700;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #F9F255));
    background: linear-gradient(transparent 70%, #F9F255 0%);
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .about {
    background-color: #EAECED;
    position: relative;
  }
  .about_border {
    position: absolute;
    top: -5.5%;
    left: 50%;
  }
  .about_inner {
    text-align: center;
    padding-bottom: 80px;
  }
  .about_inner_item {
    width: 100%;
    max-width: 118px;
    margin-top: 88px;
  }
  .about_ttl {
    color: #333333;
    font-size: 32px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin-bottom: 48px;
  }
  .about_ttl_span {
    font-size: 40px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FFF));
    background: linear-gradient(transparent 70%, #FFF 0%);
  }
  .about_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about_wrap_item {
    font-size: 14px;
    font-family: "Noto Sans JP";
    line-height: 30px;
    width: 100%;
    max-width: 372px;
    background-color: #FFF;
    margin: 0 8px;
    -webkit-box-shadow: 8px 8px 12px -4px rgba(0, 0, 0, 0.2);
            box-shadow: 8px 8px 12px -4px rgba(0, 0, 0, 0.2);
  }
  .about_wrap_item_img {
    width: 100%;
  }
  .about_wrap_item_text {
    padding: 24px 12px;
  }
  .about_wrap_item_text_span {
    font-size: 18px;
    font-weight: 700;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #F9F255));
    background: linear-gradient(transparent 70%, #F9F255 0%);
  }
  .about_wrap_item_text01 {
    padding: 24px 12px;
  }
  .about_wrap_item_text01_span {
    font-size: 20px;
    font-weight: 700;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #F9F255));
    background: linear-gradient(transparent 70%, #F9F255 0%);
  }
}
.cv {
  text-align: center;
  background-image: url("../img/cv_bg.png");
  padding-bottom: 80px;
  background-size: cover;
}
.cv_ttl {
  color: #FFF;
  font-size: 32px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  padding: 80px 0 36px;
}
.cv_ttl_left {
  width: 100%;
  max-width: 16px;
  margin-right: 12px;
}
.cv_ttl_right {
  width: 100%;
  max-width: 16px;
  margin-left: 12px;
}
.cv_btnarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cv_btnarea_btn {
  width: 100%;
  max-width: 300px;
  margin: 0 16px;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .cv {
    text-align: center;
    background-image: url("../img/cv_bg.png");
    padding-bottom: 20px;
    background-size: cover;
    background-position: center;
  }
  .cv_ttl {
    color: #FFF;
    font-size: 18px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    padding: 40px 0 36px;
    position: relative;
    line-height: 30px;
  }
  .cv_ttl_left {
    width: 100%;
    max-width: 16px;
    margin-right: 12px;
    position: absolute;
    left: 8%;
    bottom: 30%;
  }
  .cv_ttl_right {
    width: 100%;
    max-width: 16px;
    margin-left: 12px;
    position: absolute;
    right: 8%;
    bottom: 30%;
  }
  .cv_btnarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cv_btnarea_btn {
    width: 100%;
    max-width: 234px;
    margin: 0 16px 20px;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .cv {
    text-align: center;
    background-image: url("../img/cv_bg.png");
    padding-bottom: 80px;
  }
  .cv_ttl {
    color: #FFF;
    font-size: 28px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    padding: 80px 0 36px;
  }
  .cv_ttl_left {
    width: 100%;
    max-width: 16px;
    margin-right: 12px;
  }
  .cv_ttl_right {
    width: 100%;
    max-width: 16px;
    margin-left: 12px;
  }
  .cv_btnarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cv_btnarea_btn {
    width: 100%;
    max-width: 300px;
    margin: 0 16px;
  }
}
.case_ttl {
  text-align: center;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  margin-top: 100px;
  margin-bottom: 56px;
}
.case_inner {
  width: 100%;
}
.case_inner_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
}
.case_inner_wrap_item {
  max-width: 520px;
  position: relative;
  margin: 0 30px 80px;
}
.case_inner_wrap_item_img {
  width: 100%;
}
.case_inner_wrap_item_subtext {
  font-family: "Noto Sans JP";
  font-size: 14px;
  margin-top: 88px;
  line-height: 20px;
}
.case_inner_wrap_item_more {
  font-family: "Noto Sans JP";
  font-size: 14px;
  text-align: right;
  padding-top: 16px;
}
.case_inner_wrap_item_more a {
  border-bottom: solid 1px #202020;
}
.case_inner_wrap_item_more02 {
  font-family: "Noto Sans JP";
  font-size: 14px;
  text-align: right;
  padding-top: 34px;
}
.case_inner_wrap_item_more02 a {
  border-bottom: solid 1px #202020;
}
.case_inner_wrap_item_more03 {
  font-family: "Noto Sans JP";
  font-size: 14px;
  text-align: right;
  padding-top: 16px;
}
.case_inner_wrap_item_more03 a {
  border-bottom: solid 1px #202020;
}
.case_inner_wrap_item_more04 {
  font-family: "Noto Sans JP";
  font-size: 14px;
  text-align: right;
  padding-top: 34px;
}
.case_inner_wrap_item_more04 a {
  border-bottom: solid 1px #202020;
}
.case_inner_wrap_item_text01 {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  display: inline-block;
  background-color: #000;
  padding: 4px 20px;
  position: absolute;
  top: 57%;
}
.case_inner_wrap_item_text02 {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  display: inline-block;
  background-color: #000;
  padding: 4px 24px;
  position: absolute;
  bottom: 21%;
}
.case_inner_wrap_item_text03 {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  display: inline-block;
  background-color: #000;
  padding: 4px 20px;
  position: absolute;
  top: 55%;
}
.case_inner_wrap_item_text04 {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  display: inline-block;
  background-color: #000;
  padding: 4px 24px;
  position: absolute;
  bottom: 24%;
}
.case_btnarea {
  margin: 20px auto 100px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .case_ttl {
    text-align: center;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .case_inner {
    width: 100%;
  }
  .case_inner_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 375px;
    margin: 0 auto;
  }
  .case_inner_wrap_item {
    max-width: 343px;
    position: relative;
    margin: 0px auto 48px;
  }
  .case_inner_wrap_item_img {
    width: 100%;
  }
  .case_inner_wrap_item_subtext {
    font-family: "Noto Sans JP";
    font-size: 14px;
    margin-top: 80px;
    line-height: 20px;
  }
  .case_inner_wrap_item_more {
    font-family: "Noto Sans JP";
    font-size: 14px;
    text-align: right;
    padding-top: 16px;
  }
  .case_inner_wrap_item_more02 {
    font-family: "Noto Sans JP";
    font-size: 14px;
    text-align: right;
    padding-top: 16px;
  }
  .case_inner_wrap_item_more03 {
    font-family: "Noto Sans JP";
    font-size: 14px;
    text-align: right;
    padding-top: 16px;
  }
  .case_inner_wrap_item_more04 {
    font-family: "Noto Sans JP";
    font-size: 14px;
    text-align: right;
    padding-top: 16px;
  }
  .case_inner_wrap_item_text01 {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    background-color: #000;
    padding: 4px 20px;
    position: absolute;
    top: 46%;
  }
  .case_inner_wrap_item_text02 {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    background-color: #000;
    padding: 4px 24px;
    position: absolute;
    bottom: 32%;
  }
  .case_inner_wrap_item_text03 {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    background-color: #000;
    padding: 4px 24px;
    position: absolute;
    top: 44%;
  }
  .case_inner_wrap_item_text04 {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    background-color: #000;
    padding: 4px 24px;
    position: absolute;
    bottom: 35%;
  }
  .case_btnarea {
    margin: 0px auto 64px;
    text-align: center;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .case_ttl {
    text-align: center;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .case_inner {
    width: 100%;
  }
  .case_inner_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 740px;
    margin: 0 auto;
  }
  .case_inner_wrap_item {
    max-width: 343px;
    position: relative;
    margin: 0px auto 48px;
  }
  .case_inner_wrap_item_img {
    width: 100%;
  }
  .case_inner_wrap_item_subtext {
    font-family: "Noto Sans JP";
    font-size: 14px;
    margin-top: 80px;
    line-height: 20px;
  }
  .case_inner_wrap_item_more {
    font-family: "Noto Sans JP";
    font-size: 14px;
    text-align: right;
    padding-top: 16px;
  }
  .case_inner_wrap_item_more02 {
    font-family: "Noto Sans JP";
    font-size: 14px;
    text-align: right;
    padding-top: 16px;
  }
  .case_inner_wrap_item_more03 {
    font-family: "Noto Sans JP";
    font-size: 14px;
    text-align: right;
    padding-top: 16px;
  }
  .case_inner_wrap_item_more04 {
    font-family: "Noto Sans JP";
    font-size: 14px;
    text-align: right;
    padding-top: 16px;
  }
  .case_inner_wrap_item_text01 {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    background-color: #000;
    padding: 4px 20px;
    position: absolute;
    top: 46%;
  }
  .case_inner_wrap_item_text02 {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    background-color: #000;
    padding: 4px 24px;
    position: absolute;
    bottom: 32%;
  }
  .case_inner_wrap_item_text03 {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    background-color: #000;
    padding: 4px 24px;
    position: absolute;
    top: 44%;
  }
  .case_inner_wrap_item_text04 {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    background-color: #000;
    padding: 4px 24px;
    position: absolute;
    bottom: 35%;
  }
  .case_btnarea {
    margin: 0px auto 64px;
    text-align: center;
  }
}
/*モーダルを開くボタン*/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 640px;
  width: 100%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 2%;
  right: 2%;
  width: 100%;
  max-width: 40px;
  height: 20px;
  font-size: 40px;
  color: #000;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 60px;
}
.modal-content_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}
.modal-content_ttl_text {
  font-size: 24px;
  font-family: "Noto Sans JP";
  font-weight: 700;
}
.modal-content_ttl_border {
  border-top: solid 1px #BABABA;
  max-width: 360px;
  width: 100%;
  margin: 14px 0 0 24px;
}
.modal-content_item {
  width: 100%;
  max-width: 520px;
}
.modal-content_item_img {
  width: 100%;
}
.modal-content_textarea {
  font-size: 14px;
  line-height: 22px;
  font-family: "Noto Sans JP";
  margin-top: 16px;
}
.modal-content_textarea_span {
  font-size: 12px;
  color: #8E8E8E;
}
.modal-content_btnarea {
  width: 100%;
  max-width: 270px;
  margin: 32px auto;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal02-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*モーダル本体の擬似要素の指定*/
.modal02-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal02-container.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

/*モーダル枠の指定*/
.modal02-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 640px;
  width: 100%;
}

/*モーダルを閉じるボタンの指定*/
.modal02-close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 2%;
  right: 2%;
  width: 100%;
  max-width: 40px;
  height: 20px;
  font-size: 40px;
  color: #000;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal02-content {
  background: #fff;
  text-align: left;
  padding: 60px;
}
.modal02-content_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}
.modal02-content_ttl_text {
  font-size: 24px;
  font-family: "Noto Sans JP";
  font-weight: 700;
}
.modal02-content_ttl_border {
  border-top: solid 1px #BABABA;
  max-width: 360px;
  width: 100%;
  margin: 14px 0 0 24px;
}
.modal02-content_item {
  width: 100%;
  max-width: 520px;
}
.modal02-content_item_img {
  width: 100%;
}
.modal02-content_textarea {
  font-size: 14px;
  line-height: 22px;
  font-family: "Noto Sans JP";
  margin-top: 16px;
}
.modal02-content_textarea_span {
  font-size: 12px;
  color: #8E8E8E;
}
.modal02-content_btnarea {
  width: 100%;
  max-width: 270px;
  margin: 32px auto;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal03-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*モーダル本体の擬似要素の指定*/
.modal03-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal03-container.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

/*モーダル枠の指定*/
.modal03-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 640px;
  width: 100%;
}

/*モーダルを閉じるボタンの指定*/
.modal03-close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 2%;
  right: 2%;
  width: 100%;
  max-width: 40px;
  height: 20px;
  font-size: 40px;
  color: #000;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal03-content {
  background: #fff;
  text-align: left;
  padding: 60px;
}
.modal03-content_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}
.modal03-content_ttl_text {
  font-size: 24px;
  font-family: "Noto Sans JP";
  font-weight: 700;
}
.modal03-content_ttl_border {
  border-top: solid 1px #BABABA;
  max-width: 274px;
  width: 100%;
  margin: 14px 0 0 24px;
}
.modal03-content_item {
  width: 100%;
  max-width: 520px;
}
.modal03-content_item_img {
  width: 100%;
}
.modal03-content_textarea {
  font-size: 14px;
  line-height: 22px;
  font-family: "Noto Sans JP";
  margin-top: 16px;
}
.modal03-content_textarea_span {
  font-size: 12px;
  color: #8E8E8E;
}
.modal03-content_btnarea {
  width: 100%;
  max-width: 270px;
  margin: 32px auto;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal04-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*モーダル本体の擬似要素の指定*/
.modal04-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal04-container.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

/*モーダル枠の指定*/
.modal04-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 640px;
  width: 100%;
}

/*モーダルを閉じるボタンの指定*/
.modal04-close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 2%;
  right: 2%;
  width: 100%;
  max-width: 40px;
  height: 20px;
  font-size: 40px;
  color: #000;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal04-content {
  background: #fff;
  text-align: left;
  padding: 60px;
}
.modal04-content_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}
.modal04-content_ttl_text {
  font-size: 24px;
  font-family: "Noto Sans JP";
  font-weight: 700;
}
.modal04-content_ttl_border {
  border-top: solid 1px #BABABA;
  max-width: 360px;
  width: 100%;
  margin: 14px 0 0 24px;
}
.modal04-content_item {
  width: 100%;
  max-width: 520px;
}
.modal04-content_item_img {
  width: 100%;
}
.modal04-content_textarea {
  font-size: 14px;
  line-height: 22px;
  font-family: "Noto Sans JP";
  margin-top: 16px;
}
.modal04-content_textarea_span {
  font-size: 12px;
  color: #8E8E8E;
}
.modal04-content_btnarea {
  width: 100%;
  max-width: 270px;
  margin: 32px auto;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  .modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px 0;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  /*モーダル本体の擬似要素の指定*/
  .modal-container:before {
    content: "";
    display: contents;
    vertical-align: middle;
    height: 100%;
  }
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  .modal-container.active {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
  }
  /*モーダル枠の指定*/
  .modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 342px;
    width: 100%;
    height: 100%;
  }
  /*モーダルを閉じるボタンの指定*/
  .modal-close {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 2%;
    right: 2%;
    width: 100%;
    max-width: 40px;
    height: 20px;
    font-size: 40px;
    color: #000;
    cursor: pointer;
  }
  /*モーダル内のコンテンツの指定*/
  .modal-content {
    background: #fff;
    text-align: left;
    padding: 40px 24px 24px;
  }
  .modal-content_ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .modal-content_ttl_text {
    font-size: 18px;
    font-family: "Noto Sans JP";
    font-weight: 700;
  }
  .modal-content_ttl_border {
    border-top: solid 1px #BABABA;
    max-width: 166px;
    width: 100%;
    margin: 14px 0 0 24px;
  }
  .modal-content_item {
    width: 100%;
    max-width: 520px;
  }
  .modal-content_item_img {
    width: 100%;
  }
  .modal-content_textarea {
    font-size: 12px;
    line-height: 18px;
    font-family: "Noto Sans JP";
    margin-top: 16px;
  }
  .modal-content_textarea_span {
    font-size: 10px;
    color: #8E8E8E;
  }
  .modal-content_btnarea {
    width: 100%;
    max-width: 224px;
    margin: 24px auto 0;
  }
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  .modal02-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px 0;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  /*モーダル本体の擬似要素の指定*/
  .modal02-container:before {
    content: "";
    display: contents;
    vertical-align: middle;
    height: 100%;
  }
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  .modal02-container.active {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
  }
  /*モーダル枠の指定*/
  .modal02-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 375px;
    width: 100%;
    height: 100%;
    max-height: 560px;
  }
  /*モーダルを閉じるボタンの指定*/
  .modal02-close {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 2%;
    right: 2%;
    width: 100%;
    max-width: 40px;
    height: 20px;
    font-size: 40px;
    color: #000;
    cursor: pointer;
  }
  /*モーダル内のコンテンツの指定*/
  .modal02-content {
    background: #fff;
    text-align: left;
    padding: 62px 24px 24px;
    height: 100%;
  }
  .modal02-content_ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .modal02-content_ttl_text {
    font-size: 18px;
    font-family: "Noto Sans JP";
    font-weight: 700;
  }
  .modal02-content_ttl_border {
    border-top: solid 1px #BABABA;
    max-width: 166px;
    width: 100%;
    margin: 14px 0 0 24px;
  }
  .modal02-content_item {
    width: 100%;
    max-width: 520px;
  }
  .modal02-content_item_img {
    width: 100%;
  }
  .modal02-content_textarea {
    font-size: 12px;
    line-height: 18px;
    font-family: "Noto Sans JP";
    margin-top: 16px;
  }
  .modal02-content_textarea_span {
    font-size: 10px;
    color: #8E8E8E;
  }
  .modal02-content_btnarea {
    width: 100%;
    max-width: 224px;
    margin: 24px auto 0;
  }
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  .modal03-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 80px 20px 0;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  /*モーダル本体の擬似要素の指定*/
  .modal03-container:before {
    content: "";
    display: contents;
    vertical-align: middle;
    height: 100%;
  }
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  .modal03-container.active {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
  }
  /*モーダル枠の指定*/
  .modal03-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 375px;
    width: 100%;
    height: 100%;
    max-height: 510px;
  }
  /*モーダルを閉じるボタンの指定*/
  .modal03-close {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 2%;
    right: 2%;
    width: 100%;
    max-width: 40px;
    height: 20px;
    font-size: 40px;
    color: #000;
    cursor: pointer;
  }
  /*モーダル内のコンテンツの指定*/
  .modal03-content {
    background: #fff;
    text-align: left;
    padding: 62px 24px 24px;
    height: 100%;
  }
  .modal03-content_ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .modal03-content_ttl_text {
    font-size: 18px;
    font-family: "Noto Sans JP";
    font-weight: 700;
  }
  .modal03-content_ttl_border {
    border-top: solid 1px #BABABA;
    max-width: 100px;
    width: 100%;
    margin: 14px 0 0 24px;
  }
  .modal03-content_item {
    width: 100%;
    max-width: 520px;
  }
  .modal03-content_item_img {
    width: 100%;
  }
  .modal03-content_textarea {
    font-size: 12px;
    line-height: 18px;
    font-family: "Noto Sans JP";
    margin-top: 16px;
  }
  .modal03-content_textarea_span {
    font-size: 10px;
    color: #8E8E8E;
  }
  .modal03-content_btnarea {
    width: 100%;
    max-width: 224px;
    margin: 24px auto 0;
  }
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  .modal04-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 80px 20px 0;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  /*モーダル本体の擬似要素の指定*/
  .modal04-container:before {
    content: "";
    display: contents;
    vertical-align: middle;
    height: 100%;
  }
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  .modal04-container.active {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
  }
  /*モーダル枠の指定*/
  .modal04-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 375px;
    width: 100%;
    height: 100%;
    max-height: 510px;
  }
  /*モーダルを閉じるボタンの指定*/
  .modal04-close {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 2%;
    right: 2%;
    width: 100%;
    max-width: 40px;
    height: 20px;
    font-size: 40px;
    color: #000;
    cursor: pointer;
  }
  /*モーダル内のコンテンツの指定*/
  .modal04-content {
    background: #fff;
    text-align: left;
    padding: 62px 24px 24px;
    height: 100%;
  }
  .modal04-content_ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .modal04-content_ttl_text {
    font-size: 18px;
    font-family: "Noto Sans JP";
    font-weight: 700;
  }
  .modal04-content_ttl_border {
    border-top: solid 1px #BABABA;
    max-width: 166px;
    width: 100%;
    margin: 14px 0 0 24px;
  }
  .modal04-content_item {
    width: 100%;
    max-width: 520px;
  }
  .modal04-content_item_img {
    width: 100%;
  }
  .modal04-content_textarea {
    font-size: 12px;
    line-height: 18px;
    font-family: "Noto Sans JP";
    margin-top: 16px;
  }
  .modal04-content_textarea_span {
    font-size: 10px;
    color: #8E8E8E;
  }
  .modal04-content_btnarea {
    width: 100%;
    max-width: 224px;
    margin: 24px auto 0;
  }
}
.space_ttl {
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
}
.space_inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.space_inner_wrap {
  width: 100%;
  max-width: 927px;
  position: relative;
}
.space_inner_wrap_item {
  width: 100%;
  max-width: 927px;
}
.space_inner_wrap_item_img {
  width: 100%;
  max-width: 927px;
}
.space_inner_wrap_item02 {
  position: absolute;
  width: 100%;
  max-width: 54px;
  top: -1%;
  right: -35%;
}
.space_inner_wrap_item02_img {
  width: 100%;
  max-width: 54px;
}
.space_inner_wrap_textarea {
  position: absolute;
  color: #FFF;
  font-family: "Noto Sans JP";
  background-color: #202020;
  width: 100%;
  max-width: 460px;
  padding: 40px;
  bottom: 0;
  right: -38%;
  height: 100%;
  max-height: 320px;
}
.space_inner_wrap_textarea_ttl {
  font-size: 24px;
  font-weight: 500;
  border-bottom: solid 1px #FFF;
  padding-bottom: 14px;
}
.space_inner_wrap_textarea_text {
  font-size: 14px;
  font-family: "Noto Sans JP";
  line-height: 24px;
  width: 100%;
  max-width: 380px;
  margin-top: 24px;
  margin-bottom: 32px;
}
.space_inner_wrap_textarea_more {
  text-align: right;
}
.space_inner_wrap_btnarea {
  position: absolute;
  right: -24%;
  top: 0%;
}
.space_inner_wrap_btnarea_btn {
  border: solid 1px #000;
  width: 64px;
  height: 64px;
  text-align: center;
  font-size: 32px;
  font-family: "Noto Sans JP";
  margin-right: 16px;
  padding: 10px 10px 14px 10px;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .space_ttl {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 44px;
  }
  .space_inner {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    padding-bottom: 282px;
  }
  .space_inner_wrap {
    width: 100%;
    max-width: 927px;
    position: relative;
  }
  .space_inner_wrap_item {
    width: 100%;
    max-width: 927px;
  }
  .space_inner_wrap_item_img {
    width: 100%;
    max-width: 927px;
  }
  .space_inner_wrap_item02 {
    position: absolute;
    width: 100%;
    max-width: 54px;
    top: 111%;
    right: 81%;
  }
  .space_inner_wrap_item02_img {
    width: 100%;
    max-width: 54px;
  }
  .space_inner_wrap_textarea {
    position: absolute;
    color: #FFF;
    font-family: "Noto Sans JP";
    background-color: #202020;
    width: 100%;
    max-width: 290px;
    padding: 24px;
    bottom: -140%;
    right: 0%;
    height: 140%;
    max-height: 320px;
  }
  .space_inner_wrap_textarea_ttl {
    font-size: 20px;
    font-weight: 500;
    border-bottom: solid 1px #FFF;
    padding-bottom: 16px;
  }
  .space_inner_wrap_textarea_text {
    font-size: 12px;
    font-family: "Noto Sans JP";
    line-height: 20px;
    width: 100%;
    max-width: 380px;
    margin-top: 16px;
  }
  .space_inner_wrap_textarea_more {
    text-align: right;
    margin-top: 0;
    font-size: 12px;
  }
  .space_inner_wrap_btnarea {
    position: absolute;
    right: 82%;
    top: 160%;
    width: 100%;
    max-width: 50px;
  }
  .space_inner_wrap_btnarea_btn {
    border: solid 1px #000;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    font-family: "Noto Sans JP";
    margin-right: 0px;
    margin-bottom: 10px;
    padding: 4px 10px 14px 10px;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .space_ttl {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 44px;
  }
  .space_inner {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 300px;
  }
  .space_inner_wrap {
    width: 100%;
    max-width: 927px;
    position: relative;
  }
  .space_inner_wrap_item {
    width: 100%;
    max-width: 927px;
  }
  .space_inner_wrap_item_img {
    width: 100%;
    max-width: 927px;
  }
  .space_inner_wrap_item02 {
    position: absolute;
    width: 100%;
    max-width: 54px;
    top: 111%;
    right: 81%;
  }
  .space_inner_wrap_item02_img {
    width: 100%;
    max-width: 54px;
  }
  .space_inner_wrap_textarea {
    position: absolute;
    color: #FFF;
    font-family: "Noto Sans JP";
    background-color: #202020;
    width: 100%;
    max-width: 490px;
    padding: 24px;
    bottom: -68%;
    right: 0%;
    height: 140%;
    max-height: 300px;
  }
  .space_inner_wrap_textarea_ttl {
    font-size: 24px;
    font-weight: 500;
    border-bottom: solid 1px #FFF;
    padding-bottom: 16px;
  }
  .space_inner_wrap_textarea_text {
    font-size: 16px;
    font-family: "Noto Sans JP";
    line-height: 28px;
    width: 100%;
    max-width: 430px;
    margin-top: 16px;
  }
  .space_inner_wrap_textarea_more {
    text-align: right;
    margin-top: 0;
    font-size: 16px;
  }
  .space_inner_wrap_btnarea {
    position: absolute;
    right: 82%;
    top: 130%;
    width: 100%;
    max-width: 50px;
  }
  .space_inner_wrap_btnarea_btn {
    border: solid 1px #000;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    font-family: "Noto Sans JP";
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
.process {
  background-color: #EAECED;
  padding-bottom: 36px;
}
.process_container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP";
  color: #333333;
}
.process_ttl {
  color: #000;
  font-size: 32px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  padding: 120px 0 0;
  margin-bottom: 96px;
}
.process_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 100%;
  max-width: 1098px;
  margin: 88px auto 120px;
}
.process_inner_wrap {
  width: 100%;
  max-width: 600px;
  height: 314px;
  background-color: #FFF;
  padding: 40px 40px 0 80px;
}
.process_inner_wrap_ttl {
  color: #000;
  font-size: 20px;
  font-family: "Noto Sans JP";
  font-weight: 700;
}
.process_inner_wrap_text {
  color: #000;
  font-size: 14px;
  font-family: "Noto Sans JP";
  line-height: 24px;
  max-width: 380px;
  width: 100%;
  margin-top: 30px;
}
.process_inner_wrap_more {
  color: #202020;
  text-align: right;
  max-width: 380px;
  width: 100%;
  margin-top: 40px;
}
.process_inner_wrap_more a {
  border-bottom: solid 1px #202020;
}
.process_inner_item {
  max-width: 560px;
  position: absolute;
  right: -1.5%;
  bottom: -20%;
}
.process_inner_item_img {
  width: 100%;
}
.process_inner02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  width: 100%;
  max-width: 1098px;
  margin: 88px auto 120px;
}
.process_inner02_wrap {
  width: 100%;
  max-width: 600px;
  height: 314px;
  background-color: #FFF;
  padding: 40px 40px 0 120px;
}
.process_inner02_wrap_ttl {
  color: #000;
  font-size: 20px;
  font-family: "Noto Sans JP";
  font-weight: 700;
}
.process_inner02_wrap_text {
  color: #000;
  font-size: 14px;
  font-family: "Noto Sans JP";
  line-height: 24px;
  max-width: 390px;
  width: 100%;
  margin-top: 30px;
}
.process_inner02_wrap_more {
  color: #202020;
  text-align: right;
  max-width: 390px;
  width: 100%;
  margin-top: 40px;
}
.process_inner02_wrap_more a {
  border-bottom: solid 1px #202020;
}
.process_inner02_item {
  max-width: 560px;
  position: absolute;
  left: -1.5%;
  bottom: -20%;
}
.process_inner02_item_img {
  width: 100%;
}
.process_inner03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 100%;
  max-width: 1098px;
  margin: 88px auto 120px;
}
.process_inner03_wrap {
  width: 100%;
  max-width: 600px;
  height: 290px;
  background-color: #FFF;
  padding: 40px 40px 0 80px;
}
.process_inner03_wrap_ttl {
  color: #000;
  font-size: 20px;
  font-family: "Noto Sans JP";
  font-weight: 700;
}
.process_inner03_wrap_text {
  color: #000;
  font-size: 14px;
  font-family: "Noto Sans JP";
  line-height: 24px;
  max-width: 380px;
  width: 100%;
  margin-top: 30px;
}
.process_inner03_wrap_more {
  color: #8E8E8E;
  text-align: right;
  max-width: 380px;
  width: 100%;
  margin-top: 40px;
}
.process_inner03_item {
  max-width: 560px;
  position: absolute;
  right: -1.5%;
  bottom: -20%;
}
.process_inner03_item_img {
  width: 100%;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .process {
    background-color: #EAECED;
    padding-bottom: 60px;
  }
  .process_container {
    width: 100%;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Noto Sans JP";
    color: #333333;
  }
  .process_ttl {
    color: #000;
    font-size: 24px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    padding: 60px 0 0;
    margin-bottom: 40px;
  }
  .process_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    width: 100%;
    max-width: 375px;
    margin: 0px auto 40px;
  }
  .process_inner_wrap {
    width: 100%;
    max-width: 342px;
    height: 386px;
    background-color: #FFF;
    padding: 190px 16px 0 16px;
  }
  .process_inner_wrap_ttl {
    color: #000;
    font-size: 16px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin-top: 16px;
  }
  .process_inner_wrap_text {
    color: #000;
    font-size: 12px;
    font-family: "Noto Sans JP";
    line-height: 18px;
    max-width: 300px;
    width: 100%;
    margin-top: 16px;
  }
  .process_inner_wrap_more {
    color: #202020;
    text-align: right;
    max-width: 380px;
    width: 100%;
    margin-top: 20px;
    font-size: 12px;
  }
  .process_inner_item {
    max-width: 360px;
    position: absolute;
    right: 2%;
    bottom: 50%;
  }
  .process_inner_item_img {
    width: 100%;
  }
  .process_inner02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 375px;
    margin: 0px auto 40px;
  }
  .process_inner02_wrap {
    width: 100%;
    max-width: 342px;
    height: 386px;
    background-color: #FFF;
    padding: 190px 16px 0 16px;
  }
  .process_inner02_wrap_ttl {
    color: #000;
    font-size: 16px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin-top: 16px;
    line-height: 24px;
  }
  .process_inner02_wrap_text {
    color: #000;
    font-size: 12px;
    font-family: "Noto Sans JP";
    line-height: 18px;
    max-width: 300px;
    width: 100%;
    margin-top: 16px;
  }
  .process_inner02_wrap_more {
    color: #202020;
    text-align: right;
    max-width: 380px;
    width: 100%;
    margin-top: 20px;
    font-size: 12px;
  }
  .process_inner02_item {
    max-width: 360px;
    position: absolute;
    left: 2%;
    bottom: 50%;
  }
  .process_inner02_item_img {
    width: 100%;
  }
  .process_inner03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 375px;
    margin: 0px auto 0px;
  }
  .process_inner03_wrap {
    width: 100%;
    max-width: 342px;
    height: 386px;
    background-color: #FFF;
    padding: 190px 16px 0 16px;
  }
  .process_inner03_wrap_ttl {
    color: #000;
    font-size: 16px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin-top: 16px;
    line-height: 24px;
  }
  .process_inner03_wrap_text {
    color: #000;
    font-size: 12px;
    font-family: "Noto Sans JP";
    line-height: 18px;
    max-width: 380px;
    width: 100%;
    margin-top: 16px;
  }
  .process_inner03_wrap_more {
    color: #8E8E8E;
    text-align: right;
    max-width: 380px;
    width: 100%;
    margin-top: 40px;
    font-size: 12pz;
  }
  .process_inner03_item {
    max-width: 360px;
    position: absolute;
    right: 2%;
    bottom: 50%;
  }
  .process_inner03_item_img {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .process {
    background-color: #EAECED;
    padding-bottom: 60px;
  }
  .process_container {
    width: 100%;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Noto Sans JP";
    color: #333333;
  }
  .process_ttl {
    color: #000;
    font-size: 24px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    padding: 60px 0 0;
    margin-bottom: 40px;
  }
  .process_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    width: 100%;
    max-width: 546px;
    margin: 0px auto 40px;
  }
  .process_inner_wrap {
    width: 100%;
    max-width: 520px;
    height: 545px;
    background-color: #FFF;
    padding: 292px 16px 0 16px;
  }
  .process_inner_wrap_ttl {
    color: #000;
    font-size: 20px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin-top: 16px;
  }
  .process_inner_wrap_text {
    color: #000;
    font-size: 16px;
    font-family: "Noto Sans JP";
    line-height: 28px;
    max-width: 520px;
    width: 100%;
    margin-top: 16px;
  }
  .process_inner_wrap_more {
    color: #8E8E8E;
    text-align: right;
    max-width: 520px;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
  }
  .process_inner_item {
    max-width: 546px;
    position: absolute;
    right: 0%;
    bottom: 46%;
  }
  .process_inner_item_img {
    width: 100%;
  }
  .process_inner02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 546px;
    margin: 0px auto 40px;
  }
  .process_inner02_wrap {
    width: 100%;
    max-width: 520px;
    height: 545px;
    background-color: #FFF;
    padding: 284px 16px 0 16px;
  }
  .process_inner02_wrap_ttl {
    color: #000;
    font-size: 20px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin-top: 16px;
    line-height: 36px;
  }
  .process_inner02_wrap_text {
    color: #000;
    font-size: 16px;
    font-family: "Noto Sans JP";
    line-height: 28px;
    max-width: 520px;
    width: 100%;
    margin-top: 16px;
  }
  .process_inner02_wrap_more {
    color: #8E8E8E;
    text-align: right;
    max-width: 520px;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
  }
  .process_inner02_item {
    max-width: 546px;
    position: absolute;
    left: 0%;
    bottom: 46%;
  }
  .process_inner02_item_img {
    width: 100%;
  }
  .process_inner03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 546px;
    margin: 0px auto 0px;
  }
  .process_inner03_wrap {
    width: 100%;
    max-width: 520px;
    height: 545px;
    background-color: #FFF;
    padding: 284px 16px 0 16px;
  }
  .process_inner03_wrap_ttl {
    color: #000;
    font-size: 20px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin-top: 16px;
    line-height: 36px;
  }
  .process_inner03_wrap_text {
    color: #000;
    font-size: 16px;
    font-family: "Noto Sans JP";
    line-height: 28px;
    max-width: 520px;
    width: 100%;
    margin-top: 16px;
  }
  .process_inner03_wrap_more {
    color: #8E8E8E;
    text-align: right;
    max-width: 520px;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
  }
  .process_inner03_item {
    max-width: 546px;
    position: absolute;
    right: 0%;
    bottom: 46%;
  }
  .process_inner03_item_img {
    width: 100%;
  }
}
.hint {
  text-align: center;
  background-image: url("../img/hint_bg.png");
  padding-bottom: 80px;
  background-size: cover;
}
.hint_ttl {
  color: #FFF;
  font-size: 32px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  padding: 80px 0 36px;
}
.hint_ttl_left {
  width: 100%;
  max-width: 16px;
  margin-right: 4px;
}
.hint_ttl_right {
  width: 100%;
  max-width: 16px;
  margin-left: 4px;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .hint {
    text-align: center;
    background-image: url("../img/hint_bg.png");
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
  }
  .hint_ttl {
    color: #FFF;
    font-size: 18px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    padding: 40px 0 36px;
    line-height: 30px;
    position: relative;
  }
  .hint_ttl_left {
    width: 100%;
    max-width: 16px;
    margin-right: 4px;
    position: absolute;
    left: 14%;
    bottom: 30%;
  }
  .hint_ttl_right {
    width: 100%;
    max-width: 16px;
    margin-left: 4px;
    position: absolute;
    right: 14%;
    bottom: 30%;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .hint {
    text-align: center;
    background-image: url("../img/hint_bg.png");
    padding-bottom: 80px;
  }
  .hint_ttl {
    color: #FFF;
    font-size: 28px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    padding: 80px 0 36px;
  }
  .hint_ttl_left {
    width: 100%;
    max-width: 16px;
    margin-right: 4px;
  }
  .hint_ttl_right {
    width: 100%;
    max-width: 16px;
    margin-left: 4px;
  }
}
.accordion {
  margin: 32px auto 0;
  max-width: 978px;
  width: 100%;
}

.toggle {
  display: none;
}

.option {
  position: relative;
  border-bottom: solid 1px #ccc;
}

.title,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.title {
  padding: 36px 16px 24px;
  display: block;
  color: #202020;
  font-weight: 500;
}

.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  width: 2px;
  height: 16px;
  background-color: #202020;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.title::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.content {
  max-height: 0;
  overflow: hidden;
}

.content p {
  margin: 0;
  padding: 0.5em 1em 1em;
  font-size: 0.9em;
  line-height: 1.5;
}

.toggle:checked + .title + .content {
  max-height: 500px;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.toggle:checked + .title::before {
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .accordion {
    margin: 0 auto;
    max-width: 320px;
    width: 100%;
  }
  .toggle {
    display: none;
  }
  .option {
    position: relative;
    border-bottom: solid 1px #ccc;
  }
  .title,
  .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .title {
    padding: 36px 16px 24px 0px;
    display: block;
    color: #202020;
    font-weight: 500;
  }
  .title::after,
  .title::before {
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    width: 2px;
    height: 16px;
    background-color: #202020;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .title::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .content {
    max-height: 0;
    overflow: hidden;
  }
  .content p {
    margin: 0;
    padding: 0.5em 1em 1em;
    font-size: 0.9em;
    line-height: 1.5;
  }
  .toggle:checked + .title + .content {
    max-height: 500px;
    -webkit-transition: all 1.5s;
    transition: all 1.5s;
  }
  .toggle:checked + .title::before {
    -webkit-transform: rotate(90deg) !important;
            transform: rotate(90deg) !important;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .accordion {
    margin: 0 auto;
    max-width: 700px;
    width: 100%;
  }
  .toggle {
    display: none;
  }
  .option {
    position: relative;
    border-bottom: solid 1px #ccc;
  }
  .title,
  .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .title {
    padding: 36px 16px 24px 0px;
    display: block;
    color: #202020;
    font-weight: 500;
  }
  .title::after,
  .title::before {
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    width: 2px;
    height: 16px;
    background-color: #202020;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .title::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .content {
    max-height: 0;
    overflow: hidden;
  }
  .content p {
    margin: 0;
    padding: 0.5em 1em 1em;
    font-size: 0.9em;
    line-height: 1.5;
  }
  .toggle:checked + .title + .content {
    max-height: 500px;
    -webkit-transition: all 1.5s;
    transition: all 1.5s;
  }
  .toggle:checked + .title::before {
    -webkit-transform: rotate(90deg) !important;
            transform: rotate(90deg) !important;
  }
}
.qa {
  color: #333333;
  font-family: "Noto Sans JP";
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 212px;
  background-color: #FFF;
}
.qa_ttl {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  margin: 100px 0 44px;
}
.qa_questionarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.qa_textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 16px 36px 16px;
}
.qa_textarea_text {
  color: #202020;
  font-size: 18px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  line-height: 28px;
  max-width: 780px;
  width: 100%;
}
.qa_textarea_text_rink {
  color: #2969E3;
}
.qa_textarea_subtext {
  olor: #202020;
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-weight: 100;
}
.qa_textarea_a {
  color: #202020;
  font-size: 24px;
  font-weight: 700;
  margin-right: 30px;
}
.qa_span {
  color: #8E8E8E;
  font-size: 24px;
  font-weight: 700;
  margin-right: 30px;
}
.qa_span_a {
  color: #202020;
  font-size: 24px;
  font-weight: 700;
  margin-right: 12px;
}
.qa_span_b {
  font-size: 18px;
}

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_qa {
  overflow-x: hidden;
  margin: 0 auto;
  color: #202020;
}

.cp_qa .cp_actab {
  padding: 20px 0;
  border-bottom: solid 1px #cccccc;
  position: relative;
}

.cp_qa label {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0px 10px 0 52px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cp_qa .cp_actab-content {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  height: 0;
  margin: 0 40px;
  padding: 0 14px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  opacity: 0;
}

.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
  height: auto;
  padding: 24px 14px 14px 14px;
  opacity: 1;
}

.cp_qa .cp_plus {
  font-size: 24px;
  line-height: 100%;
  position: absolute;
  z-index: 5;
  margin: 3px 0 0 10px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  right: 4%;
}

.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .qa {
    color: #333333;
    font-family: "Noto Sans JP";
    width: 100%;
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 56px;
    background-color: #FFF;
  }
  .qa_ttl {
    text-align: center;
    color: #000;
    font-size: 24px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin: 60px 0 14px;
  }
  .qa_questionarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .qa_textarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 16px 36px 0;
  }
  .qa_textarea_text {
    color: #202020;
    font-size: 14px;
    font-family: "Noto Sans JP";
    font-weight: 500;
    line-height: 28px;
    width: 100%;
    max-width: 256px;
  }
  .qa_textarea_text_rink {
    color: #2969E3;
  }
  .qa_textarea_subtext {
    olor: #202020;
    font-size: 14px;
    font-family: "Noto Sans JP";
    font-weight: 100;
  }
  .qa_textarea_a {
    color: #202020;
    font-size: 18px;
    font-weight: 700;
    margin-right: 18px;
  }
  .qa_span {
    color: #8E8E8E;
    font-size: 18px;
    font-weight: 700;
    margin-right: 18px;
  }
  .qa_span_a {
    color: #202020;
    font-size: 18px;
    font-weight: 700;
    margin-right: 12px;
  }
  .qa_span_b {
    font-size: 14px;
    width: 100%;
    max-width: 256px;
  }
  .cp_qa *, .cp_qa *:after, .cp_qa *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .cp_qa {
    overflow-x: hidden;
    margin: 0 auto;
    color: #202020;
  }
  .cp_qa .cp_actab {
    padding: 20px 0;
    border-bottom: solid 1px #cccccc;
    position: relative;
  }
  .cp_qa label {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0px 10px 0 0px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cp_qa .cp_actab-content {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0;
    padding: 0 14px;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    opacity: 0;
  }
  .cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
    height: auto;
    padding: 24px 14px 14px 0px;
    opacity: 1;
  }
  .cp_qa .cp_plus {
    font-size: 24px;
    line-height: 100%;
    position: absolute;
    z-index: 5;
    margin: 3px 0 0 10px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    right: 4%;
  }
  .cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cp_qa .cp_actab input[type=checkbox] {
    display: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .qa {
    color: #333333;
    font-family: "Noto Sans JP";
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
    background-color: #FFF;
  }
  .qa_ttl {
    text-align: center;
    color: #000;
    font-size: 32px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin: 100px 0 44px;
  }
  .qa_questionarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .qa_textarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0px 16px 36px 0px;
  }
  .qa_textarea_text {
    color: #202020;
    font-size: 18px;
    font-family: "Noto Sans JP";
    font-weight: 500;
    line-height: 28px;
    max-width: 780px;
    width: 100%;
  }
  .qa_textarea_text_rink {
    color: #2969E3;
  }
  .qa_textarea_subtext {
    olor: #202020;
    font-size: 14px;
    font-family: "Noto Sans JP";
    font-weight: 100;
  }
  .qa_textarea_a {
    color: #202020;
    font-size: 24px;
    font-weight: 700;
    margin-right: 30px;
  }
  .qa_span {
    color: #8E8E8E;
    font-size: 24px;
    font-weight: 700;
    margin-right: 30px;
  }
  .qa_span_a {
    color: #202020;
    font-size: 24px;
    font-weight: 700;
    margin-right: 12px;
  }
  .qa_span_b {
    font-size: 18px;
  }
  .cp_qa *, .cp_qa *:after, .cp_qa *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .cp_qa {
    overflow-x: hidden;
    margin: 0 auto;
    color: #202020;
  }
  .cp_qa .cp_actab {
    padding: 20px 0;
    border-bottom: solid 1px #cccccc;
    position: relative;
  }
  .cp_qa label {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0px 10px 0 52px;
    cursor: pointer;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cp_qa .cp_actab-content {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0 40px;
    padding: 0 14px;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    opacity: 0;
  }
  .cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
    height: auto;
    padding: 24px 14px 14px 14px;
    opacity: 1;
  }
  .cp_qa .cp_plus {
    font-size: 24px;
    line-height: 100%;
    position: absolute;
    z-index: 5;
    margin: 3px 0 0 10px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    right: 4%;
  }
  .cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cp_qa .cp_actab input[type=checkbox] {
    display: none;
  }
}
.experience {
  background-color: #EAECED;
}
.experience_inner {
  color: #333333;
  font-family: "Noto Sans JP";
  width: 100%;
  max-width: 822px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0;
}
.experience_inner_ttl {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 80px;
}
.experience_inner_ttl_span {
  font-size: 40px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FFF));
  background: linear-gradient(transparent 70%, #FFF 0%);
}
.experience_inner_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.experience_inner_wrap_item {
  background-color: #FFF;
  max-width: 376px;
  width: 100%;
  padding: 0 16px 16px 16px;
}
.experience_inner_wrap_item_imgarea {
  width: 100%;
  max-width: 338px;
}
.experience_inner_wrap_item_imgarea_img {
  width: 100%;
}
.experience_inner_wrap_item_ttl {
  color: #202020;
  font-size: 20px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  margin-top: 20px;
}
.experience_inner_wrap_item_ttl_span {
  color: #202020;
  font-size: 14px;
  font-weight: 500;
}
.experience_inner_wrap_item_text {
  font-size: 14px;
  line-height: 28px;
  margin: 16px 0 40px;
}
.experience_inner_wrap_item_text02 {
  font-size: 14px;
  line-height: 28px;
  margin: 16px 0 64px;
}
.experience_inner_wrap_item_btnarea {
  text-align: center;
  margin-bottom: 40px;
}
.experience_inner_wrap_subtext {
  color: #202020;
  font-size: 14px;
  font-family: "Noto Sans JP";
  margin-top: 30px;
  line-height: 22px;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .experience {
    background-color: #EAECED;
  }
  .experience_inner {
    color: #333333;
    font-family: "Noto Sans JP";
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 0 30px;
  }
  .experience_inner_ttl {
    text-align: center;
    color: #000;
    font-size: 20px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 40px;
  }
  .experience_inner_ttl_span {
    font-size: 28px;
    font-weight: 700;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FFF));
    background: linear-gradient(transparent 70%, #FFF 0%);
  }
  .experience_inner_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .experience_inner_wrap_item {
    background-color: #FFF;
    max-width: 343px;
    width: 100%;
    padding: 0 16px 16px 16px;
    margin: 0 auto 30px;
  }
  .experience_inner_wrap_item_imgarea {
    width: 100%;
    max-width: 343px;
  }
  .experience_inner_wrap_item_imgarea_img {
    width: 100%;
  }
  .experience_inner_wrap_item_ttl {
    color: #202020;
    font-size: 18px;
    font-family: "Noto Sans JP";
    font-weight: 500;
    margin-top: 20px;
  }
  .experience_inner_wrap_item_ttl_span {
    color: #202020;
    font-size: 14px;
    font-weight: 500;
  }
  .experience_inner_wrap_item_text {
    font-size: 12px;
    line-height: 24px;
    margin: 16px 0 40px;
  }
  .experience_inner_wrap_item_text02 {
    font-size: 12px;
    line-height: 24px;
    margin: 16px 0 30px;
  }
  .experience_inner_wrap_item_btnarea {
    text-align: center;
    margin-bottom: 30px;
  }
  .experience_inner_wrap_subtext {
    color: #202020;
    font-size: 12px;
    font-family: "Noto Sans JP";
    line-height: 18px;
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .experience {
    background-color: #EAECED;
  }
  .experience_inner {
    color: #333333;
    font-family: "Noto Sans JP";
    width: 100%;
    max-width: 822px;
    margin-left: auto;
    margin-right: auto;
    padding: 64px 0 80px;
  }
  .experience_inner_ttl {
    text-align: center;
    color: #000;
    font-size: 32px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 48px;
  }
  .experience_inner_ttl_span {
    font-size: 40px;
    font-weight: 700;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FFF));
    background: linear-gradient(transparent 70%, #FFF 0%);
  }
  .experience_inner_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .experience_inner_wrap_item {
    background-color: #FFF;
    max-width: 376px;
    width: 100%;
    padding: 0 16px 16px 16px;
  }
  .experience_inner_wrap_item_imgarea {
    width: 100%;
    max-width: 338px;
  }
  .experience_inner_wrap_item_imgarea_img {
    width: 100%;
  }
  .experience_inner_wrap_item_ttl {
    color: #202020;
    font-size: 20px;
    font-family: "Noto Sans JP";
    font-weight: 500;
    margin-top: 20px;
  }
  .experience_inner_wrap_item_ttl_span {
    color: #202020;
    font-size: 14px;
    font-weight: 500;
  }
  .experience_inner_wrap_item_text {
    font-size: 14px;
    line-height: 28px;
    margin: 16px 0 40px;
  }
  .experience_inner_wrap_item_text02 {
    font-size: 14px;
    line-height: 28px;
    margin: 16px 0 64px;
  }
  .experience_inner_wrap_item_btnarea {
    text-align: center;
    margin-bottom: 40px;
  }
  .experience_inner_wrap_subtext {
    color: #202020;
    font-size: 14px;
    font-family: "Noto Sans JP";
    margin: 30px auto 0;
    line-height: 22px;
    width: 100%;
    max-width: 772px;
  }
}
.catalog {
  padding: 140px 0 80px;
}
.catalog_inner {
  background-color: #EAECED;
  width: 100%;
  max-width: 1168px;
  margin: 0 auto;
  padding: 64px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.catalog_inner_item {
  width: 100%;
  max-width: 565px;
  position: absolute;
  bottom: -30%;
  left: 4%;
}
.catalog_inner_item_img {
  width: 100%;
}
.catalog_inner_wrap {
  width: 100%;
  max-width: 520px;
  text-align: center;
  margin-right: 24px;
  position: relative;
}
.catalog_inner_wrap_ttl {
  color: #202020;
  font-size: 28px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  margin-bottom: 100px;
  letter-spacing: 4px;
}
.catalog_inner_wrap_btn {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: absolute;
  top: 59%;
  right: 24%;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .catalog {
    padding: 50px 0;
  }
  .catalog_inner {
    background-color: #EAECED;
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 483px;
  }
  .catalog_inner_item {
    width: 100%;
    max-width: 565px;
    position: absolute;
    bottom: 18%;
    left: 0%;
  }
  .catalog_inner_item_img {
    width: 100%;
  }
  .catalog_inner_wrap {
    width: 100%;
    max-width: 520px;
    text-align: center;
    margin: 0 auto;
    position: relative;
  }
  .catalog_inner_wrap_ttl {
    color: #202020;
    font-size: 24px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 4px;
    line-height: 36px;
  }
  .catalog_inner_wrap_btn {
    width: 100%;
    max-width: 234px;
    margin: 0 auto;
    position: absolute;
    top: 88%;
    right: 15%;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .catalog {
    padding: 50px 0;
  }
  .catalog_inner {
    background-color: #EAECED;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 674px;
  }
  .catalog_inner_item {
    width: 100%;
    max-width: 600px;
    position: absolute;
    bottom: 18%;
    left: 0%;
  }
  .catalog_inner_item_img {
    width: 100%;
  }
  .catalog_inner_wrap {
    width: 100%;
    max-width: 520px;
    text-align: center;
    margin: 0 auto;
    position: relative;
  }
  .catalog_inner_wrap_ttl {
    color: #202020;
    font-size: 24px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 4px;
    line-height: 36px;
  }
  .catalog_inner_wrap_btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: absolute;
    top: 86%;
    right: 20%;
  }
}
.last {
  background-image: url("../img/last_bg.png");
  background-size: cover;
}
.last_inner {
  width: 100%;
  max-width: 1168px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 0 120px;
  font-family: "Noto Sans JP";
}
.last_inner_ttl {
  color: #FFF;
  font-size: 56px;
  opacity: 80%;
  margin: 0 auto 60px;
}
.last_inner_text {
  color: #FFF;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 4px;
  text-align: left;
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .last {
    background-image: url("../img/last_bg.png");
    background-size: cover;
    background-position: center;
  }
  .last_inner {
    width: 100%;
    max-width: 1168px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0 60px;
    font-family: "Noto Sans JP";
    letter-spacing: 10px;
  }
  .last_inner_ttl {
    color: #FFF;
    font-size: 32px;
    opacity: 80%;
    margin: 0 auto 40px;
    line-height: 56px;
  }
  .last_inner_text {
    color: #FFF;
    font-size: 12px;
    line-height: 26px;
    letter-spacing: 2px;
    text-align: left;
    max-width: 316px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .last {
    background-image: url("../img/last_bg.png");
    background-size: cover;
  }
  .last_inner {
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    padding: 120px 0 120px;
    font-family: "Noto Sans JP";
  }
  .last_inner_ttl {
    color: #FFF;
    font-size: 40px;
    opacity: 80%;
    margin: 0 auto 60px;
  }
  .last_inner_text {
    color: #FFF;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 4px;
    text-align: left;
    max-width: 790px;
    width: 100%;
    margin: 0 auto;
  }
}
.showroom {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  background-color: #FFF;
  border: solid 1px #000;
  width: 100%;
  max-width: 300px;
  height: 66px;
  position: relative;
}
.showroom_border {
  width: 100%;
  max-width: 32px;
  position: absolute;
  right: 0%;
  bottom: 45%;
}
.showroom:hover {
  color: #474747;
}

.showroom_black {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  background-color: #202020;
  border: solid 1px #000;
  width: 100%;
  max-width: 300px;
  height: 66px;
  position: relative;
}
.showroom_black_border {
  width: 100%;
  max-width: 32px;
  position: absolute;
  right: 0%;
  bottom: 45%;
}
.showroom_black:hover {
  background-color: #474747;
}

.catalogbtn {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  background-color: #202020;
  border: solid 1px #FFF;
  width: 100%;
  max-width: 300px;
  height: 66px;
  position: relative;
}
.catalogbtn_border {
  width: 100%;
  max-width: 32px;
  position: absolute;
  right: 0%;
  bottom: 45%;
}
.catalogbtn:hover {
  background-color: #474747;
}

.other {
  color: #000;
  font-size: 20px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  text-align: center;
  background-color: #FFF;
  border: solid 1px #000;
  width: 100%;
  max-width: 300px;
  height: 66px;
  position: relative;
}
.other_border {
  width: 100%;
  max-width: 32px;
  position: absolute;
  right: 0%;
  bottom: 45%;
}
.other:hover {
  color: #474747;
}

.register {
  color: #000;
  font-size: 20px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  text-align: center;
  background-color: #FFF;
  border: solid 1px #000;
  width: 100%;
  max-width: 300px;
  height: 66px;
  position: relative;
}
.register_border {
  width: 100%;
  max-width: 32px;
  position: absolute;
  right: 0%;
  bottom: 45%;
}
.register:hover {
  color: #474747;
}

.catalogbtn_header {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background-color: #202020;
  border: solid 1px #FFF;
  width: 100%;
  max-width: 230px;
  height: 48px;
  position: relative;
}
.catalogbtn_header_border {
  width: 100%;
  max-width: 32px;
  position: absolute;
  right: 0%;
  bottom: 45%;
}
.catalogbtn_header:hover {
  background-color: #474747;
}

.register_header {
  color: #000;
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  text-align: center;
  background-color: #FFF;
  border: solid 1px #000;
  width: 100%;
  max-width: 230px;
  height: 48px;
  position: relative;
}
.register_header_border {
  width: 100%;
  max-width: 32px;
  position: absolute;
  right: 0%;
  bottom: 45%;
}
.register_header:hover {
  color: #474747;
}

.showroom_hamburger {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background-color: #FFF;
  border: solid 1px #000;
  width: 100%;
  max-width: 230px;
  height: 48px;
  position: relative;
}
.showroom_hamburger_border {
  width: 100%;
  max-width: 32px;
  position: absolute;
  right: 0%;
  bottom: 45%;
}
.showroom_hamburger:hover {
  color: #474747;
}

.catalogbtn_hamburger {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background-color: #202020;
  border: solid 1px #FFF;
  width: 100%;
  max-width: 230px;
  height: 48px;
  position: relative;
}
.catalogbtn_hamburger_border {
  width: 100%;
  max-width: 32px;
  position: absolute;
  right: 0%;
  bottom: 45%;
}
.catalogbtn_hamburger:hover {
  background-color: #474747;
}

.register_hamburger {
  color: #000;
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  text-align: center;
  background-color: #FFF;
  border: solid 1px #000;
  width: 100%;
  max-width: 230px;
  height: 48px;
  position: relative;
}
.register_hamburger_border {
  width: 100%;
  max-width: 32px;
  position: absolute;
  right: 0%;
  bottom: 45%;
}
.register_hamburger:hover {
  color: #474747;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .showroom {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 234px;
    height: 50px;
    position: relative;
  }
  .showroom_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .showroom_black {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    background-color: #202020;
    border: solid 1px #000;
    width: 100%;
    max-width: 300px;
    height: 66px;
    position: relative;
  }
  .showroom_black_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .catalogbtn {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    background-color: #202020;
    border: solid 1px #FFF;
    width: 100%;
    max-width: 234px;
    height: 50px;
    position: relative;
  }
  .catalogbtn_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .other {
    color: #000;
    font-size: 14px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 234px;
    height: 50px;
    position: relative;
  }
  .other_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .register {
    color: #000;
    font-size: 14px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 234px;
    height: 50px;
    position: relative;
  }
  .register_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .catalogbtn_header {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    background-color: #202020;
    border: none;
    width: 100%;
    max-width: 120px;
    height: 40px;
    position: relative;
  }
  .catalogbtn_header_border {
    width: 100%;
    max-width: 10px;
    position: absolute;
    right: 0%;
    bottom: 49%;
  }
  .catalogbtn_spbnr {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    background-color: #202020;
    border: none;
    width: 100%;
    max-width: 188px;
    height: 60px;
    position: relative;
  }
  .catalogbtn_spbnr_border {
    width: 100%;
    max-width: 10px;
    position: absolute;
    right: 0%;
    bottom: 49%;
  }
  .register_header {
    color: #000;
    font-size: 10px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 120px;
    height: 40px;
    position: relative;
  }
  .register_header_border {
    width: 100%;
    max-width: 10px;
    position: absolute;
    right: 0%;
    bottom: 49%;
  }
  .register_spbnr {
    color: #000;
    font-size: 10px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 188px;
    height: 60px;
    position: relative;
  }
  .register_spbnr_border {
    width: 100%;
    max-width: 10px;
    position: absolute;
    right: 0%;
    bottom: 49%;
  }
  .showroom_hamburger {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 230px;
    height: 48px;
    position: relative;
  }
  .showroom_hamburger_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .catalogbtn_hamburger {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    background-color: #202020;
    border: solid 1px #FFF;
    width: 100%;
    max-width: 230px;
    height: 48px;
    position: relative;
  }
  .catalogbtn_hamburger_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .register_hamburger {
    color: #000;
    font-size: 16px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 230px;
    height: 48px;
    position: relative;
  }
  .register_hamburger_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
}
@media screen and (min-width: 480px) and (max-width: 960px) {
  /* 480pxまでの幅の場合に適応される */
  .showroom {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 300px;
    height: 66px;
    position: relative;
  }
  .showroom_border {
    width: 100%;
    max-width: 16px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .showroom_black {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    background-color: #202020;
    border: solid 1px #000;
    width: 100%;
    max-width: 300px;
    height: 66px;
    position: relative;
  }
  .showroom_black_border {
    width: 100%;
    max-width: 16px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .catalogbtn {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    background-color: #202020;
    border: solid 1px #FFF;
    width: 100%;
    max-width: 300px;
    height: 66px;
    position: relative;
  }
  .catalogbtn_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .other {
    color: #000;
    font-size: 20px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 300px;
    height: 66px;
    position: relative;
  }
  .other_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .register {
    color: #000;
    font-size: 20px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 300px;
    height: 66px;
    position: relative;
  }
  .register_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .catalogbtn_header {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    background-color: #202020;
    border: solid 1px #FFF;
    width: 100%;
    max-width: 230px;
    height: 48px;
    position: relative;
  }
  .catalogbtn_header_border {
    width: 100%;
    max-width: 16px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .register_header {
    color: #000;
    font-size: 16px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 230px;
    height: 48px;
    position: relative;
  }
  .register_header_border {
    width: 100%;
    max-width: 16px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .showroom_hamburger {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 230px;
    height: 48px;
    position: relative;
  }
  .showroom_hamburger_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .catalogbtn_hamburger {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    background-color: #202020;
    border: solid 1px #FFF;
    width: 100%;
    max-width: 230px;
    height: 48px;
    position: relative;
  }
  .catalogbtn_hamburger_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
  .register_hamburger {
    color: #000;
    font-size: 16px;
    font-family: "Noto Sans JP";
    font-weight: 700;
    text-align: center;
    background-color: #FFF;
    border: solid 1px #000;
    width: 100%;
    max-width: 230px;
    height: 48px;
    position: relative;
  }
  .register_hamburger_border {
    width: 100%;
    max-width: 32px;
    position: absolute;
    right: 0%;
    bottom: 45%;
  }
}
.footer_inner {
  text-align: center;
  background-color: #000;
  padding-top: 100px;
  height: 260px;
}
.footer_inner_logo {
  max-width: 280px;
  width: 20%;
}
.footer_inner_img {
  width: 50%;
  margin-bottom: 8px;
}
.footer_inner_text {
  font-size: 12px;
  color: #FFF;
  margin-top: 24px;
}

@media screen and (max-width: 480px) {
  /* 480pxまでの幅の場合に適応される */
  .footer_inner {
    text-align: center;
    background-color: #000;
    padding-top: 64px;
    height: 260px;
  }
  .footer_inner_logo {
    max-width: 280px;
    width: 50%;
  }
  .footer_inner_img {
    width: 25%;
    margin-bottom: 8px;
  }
  .footer_inner_text {
    font-size: 12px;
    color: #FFF;
    margin-top: 24px;
  }
}/*# sourceMappingURL=style.css.map */