@charset "UTF-8";
/* Scss Document */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: Helvetica, 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

@media only screen and (min-width: 415px) {
  /* Tablet */
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
}
ul li {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 1;
    animation-duration: .5s;
    /*animation-name: flash;*/
  }

  /*
  @keyframes flash {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  */
}
h1, h2, h3, h4, h5, h6, h7, h8 {
  font-weight: normal;
}

/* clearfix
-------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.sp_none {
  display: none !important;
}

@media only screen and (min-width: 415px) {
  /* Tablet */
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .pc_none {
    display: none !important;
  }

  .sp_none {
    display: inline-block !important;
  }
}
/* ---------------------------------------------------
 Common
--------------------------------------------------- */
#Wrapper {
  width: 100%;
}

header {
  text-align: center;
  width: 100%;
  padding: 20px 0;
}
header .logo {
  width: 34%;
  max-width: 260px;
  margin: 0 auto;
}
header .season {
  font-size: 70%;
}

.copyright {
  font-size: .7em;
  width: 100%;
  text-align: center;
  padding: 40px 0 20px;
}

.btn a {
  width: 80%;
  background: #30727a;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 15px 0;
  line-height: 1.4;
}
.btn a:hover {
  background: #000;
  color: #30727a;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  header {
    padding: 40px 0;
  }
  header .season {
    font-size: 1em;
    padding-top: 10px;
  }

  .copyright {
    padding: 100px 0 60px;
  }

  .btn a {
    width: 34%;
    padding: 20px 0;
  }
  .btn a:hover {
    background: #000;
    color: #30727a;
  }
}
/* -- ページ読み込み後、ふわっと表示--*/
body.fadeIn_body {
  animation: fadeInbody 2s ease 0s 1 normal;
  -webkit-animation: fadeInbody 2s ease 0s 1 normal;
}

@keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Swich 画像2点用 
-------------------*/
.Swich__TopImg {
  position: relative;
  width: 100%;
  /*
  ↑「img_2」もabsolite設定してもいいけどあえてしてない理由は、
    親要素のrelativeにheight設定していないから、
    子要素に高さ要素が必要なため。
    子要素全てにabsolute設定してしまうと、height指定しないと親要素に高さ出なく
    次のコンテンツが上に上がってきてしまうため。  
  */
}
.Swich__TopImg .Swich__img {
  width: inherit;
  height: inherit;
}
.Swich__TopImg .img_1 {
  position: absolute;
}
.Swich__TopImg .img_2 {
  opacity: 0;
  animation: topAnimetion_1 6s ease infinite;
}

@keyframes topAnimetion_1 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* Loding
-------------------*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: url("../images/main_sp.jpg") no-repeat center center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
#splash #splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
#splash #splash_logo .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
#splash #splash_logo .fadeUp .season {
  padding-top: 10px;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  50% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #splash {
    position: fixed;
    background: url("../images/main_pc.jpg") no-repeat center center;
    background-size: cover;
  }
  #splash #splash_logo {
    width: 34%;
  }
  #splash #splash_logo .fadeUp .season {
    padding-top: 20px;
    font-size: 1.4em;
  }
}
/* ---------------------------------------------------
 index
--------------------------------------------------- */
.slide_wrap {
  margin-bottom: 30px;
}

