@charset "UTF-8";
/*リセット
--------------------------------------------*/
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;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  scroll-behavior: smooth;
  color: #000;
  background: #F4F4F4;
}

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

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

*,
*:after,
*:before {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*---------------------------------------------
メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
font
---------------------------------------------*/
.ja {
  font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
  font-style: normal;
  font-weight: 300;
}

.en {
  font-family: "Dunbar-Low", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.en_nomal {
  font-style: normal !important;
}

/*---------------------------------------------
共通
---------------------------------------------*/
img {
  width: 100%;
  display: block;
}

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

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

/*---------------------------------------------
アニメーション (delay)
---------------------------------------------*/
.delay_04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay_08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay_12 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.delay_25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/*---------------------------------------------
color
---------------------------------------------*/
.lbu {
  color: #8FB5D9;
}

/*---------------------------------------------
動画
---------------------------------------------*/
.movie {
  width: 80%;
  margin: 100px auto;
}

/*---------------------------------------------
ローディング
---------------------------------------------*/
#loading {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-image: url(../images/sp_loading.jpg);
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置 */
#loading_tilte {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定 */
#loading_tilte img {
  width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 769px) {
  #loading {
    background-image: url(../images/pc_loading.jpg);
  }
}
/*---------------------------------------------
FV
---------------------------------------------*/
.fv {
  position: relative;
  background-image: url(../images/sp_loading.jpg);
  height: 90vh;
}
.fv .fv_title {
  position: absolute;
  width: 75%;
  bottom: 5vh;
  left: 11vw;
  z-index: 10;
}
.fv .leeep {
  position: absolute;
  width: 88%;
  top: 4vh;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  overflow: hidden;
  padding: 40px;
}
.fv .leeep::before {
  padding-top: 100px;
}
.fv .leeep::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  right: 4%;
  background-image: url(../images/7rules.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  -webkit-animation: fadeIn 1s ease 3s 1 normal backwards;
          animation: fadeIn 1s ease 3s 1 normal backwards;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 769px) {
  .fv .leeep::after {
    width: 70px;
    top: initial;
    bottom: 0;
    right: 2%;
  }
}
@media screen and (min-width: 769px) {
  .fv {
    background-image: url(../images/pc_loading.jpg);
  }
  .fv .fv_title {
    width: 325px;
    left: 59vw;
    -webkit-transform: none;
            transform: none;
    top: 35%;
  }
  .fv .fv_rule {
    width: 70px;
    top: initial;
    right: initial;
    z-index: 10;
    bottom: 18.5%;
    left: 45%;
  }
  .fv .leeep {
    height: 78vh;
    width: auto;
    top: initial;
    bottom: 9vh;
    left: 35%;
  }
}
/*---------------------------------------------
top
---------------------------------------------*/
.read {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 80px;
  margin-bottom: 80px;
  margin: 50px auto;
  text-align: center;
}

header {
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#nav .navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 18px;
  font-weight: bold;
  list-style: none;
  margin-top: 80px;
  margin-bottom: 100px;
}
#nav .navi li {
  text-align: center;
  width: 43%;
  margin: 0 auto 20px;
}
#nav .navi li .line {
  display: block;
  border-bottom: 1px dotted;
}
#nav .navi li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  padding: 5px 14px;
  color: #000;
  line-height: 1.5;
  background-color: #fff;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  border: 1px solid;
}
#nav .navi li a:hover {
  text-decoration: none;
  background: #B1B1B1;
  color: #fff;
  border: 1px #b1b1b1;
}

@media screen and (min-width: 769px) {
  .read {
    font-size: 14px;
    line-height: 2;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  #nav .navi {
    max-width: 660px;
    margin: 100px auto 140px;
  }
  #nav .navi li {
    width: 22%;
    margin: 7px;
  }
  #nav .navi li a {
    padding: 5px 20px;
  }
}
/* fixed nav  */
.fixed_header .h_nav .navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 20px;
  font-weight: bold;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid;
}
.fixed_header .h_nav li {
  width: 25%;
  margin: 0;
}
.fixed_header .h_nav a {
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  padding: 13px 28px;
  color: #000;
  background-color: #fff;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  border-right: 1px solid;
  height: 70px;
  text-align: center;
}
.fixed_header .h_nav li a:nth-child(3) {
  padding-top: 25px;
}
.fixed_header .h_nav li:last-child a {
  border-right: none;
}

