@charset "UTF-8";
/*---------------------------------------------
メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
共通
---------------------------------------------*/
html {
  color: #253541;
  scroll-behavior: smooth;
  display: none;
}

/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

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

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

/*---------------------------------------------
color
---------------------------------------------*/
/*---------------------------------------------
font
---------------------------------------------*/
.jp {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.eg {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.bold {
  font-weight: 800;
}

/*---------------------------------------------
loop_anime
---------------------------------------------*/
.loop_wrap {
  background-color: #715C4A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100vh;
}
.loop_wrap img {
  width: auto;
  height: 100%;
}

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

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.loop_wrap img:first-child {
  -webkit-animation: loop 100s -50s linear infinite;
          animation: loop 100s -50s linear infinite;
}

.loop_wrap img:last-child {
  -webkit-animation: loop2 100s linear infinite;
          animation: loop2 100s linear infinite;
}

/*---------------------------------------------
FV
---------------------------------------------*/
.fv {
  position: sticky;
  top: 0;
  overflow: hidden;
  z-index: -1;
}
.fv .title_wrap .page_title {
  position: absolute;
  width: 300px;
  top: 40vh;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 100;
}
@media screen and (min-width: 769px) {
  .fv .title_wrap .page_title {
    width: 39%;
    top: 30vh;
  }
}
.fv .title_wrap .line {
  position: absolute;
  height: 130px;
  width: 1px;
  top: 54vh;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 100;
}
@media screen and (min-width: 769px) {
  .fv .title_wrap .line {
    display: none;
  }
}
.fv .title_wrap .scroll {
  position: absolute;
  width: 70px;
  top: 75vh;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .fv .title_wrap .scroll {
    display: none;
  }
}

.yellow {
  background: rgba(252, 204, 45, 0.9);
  width: 70%;
  border-radius: 15px;
  margin: 80px auto;
  padding: 50px 26px;
}
@media screen and (min-width: 769px) {
  .yellow {
    margin-top: -200px;
    max-width: 700px;
    padding: 70px;
  }
}
.yellow p {
  text-align: center;
}
.yellow .t_1 {
  font-size: 15px;
}
.yellow .t_2 {
  font-size: 24px;
  margin: 12px auto;
}
@media screen and (min-width: 769px) {
  .yellow .t_2 {
    font-size: 37px;
  }
}
.yellow .t_3 {
  font-size: 16px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .yellow .t_3 {
    font-size: 25px;
  }
}
.yellow .t_wrap {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .yellow .t_wrap {
    text-align: left;
    width: 80%;
    margin: 50px auto;
  }
}
.yellow .t_wrap .t_4 {
  font-size: 14px;
  line-height: 2.5;
  border-bottom: 1px solid rgb(37, 53, 65);
  padding-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .yellow .t_wrap .t_4 {
    line-height: 3;
    padding-bottom: 13px;
  }
}
.yellow .present .t_1 {
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .yellow .present .t_1 {
    font-size: 20px;
  }
}
.yellow .present .present_img {
  border-radius: 10px;
  margin: 20px auto 40px;
  width: 90%;
}
@media screen and (min-width: 769px) {
  .yellow .present .present_img {
    width: 50%;
  }
}
.yellow .present .t_2 {
  font-size: 13px;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .yellow .present .t_2 {
    width: 60%;
    font-size: 14px;
  }
}
.yellow .present .hosoku li {
  font-size: 10px;
  margin-bottom: 5px;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .yellow .present .hosoku li {
    width: 60%;
    margin: auto;
    font-size: 12px;
  }
}

.gray {
  background: rgba(37, 53, 65, 0.9);
  width: 70%;
  border-radius: 15px;
  margin: 80px auto;
  padding: 50px 26px;
}
@media screen and (min-width: 769px) {
  .gray {
    max-width: 700px;
    padding: 70px;
  }
}
.gray .thumb_wrap {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .gray .thumb_wrap {
    width: 460px;
    margin: auto;
  }
}
.gray .thumb_wrap p {
  color: #fff;
  font-size: 22px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .gray .thumb_wrap p {
    font-size: 30px;
  }
}
.gray .thumb_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gray .thumb_wrap ul li {
  width: 50%;
}
@media screen and (min-width: 769px) {
  .gray .thumb_wrap ul li {
    width: 33%;
  }
}
.gray .category_wrap {
  max-width: 560px;
}
@media screen and (min-width: 769px) {
  .gray .category_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;
    margin: 50px auto;
  }
}
.gray .category {
  width: 90%;
  margin: auto;
  padding-top: 30px;
}
@media screen and (min-width: 769px) {
  .gray .category {
    width: 45%;
    margin: initial;
    margin-top: 50px;
  }
}
.gray .category .cate_title {
  height: 54px;
  width: auto;
}
.gray .category a {
  text-decoration: none;
  position: relative;
  display: block;
}
.gray .category .btn_wrap {
  position: absolute;
  bottom: 20px;
  right: -20px;
}
.gray .category .btn_wrap span {
  color: #fff;
}
.gray .category .btn_wrap .text {
  font-size: 9px;
  padding: 10px 47px 10px 27px;
  border: 1px solid #fff;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 769px) {
  .gray .category .btn_wrap .text {
    font-size: 10px;
  }
}
.gray .category .btn_wrap .arrow {
  position: relative;
}
.gray .category .btn_wrap .arrow img {
  position: absolute;
  width: 35px;
  top: -6px;
  right: 0;
}
.gray .category .rank_wrap {
  margin-bottom: 70px;
}
.gray .category .rank_wrap .title {
  width: 70%;
  margin-top: 30px;
}
.gray .category .rank_wrap .ranks {
  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;
}
.gray .category .rank_wrap .ranks .rank {
  width: 30%;
}
.gray .category .rank_wrap .ranks .rank a {
  position: relative;
}
.gray .category .rank_wrap .ranks .rank a .rank_no {
  position: absolute;
  width: 40%;
}

.all_btn {
  position: relative;
  margin-top: 150px;
}
@media screen and (min-width: 769px) {
  .all_btn {
    margin-top: 50px;
  }
}
.all_btn .btn_wrap {
  position: absolute;
  bottom: 20px;
  right: -20px;
}
@media screen and (min-width: 769px) {
  .all_btn .btn_wrap {
    bottom: initial;
    right: initial;
    width: 100%;
    left: 17%;
  }
}
.all_btn .btn_wrap span {
  color: #fff;
}
.all_btn .btn_wrap .text {
  font-size: 12px;
  padding: 20px 80px 20px 27px;
  border: 1px solid #fff;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  display: inline-block;
  width: 56%;
}
@media screen and (min-width: 769px) {
  .all_btn .btn_wrap .text {
    width: initial;
    display: inline;
    padding: 28px 150px 28px 100px;
  }
}
.all_btn .btn_wrap .arrow {
  position: relative;
}
.all_btn .btn_wrap .arrow img {
  position: absolute;
  width: 70px;
  top: -32px;
  right: 0;
}
@media screen and (min-width: 769px) {
  .all_btn .btn_wrap .arrow img {
    top: -25px;
  }
}

.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 180px;
}
@media screen and (min-width: 769px) {
  .links {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin-top: 150px;
  }
}
.links a img {
  height: 14px;
  width: auto;
}
@media screen and (min-width: 769px) {
  .links a img {
    height: 18px;
  }
}

