@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;
  background-color: #EEE6C2;
  color: #000;
}

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

.sp_none .pc_none {
  display: block;
}
.sp_none .sp_none {
  display: none;
}

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

.eg {
  font-family: "arno-pro-caption", serif;
  font-weight: 400;
  font-style: normal;
}

/*---------------------------------------------
loading
---------------------------------------------*/
.loading {
  position: relative;
  width: auto;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
  background-color: #fff;
}

.loading img {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
}
@media screen and (min-width: 769px) {
  .loading img {
    width: 60%;
    height: auto;
  }
}

.loading img.active {
  opacity: 1;
}

.content_wrap {
  opacity: 0;
  display: none;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

.content_wrap.visible {
  display: block;
}

.content_wrap.fade-in {
  opacity: 1;
}

.logo_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: -3vh;
  margin: 8vh 3vw 6px;
  z-index: -1;
}
.logo_wrap .image1 {
  width: 30vw;
  height: auto;
}
.logo_wrap .image2 {
  width: 24vw;
  height: auto;
}
@media screen and (min-width: 769px) {
  .logo_wrap {
    top: -7.5vh;
    margin: 0;
  }
  .logo_wrap .image1 {
    width: 20vw;
  }
  .logo_wrap .image2 {
    width: 12vw;
  }
}

/*---------------------------------------------
fv
---------------------------------------------*/
.fv {
  position: relative;
  height: 57vh;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  background-image: url(../images/sp_fv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .fv {
    background-image: url(../images/pc_fv.jpg);
    background-size: cover;
    margin: 80px 50px 20px;
    height: 100vh;
    height: 70vh;
  }
}

.fv,
.titles {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.fv.fade-in,
.titles.fade-in {
  opacity: 1;
}

.titles {
  width: 90vw;
  margin: auto;
}
.titles .title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 30px 10px;
}
@media screen and (min-width: 769px) {
  .titles {
    width: 47vw;
    margin-bottom: 20px;
  }
}

/* フェードインクラス */
.fade-in {
  opacity: 1;
}

.loading.hidden {
  display: none;
}

.content {
  width: 100%;
}

.img_box {
  position: relative;
}
@media screen and (min-width: 769px) {
  .img_box {
    height: initial;
  }
}
.img_box .img {
  width: 100%;
}
.img_box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(114, 113, 113, 0.6);
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.img_box .credit {
  position: relative;
  display: none;
}
.img_box .credit ul {
  position: absolute;
  bottom: 10vw;
  left: 3vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .img_box .credit ul {
    left: 2vw;
    bottom: 8vw;
  }
}
.img_box .credit ul li {
  margin-bottom: 6px;
}
@media screen and (min-width: 769px) {
  .img_box .credit ul li {
    margin-bottom: 8px;
  }
}
.img_box .credit a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  text-decoration: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img_box .credit .item,
.img_box .credit .price {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .img_box .credit .item,
  .img_box .credit .price {
    font-size: 18px;
  }
}
.img_box .credit .price {
  margin-left: 6px;
}
.img_box .credit .buy {
  font-size: 11px;
  color: #e86100;
  background-color: #fff;
  padding: 1px 3px 0;
  margin-left: 10px;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .img_box .credit .buy {
    font-size: 16px;
    padding: 3px 6px 0;
  }
}
.img_box .btn {
  position: absolute;
  z-index: 100;
  left: 4vw;
  bottom: 3vw;
  font-size: 12px;
  color: #e86100;
  background-color: #fff;
  border-radius: 10px;
  padding: 2px 10px;
}
@media screen and (min-width: 769px) {
  .img_box .btn {
    font-size: 24px;
    padding: 2px 15px 0;
    border-radius: 50px;
    left: 2vw;
    bottom: 4vh;
  }
}
.img_box .btn_wrap {
  position: absolute;
  bottom: 6vw;
  left: 6vw;
  z-index: 200;
}
.img_box .btn_wrap .close-btn {
  display: block;
  position: relative;
  z-index: 100;
  display: none;
}
.img_box .btn_wrap .close-btn::before, .img_box .btn_wrap .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px; /* 棒の幅（太さ） */
  height: 22px; /* 棒の高さ */
  background: #fff;
  z-index: 100;
}
.img_box .btn_wrap .close-btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.img_box .btn_wrap .close-btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 769px) {
  .img_box .btn_wrap {
    bottom: 3vw;
    left: 3vw;
  }
  .img_box .btn_wrap .close-btn::before, .img_box .btn_wrap .close-btn::after {
    height: 44px;
  }
}