.fixed_header.scroll {
  position: fixed;
  display: none;
  -webkit-animation-name: anime;
          animation-name: anime;
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  .fixed_header {
    top: 27%;
    left: 20px;
    width: 100px;
  }
  .fixed_header .h_nav .navi {
    display: block;
    border: none;
  }
  .fixed_header .h_nav .navi li {
    width: 80px;
    margin: 15px;
  }
  .fixed_header .h_nav .navi li a {
    border-right: none;
    border: 1px solid;
    padding: 13px 15px;
  }
}
/*---------------------------------------------
sec_1
---------------------------------------------*/
.section {
  margin-top: 100px;
}
.section .slide_1,
.section .slide_2,
.section .slide_3,
.section .other {
  position: absolute;
}

.top_label {
  position: relative;
  background: #fff;
  border-radius: 0 30px 0 0;
  margin-right: 20px;
  padding-bottom: 30px;
}
.top_label .num {
  width: 63px;
  padding-top: 50px;
  margin: auto;
}
.top_label .sub_title {
  width: 50%;
  margin: 20px auto 0;
}
.top_label .dot_line {
  display: block;
  padding-top: 14px;
  border-bottom: 1px dotted;
  width: 70%;
  margin: auto;
}
.top_label .side_text {
  position: absolute;
  top: 50%;
  left: -10px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 16px;
}

.box_1 {
  position: relative;
  height: 86vh;
}
.box_1 .bg,
.box_1 .other,
.box_1 .slide_1,
.box_1 .slide_2 {
  position: absolute;
}
.box_1 .bg {
  z-index: -1;
  width: 80%;
  margin-top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.box_1 .other {
  z-index: 1;
  width: 196px;
  top: 8vh;
  right: 8vw;
}
.box_1 .slide_1 {
  z-index: 2;
  width: 56%;
  top: 15vh;
  left: -1vw;
}
.box_1 .slide_2 {
  z-index: 3;
  width: 53%;
  top: 26vh;
  right: 0;
}

.flaot {
  -webkit-animation: 1s flaot infinite alternate linear;
          animation: 1s flaot infinite alternate linear;
}

@-webkit-keyframes flaot {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  from {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
}

@keyframes flaot {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  from {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
}
#sec_1 .slide_1 {
  z-index: 2;
  width: 56%;
  top: 15vh;
  left: -1vw;
}
#sec_1 .slide_2 {
  z-index: 3;
  width: 53%;
  top: 26vh;
  right: 0;
}
#sec_1 .pd20 {
  padding: 0 20px;
}

@media screen and (min-width: 769px) {
  #sec_1 .box_1 {
    height: 136vh;
  }
}
.credit_wrap {
  margin-top: 60px;
  margin-bottom: 60px;
}

.credit {
  width: 100%;
}

.credit a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 20px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.credit a img {
  width: 17vw;
}
.credit a p {
  font-size: 12px;
  line-height: 1.7;
}
.credit a .brand {
  word-break: break-all;
}
.credit a .buy_btn {
  background: #000;
  color: #fff;
  border-radius: 15px;
  height: 25px;
  line-height: 1.5;
  padding: 0 12px;
  margin-left: 20px;
}
.credit a .soon {
  border-radius: 24px;
  padding: 4px 16px;
  line-height: 1.2;
  height: 37px;
  font-size: 12px;
  text-align: center;
  background: none;
  border: 1px solid;
  color: #000;
  pointer-events: none;
}

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

.credit .credit_text {
  margin-left: 20px;
}
.credit .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.credit a:hover {
  opacity: 0.6;
}

.credit .soon:hover {
  opacity: 1;
}

@media screen and (min-width: 769px) {
  .top_label .sub_title {
    width: 30%;
  }
  .section {
    max-width: 600px;
    margin: 150px auto 0;
  }
  .credit_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 700px;
    margin: 80px auto;
  }
  .credit_wrap .credit {
    width: 48%;
  }
  .credit_wrap .credit a {
    width: 100%;
    margin: 20px auto 10px;
  }
  .credit_wrap .credit a img {
    width: 65px;
  }
  .credit_wrap .credit a .soon {
    height: 41px;
    line-height: 1.1;
  }
  .credit_wrap .credit p {
    font-size: 12px;
  }
  .credit_wrap .credit .buy_btn {
    font-size: 14px;
    height: 21px;
  }
  #sec_1 .pd20 {
    padding: 0 40px;
  }
}
/*---------------------------------------------
sec_2
---------------------------------------------*/
#sec_2 .top_label,
#sec_4 .top_label,
#sec_6 .top_label {
  position: relative;
  background: #fff;
  border-radius: 30px 0 0 0;
  margin-right: 0;
  margin-left: 20px;
  padding-bottom: 30px;
}
#sec_2 .side_text,
#sec_4 .side_text,
#sec_6 .side_text {
  left: initial;
  right: -10px;
}

