@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: 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
  background: #fff;
  color: #000;
  font-size: 18px;
  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%;
}

.Inconsolata__light {
  font-family: Inconsolata,monospace;
  font-weight: 300;
}

.Inconsolata__bold {
  font-family: Inconsolata,monospace;
  font-weight: 700;
}

.Inconsolata__Ex_SemiBold {
  font-family: Inconsolata,monospace;
  font-weight: 700;
  font-stretch: semi-expanded;
}

/* アニメーション */
.single-item + .single-item {
  margin-top: 80px;
}

.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}

.u-fade {
  opacity: 0;
}

.u-fade-type-up.is-active,
.u-fade.is-active {
  transition: .6s;
  transform: translateY(0);
  opacity: 1;
}

.Vimeo__box {
  position: relative;
  padding: 166.67% 0 0 0;
}
.Vimeo__box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ---------------------------------------------------
 Loading 
--------------------------------------------------- */
.loadingAnim {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: ' ';
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .3s;
  background-color: #fff;
}

.loadingAnim:before {
  top: 0;
}

.loadingAnim:after {
  bottom: 0;
}

.loaded .loadingAnim:before {
  height: 0;
  -webkit-transform: translateY(-1%);
  -ms-transform: translateY(-1%);
  transform: translateY(-1%);
}

.loaded .loadingAnim:after {
  height: 0;
  -webkit-transform: translateY(1%);
  -ms-transform: translateY(1%);
  transform: translateY(1%);
}

.loadingAnim_line {
  /*line-height: 1;*/
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 50%;
  max-width: 200px;
  height: 5px;
  margin: auto;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: .6s;
  text-align: center;
}

.loadingAnim_line:after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto  auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  background-color: #f0c15d;
  will-change: transform, width;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Wrapper {
    width: 1100px;
    margin: 0 auto;
  }

  .Inconsolata__Ex_SemiBold {
    font-weight: 400;
  }
}
/* ---------------------------------------------------
 Main
--------------------------------------------------- */
#Main {
  animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Main__content {
  background: #f0c15d;
  position: relative;
  height: 75vh;
  overflow: hidden;
}
.Main__content .Movie {
  width: 100%;
  height: 75vh;
  overflow: hidden;
  padding: 65px 0 0 50px;
}
.Main__content .Movie .PC_vimeo {
  display: none;
}
.Main__content .Lp__Title {
  position: absolute;
  top: 44px;
  left: 8%;
  width: 92%;
  opacity: 0;
  animation: Lp__Title 0.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  animation-delay: 2.5s;
}
.Main__content .Lp__Title h1 {
  width: 80%;
}
.Main__content .Lp__Title .ss2021_vol2 {
  color: #fff;
  padding: 12px 0 0 8px;
  line-height: 1.4;
}
.Main__content .Lp__5styles {
  width: 35%;
  position: absolute;
  bottom: 45px;
  left: 9%;
  opacity: 0;
  animation: Lp__5styles 0.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  animation-delay: 2.5s;
}