.img_box,
.single_img,
.sun,
.girls {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.fade-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.single_img {
  position: relative;
}
.single_img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(114, 113, 113, 0.6);
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .single_img .overlay {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.single_img .credit {
  position: relative;
  display: none;
}
.single_img .credit ul {
  position: absolute;
  width: 100%;
  bottom: 10vw;
  left: 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .single_img .credit ul {
    bottom: 8vw;
    left: 3vw;
  }
}
.single_img .credit ul > div {
  margin-top: 30px;
  margin-right: 30px;
}
.single_img .credit ul li {
  margin-bottom: 6px;
}
@media screen and (min-width: 769px) {
  .single_img .credit ul li {
    margin-bottom: 8px;
  }
}
.single_img .credit a {
  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;
}
.single_img .credit .gender {
  color: #fff;
  margin-bottom: 8px;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .single_img .credit .gender {
    font-size: 18px;
  }
}
.single_img .credit a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  text-decoration: none;
}
.single_img .credit .item,
.single_img .credit .price {
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .single_img .credit .item,
  .single_img .credit .price {
    font-size: 18px;
  }
}
.single_img .credit .price {
  margin-left: 4px;
}
.single_img .credit .buy {
  font-size: 11px;
  color: #e86100;
  background-color: #fff;
  padding: 1px 3px 0;
  margin-left: 10px;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .single_img .credit .buy {
    font-size: 18px;
  }
}
.single_img .btn {
  position: absolute;
  z-index: 100;
  color: #e86100;
  background-color: #fff;
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 12px;
  left: 4vw;
  bottom: 4vw;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .single_img .btn {
    font-size: 24px;
    padding: 2px 15px 0;
    border-radius: 50px;
    left: 2vw;
    bottom: 4vh;
  }
}
.single_img .btn_wrap {
  position: absolute;
  bottom: 7vw;
  left: 6vw;
  z-index: 200;
}
.single_img .btn_wrap .close-btn {
  display: block;
  position: relative;
  z-index: 100;
  display: none;
}
.single_img .btn_wrap .close-btn::before, .single_img .btn_wrap .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px; /* 棒の幅（太さ） */
  height: 22px; /* 棒の高さ */
  background: #fff;
  z-index: 100;
}
.single_img .btn_wrap .close-btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.single_img .btn_wrap .close-btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 769px) {
  .single_img .btn_wrap {
    bottom: 3vw;
    left: 4vw;
  }
  .single_img .btn_wrap .close-btn::before, .single_img .btn_wrap .close-btn::after {
    height: 44px;
  }
}