#sec_2 .side_text {
  left: initial;
  right: -10px;
}
#sec_2 .sub_title {
  width: 60%;
}
#sec_2 .box_1 {
  height: 131vh;
}
#sec_2 .box_1 .other {
  width: 30px;
  top: 7vh;
  right: 5%;
  z-index: 10;
  -webkit-transform: unset;
          transform: unset;
}
#sec_2 .box_1 .slide_1,
#sec_2 .box_1 .slide_2,
#sec_2 .box_1 .slide_3 {
  position: absolute;
}
#sec_2 .box_1 .slide_1 {
  top: 7vh;
  left: 23%;
}
#sec_2 .box_1 .slide_2 {
  width: 70%;
  top: 52vh;
  left: 0;
}
#sec_2 .box_1 .slide_3 {
  width: 50%;
  top: 97vh;
  right: 0;
  z-index: 10;
}

@media screen and (min-width: 769px) {
  #sec_2 .top_label .sub_title {
    width: 66%;
  }
  #sec_2 .box_1 {
    height: 210vh;
  }
  #sec_2 .box_1 .other {
    top: 12vh;
  }
  #sec_2 .box_1 .slide_1 {
    width: 50%;
    top: 12vh;
  }
  #sec_2 .box_1 .slide_2 {
    width: 65%;
    top: 79vh;
  }
  #sec_2 .box_1 .slide_3 {
    top: 149vh;
  }
}
.movie_2 {
  height: 50vh;
  overflow: hidden;
  margin-top: 50px;
}

.swimwear {
  background: #fff;
  border-radius: 10px;
  margin: 8%;
}
.swimwear .credit_wrap {
  padding-bottom: 20px;
  margin-bottom: 60px;
  margin-top: 40px;
}
.swimwear .credit .credit_text {
  margin: 0;
}
.swimwear .credit a {
  width: 84%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px auto;
}
.swimwear img {
  width: 85%;
  margin: 10% auto;
  padding-top: 10%;
}

@media screen and (min-width: 769px) {
  .swimwear {
    max-width: 840px;
    margin: 0 auto 100px;
    padding: 30px;
    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;
  }
  .swimwear img {
    width: 48%;
    margin: 0;
    padding: 0;
  }
  .swimwear .credit_wrap {
    display: block;
    width: initial;
    margin: 0;
    padding: 0;
  }
  .swimwear .credit_wrap .credit {
    width: 100%;
  }
  .swimwear .credit_wrap .credit a {
    width: 100%;
  }
  .swimwear .credit_wrap .credit a .ja p {
    margin-right: 30px;
  }
}
.more_btn {
  position: relative;
  width: 90%;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #d7ecf5;
  padding: 40px 0;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  outline: none;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
  background: linear-gradient(120deg, #a5d6ee 0%, #d7ecf5 100%);
}
.more_btn a {
  text-decoration: none;
}

.more_btn span {
  position: relative;
  z-index: 3;
  color: #fff;
}

.more_btn:hover span {
  color: #fff;
}

/*== 背景が流れる（左から右） */
.bg_move:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #000; /*背景色*/
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.bg_move:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

@media screen and (min-width: 769px) {
  .more_btn {
    width: 40%;
  }
}
/*---------------------------------------------
sec_3
---------------------------------------------*/
#sec_3 .top_label .sub_title {
  width: 60%;
}
#sec_3 .box_1 {
  height: 122vh;
}
#sec_3 .box_1 .other {
  width: 110px;
  top: 67vh;
  left: 8vw;
  -webkit-transform: none;
          transform: none;
}
#sec_3 .box_1 .slide_1 {
  width: 60%;
  top: 10vh;
  margin-left: 20px;
}
#sec_3 .box_1 .slide_2 {
  width: 47%;
  top: 44vh;
  margin-right: 20px;
}
#sec_3 .box_1 .slide_3 {
  width: 50%;
  top: 87vh;
  left: 23%;
}