@keyframes Lp__Title {
  0% {
    transform: translateY(-400px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes Lp__5styles {
  0% {
    transform: translateY(400px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.Main__lead {
  font-size: .8em;
  padding: 30px 5% 0;
}
.Main__lead .PC__lead {
  display: none;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .Main__content {
    height: 760px;
  }
  .Main__content .innner {
    width: 1100px;
    height: 760px;
    margin: 0 auto;
    position: relative;
  }
  .Main__content .Movie {
    width: 828px;
    height: 690px;
    overflow: hidden;
    padding: 0;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 140px;
  }
  .Main__content .Movie .Vimeo__box {
    padding: 690px 0 0 0;
    width: 414px;
  }
  .Main__content .Movie .Vimeo__box.PC_vimeo {
    display: inline-block;
  }
  .Main__content .Lp__Title {
    top: 40px;
    left: 50px;
  }
  .Main__content .Lp__Title h1 {
    width: 400px;
  }
  .Main__content .Lp__Title .ss2021_vol2 {
    padding: 20px 0 0 15px;
    font-size: 1.3em;
  }
  .Main__content .Lp__5styles {
    width: 150px;
    bottom: 60px;
    left: inherit;
    right: 50px;
  }

  .Main__lead {
    width: 1100px;
    margin: 50px auto 0;
    font-size: 1em;
    padding: 0 30px;
    font-weight: bold;
    line-height: 2.2;
  }
  .Main__lead .PC__lead {
    display: block;
  }
  .Main__lead .SP__lead {
    display: none;
  }
}
/* ---------------------------------------------------
 Style
--------------------------------------------------- */
/* -------------------------------
 Style共通 
---------------------------------- */
.Style__content {
  margin-top: 130px;
}
.Style__content .Number {
  color: #f0c15d;
  font-size: 2em;
  line-height: 1.3;
  padding: 0 0 10px 5%;
  border-top: 3px solid #f0c15d;
  width: 100px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .Style__content {
    margin-top: 250px;
  }
  .Style__content .Number {
    font-size: 4em;
    line-height: 1.5;
    padding: 0 0 10px 40px;
    border-top: 2px solid #f0c15d;
    width: 180px;
  }
}
/* Swich 画像2点用 
-------------------*/
.Swich__2-imgs,
.Swich__TopImg {
  position: relative;
  width: 100%;
  /*
  ↑「img_2」もabsolite設定してもいいけどあえてしてない理由は、
    親要素のrelativeにheight設定していないから、
    子要素に高さ要素が必要なため。
    子要素全てにabsolute設定してしまうと、height指定しないと親要素に高さ出なく
    次のコンテンツが上に上がってきてしまうため。  
  */
}
.Swich__2-imgs .Swich__img,
.Swich__TopImg .Swich__img {
  width: inherit;
  height: inherit;
}
.Swich__2-imgs .img_1,
.Swich__TopImg .img_1 {
  position: absolute;
}

/* スタイリングTOP用 */
.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;
  }
}
/* GIF風 */
.Swich__2-imgs .img_2 {
  opacity: 0;
  animation: gifAnimetion_1 2s infinite steps(1, end);
}

@keyframes gifAnimetion_1 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 商品名テキスト　Slide
------------------------*/
.Slide__text {
  width: 100vw;
  overflow: hidden;
  display: flex;
}
.Slide__text ul.Slide__ul {
  display: flex;
  animation: slideTx_loop 20s infinite linear 1s both;
}
.Slide__text ul.Slide__ul li {
  white-space: nowrap;
  color: #fff;
  background: #000;
  padding-left: 15px;
  line-height: 0.8;
  font-size: 1.2em;
}

@keyframes slideTx_loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .Slide__text {
    width: 100%;
  }
  .Slide__text ul.Slide__ul li {
    font-size: 2em;
  }
}
/* クレジット表記 
-------------------------- */
.Credit {
  width: 100%;
  padding: 0 6%;
  margin-top: 40px;
}
.Credit ul.Credit__ul li .item {
  display: flex;
  float: left;
  padding: 5px;
}
.Credit ul.Credit__ul li .item .itemName, .Credit ul.Credit__ul li .item .brand {
  padding-right: 10px;
}
.Credit ul.Credit__ul li .buy {
  float: right;
  display: flex;
}
.Credit ul.Credit__ul li .buy a {
  display: block;
  padding: 5px;
  color: #ff7200;
  text-decoration: underline;
}
.Credit ul.Credit__ul li .buy a:hover {
  opacity: 1;
  animation-duration: .5s;
  animation-name: flash;
}

/* END/ Style共通 */
#Style__1 .Top__img .Movie {
  padding: 40px 22%;
}
#Style__1 .styleContent__1 {
  width: 100%;
  padding: 40px 3%;
  display: flex;
}
#Style__1 .styleContent__1 .right_img, #Style__1 .styleContent__1 .left_img {
  width: 49%;
  margin: 0 0.5%;
}
#Style__1 .styleContent_2 {
  width: 65%;
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Style__1 .Top__img {
    position: relative;
    width: 100%;
    height: 780px;
  }
  #Style__1 .Top__img .Number {
    position: absolute;
    top: 0;
    left: 0;
  }
  #Style__1 .Top__img .Swich__TopImg {
    width: 520px;
    left: 225px;
    top: 0;
  }
  #Style__1 .Top__img .Movie {
    padding: 0;
    width: 300px;
    position: absolute;
    top: 124px;
    right: 0;
  }
  #Style__1 .Slide__text {
    margin: 90px 0;
  }
  #Style__1 .styleContent__1 {
    width: 600px;
    padding: 0;
    display: flex;
    margin: 90px auto;
  }
  #Style__1 .styleContent__1 .right_img, #Style__1 .styleContent__1 .left_img {
    width: 49%;
    margin: 0 1%;
  }
  #Style__1 .pc_content {
    width: 930px;
    margin: 0 auto;
  }
  #Style__1 .styleContent_2 {
    width: 500px;
    margin: 0;
    float: left;
  }
  #Style__1 .Credit {
    width: 290px;
    float: right;
    padding: 0;
    margin-top: 220px;
  }
}
#Style__2 .Slide__TopImg {
  width: 100vw;
  height: 450px;
  overflow: hidden;
  display: flex;
  position: relative;
}
#Style__2 .Slide__TopImg ul.SlideImg_ul {
  display: flex;
  animation: slideImg_loop 20s infinite linear 1s both;
  position: absolute;
  background: #000;
}
#Style__2 .Slide__TopImg ul.SlideImg_ul:nth-child(1) {
  left: -600px;
}
#Style__2 .Slide__TopImg ul.SlideImg_ul:nth-child(2) {
  left: 0;
}
#Style__2 .Slide__TopImg ul.SlideImg_ul li {
  white-space: nowrap;
  width: 300px;
}
#Style__2 .styleContent__1 {
  position: relative;
  width: 88%;
  margin: 0 auto;
}
#Style__2 .styleContent__1 .styleImg__1 {
  padding: 30px 0 40px 22%;
}
#Style__2 .styleContent__1 .styleImg__2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
}
#Style__2 .Slide__text {
  padding: 40px 0;
}
#Style__2 .styleContent__2 {
  padding-right: 3%;
}