.slide_container {
  width: 100%;
  overflow: hidden;
  display: flex;
}
.slide_container ul.slide_list {
  display: flex;
  animation: infinity-scroll-left 80s infinite linear 0s both;
}
.slide_container ul.slide_list li {
  width: calc(100vw / 2.5);
}
.slide_container ul.slide_list li .big {
  padding: 16%;
}
.slide_container ul.slide_list li .small {
  padding: 24%;
}
.slide_container ul.slide_list li .sky {
  padding: 10% 16%;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* IE11対策 */
_:-ms-lang(x)::-ms-backdrop,
.slide_wrap {
  display: -ms-grid;
  overflow: hidden;
}

/*----------------------------*/
.autumn_content {
  width: 80%;
  margin: 80px auto 0;
  border: 1px solid #999;
  padding: 6%;
}
.autumn_content .btn a {
  width: 100%;
  margin-top: 20px;
}

.instagram_content {
  width: 80%;
  margin: 80px auto 0;
}
.instagram_content .img_box {
  margin-bottom: 30px;
}
.instagram_content .btn a {
  width: 100%;
}
.instagram_content .btn a i {
  padding-right: 1em;
  font-size: 1.2em;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .slide_wrap {
    margin-bottom: 30px;
  }

  .slide_container ul.slide_list {
    display: flex;
    animation: infinity-scroll-left 140s infinite linear 0s both;
  }
  .slide_container ul.slide_list li {
    width: calc(100vw / 5);
  }
  .slide_container ul.slide_list li .big {
    padding: 20%;
  }
  .slide_container ul.slide_list li .small {
    padding: 28%;
  }
  .slide_container ul.slide_list li .sky {
    padding: 12% 20%;
  }

  .autumn_content {
    width: 50%;
    margin: 200px auto 0;
  }
  .autumn_content .btn a {
    margin-top: 80px;
  }

  .instagram_content {
    margin: 200px auto 0;
  }
  .instagram_content .img_box {
    margin-bottom: 80px;
    display: flex;
  }
  .instagram_content .btn a {
    width: 47%;
  }
}
/* ---------------------------------------------------
 Look
--------------------------------------------------- */
#LookWrapper {
  width: 100%;
}

.look_container .look_box .look_type-1 {
  width: 100%;
  margin-bottom: 50px;
}
.look_container .look_box .look_type-2 {
  width: 70%;
  margin: 0 auto;
}
.look_container .look_box .look_type-3 {
  width: 90%;
  margin: 50px auto 0;
}
.look_container .look_box .credit_box {
  text-align: right;
  font-family: "Times New Roman", Times, "serif";
  margin: 15px auto 50px;
}
.look_container .look_box .credit_box.credit_type-1 {
  width: 70%;
}
.look_container .look_box .credit_box.credit_type-2 {
  width: 90%;
}
.look_container .look_box .credit_box.credit_type-3 {
  width: 90%;
  margin-top: -35px !important;
}
.look_container .look_box .credit_box ul.credit_list li {
  padding: 1px 0;
}
.look_container .look_box .credit_box ul.credit_list li a {
  text-decoration: underline;
  padding: 1px 0;
}

.back_top {
  text-align: center;
  font-weight: bold;
  margin: 10px auto 0;
  letter-spacing: 0;
  width: 80%;
}
.back_top a {
  display: block;
  border: 1px solid #000;
  padding: 10px 0;
}

.staff_credit {
  text-align: center;
  width: 100%;
  font-size: .8em;
  margin-top: 50px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #LookWrapper {
    width: 70%;
    max-width: 1000px;
    margin: 0 auto;
  }

  .look_container .look_box .look_type-1 {
    margin-bottom: 120px;
  }
  .look_container .look_box .look_type-2 {
    width: 45%;
  }
  .look_container .look_box .look_type-3 {
    width: 70%;
    margin: 120px auto 0;
  }
  .look_container .look_box .credit_box {
    margin: 30px auto 200px;
  }
  .look_container .look_box .credit_box.credit_type-1 {
    width: 45%;
  }
  .look_container .look_box .credit_box.credit_type-2 {
    width: 70%;
  }
  .look_container .look_box .credit_box.credit_type-3 {
    width: 100%;
    margin-top: -90px !important;
  }
  .look_container .look_box .credit_box ul.credit_list li {
    padding: 1px 0;
  }
  .look_container .look_box .credit_box ul.credit_list li a {
    text-decoration: underline;
    padding: 1px 0;
  }
  .look_container .look_box .credit_box ul.credit_list li a:hover {
    text-decoration: none;
  }

  .back_top {
    margin: 20px auto 0;
    width: 34%;
  }
  .back_top a {
    padding: 15px 0;
  }

  .staff_credit {
    font-size: 1em;
    line-height: 2;
    margin-top: 100px;
  }
}