@media screen and (min-width: 769px) {
  #sec_3 .top_label .sub_title {
    width: 50%;
  }
  #sec_3 .box_1 {
    height: 214vh;
  }
  #sec_3 .box_1 .other {
    width: 30%;
    top: 116vh;
    left: 3vw;
  }
  #sec_3 .box_1 .slide_1 {
    width: 65%;
    margin-left: 26px;
  }
  #sec_3 .box_1 .slide_2 {
    top: 73vh;
  }
  #sec_3 .box_1 .slide_3 {
    width: 60%;
    top: 145vh;
  }
}
/*---------------------------------------------
sec_4
---------------------------------------------*/
#sec_4 .box_1 {
  position: initial;
  height: auto;
}
#sec_4 .box_1 .other {
  position: relative;
  top: 62vh;
  z-index: 10;
  width: 32%;
  left: 10vw;
  -webkit-transform: none;
          transform: none;
}
#sec_4 .box_1 .slide_1,
#sec_4 .box_1 .slide_2,
#sec_4 .box_1 .slide_3 {
  position: initial;
}
#sec_4 .box_1 .slide_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#sec_4 .box_1 .slide_flex img {
  width: 50%;
  margin: 90px auto;
}
#sec_4 .box_1 .slide_3 {
  width: 50%;
  margin: 0 10% 60px auto;
}
#sec_4 .box_1 .slide_4 {
  width: 74%;
  margin: auto;
}

@media screen and (min-width: 769px) {
  #sec_4 .sub_title {
    width: 67%;
  }
  #sec_4 .box_1 .other {
    top: 89vh;
    left: 4vw;
  }
}
/*---------------------------------------------
sec_5
---------------------------------------------*/
#sec_5 .box_1 {
  position: initial;
  height: auto;
}
#sec_5 .box_1 .bg {
  position: absolute;
  z-index: -1;
  width: 72%;
}
#sec_5 .box_1 .other {
  position: relative;
  top: 60vh;
  z-index: 10;
  width: 32%;
  left: 10vw;
  -webkit-transform: none;
          transform: none;
}
#sec_5 .box_1 .slide_1,
#sec_5 .box_1 .slide_2,
#sec_5 .box_1 .slide_3 {
  position: initial;
}
#sec_5 .box_1 .slide_1 {
  width: 56%;
  margin-top: 16%;
  margin-left: auto;
  margin-right: 10%;
  margin-bottom: 8%;
}
#sec_5 .box_1 .slide_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#sec_5 .box_1 .slide_flex img {
  width: 50%;
  margin: 90px auto;
}
#sec_5 .box_1 .slide_3 {
  width: 37%;
  margin-left: auto;
  margin-right: 5%;
  margin-top: -30%;
}
#sec_5 .box_1 .slide_4 {
  width: 60%;
  margin: 60px auto 0;
}

@media screen and (min-width: 769px) {
  #sec_5 .top_label .sub_title {
    width: 30%;
  }
  #sec_5 .box_1 .other {
    top: 89vh;
    left: 4vw;
  }
  #sec_5 .box_1 .bg {
    width: 32%;
  }
  #sec_5 .credit_single .credit {
    width: 70%;
    margin: auto;
  }
  #sec_5 .soon {
    padding: 4px 20px;
    line-height: 1.2;
    height: 26px;
  }
}
/*---------------------------------------------
sec_6
---------------------------------------------*/
#sec_6 .top_label .sub_title {
  width: 67%;
}
#sec_6 .box_1 {
  position: initial;
  height: auto;
}
#sec_6 .box_1 .bg {
  position: absolute;
  z-index: -1;
  width: 72%;
}
#sec_6 .box_1 .yw_text {
  position: relative;
}
#sec_6 .box_1 .yw_text .other,
#sec_6 .box_1 .yw_text .yw {
  position: absolute;
}
#sec_6 .box_1 .yw_text .yw {
  width: 36%;
  top: -14vh;
  left: 4%;
}
#sec_6 .box_1 .yw_text .other {
  width: 27%;
  top: -10vh;
  left: 9%;
}
#sec_6 .box_1 .other {
  position: relative;
  top: 60vh;
  z-index: 10;
  width: 32%;
  left: 10vw;
  -webkit-transform: none;
          transform: none;
}
#sec_6 .box_1 .slide_1,
#sec_6 .box_1 .slide_2,
#sec_6 .box_1 .slide_3 {
  position: initial;
}
#sec_6 .box_1 .slide_1 {
  width: 46%;
  margin-top: 16%;
  margin-left: 6%;
}
#sec_6 .box_1 .slide_2 {
  width: 54%;
  margin-left: auto;
  margin-top: -15%;
}
#sec_6 .box_1 .slide_3 {
  width: 44%;
  margin-left: 20%;
  margin-right: 5%;
  margin-top: 60px;
}
#sec_6 .box_1 .slide_4 {
  width: 60%;
  margin: 60px auto 0;
}

