@charset "UTF-8";

/*SP、PC共通スタイルここに*/
/* base */
.ftool-wrapper > .article,
.ftool-wrapper .description,
.ss-article-main-image,
.ftool-wrapper p {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.ftool-wrapper h3 {
  margin-bottom: 0;
}

.ftool-wrapper h2 {
  margin-bottom: 0;
}

.ftool-wrapper #sec01 {
  margin-bottom: 0;
}

/* setting */
html,
body {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

:root {
  --primary: #2D2C2C;
  --secondary: #666666;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
    cursor: pointer;  
    text-decoration: none;
    transition: .6s;
  }  
}
/* setting */

/* credit */
.ref-item  {
  font-size: 11px;
  margin-bottom: 8px;
  .thumb {
    display: none;
  }
  .brand {
    display: none;
  }
  .name {
    font-size: 11px;
  }
  .price {
    font-size: 10px;
  }
}
.ftool-wrapper .ref-item {
  font-size: 11px;
  margin-bottom: 10px;
}
.ftool-wrapper .ref-item .thumb {
  width: 50px;
}
.ftool-wrapper .ref-item .brand {
  margin-left: 0;
}
.ftool-wrapper .ref-item .name {
  margin-left: 0;
}
.ftool-wrapper .ref-item .price {
  margin-left: 0;
  font-size: 11px;
}
.ftool-wrapper .line_up_two {
  width: 100%;
  float: none;
  padding-right: 0;
}

.ftool-wrapper .col--02--Y {
  max-width: 100%;
}

.contentsBlock {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  font-size: 12px;
  color: var(--primary);
  line-height: 170%;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.endrollBlock {
  font-family: "nimbus-sans-extended", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  padding-top: 20px;
}

.endrollBlock__logo {
  width: 10%;
  margin-inline: auto;
  padding-bottom: 30px;
  display: flex;
  justify-content: center;}

.endrollBlock__link {
  font-size: 12px;
  line-height: 170%;
  text-decoration: underline;
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-bottom: 60px;
}

.mainBlock {
  width: 76.5%;
  max-width: 980px;
  margin-inline: auto;
  padding-top: 60px;
}

.mainBlock__title {
  width: 40%;
  padding-bottom: 15px;
}

.mainBlock__text {
  width: 72%;
  margin-left: 2px;
}

.lookBlock {
  width: 50%;
  margin-inline: auto;
}

.lookBlocks {
  padding-top: 40px;
}

.lookBlock__frame.lookBlock__frame--1column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 5px;
}

.lookBlock--fullwidth {
  padding-bottom: 80px;
}

.lookBlock--customwidth {
  padding-bottom: 60px;
}

.lookBlock--fullwidth .credit {
  margin-left: 20px;
}

.lookBlock__frame--2columns {
  display: flex;
  padding-bottom: 5px;
}

.endrollBlock__credit {
  font-size: 9px;
  line-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
/*SP用スタイル*/

.endrollBlock__link {
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 20px;
}

.endrollBlock__logo {
  width: 32%;
}

.endrollBlock__credit {
  padding-bottom: 40px;
}

.lookBlock--fullwidth .credit {
  margin-left: 0;
}

.lookBlock--customwidth,
.lookBlock--fullwidth {
  padding-bottom: 40px;
}

.lookBlock__frame.lookBlock__frame--1column {
  gap: 10px;
}

.lookBlock__frame.lookBlock__frame--2columns {
  gap: 10px;
  display: flex;
  flex-direction: column;
  padding-bottom: 5px;
}

.lookBlock {
  width: 80%;
}

.lookBlocks {
  padding-top: 30px;
}

.mainBlock {
  padding-top: 40px;
}

.mainBlock__title {
  width: 90%;
}

.mainBlock__text {
  width: 100%;
  margin-left: 0;
}

.mainBlock {
  width: 90%;
}

.br-pc {
  display: none;
}

.pc {
  display: none;
}
}
 /*SP用スタイルここまで*/

@media screen and (min-width: 768px) {
/*PC用スタイル*/

.lookBlock--fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
}

.br-sp {
  display: none;
}

.sp {
  display: none;
}  
}
/*PC用スタイルここまで*/
  
/* fadeIn */
.fadeIn {
  opacity: 0;
  transition: none;
}

.fadeIn.animated {
  animation: blurAnime 1s ease forwards;
}

/* アニメーション定義 */
@keyframes blurAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* PCのみ、fadeIn--late を遅延 */
@media screen and (min-width: 768px) {
  .fadeIn--late.animated {
    animation-delay: 0.5s;
  }
}

/* visualのフェードイン */
@keyframes visualFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.visual-fadeIn {
  opacity: 0;
}

.visual-fadeIn.show {
  animation: visualFadeIn 2s ease-out forwards;
}