@keyframes slideImg_loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Style__2 .Top__img {
    position: relative;
    width: 100%;
    height: 680px;
  }
  #Style__2 .Number {
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 1;
  }
  #Style__2 .Slide__TopImg {
    width: 100%;
    height: 680px;
  }
  #Style__2 .Slide__TopImg ul.SlideImg_ul:nth-child(1) {
    left: -1630px;
  }
  #Style__2 .Slide__TopImg ul.SlideImg_ul:nth-child(2) {
    left: -720px;
  }
  #Style__2 .Slide__TopImg ul.SlideImg_ul:nth-child(3) {
    left: 190px;
  }
  #Style__2 .Slide__TopImg ul.SlideImg_ul li {
    width: 455px;
  }
  #Style__2 .styleContent__1 {
    width: 100%;
    margin: 85px 0 0 0;
  }
  #Style__2 .styleContent__1 .styleImg__1 {
    padding: 0;
    width: 430px;
    margin-left: 445px;
  }
  #Style__2 .styleContent__1 .styleImg__2 {
    bottom: 100px;
    left: 160px;
    width: 260px;
  }
  #Style__2 .Slide__text {
    padding: 80px 0;
  }
  #Style__2 .styleContent__2 {
    padding-right: 0;
    width: 580px;
    margin: 0 auto;
  }
  #Style__2 .Credit {
    width: 320px;
    padding: 0;
    margin: 40px auto 0;
  }
}
.Swich__Top-3-Img {
  position: relative;
  width: 100%;
}
.Swich__Top-3-Img .Swich__img {
  width: inherit;
  height: inherit;
}
.Swich__Top-3-Img .img_1,
.Swich__Top-3-Img .img_2 {
  position: absolute;
  animation: topAnimetion_2 9s ease infinite;
}
.Swich__Top-3-Img .img_1 {
  animation-delay: 0s;
}
.Swich__Top-3-Img .img_2 {
  animation-delay: 3s;
}
.Swich__Top-3-Img .img_3 {
  animation-delay: 6s;
}

@keyframes topAnimetion_2 {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#Style__3 .Swich__Top-3-Img_pc {
  display: none;
}
#Style__3 .styleContent__1 {
  position: relative;
}
#Style__3 .styleContent__1 .Movie {
  width: 70vw;
  position: absolute;
  top: 40px;
  left: 5%;
}
#Style__3 .styleContent__1 .styleImg__1 {
  width: 100%;
  padding: 400px 0 0 14%;
}
#Style__3 .styleContent__1 .Slibe__textContent {
  position: absolute;
  top: 210px;
  left: 0;
}
#Style__3 .styleContent__1 .styleImg__2 {
  padding: 8px 18% 40px 8%;
}
#Style__3 .styleContent__2 {
  width: 100%;
  padding: 0 3%;
  display: flex;
}
#Style__3 .styleContent__2 .right_img {
  width: 135%;
}
#Style__3 .styleContent__2 .left_img {
  margin: 40px 0 0 1%;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Style__3.Style__content {
    margin-top: 135px !important;
  }
  #Style__3 .Top__img {
    position: relative;
  }
  #Style__3 .Top__img .Number {
    position: absolute;
  }
  #Style__3 .Swich__Top-3-Img {
    display: none;
  }
  #Style__3 .Swich__Top-3-Img_pc {
    display: flex;
    width: 940px;
    height: 705px;
    margin: 0 auto;
  }
  #Style__3 .Swich__Top-3-Img_pc .noAnime__img {
    width: 100%;
  }
  #Style__3 .styleContent__1 {
    position: relative;
    width: 100%;
    height: 1870px;
  }
  #Style__3 .styleContent__1 .Movie {
    width: 320px;
    top: 115px;
    left: 135px;
  }
  #Style__3 .styleContent__1 .styleImg__1 {
    width: 515px;
    position: absolute;
    top: 285px;
    right: 65px;
    padding: 0;
  }
  #Style__3 .styleContent__1 .Slibe__textContent {
    top: 230px;
    width: 100%;
  }
  #Style__3 .styleContent__1 .styleImg__2 {
    width: 500px;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -250px;
  }
  #Style__3 .styleContent__2 {
    width: 690px;
    padding: 0;
    margin: 80px auto 0;
  }
  #Style__3 .styleContent__2 .right_img,
  #Style__3 .styleContent__2 .left_img {
    width: 100%;
    margin: 0;
    padding: 0 4px;
  }
  #Style__3 .Credit {
    width: 300px;
    padding: 0;
    margin: 40px auto 0;
  }
}
#Style__4 .Slide__TopImg {
  width: 100vw;
  height: 450px;
  overflow: hidden;
  display: flex;
  position: relative;
}
#Style__4 .Slide__TopImg ul.SlideImg_ul {
  display: flex;
  animation: slideImg_loop 30s infinite linear 1s both;
  position: absolute;
  background: #000;
}
#Style__4 .Slide__TopImg ul.SlideImg_ul:nth-child(1) {
  left: -900px;
}
#Style__4 .Slide__TopImg ul.SlideImg_ul:nth-child(2) {
  left: 0;
}
#Style__4 .Slide__TopImg ul.SlideImg_ul li {
  white-space: nowrap;
  width: 300px;
}
#Style__4 .styleContent__1 {
  padding: 30px 15%;
}
#Style__4 .styleContent__2 {
  position: relative;
}
#Style__4 .styleContent__2 .img_1 {
  padding: 30px 10% 50px;
}
#Style__4 .styleContent__2 .img_2 {
  padding: 0 0 0 6%;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Style__4 .Top__img {
    position: relative;
    width: 100%;
    height: 680px;
  }
  #Style__4 .Number {
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 1;
  }
  #Style__4 .Slide__TopImg {
    width: 100%;
    height: 680px;
  }
  #Style__4 .Slide__TopImg ul.SlideImg_ul:nth-child(1) {
    left: -1630px;
  }
  #Style__4 .Slide__TopImg ul.SlideImg_ul:nth-child(2) {
    left: -265px;
  }
  #Style__4 .Slide__TopImg ul.SlideImg_ul li {
    width: 455px;
  }
  #Style__4 .styleContent__1 {
    padding: 0;
    width: 520px;
    margin: 60px auto;
  }
  #Style__4 .styleContent__2 {
    position: relative;
    margin-top: 60px;
    width: 100%;
    height: 880px;
  }
  #Style__4 .styleContent__2 .img_1 {
    padding: 0;
    width: 380px;
    position: absolute;
    top: 110px;
    left: 30px;
  }
  #Style__4 .styleContent__2 .img_2 {
    padding: 0;
    width: 580px;
    position: absolute;
    top: 0;
    right: 0;
  }
  #Style__4 .styleContent__2 .Credit {
    padding: 0;
    width: 300px;
    position: absolute;
    margin: 0;
    top: 510px;
    left: 100px;
  }
}
#Style__5 .Movie {
  padding: 40px 10%;
}
#Style__5 .styleContent__1 .img_1 {
  padding: 30px 32% 0 3%;
}
#Style__5 .styleContent__1 .img_2 {
  padding: 0 3% 0 54%;
  margin-top: -30%;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #Style__5 .Swich__TopImg {
    width: 80%;
    margin: 0 auto;
    display: flex;
    position: static;
  }
  #Style__5 .Swich__TopImg .img_1 {
    position: static;
  }
  #Style__5 .Swich__TopImg .img_2 {
    opacity: 1;
    animation: none;
  }
  #Style__5 .Movie {
    padding: 0;
    margin: 80px auto;
    width: 460px;
  }
  #Style__5 .styleContent__1 {
    position: relative;
    width: 100%;
    margin-top: 80px;
  }
  #Style__5 .styleContent__1 .img_1 {
    padding: 0;
    width: 500px;
    padding: 80px 0 0 30px;
  }
  #Style__5 .styleContent__1 .img_2 {
    padding: 0;
    margin: 0;
    position: absolute;
    width: 300px;
    top: 0;
    right: 100px;
  }
  #Style__5 .styleContent__1 .Credit {
    padding: 0;
    margin: 0;
    width: 300px;
    position: absolute;
    bottom: 140px;
    right: 100px;
  }
}
.Allitem__btn a {
  background: #f0c15d;
  color: #fff;
  border-right: #999 solid 5px;
  border-bottom: #999 solid 5px;
  font-size: 1.6em;
  display: block;
  width: 70%;
  margin: 80px auto;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 0.2em;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .Allitem__btn {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 100px;
    margin-bottom: 85px;
  }
  .Allitem__btn a {
    font-size: 1.6em;
    width: 320px;
    margin: 180px auto 0;
    /*
    &:hover{
      background: #e3a92f;
      border-right-color: transparent;
      border-bottom-color: transparent;
      transform: translate(5px, 5px);
    }
    */
  }
}
/* ---------------------------------------------------
 Footer
--------------------------------------------------- */
.Special_SP_thanks {
  color: #666;
  border-top: 1px solid #ddd;
  width: 100%;
  padding: 20px 8%  30px;
  line-height: 1.4;
  font-size: .8em;
}
.Special_SP_thanks p:nth-child(1) {
  text-decoration: underline;
}