@media screen and (min-width: 769px) {
  #sec_6 .box_1 .other {
    top: 89vh;
    left: 4vw;
  }
  #sec_6 .box_1 .bg {
    width: 32%;
  }
  #sec_6 .box_1 .yw_text .other {
    width: 27%;
    top: -7vh;
    left: 9%;
  }
  #sec_6 .box_1 .slide_3 {
    width: 44%;
    margin-top: 32%;
  }
}
/*---------------------------------------------
sec_7
---------------------------------------------*/
#sec_7 {
  padding-bottom: 100px;
}
#sec_7 .top_label .sub_title {
  width: 55%;
}
#sec_7 .box_1 {
  position: initial;
  height: auto;
}
#sec_7 .box_1 .bg {
  position: absolute;
  z-index: -1;
  width: 72%;
}
#sec_7 .box_1 .other {
  position: relative;
  top: 11vh;
  z-index: 10;
  width: 28%;
  left: 58vw;
  -webkit-transform: none;
          transform: none;
}
#sec_7 .box_1 .slide_1,
#sec_7 .box_1 .slide_2,
#sec_7 .box_1 .slide_3 {
  position: initial;
}
#sec_7 .box_1 .slide_1 {
  width: 48%;
  margin-top: 26%;
  margin-left: auto;
  margin-right: 6%;
  margin-bottom: 0;
}
#sec_7 .box_1 .slide_2 {
  width: 48%;
  margin-top: -22%;
  margin-left: 6%;
}
#sec_7 .box_1 .slide_3 {
  width: 70%;
  margin: 24% auto 0;
}

@media screen and (min-width: 769px) {
  #sec_7 {
    padding-bottom: 150px;
  }
  #sec_7 .top_label .sub_title {
    width: 60%;
  }
  #sec_7 .box_1 .other {
    top: 20vh;
    left: initial;
    right: -62%;
  }
  #sec_7 .box_1 .bg {
    width: 32%;
  }
}
/*---------------------------------------------
staff_credit
---------------------------------------------*/
.staff_credit {
  width: 80%;
  margin: auto;
  text-align: center;
  line-height: 1.5;
  border-top: 1px dotted;
  border-bottom: 1px dotted;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 50px;
  margin-bottom: 150px;
}
.staff_credit .s_title {
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  .staff_credit {
    width: 40%;
    margin-bottom: 200px;
  }
}
/*---------------------------------------------
footer
---------------------------------------------*/
#footer {
  background: #fff;
  color: #000000;
  padding: 80px 0 30px;
}
#footer ul#footer_snsArea {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto 30px;
  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;
}
#footer ul#footer_snsArea li {
  width: 30px;
  margin: auto;
}
#footer ul#footer_snsArea li a .text {
  display: none;
}
#footer div.bnrarea {
  width: 86.6666666667%;
  margin: 0 auto 65px;
}
#footer div.bnrarea a {
  text-decoration: none;
  color: #222;
  text-align: center;
  display: block;
}
#footer a.foot_logo {
  display: block;
  width: 140px;
  margin: 0 auto 10px;
}
#footer p.foot_copy {
  font-size: 10px;
  text-align: center;
}
#footer small {
  font-size: 80%;
}

@media screen and (min-width: 769px) {
  #footer {
    padding: 90px 0 30px;
  }
  #footer div.bnrarea {
    width: 400px;
    margin: 0 auto 65px;
  }
  #footer ul#footer_snsArea {
    max-width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px;
  }
  #footer ul#footer_snsArea li a {
    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;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    color: #333;
  }
  #footer a span.icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */