@charset "UTF-8";

/* 関数定義 =============================================================================== */
:root {
  --base-color: #FAF9F2;
  --text-color: #282825;
  --main-color: #72BFF3;
  --sub-color: #60D4A0;
  --accent-color: #eeb61a;
}


/* jQuery =============================================================================== */
/* フェードイン - 上から */
.fadeInTop {
  transform: translate3d(0, -10px, 0);
  transition: 1.0s;
  opacity: 0;
}
.fadeInTop.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* PC
=============================================================================== */
body {
  background: var(--base-color);
}
main {
  color: var(--text-color);
  font-size: 16px;
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
img {
  max-width: 100%;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
.text-small {
  font-size: small;
}
.section-title {
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
}
/* メインビジュアル_mv */
.mv {
  width: 100vw;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #67B9F1 0%, #67B9F1 50%, #51CA94 50%, #51CA94 100%);
}
.mv-image {
  display: block;
  width: 1240px;
  margin: 0 auto;
  line-height: 0;
}

/* 導入_intro */
.intro {
  margin-bottom: 45px;
}
.lead {
  width: 900px;
  margin: 0 auto 45px;
}
.lead-box {
  display: flex;
  justify-content: space-between;
}
.lead-box.lead_w {
  margin-bottom: -300px;
}
.lead-box.lead_c {
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
}
.lead-img {
  width: 45%;
}
.lead-text {
  display: block;
  width: 45%;
  margin: 45px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.25;
}
.otherItem-link {
  width: 530px;
  margin: 0 auto 80px;
}

/* 7日間コーデ_seven-style */

/* タブ切り替え部分 */
.tabMenu {
  display: flex;
  width: 1040px;
  margin: 0 auto;
}
.tabList {
  position: relative;
  background: #eee;
  flex-grow: 1;
  padding: 10px 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border-radius: 15px 15px 0 0;
  transform: translateY(7px);
}
.tabList.tab_w {
  color: var(--main-color);
  border: solid 3px var(--main-color);
  background: var(--base-color) url(../images/text_work_b.png) no-repeat 5px 3px/110px;
}
.tabList.tab_c {
  color: var(--sub-color);
  border: solid 3px var(--sub-color);
  background: var(--base-color) url(../images/text_school_g.png) no-repeat 5px 3px/110px;
}
.tabList.tab_w.active {
  background: var(--main-color) url(../images/text_work_w.png) no-repeat 5px 3px/110px;
  color: #fff;
  transform: translateY(0);
}
.tabList.tab_c.active {
  background: var(--sub-color) url(../images/text_school_w.png) no-repeat 5px 3px/110px;
  color: #fff;
  transform: translateY(0);
}
.tabContent {
  display: none;
  padding: 20px 20px 50px 20px;
}
.tabContent.active {
  display: block;
  position: relative;
  z-index: 1;
}

.style.workStyle {
  background: var(--main-color);
}
.style.collegeStyle {
  background: var(--sub-color);
}
.style-lead {
  display: block;
  margin: 45px auto;
  font-size: 18px;
  line-height: 1.85;
  text-align: center;
  color: #fff;
}

.style-list_box {
  overflow: hidden;
  width: 1040px;
  margin: 0 auto 45px;
}
.style-list_container {
  display: flex;
  padding: 30px 0;
  transform: rotate(-3deg);
}
.style-list {
  display: flex;
  background: #fff;
  padding: 30px 0;
  animation: styleslide 45s infinite linear .5s both;
}
.style-item {
  width: 180px;
  margin-right: 15px;
}
.style-item_link {
  display: block;
  width: 100%;
}
@keyframes styleslide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.styleContent {
  width: 100%;
  margin-bottom: 60px;
}
.style-block {
  position: relative;
  margin: 45px auto;
}
.style-block:nth-child(even) {
  margin-top: -200px;
}

/* 背景スライダー */
.textslider-wrap {
  position: absolute;
  top: 60%;
  display: flex;
  overflow: hidden;
}
.textslider-wrap.scroll-right {
  transform: rotate(3deg);
}
.textslider-wrap.scroll-left {
  top: 50%;
  transform: rotate(-3deg);
}
.textslider {
  display: flex;
}
.textslider-wrap.scroll-right > .textslider {
  animation: textscroll-right 90s infinite linear .5s both;
 }
 .textslider-wrap.scroll-left > .textslider {
  animation: textscroll-left 90s infinite linear .5s both;
 }
.textslide {
  width: calc(100vw / 2);
}
.textslide img {
  display: block;
  width: 100%;
}
@keyframes textscroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes textscroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* 回転サークル */
.circle {
  position: absolute;
  top: 30%;
  left: 45%;
  width: 180px;
  height: 180px;
  margin-inline: auto;
}
.circle_img {
  width: 100%;
  height: auto;
  animation: rotation 45s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.style-block_inner {
  position: relative;
  z-index: 2;
  width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.style-block_inner.even {
  flex-direction: row-reverse;
  align-items: flex-end;
}

.style-block_img {
  width: 450px;
}
.style-block_detail {
  width: 480px;
  color: #fff;
  padding: 20px 0;
}
.style-block_lead {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.65;
}
.style-block_product {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  letter-spacing: 0.005em;
}
.product-block_name {
  display: block;
  flex-grow: 3;
}
.product-block_price {
  display: block;
  margin-right: 15px;
}
.product-block_linkBtn > a {
  display: block;
  padding: 3px 20px;
  color: var(--main-color);
  background: #fff;
  border-radius: 3px;
}
.product-block_linkBtn.college > a {
  color: var(--sub-color);
}
.linkBtn-dayAll > a {
  display: block;
  margin: 30px auto 0;
  width: 250px;
  padding: 10px;
  color: var(--main-color);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.0025em;
  background: #fff;
  border-radius: 5px;
}
.linkBtn-dayAll.college > a {
  color: var(--sub-color);
}
.linkBtn-weekAll > a {
  display: block;
  margin: 0 auto;
  width: 450px;
  padding: 10px 45px;
  color: var(--main-color);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.0025em;
  background: #fff;
  border-radius: 5px;
}
.linkBtn-weekAll.college > a {
  color: var(--sub-color);
}

/* その他必須アイテム */
.other-items {
  background-color: var(--accent-color);
  /* アンカー調整用 */
  padding-top: 30px;
  margin-top: -30px;
}
.other-items_inner {
  position: relative;
  padding: 45px 0;
}
.title_oi {
  position: absolute;
  z-index: 10;
  top: -30px;
  left: 50%;
  margin-left: -310px;
  display: block;
  width: 620px;
  font-size: 20px;
  font-weight: bold;
  color: var(--base-color);
  text-align: center;
  padding: 30px 20px 10px 20px;
  background: var(--accent-color) url(../images/text_daily.png) no-repeat 20% 10px/120px;
  border-radius: 15px 15px 0 0;
}
.product-list {
  width: 1040px;
  margin: 45px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-item {
  width: calc((100% - 60px) / 3);
  margin-bottom: 30px;
}
.product-item_image {
  width: 100%;
  position: relative;
}
.product-label {
  position: absolute;
  right: 0;
  bottom: 20px;
  background: #f7c744;
  padding: 5px 10px;
  font-size: 16px;
  color: #ffffff;
  text-align: end;
}
.product-item_textbox {
  color: var(--base-color);
}
.product-item_text {
  font-size: 17px;
}
.product-item_price {
  font-size: 15px;
  letter-spacing: 0;
}
.linkBtn-other-items > a {
  display: block;
  margin: 0 auto;
  width: 450px;
  padding: 10px 45px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.0025em;
  background: #fff;
  border-radius: 5px;
}


/* おすすめ特集_feature */
.feature {
  padding-top: 60px;
}
.feature-list {
  width: 860px;
  margin: 0 auto;
  display: flex;
}
.feature-item {
  width: calc((860px - 45px) / 4);
  margin-right: 15px;
  margin-bottom: 30px;
}
.feature-item_text {
  font-size: 15px;
}
.feature-item:last-child {
  margin-right: 0;
}
.feature-item > a:hover {
  text-decoration: none;
}

/* トップページへ_returnBtn */
.returnBtn {
  display: block;
  width: 650px;
  height: 60px;
  margin: 100px auto 0;
}
.returnBtn a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  padding: 15px;
  background: var(--main-color);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: var(--base-color);
  border-radius: 5px;
}
.returnBtn a:hover {
  text-decoration: none!important;
}
/*
.returnBtn 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;
} */


/* SP
=============================================================================== */
@media screen and (max-width: 767px) {
  main {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.0125em;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }

  /* メインビジュアル_mv */
  .mv {
    width: 100vw;
    margin-bottom: 30px;
  }
  .mv-image {
    width: 100%;
  }
  .section-title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  /* 導入_intro */
  .intro {
    margin-bottom: 30px;
  }
  .lead {
    width: 100%;
    margin: 0 auto 15px;
  }
  .lead-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .lead-box.lead_w {
    margin-bottom: -30px;
  }
  .lead-box.lead_c {
    display: flex;
    flex-direction: column;
  }
  .lead-img {
    width: 85%;
  }
  .lead-text {
    display: block;
    width: 85%;
    margin: 15px 0;
    padding: 0 15px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.7;
  }
  .otherItem-link {
    width: 92%;
    margin: 0 auto 45px;
  }

  /* 7日間コーデ_seven-style */

  /* タブ切り替え部分 */
  .tabMenu {
    display: flex;
    width: 100%;
  }
  .tabList {
    padding: 20px 10px 5px 10px;
    font-size: 15px;
    transform: translateY(5px);
    line-height: 1.2;
  }
  .tabList.tab_w {
    background: var(--base-color) url(../images/text_work_b.png) no-repeat 5px 3px/80px;
  }
  .tabList.tab_c {
    background: var(--base-color) url(../images/text_school_g.png) no-repeat 5px 3px/80px;
  }
  .tabList.tab_w.active {
    background: var(--main-color) url(../images/text_work_w.png) no-repeat 5px 3px/80px;
  }
  .tabList.tab_c.active {
    background: var(--sub-color) url(../images/text_school_w.png) no-repeat 5px 3px/80px;
  }
  .tabContent {
    display: none;
    padding: 10px 0 30px 0;
  }
  .tabContent.active {
    display: block;
  }

  .style-lead {
    display: block;
    margin: 30px auto;
    font-size: 15px;
    line-height: 1.7;
  }
  .style-list_box {
    width: 100%;
    margin: 0 auto 30px;
  }
  .style-list_container {
    display: flex;
    padding: 15px 0;
    transform: rotate(-2deg);
  }
  .style-list {
    padding: 20px 0;
    animation: styleslide 25s infinite linear .5s both;
  }
  .style-item {
    width: 100px;
    margin-right: 10px;
  }

  .styleContent {
    margin-bottom: 45px;
  }
  .style-block {
    margin: 30px auto;
  }
  .style-block:nth-child(even) {
    margin-top: 30px;
  }

  /* 背景スライダー */
  .textslider-wrap {
    position: absolute;
    top: 32%;
  }
  .textslider-wrap.scroll-right {
    transform: rotate(3deg);
  }
  .textslider-wrap.scroll-left {
    top: 23%;
    transform: rotate(-3deg);
  }
  .textslider-wrap.scroll-right > .textslider {
    animation: textscroll-right 50s infinite linear .5s both;
  }
  .textslider-wrap.scroll-left > .textslider {
    animation: textscroll-left 50s infinite linear .5s both;
  }
  .textslide {
    width: 400px;
  }
  .textslide img {
    display: block;
    width: 100%;
  }

  /* 回転サークル */
  .circle {
    position: absolute;
    top: 40%;
    left: 0;
    width: 130px;
    height: 130px;
    margin-inline: auto;
  }
  .circle_img {
    animation: rotation 50s linear infinite;
  }

  .style-block_inner {
    display: flex;
    flex-direction: column;
    width: 92%;
  }
  .style-block_inner.even {
    flex-direction: column;
    align-items: baseline;
  }
  .style-block_img {
    width: 85%;
    margin: 0 auto 10px;
  }
  .style-block_detail {
    width: 100%;
    padding: 0;
  }
  .style-block_lead {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  .style-block_product {
    margin-bottom: 10px;
    align-items: flex-start;
  }
  .product-block_price {
    margin-right: 10px;
  }
  .product-block_linkBtn > a {
    padding: 3px 10px;
  }
  .linkBtn-dayAll > a {
    margin: 20px auto 0;
    width: 230px;
    padding: 10px;
  }
  .linkBtn-weekAll > a {
    margin: 30px auto;
    width: 80%;
    padding: 10px;
    font-size: 16px;
  }

  /* その他必須アイテム */
  .other-items {
    background-color: var(--accent-color);
    /* アンカー調整用 */
    padding-top: 30px;
    margin-top: -30px;
  }
  .other-items_inner {
    position: relative;
    padding: 45px 0;
  }
  .title_oi {
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -150px;
    display: block;
    width: 300px;
    font-size: 16px;
    padding: 20px 0 10px 0;
    background: var(--accent-color) url(../images/text_daily.png) no-repeat 15px 5px/70px;
  }
  .product-list {
    width: 92%;
    margin: 15px auto;
  }
  .product-item {
    width: calc((100% - 15px) / 2);
    margin-bottom: 20px;
  }
  .product-label {
    position: absolute;
    bottom: 15px;
    padding: 3px 5px;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .product-item_text {
    font-size: 14px;
  }
  .product-item_price {
    font-size: 13px;
    letter-spacing: 0;
  }
  .linkBtn-other-items > a {
    margin: 30px auto;
    width: 80%;
    padding: 10px;
    font-size: 16px;
  }


  /* おすすめ特集_feature */
  .feature {
    padding: 45px 15px 0 15px;
  }
  .feature-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  .feature-item {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-bottom: 20px;
  }
  .feature-item:nth-child(2n) {
    margin-right: 0;
  }
  .feature-item_text {
    font-size: 13px;
  }

  /* RETURN-BTN */
  .returnBtn {
  width: 80%;
  height: 45px;
  margin: 80px auto 0;
  padding: 0 15px;
  }
  .returnBtn a {
    margin-top: 15px;
    padding-top: 10px;
  }
  /*
  .returnBtn a::before {
    right: 18px;
  }
  .returnBtn a:active {
    opacity: 0.7;
  } */

}



/*# sourceMappingURL=style.css.map */


.txt_center {text-align: center;margin: 35px 0 0 0;}