@charset "UTF-8";

/* 関数定義 =============================================================================== */
:root {
  --base-color: #F5F3F2;
  --text-color: #173B67;
  --main-color: #C30E18;
}

/* jQuery =============================================================================== */
/* フェードイン - 通常 */
.fadeIn {
  transition: 0.8s;
  opacity: 0;
}
.fadeIn.animated {
  opacity: 1;
}
/* フェードイン - 下から */
.fadeInBottom {
  transform: translate3d(0, 10px, 0);
  transition: 0.8s;
  opacity: 0;
}
.fadeInBottom.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* フェードイン - スタイル01 */
.fadeInEach01 {
  transform: translate3d(0, 10px, 0);
  transition: 1.3s;
  opacity: 0;
}
.fadeInEach01.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* ラベルテキストフェードイン */
/* 01.リードテキスト */
.leftAnime_01 {
  opacity: 0;
  overflow: hidden;
  display: inline-block;
  margin-bottom: -15px;
}
.leftAnimeInner_01 {
  display: inline-block;
}
.slideAnimeLeftRight_01 {
  animation-name: slideTextX100_01;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100_01 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft_01 {
  animation-name: slideTextX-100_01;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100_01 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

/* 02.特徴紹介テキスト */
.leftAnime_02 {
  opacity: 0;
  overflow: hidden;
  display: block;
}
.leftAnimeInner_02 {
  display: inline;
}
.slideAnimeLeftRight_02 {
  animation-name: slideTextX100_02;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100_02 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft_02 {
  animation-name: slideTextX-100_02;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100_02 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}


/* PC
=============================================================================== */
* {
  box-sizing: border-box;
}
main {
  width: 100%;
  position: relative;
  padding-bottom: 150px;
  color: var(--text-color);
  background: var(--base-color);
  font-size: 16px;
  font-family: "Roboto", Zen Kaku Gothic Antique, 游ゴシック, メイリオ, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.075em;
}
img {
  max-width: 100%;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

/* メインビジュアル_mv */
.mv {
  width: 100%;
  height: 600px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-pic {
  display: block;
  width: 1240px;
}

/* 導入_intro */
.intro {
  background: #E0E0E0;
  padding-top: 80px;
  padding-bottom: 80px;
}
.intro_inner {
  width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.lead {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  letter-spacing: 0.125em;
}
.lead_main {
  display: block;
  font-size: 54px;
  line-height: 1.4;
}
.lead_detail {
  display: block;
  font-size: 28px;
  line-height: 2.0;
}
.lead-label {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
}

/* h2セクションタイトル_section-title */
.section-title_01 {
  display: block;
  z-index: 50;
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  pointer-events: none;
}
.section-title_01_text {
  display: block;
  position: sticky;
  top: 0;
  left: 0;
  margin: 0;
  font-size: 4.0vw;
  writing-mode: sideways-rl;
  inset-inline-end: 0;
  line-height: 1.0;
}
.section-title_01_text.white {
  color: #fff;
}
.section-title_02 {
  display: grid;
  z-index: 50;
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  pointer-events: none;
}
.section-title_02_text {
  display: block;
  position: sticky;
  align-self: start;
  inset-block-start: 0;
  inset-inline-start: 0;
  top: 0;
  margin: 0;
  font-size: 4.5vw;
  writing-mode: sideways-rl;
  line-height: 1.0;
}

/* JERSEYS QUALITY_feature */
.feature {
  position: relative;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  height: auto;
  background-image: url(../images/stripe_01.png);
  background-size: 7px;
  background-repeat: repeat;
}
.feature_inner {
  position: relative;
  width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 45px;
  padding-bottom: 45px;
}
.feature-block {
  position: relative;
  margin-bottom: 30px;
}
.feature-block_img {
  display: block;
  width: 80%;
  margin-left: 0;
}
.feature-block_img.even {
  margin-left: auto;
  margin-right: 0;
}
.feature-block_textBox {
  position: absolute;
  top: 30%;
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-block_textBox.even {
  top: 20%;
  left: 100px;
}
.feature-block_text {
  display: block;
  width: fit-content;
  padding: 0 10px;
  background: var(--main-color);
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
}
.feature-block_effect {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 250px;
}
/* アニメーション */
.stretch-animation {
  opacity: 0;
  transform: scaleX(0.8);
  transform-origin: center center;
}
.stretch-animation.is-active {
  animation: stretchBounce 1.5s forwards;
}

@keyframes stretchBounce {
  0% {
    opacity: 0;
    transform: scaleX(0.8);
  }

  30% {
    opacity: 1;
    transform: scaleX(1.35);
  }

  45% {
    transform: scaleX(0.94);
  }

  60% {
    transform: scaleX(1.10);
  }

  75% {
    transform: scaleX(0.98);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* シルエット_silhouette */
.silhouette {
  width: 100%;
}
.sil-block {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.sil-block.short {
  background: #4496E2;
}
.sil-block.straight {
  background: #4560A4;
}
.sil-block.tapered {
  background: #8FBA5A;
}
.sil-block_inner {
  display: flex;
  position: relative;
  align-items: center;
  width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.sil-block_inner.even {
  display: flex;
  flex-direction: row-reverse;
}
.sil-block-title_01 {
  position: absolute;
  display: block;
  z-index: 1;
  top: 30px;
  right: 0;
  width: 5px;
  height: fit-content;
  line-height: 0;
  writing-mode: vertical-rl;
}
.sil-block-title_02 {
  position: absolute;
  display: block;
  z-index: 1;
  top: 30px;
  left: 0;
  width: 5px;
  height: fit-content;
  line-height: 0;
  writing-mode: vertical-lr;
}
.sil-block-title_01_text, 
.sil-block-title_02_text {
  display: block;
  font-size: 4.5vw;
  color: #fff;
  opacity: 0.7;
}
.sil-block-image {
  position: relative;
  display: block;
  width: 50%;
  line-height: 0;
}
/* スタンプアニメーション */
.sil-block-image_stamp {
  width: 180px;
  position: absolute;
  z-index: 1;
  bottom: 15%;
  left: 15px;
}
.sil-block-image_stamp.even {
  bottom: 15%;
  left: auto;
  right: 15px;
}
.stamp-animation {
  opacity: 0;
  transform: scale(1.5) rotate(-6deg);
  transform-origin: center center;
}
.stamp-animation.is-active {
  animation: stampPop 1.0s forwards;
}
@keyframes stampPop {
  0% {
    opacity: 0;
    transform: scale(1.5) rotate(-6deg);
  }

  55% {
    opacity: 1;
    transform: scale(0.95) rotate(2deg);
  }

  70% {
    transform: scale(1.05) rotate(-1deg);
  }

  85% {
    transform: scale(0.98) rotate(0.5deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.sil-block-detail {
  width: 50%;
}
.sil-block-detail_inner {
  padding-left: 80px;
  padding-right: 80px;
}
.sil-block-detail_lead {
  display: block;
  margin-bottom: 15px;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.15em;
}
.sil-block-detail_text {
  display: block;
  margin-bottom: 20px;
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.15em;
  line-height: 1.8;
  font-weight: 500;
}
.sil-product_list {
  display: flex;
  justify-content: center;
}
.sil-product_item {
  width: 200px;
  margin-right: 30px;
}
.sil-product_item:last-child {
  margin-right: 0;
}
.product-img {
  display: block;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.product-name {
  text-align: center;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.001em;
  line-height: 1.3;
}
.product-price {
  text-align: center;
  color: #fff;
  font-weight: 500;
}

/* ディティール_detail */
.detail {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--text-color);
}
.detail_inner {
  position: relative;
  width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.detail_lead {
  z-index: 1;
  display: block;
  width: 100%;
  margin-bottom: 30px;
  padding-left: 90px;
  color: #fff;
  font-size: 28px;
}
.detail_list {
  grid-area: 1 / 1;
  width: 1040px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail_item {
  position: relative;
  width: calc((100% - 50px) / 3);
}
.detail_item_img {
  display: block;
  line-height: 0;
}
.detail_item_textBox {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 0;
}
.detail_item_text {
  width: fit-content;
  background: var(--main-color);
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
  padding: 0 10px;
}

/* ルックブック_lookbook */
.lookbook {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(../images/stripe_01.png);
  background-size: 7px;
  background-repeat: repeat;
}
.lookbook_inner {
  position: relative;
  width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.lookbook_list {
  width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.lookbook_list {
  width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.lookbook_item {
  width: 100%;
  display: flex;
  margin-left: 0;
  margin-right: auto;
}
.lookbook_item:nth-child(even) {
  flex-direction: row-reverse;
  align-items: end;
  margin-left: auto;
  margin-right: 0;
  margin-top: -500px;
}
.lookbook_item_image {
  position: relative;
  width: 50%;
}
.lookbook_item_image_img {
  display: block;
  width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.lookbook_item_product {
 padding: 60px 0;
}
.lb_prblock {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}
.lb-product-name {
  font-size: 18px;
  color: var(--text-color);
}
.lb-product-price {
  color: var(--text-color);
}
.lookbook_item_image_textBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  bottom: 30px;
  left: 0;
}
.lookbook_item_image_textBox.even {
  position: absolute;
  bottom: 30px;
  left: auto;
  right: 0;
}
.lookbook_item_image_text {
  display: block;
  width: fit-content;
  background: var(--main-color);
  color: #fff;
  margin-bottom: 10px;
  padding: 0 5px;
}

/* キャンペーンリンク_campaign */
.campaign {
  padding-top: 60px;
  padding-bottom: 60px;
}
.campaign_inner {
  width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.campaign_link {
  display: block;
  width: 600px;
  margin: 15px auto;
}
.campaign_text {
  display: block;
  margin: 15px auto;
  font-size: 18px;
  text-align: center;
}

/* リンクボタン_link-btn */
.link-btn_01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  width: 350px;
  height: 50px;
  color: #fff!important;
  background: var(--text-color);
  border-radius: 3px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none !important;
}

.linkArea_inner {
  width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.link-btn_02 a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  width: 500px;
  height: 150px;
  background-color: var(--text-color);
  color: #fff!important;
  border-radius: 3px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none !important;
}
.link-btn_02.jerseys a {
  background-image: url(../images/lookall_01.png);
  background-size: cover;
  background-position: center;
}
.link-btn_02.edwin a {
  background-image: url(../images/lookall_02.png);
  background-size: cover;
  background-position: center;
}

/* トップページへ_return-btn */
.return-btn {
  display: block;
  width: 850px;
  height: 60px;
  margin: 60px auto;
}
.return-btn a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  padding: 15px;
  background: var(--main-color);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.return-btn a::before {
  position: absolute;
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 34px;
  transition-duration: 0.3s;
  z-index: 1;
}

/* ページトップへ戻る */
.page-top {
  position: fixed;
  z-index: 100;
  display: block;
  right: 30px;
  bottom: 30px;
  width: 100px;
  height: 100px;
  transition: 1.0s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  background-image: url(../images/bg_page-top_thread.png);
  background-position: center;
  background-size: cover;
}
.page-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}
.page-top_text {
  position: absolute;
  z-index: 99;
  inset: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 45%;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
}
/* ボビン */
.page-top_bobbin {
  display: block;
  width: 100px;
  height: 100px;
}
.page-top_bobbin.is-rotate {
  animation: bobbinRotate 0.8s ease-out;
}
@keyframes bobbinRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(720deg);
  }
}


/* SP
=============================================================================== */
@media screen and (max-width: 767px) {

  /* jQuery  */
  /* ラベルテキストフェードイン */
  /* 01.リードテキスト */
  .leftAnime_01 {
    margin-bottom: -10px;
  }


  main {
    padding-bottom: 60px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }

  /* メインビジュアル_mv */
  .mv {
    width: 100%;
    height: 550px;
  }
  .mv-pic {
    display: block;
    width: 100%;
  }

  /* 導入_intro */
  .intro {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .intro_inner {
    width: 100%;
    padding: 0 15px;
  }
  .lead {
    display: flex;
    flex-direction: column;
    width: 100%;
    letter-spacing: 0.125em;
  }
  .lead_main {
    display: block;
    margin-bottom: 15px;
    font-size: 36px;
    text-align: center;
    line-height: 1.3;
  }
  .lead_detail {
    display: block;
    font-size: 17px;
    text-align: center;
    line-height: 1.8;
  }

  /* h2セクションタイトル_section-title_01 */
  .section-title_01_text {
    display: block;
    position: sticky;
    top: 0;
    left: 0;
    margin: 0;
    font-size: 10.0vw;
    writing-mode: sideways-rl;
    inset-inline-end: 0;
    line-height: 1.0;
  }
  .section-title_02 {
    width: 99%;
  }
  .section-title_02_text {
    display: block;
    position: sticky;
    align-self: start;
    inset-block-start: 0;
    inset-inline-start: 0;
    top: 0;
    margin: 0;
    font-size: 10.0vw;
    line-height: 1.0;
  }
  
  /* JERSEYS QUALITY_feature */
  .feature {
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .feature_inner {
    width: 100%;
    padding: 20px 15px;
  }
  .feature-block {
    margin-bottom: 60px;
  }
  .feature-block_img {
    display: block;
    width: 95%;
  }
  .feature-block_textBox {
    position: absolute;
    top: auto;
    bottom: -50px;
    right: auto;
    left: 30px;
  }
  .feature-block_textBox.even {
    top: auto;
    bottom: -50px;
    left: auto;
    right: 0;
  }
  .feature-block_text {
    padding: 0 5px;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .feature-block_effect {
    position: absolute;
    bottom: 15%;
    right: 15px;
    left: auto;
    width: 130px;
  }

  /* シルエット_silhouette */
  .silhouette {
    width: 100%;
  }
  .sil-block_inner {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
    .sil-block_inner.even {
    display: flex;
    flex-direction: column;
  }
  .sil-block-title_01 {
    top: 30px;
    right: 1%;
    line-height: 1.2;
  }
  .sil-block-title_02 {
    top: 30px;
    left: 1%;
    line-height: 1.2;
  }
  .sil-block-title_01_text, 
  .sil-block-title_02_text {
    font-size: 13.0vw;
    opacity: 1.0;
  }
  .sil-block-title_01_text.short {
    color: #4496E2;
  }
  .sil-block-title_02_text.straight {
    color: #4560A4;
  }
  .sil-block-title_01_text.tapered {
    color: #8FBA5A;
  }

  .sil-block-image {
    width: 100%;
  }
  .sil-block-image_stamp {
    width: 120px;
    position: absolute;
    z-index: 1;
    bottom: 15px;
    left: 15px;
  }
  .sil-block-image_stamp.even {
    bottom: 15px;
    left: auto;
    right: 15px;
  }
  .sil-block-detail {
    width: 100%;
  }
  .sil-block-detail_inner {
    padding: 30px 15px;
  }
  .sil-block-detail_lead {
    margin-bottom: 13px;
    font-size: 20px;
    letter-spacing: 0.15em;
  }
  .sil-block-detail_text {
    display: block;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
  }
  .sil-product_list {
    display: flex;
    justify-content: center;
  }
  .sil-product_item {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
  }
  .sil-product_item:last-child {
    margin-right: 0;
  }
  .product-img {
    width: 100%;
  }
  .product-name {
    letter-spacing: 0.0005em;
    line-height: 1.2;
  }

  /* ディティール_detail */
  .detail {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .detail_inner {
    width: 100%;
  }
  .detail_lead {
    margin-bottom: 20px;
    padding-left: 15%;
    font-size: 20px;
  }
  .detail_list {
    grid-area: 1 / 1;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .detail_item {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
  }
  .detail_item_img {
    display: block;
    line-height: 0;
  }
  .detail_item_textBox {
    position: absolute;
    z-index: 1;
    bottom: 10px;
    left: 0;
  }
  .detail_item_text {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 0 5px;
  }

  /* ルックブック_lookbook */
  .lookbook {
    padding-top: 45px;
    padding-bottom: 45px;
    background-size: 6px;
  }
  .lookbook_inner {
    width: 100%;
  }
  .lookbook_list {
    width: 100%;
    padding: 0 11%;
  }
  .lookbook_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  .lookbook_item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .lookbook_item_image {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
  }
  .lookbook_item_image_img {
    display: block;
    width: 85%;
  }
  .lookbook_item_image_textBox {
    position: absolute;
    bottom: 15px;
    left: 0;
  }
  .lookbook_item_image_textBox.even {
    position: absolute;
    bottom: 15px;
    left: auto;
    right: 0;
  }
  .lookbook_item_image_text {
    margin-bottom: 8px;
    padding: 0 5px;
  }
  .lookbook_item_product {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 8%;
  }
  .lb_prblock {
    margin-bottom: 8px;
  }
  .lb-product-name {
    font-size: 15px;
  }


  /* キャンペーンリンク_campaign */
  .campaign {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .campaign_inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .campaign_link {
    display: block;
    width: 70%;
    margin: 15px auto;
  }
  .campaign_text {
    display: block;
    margin: 15px auto;
    font-size: 15px;
    text-align: center;
  }

  /* リンクボタン_link-btn */
  .link-btn_01 a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    width: 60%;
    height: 40px;
    color: #fff!important;
    background: var(--text-color);
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none !important;
  }

  .linkArea_inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .link-btn_02 a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    width: 80%;
    height: 100px;
    background-color: var(--text-color);
    color: #fff!important;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none !important;
  }
  .link-btn_02.jerseys a {
    background-image: url(../images/lookall_01.png);
    background-size: cover;
    background-position: center;
  }
  .link-btn_02.edwin a {
    background-image: url(../images/lookall_02.png);
    background-size: cover;
    background-position: center;
  }

  /* RETURN-BTN */
  .return-btn {
  width: 100%;
  height: 45px;
  margin: 45px auto;
  padding: 0 15px;
  }
  .return-btn a {
    margin-top: 15px;
    padding-top: 10px;
  }
  .return-btn a::before {
    right: 18px;
  }
  .return-btn a:active {
    opacity: 0.7;
  }

  /* ページトップへ戻る */
  .page-top {
    width: 60px;
    height: 60px;
    right: 15px;
    bottom: 15px;
  }
  .page-top_text {
    display: block;
    width: 100%;
    height: 45%;
    font-size: 14px;
    line-height: 1.1;
  }
  /* ボビン */
  .page-top_bobbin {
    width: 60px;
    height: 60px;
  }

}

/*# sourceMappingURL=style.css.map */