.grid {
  display: grid;
  padding: 4vw;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.grid .img_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 50%;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
  }
}
.grid .single_img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.grid .box1 {
  width: 100%;
  grid-area: 3/1/4/2;
}
@media screen and (min-width: 769px) {
  .grid .box1 {
    grid-area: 1/1/2/2;
  }
}
.grid .box2 {
  width: 100%;
  grid-area: 3/2/4/3;
}
@media screen and (min-width: 769px) {
  .grid .box2 {
    grid-area: 1/2/2/3;
  }
}
.grid .box3 {
  width: 100%;
  grid-area: 4/1/5/2;
}
@media screen and (min-width: 769px) {
  .grid .box3 {
    grid-area: 2/1/3/2;
  }
}
.grid .box4 {
  width: 100%;
  grid-area: 4/2/5/3;
}
@media screen and (min-width: 769px) {
  .grid .box4 {
    grid-area: 2/2/3/3;
  }
}
.grid .box5 {
  width: 100%;
  grid-area: 1/1/3/3;
}
@media screen and (min-width: 769px) {
  .grid .box5 {
    grid-area: 1/3/3/5;
  }
}
.grid img {
  -webkit-transition: 1s all;
  transition: 1s all;
}
.grid .btn:hover {
  cursor: pointer;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.grid2 .box1 {
  grid-area: 3/1/4/2;
}
.grid2 .box2 {
  grid-area: 3/2/4/3;
}
.grid2 .box3 {
  grid-area: 4/1/5/2;
}
.grid2 .box4 {
  grid-area: 4/2/5/3;
}
.grid2 .box5 {
  grid-area: 1/1/3/3;
}
@media screen and (min-width: 769px) {
  .grid2 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media screen and (min-width: 769px) {
  .grid2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .grid2 .box1 {
    grid-area: 1/3/2/4;
  }
  .grid2 .box2 {
    grid-area: 1/4/2/5;
  }
  .grid2 .box3 {
    grid-area: 2/3/3/4;
  }
  .grid2 .box4 {
    grid-area: 2/4/3/5;
  }
  .grid2 .box5 {
    grid-area: 1/1/3/3;
  }
}

.loop_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.loop_wrap .loop_text {
  display: inline-block;
  white-space: nowrap;
  -webkit-animation: loop_animation_left 20s linear infinite;
          animation: loop_animation_left 20s linear infinite;
  font-size: 10px;
  color: #e86100;
}
@media screen and (min-width: 769px) {
  .loop_wrap .loop_text {
    font-size: 24px;
  }
}

@-webkit-keyframes loop_animation_left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes loop_animation_left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.footer {
  height: 70vw;
  margin-top: 5vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .footer {
    height: 31vw;
  }
}
.footer .sun {
  width: 17vw;
  position: absolute;
  left: 3vw;
}
@media screen and (min-width: 769px) {
  .footer .sun {
    width: 10vw;
  }
}
.footer .girls {
  position: absolute;
  width: 67vw;
  left: 7vw;
}
@media screen and (min-width: 769px) {
  .footer .girls {
    width: 44vw;
  }
}
.footer .all_btn {
  width: 53vw;
  position: absolute;
  top: 55vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .footer .all_btn {
    width: 27.5vw;
    top: 11vw;
    left: initial;
    right: -2vw;
  }
}

.sns {
  font-size: 11px;
  margin: 30px auto;
}
.sns .sp_none {
  display: none;
}
@media screen and (min-width: 769px) {
  .sns .sp_none {
    display: block;
  }
  .sns .pc_none {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sns .line {
    width: 76vw;
    margin-left: auto;
  }
}
@media screen and (min-width: 769px) {
  .sns .pc_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: -15vw;
  }
}
.sns .sns_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: -26vw;
}
@media screen and (min-width: 769px) {
  .sns .sns_wrap {
    font-size: 22px;
    margin-right: 50px;
  }
}
.sns .sns_wrap a {
  display: inline-block;
  color: #e86100;
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 1px;
  margin-left: 3vw;
}
.sns .logo {
  width: 34vw;
  margin: 100px auto 8px;
}
@media screen and (min-width: 769px) {
  .sns .logo {
    width: 17vw;
    margin: 0 50px;
  }
}
.sns p {
  font-size: 9px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .sns p {
    font-size: 18px;
    color: #fff;
    margin-top: 30px;
  }
}

.slides {
  max-width: 80%;
  margin: auto;
}
.slides li {
  margin-right: 5px;
}
.slides li img {
  width: 100%;
  height: auto;
}
.slides .slick-dots {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.slides .slick-arrow {
  z-index: 5;
  width: 30px;
  height: 30px;
  background: #fff;
  top: 118px;
  border: 1px solid #dadada;
}
.slides .slick-arrow::before {
  content: "";
  display: block;
  opacity: 1;
  width: 6px;
  height: 6px;
  position: absolute;
  border-top: #575757 1px solid;
}
.slides .slick-prev {
  left: 48.6%;
  margin-left: -565px;
}
.slides .slick-prev::before {
  top: 50%;
  left: 50%;
  border-left: #575757 1px solid;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}
.slides .slick-next {
  right: 48.6%;
  margin-right: -565px;
}
.slides .slick-next::before {
  content: "";
  display: block;
  opacity: 1;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 50%;
  border-right: #575757 1px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  top: 50%;
}

[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 */