.dummy {
  padding-bottom: 40vh;
}
@media screen and (min-width: 769px) {
  .dummy {
    padding-bottom: 47vh;
  }
}

.typy_logo {
  display: block;
  width: 80%;
  margin: 50px auto 0;
}
@media screen and (min-width: 769px) {
  .typy_logo {
    width: 176px;
  }
}

/*---------------------------------------------
footer
---------------------------------------------*/
.footer {
  background: #0F1111;
  padding-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 55px 0 35px;
  }
}
.footer .logo {
  padding: 35px 0 12px;
  max-width: 750px;
  text-align: center;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px) {
  .footer .logo {
    padding: 0;
    margin-bottom: 24px;
  }
}
.footer .ciao {
  width: 118px;
}
@media screen and (min-width: 769px) {
  .footer .ciao {
    width: 276px;
    width: 200px;
  }
}
.footer .typy {
  width: 170px;
}
@media screen and (min-width: 769px) {
  .footer .typy {
    width: 396px;
    width: 300px;
  }
}
.footer .copy {
  font-size: 10px;
  color: #fff;
  text-align: center;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .footer .copy {
    font-size: 12px;
  }
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
}

[data-aos=fade-right] {
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
}

.flexslider {
  border: none;
  margin: 0;
}

.flex-control-nav li {
  width: 8px;
}

.flex-control-paging li a {
  width: 8px;
  height: 8px;
}/*# sourceMappingURL=style.css.map */