.Archive .Title {
  border-left: 13px solid #f0c15d;
  padding: 0 4%;
  font-size: 1em;
  color: #f0c15d;
  line-height: 1.4;
}
.Archive .Thumb {
  display: flex;
  padding: 10px 6%;
}
.Archive .Thumb > div {
  padding: 0 1%;
}
.Archive .Thumb .Vol_number {
  padding: 8px 0;
  font-size: .8em;
  line-height: 1.4;
}
.Archive .Thumb .Vol_number span {
  text-decoration: underline;
}

footer#footer {
  background: #f0c15d;
  width: 100vw;
  position: relative;
  margin-top: 30px;
  color: #000;
}
footer#footer .Special_PC_thanks {
  display: none;
}
footer#footer .copy {
  font-size: .7em;
  position: absolute;
  top: 28px;
  left: 8%;
}
footer#footer .sns {
  text-align: right;
  width: 100%;
  padding: 20px 8%;
}
footer#footer .sns a {
  width: 38px;
  display: inline-block;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .PC__footer_content {
    position: relative;
    width: 100%;
    height: 500px;
  }

  .Special_SP_thanks {
    display: none;
  }

  .Archive {
    position: absolute;
    top: 0;
    left: 0;
    width: 700px;
  }
  .Archive .Title {
    padding: 0 10px;
  }
  .Archive .Thumb {
    padding: 20px 18px;
  }

  footer#footer {
    width: 350px;
    height: 410px;
    position: absolute;
    margin: 0;
    top: 0;
    right: 0;
  }
  footer#footer .inner {
    position: relative;
    width: 350px;
    height: 410px;
  }
  footer#footer .Special_PC_thanks {
    display: block;
    position: absolute;
    top: 45px;
    left: 45px;
    font-size: .8em;
  }
  footer#footer .Special_PC_thanks p:nth-child(1) {
    text-decoration: underline;
  }
  footer#footer .copy {
    font-size: .7em;
    position: absolute;
    top: auto;
    bottom: 45px;
    left: auto;
    right: 45px;
  }
  footer#footer .sns {
    position: absolute;
    width: 40px;
    bottom: 90px;
    right: 45px;
    padding: 0;
  }
  footer#footer .sns a {
    width: 100%;
  }
}
