@charset "UTF-8";
/* CSS Document */
body {
  display: none;
}
header {
  height: 0;
}
body.active {
  height: 100%;
  overflow: hidden;
}
/* ============================================ 
	PC
/* ============================================ */
.sp {
  display: none;
}
.hamburger-menu {
  background-color: #7c7b6b;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  z-index: 130;
  transition: background-color .5s;
  display: none;
}
.hamburger-menu .line {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 22.5px;
  height: 3px;
  background: #fff;
  width: 25px;
}
.hamburger-menu .line:nth-of-type(1) {
  top: 22px;
}
.hamburger-menu .line:nth-of-type(2) {
  top: 34px;
}
.hamburger-menu .line:nth-of-type(3) {
  top: 46px;
}
/*activeクラスが付与されると線が回転して×に*/
.hamburger-menu.active {
  background-color: #fff;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  z-index: 1000;
}
.hamburger-menu.active .line:nth-of-type(1) {
  top: 27px;
  left: 19px;
  transform: translateY(6px) rotate(-45deg);
  background: #7c7b6b;
  width: 32px;
}
.hamburger-menu.active .line:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.hamburger-menu.active .line:nth-of-type(3) {
  top: 39px;
  left: 19px;
  transform: translateY(-6px) rotate(45deg);
  background: #7c7b6b;
  width: 32px;
}
/*========= ナビゲーションのためのCSS ===============*/
.g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #7c7b6b;
  /*動き*/
  transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
.g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
/*ナビゲーションの縦スクロール*/
.g-nav.panelactive {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.g-nav-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 200px;
}
.g-nav-list {
  display: none;
  z-index: 999;
}
.g-nav.panelactive ul {
  display: block;
}
.g-nav-list_1 {
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  display: block;
  font-size: 2.0rem;
  letter-spacing: .05em;
}
.g-nav-list_1 span {
  font-size: 1.6rem;
}
.g-nav-list li:nth-child(3) {
  margin-bottom: 32px !important;
}
.g-nav-list li:nth-child(8) {
  margin-bottom: 40px !important;
}
.g-nav-list_2 {
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  display: block;
  font-size: 1.6rem;
  letter-spacing: .05em;
}
.g-nav-list_2 span {
  font-size: 1.4rem;
}
.g-nav-menu {
  display: none;
  z-index: 999;
  width: 300px;
}
.g-nav-menu a {
  color: #fff;
  display: flex; /* 水平方向の中央揃えのためにFlexboxを使用 */
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
  font-size: 1.6rem;
  letter-spacing: .05em;
  border-radius: 30px;
  border: 1px solid #fff;
  position: relative;
  margin-bottom: 20px;
  line-height: 2.25;
}
.g-nav-menu a:before {
  background-image: url("https://www.sousou.co.jp/other/kokuyo/images/common/arrow.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 13px;
  left: 1.09375vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
}
.g-nav-menu a:hover {
  background-color: #969589;
}
/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.heroimage {
  background: url("../images/top/heroimage_pc.jpg") !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: none !important;
  height: 100vh !important;
  width: 100% !important;
}
.heroimage .logo_black {
  display: none;
}
.heroimage .logo_white {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 40px 50px;
  width: 315px;
  height: auto;
}
.scroll {
  bottom: 0px;
  left: 50%;
  opacity: 1;
  position: absolute;
  transform: translate(-50%);
  transition: opacity .5s;
  width: 66px;
  z-index: 3;
}
.scroll:hover {
  cursor: pointer;
}
.scroll.is-active {
  opacity: 1;
  pointer-events: auto;
}
.scroll-inner {
  display: block;
  padding-top: 100%;
  position: relative;
  width: 100%;
}
.scroll-inner:after, .scroll-inner:before {
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 0;
  width: 1px;
}
.scroll-inner:before {
  background-color: #fff;
  height: 100%;
}
.scroll-inner:after {
  animation: name 3s infinite;
  background-color: #7c7b6b;
  height: 1px;
  top: 0;
}
@keyframes name {
  0% {
    bottom: auto;
    height: 0%;
    top: 0;
  }
  30% {
    bottom: auto;
    height: 100%;
    top: 0;
  }
  50% {
    bottom: 0;
    height: 100%;
    top: auto;
  }
  80% {
    bottom: 0;
    height: 0%;
    top: auto;
  }
}
.top-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 150px;
  padding-bottom: 150px;
}
.top-container {
  width: 95%;
  max-width: 1420px;
  height: 100%;
  margin: 0 auto;
}
.top-container h1 {
  color: #7c7b6b;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 18px;
}
.top-container p {
  color: #7c7b6b;
  font-size: 1.6rem;
  margin-right: 10px;
  margin-left: 10px;
}
.top-container_ja {
  margin-bottom: 15px;
}
.swiper {
  width: 100%;
  margin-bottom: 400px;
}
.swiper-wrapper {
  padding-bottom: 35px;
}
.swiper-wrapper .swiper-slide {
  width: 460px;
  height: 690px;
  object-fit: cover;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
}
/* 全体のスタイル */
.swiper-pagination {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0 !important;
}
.swiper .swiper-pagination-bullet {
  background-color: #7c7b6b;
  height: 3px;
  margin: 0 7.5px !important;
  opacity: 1;
  width: 3px;
  -webkit-transition: height .55s, width .55s;
  transition: height .55s, width .55s;
}
/* 現在のスライドのスタイル */
.swiper .swiper-pagination-bullet-active {
  background-color: #7c7b6b;
  height: 10px;
  width: 10px;
}
.advantage-wrapper {
  padding-bottom: 170px;
}
.advantage-container {
  width: 95%;
  max-width: 1420px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
}
.advantage-title {
  width: 50%;
  margin-top: 8%;
}
.advantage-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  padding-top: 50px;
  padding-bottom: 40%;
}
.advantage-container ul {
  width: 49.3%;
  display: flex;
  flex-flow: column;
  margin: 0 0 0 auto;
  list-style: none;
}
.advantage-container li {
  margin-bottom: 38px;
}
.advantage-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 12px;
}
.advantage-container span {
  font-size: 1.8rem;
}
.fabric-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 200px;
}
.fabric-container {
  width: 95%;
  max-width: 1420px;
  height: 100%;
  margin: 0 auto;
}
.fabric-container h2 {
  margin-bottom: 35px;
}
.fabric-container h2 span {
  font-size: 1.8rem;
}
.fabric-container .sp {
  display: none;
}
.fabric-container h3 {
  margin-bottom: 5px;
}
.fabric-container span {
  font-size: 1.8rem;
  margin-left: 20px;
}
.fabric-container ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.fabric-container li {
  width: 32.4%;
}
.fabric-container img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 12px;
}
.product-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 180px;
}
.product-container {
  width: 95%;
  max-width: 1420px;
  height: 100%;
  margin: 0 auto;
}
.product-container h2 {
  margin-bottom: 35px;
}
.product-container h2 span {
  font-size: 1.8rem;
  margin-left: 20px;
}
.product-container h3 {
  padding-top: 45px;
  margin-bottom: 8px;
  border-top: 1px solid #7c7b6b;
  font-size: 2.2rem;
}
.product-container .fabric-text {
  margin-bottom: 30px;
  margin-left: 0px;
}
.product-container ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-container li {
  width: 24%;
  background-color: #f5f5f5;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.product-container li a {
  color: #333333;
}
.product-container img {
  width: 100%;
}
.product-container .product-text {
  width: 95%;
  margin: 0 auto;
  margin-top: -30px;
  font-size: 1.3rem;
}
.product-container h4 {
  font-size: 1.3rem;
  margin-left: 10px;
  margin-top: 5px;
  color: #333333;
}
.product-value {
  display: block;
  font-size: 1.3rem;
  margin-left: 10px;
  margin-top: -3px;
  color: #666666;
}
.no8-canvas, .cotton-linen {
  padding-top: 130px;
}
.no8-canvas ul::after {
  content: "";
  display: block;
  width: 24%;
}
.cotton-linen ul {
  justify-content: flex-start;
}
.cotton-linen li {
  margin-right: 20px;
}
/* フェードイン(初期値) */
.fade-in {
  opacity: 0; /* 最初は非表示 */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.fade-in.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}
.size-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 200px;
}
.size-container {
  width: 95%;
  max-width: 1420px;
  height: 100%;
  margin: 0 auto;
  display: flex;
}
.size-container img {
  width: 100%;
  height: auto;
}
.size-title {
  margin-top: -15px;
  width: 35%;
}
.size-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  padding-bottom: 2.2%;
}
.size-title .underline {
  border-bottom: solid 1px #333;
  padding-bottom: -5px;
}
.size-title a {
  text-decoration: none;
  color: #000;
}
.size-inner {
  width: 65%;
}
.size-s {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  margin: 0 0 0 auto;
  padding-bottom: 11.1%;
}
.size-s_png {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  padding-top: 13.2%;
  padding-left: 4.5%;
  width: 80.6%;
  height: 100%;
}
.s-description {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}
.size-s_jpg {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}
.size-m {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  margin: 0 0 0 auto;
}
.size-m_png {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  padding-top: 13.2%;
  padding-left: 4.5%;
  width: 82.8%;
  height: 100%;
}
.size-m_jpg {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}
.m-description {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  margin-bottom: 2.2%;
}
.s-description h4, .m-description h4 {
  font-size: 2.4rem;
}
.s-description, .m-description {
  margin-bottom: 2.2%;
}
.s-description text, .m-description text {
  font-size: 1.6rem;
}
.size-s_jpg img, .size-m_jpg img {
  vertical-align: middle;
}
.about-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 200px;
}
.about-container {
  width: 95%;
  max-width: 1420px;
  height: 100%;
  margin: 0 auto;
}
.about-container h3 {
  margin-bottom: 35px;
}
.about-container ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.about-container li {
  width: 49%;
}
.about-container img {
  width: 100%;
  margin-bottom: 12px;
}
.about-container h4 {
  padding: 0 20px;
}
.about-container p {
  width: 100%;
  padding: 0 20px;
}
.qa-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 200px;
}
.qa-container {
  width: 95%;
  max-width: 1420px;
  display: flex;
  margin: 0 auto;
}
.qa-title {
  width: 35%;
  height: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
}
.qa-list {
  width: 65%;
  height: 100%;
  margin: 0 auto;
  padding-top: 15px;
}
.qa {
  margin: 0 0 0 auto;
}
.qa dt {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 0 30px;
}
.qa dd {
  background-color: #f5f5f5;
  margin-bottom: 50px;
  padding: 15px 30px;
}
.qa dd a {
  color: #000;
}
.qa:last-child dd {
  margin-bottom: 0px;
}
.qa p {
  margin-left: 40px;
  font-size: 1.4rem;
}
.qa dt::before, .qa dd::before {
  display: inline-block;
  position: absolute;
  text-align: center;
  line-height: 24px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-family: "Arial";
  color: #eaeaea;
}
.qa dt::before {
  background-color: #b3b2a3;
  content: 'Q';
  padding-left: 2px;
}
.qa dd::before {
  background-color: #7c7b6b;
  content: 'A';
  padding-left: 2px;
}
.voice-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 200px;
  overflow-x: clip;
}
.voice-container {
  width: 95%;
  max-width: 1420px;
  display: flex;
  margin: 0 auto;
}
.voice-container .left-area {
  width: 35%;
}
.voice-container .right-area {
  width: 65%;
}
.voice-title {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
}
.voice {
  background-color: #f5f5f5;
  padding: 10px 20px 20px;
  width: 340px;
  margin-right: 20px;
  margin-bottom: 40px;
}
.voice a {
  color: #000;
}
.voice img {
  width: 150px;
  height: 150px;
}
.voice p {
  width: 100%;
}
.voice .product-title {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.voice .star {
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.voice .title {
  font-size: 1.6rem;
  margin-left: -8px;
}
.voice .review {
  font-size: 1.3rem;
  border-top: 1px solid #7c7b6b;
  padding-top: 12px;
  margin-top: 12px;
  height: 140px;
}
.voice .date {
  font-size: 1.2rem;
  margin-left: -7px;
}
#slick-slide_voice {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
.daito-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 315px;
}
.daito-container {
  width: 95%;
  max-width: 1420px;
  height: 100%;
  margin: 0 auto;
}
.daito-container h2 {
  margin-bottom: 35px;
}
.daito-container ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.daito-container li {
  width: 49.3%;
}
.daito-container iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.daito-container p {
  display: block;
  width: 80%;
  margin: 0 auto;
  font-size: 1.4rem;
}
.daito-container address, .daito-container span, .daito-container a {
  display: block;
  width: 80%;
  margin: 0 auto;
  font-size: 1.3rem;
}
.daito-container img {
  display: block;
  width: 250px;
  margin: 10px auto 30px;
}
.daito-container p {
  margin-bottom: 20px;
}
.daito-container address {
  margin-bottom: 10px;
}
.daito-container span {
  margin-bottom: 20px;
}
.daito-container a {
  color: #000;
}
.daito-container .sp {
  display: none;
}
.page_top_btn {
  position: relative;
  color: #333;
  text-decoration: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_top_btn::after {
  content: '';
  display: block;
  width: 33px;
  height: 33px;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  transform: rotate(45deg);
}
.page_top_btn a {
  display: block;
}
.footer-wrapper {
  width: 100%;
  height: 500px;
  margin-top: 105px;
  padding-top: 100px;
  background-color: #7c7b6b;
}
.footer-container {
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
}
.footer-container a {
  color: #fff;
}
.footer-inner {
  width: 100%;
  max-width: 1180px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 95px;
  border-bottom: 2px solid #fff;
  letter-spacing: .15em;
}
.footer-sns {
  margin-left: 60px;
}
.footer-inner ul {
  list-style: none;
}
.footer-info-title, .footer-sns-title {
  font-size: 2.0rem;
  margin-bottom: 18px;
}
.footer-inner li {
  font-size: 1.6rem;
  margin-bottom: 11px;
}
.footer-sns a {
  font-size: 1.4rem;
}
.footer-inner .red {
  display: block;
  color: #ff0000;
}
.footer-bottom {
  padding: 25px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-bottom img {
  display: block;
  width: 118px;
  height: auto;
}
.footer-bottom span {
  font-size: 1.8rem;
}
/* ============================================ 
	SP(sizeセクションのみ早めに切り替える)
/* ============================================ */
@media screen and (max-width: 1200px) {
  .size-wrapper {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .size-container {
    width: 89.3%;
    height: 100%;
    display: block;
  }
  .size-title {
    width: 100%;
    position: relative;
    margin-top: 0;
    margin-bottom: 25px;
  }
  .size-sticky {
    padding-bottom: 0;
  }
  .size-inner {
    margin: 0 auto;
    width: 100%;
  }
  .size-s, .size-m {
    background-color: #f5f5f5;
    margin-bottom: 30px;
  }
  .size-s {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .size-m {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .size-s_jpg, .size-m_jpg {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    width: 67.2%;
    height: auto;
    margin: 0 auto;
  }
  .size-s_png {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    width: 70.3%;
    height: auto;
    padding-top: 9%;
    padding-left: 18%;
  }
  .size-m_png {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    width: 72%;
    height: auto;
    padding-top: 9%;
    padding-left: 18%;
  }
  .s-description, .m-description {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    padding: 0 9%;
    margin: 0;
  }
  .size-container h4 {
    font-size: 1.6rem;
    padding: 0;
    margin-top: 4.5%;
  }
  .size-container .text {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  .size-container .price-size {
    display: block;
    font-size: 1.2rem;
    margin-top: -30px;
  }
  /* ============================================ 
	SP(sizeセクション以外)
/* ============================================ */
  @media screen and (max-width: 767px) {
    .sp-wrapper {
      margin: 0 auto;
    }
    .sp {
      display: block;
    }
    .pc {
      display: none;
    }
    .heroimage {
      background: url("../images/top/heroimage_sp.jpg") !important;
      background-size: cover !important;
      background-repeat: no-repeat !important;
      background-position: bottom !important;
      background-color: none !important;
      height: 667px !important;
      width: 100% !important;
    }
    .heroimage .logo_white {
      display: none;
    }
    .heroimage .logo_black {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      margin: 30px 30px;
      width: 40%;
      height: auto;
    }
    .scroll {
      bottom: 0px;
      left: 50%;
      opacity: 1;
      position: absolute;
      transform: translate(-50%);
      transition: opacity .5s;
      width: 66px;
      z-index: 3;
    }
    .arrow {
      position: absolute;
      bottom: 1%;
      left: 50%;
      animation: arrowmove 1s ease-in-out infinite;
    }
    @keyframes arrowmove {
      0% {
        bottom: 0.5%;
      }
      50% {
        bottom: 2.5%;
      }
      100% {
        bottom: 0.5%;
      }
    }
    .arrow::before {
      content: "";
      position: absolute;
      bottom: 0px;
      right: -7.5px;
      width: 1px;
      height: 25px;
      background: #fff;
      transform: skewX(-31deg);
    }
    .arrow::after {
      content: '';
      position: absolute;
      bottom: 0px;
      right: 0;
      width: 1px;
      height: 80px;
      background: #fff;
    }
    .g-nav-inner {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      margin-left: 0;
    }
    .g-nav-list {
      display: none;
      z-index: 999;
      padding: 0;
      margin: 0 auto;
      width: 200px;
    }
    .g-nav-list.panelactive ul {
      display: block;
    }
    .g-nav-list_1 {
      color: #fff;
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
      font-size: 1.8rem;
      letter-spacing: 0.1em;
    }
    .g-nav-list li:nth-child(3) {
      margin-bottom: 30px !important;
    }
    .g-nav-list li:nth-child(8) {
      margin-bottom: 40px !important;
    }
    .g-nav-list_2 {
      color: #fff;
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
      font-size: 1.4rem;
      letter-spacing: 0.1em;
    }
    .g-nav-menu {
      display: none;
      z-index: 999;
      width: 265px;
    }
    .g-nav-menu a {
      font-size: 1.4rem;
      letter-spacing: 0.1em;
      margin-bottom: 15px;
      line-height: 2.25;
    }
    .g-nav-menu a:before {
      background-image: url("https://www.sousou.co.jp/other/kokuyo/images/common/arrow.svg");
      background-position: 50%;
      background-repeat: no-repeat;
      background-size: contain;
      content: "";
      display: block;
      height: 13px;
      left: 17px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 13px;
    }
    /*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
    .fadeDown {
      animation-name: fadeDownAnime;
      animation-duration: 0.5s;
      animation-fill-mode: forwards;
      opacity: 0;
      display: block;
    }
    .top-wrapper {
      padding-top: 150px;
    }
    .top-container {
      width: 89.3%;
      height: 100%;
      text-align: center;
    }
    .top-container .top-container_ja {
      font-size: 1.5rem;
    }
    .top-container .top-container_en {
      font-size: 1.3rem;
      letter-spacing: .07em;
    }
    .top-container h1 {
      margin-bottom: 15px;
    }
    .swiper {
      margin-bottom: 100px;
    }
    .swiper-wrapper {
      padding-bottom: 30px;
    }
    .swiper-wrapper .swiper-slide {
      width: 315px;
      height: 475px;
      object-fit: cover;
      align-items: center;
    }
    .swiper-slide img {
      width: 100%;
      height: 100%;
    }
    .advantage-wrapper {
      padding-bottom: 30px;
    }
    .advantage-container {
      width: 89.3%;
      height: 100%;
      padding: 0;
      padding-top: 100px;
      margin: 0 auto;
      display: block;
    }
    .advantage-title {
      width: 100%;
      margin: 0 auto;
      position: relative;
    }
    .advantage-sticky {
      padding: 0;
    }
    .advantage-container h2, .advantage-container h3 {
      width: 100%;
    }
    .advantage-container h3 {
      padding-bottom: 25px;
    }
    .advantage-container ul {
      width: 100%;
      margin: 0 auto;
    }
    .advantage-container li {
      margin-bottom: 30px;
    }
    .advantage-container img {
      margin-bottom: 12px;
    }
    .advantage-container h4 {
      padding: 0px;
    }
    .advantage-container span {
      font-size: 1.6rem;
    }
    .fabric-wrapper {
      padding-top: 100px;
      padding-bottom: 30px;
    }
    .fabric-container {
      width: 89.3%;
      height: 100%;
      margin: 0 auto;
    }
    .fabric-container h2 {
      margin: 0;
      margin-bottom: 25px;
    }
    .fabric-container h2 .sp {
      display: block;
    }
    .fabric-container span {
      margin: 0;
      font-size: 1.6rem;
    }
    .fabric-container ul {
      display: block;
      width: 100%;
      margin: 0 auto;
    }
    .fabric-container li {
      width: 100%;
      margin-bottom: 30px;
    }
    .fabric-container img {
      margin-bottom: 12px;
    }
    .fabric-container h3 {
      padding: 0;
      margin-bottom: 2px;
    }
    .fabric-container p {
      width: 100%;
    }
    .product-wrapper {
      padding-top: 100px;
      padding-bottom: 50px;
    }
    .product-container {
      width: 89.3%;
      height: 100%;
    }
    .product-container h2 {
      margin: 0;
      margin-bottom: 20px;
    }
    .product-container h2 span {
      margin: 0;
      font-size: 1.6rem;
    }
    .product-container ul {
      width: 100%;
      margin: 0 auto;
    }
    .cotton-linen ul {
      flex-wrap: nowrap;
    }
    .product-container li {
      width: 48%;
      margin-bottom: 10px;
      padding-bottom: 8px;
    }
    .product-container h3 {
      font-size: 2.0rem;
      padding-top: 35px;
    }
    .product-title {
      font-size: 1.2rem;
      margin-top: 5px;
      margin-bottom: 0px;
    }
    .product-value {
      font-size: 1.2rem;
    }
    .fabric-text {
      font-size: 1.4rem;
    }
    .no8-canvas, .cotton-linen {
      padding-top: 50px;
    }
    .about-wrapper {
      padding-top: 100px;
      padding-bottom: 10px;
    }
    .about-container {
      width: 89.3%;
      height: 100%;
    }
    .about-container h3 {
      margin-bottom: 25px;
    }
    .about-container ul {
      display: block;
    }
    .about-container li {
      width: 100%;
      margin-bottom: 50px;
    }
    .about-container img {
      width: 100%;
      height: auto;
      margin-bottom: 5px;
    }
    .about-container h4 {
      padding: 0;
      margin: 0;
      margin-bottom: 2px;
      text-align: center;
    }
    .about-container p {
      width: 100%;
      padding: 0 12px;
    }
    .qa-wrapper {
      padding-top: 100px;
      padding-bottom: 60px;
    }
    .qa-title {
      width: 89.3%;
      margin: 0 auto;
      position: static;
      padding-bottom: 0;
    }
    .qa-title h2 {
      margin-bottom: 25px;
    }
    .qa-container {
      width: 100%;
      display: block;
      position: relative;
      padding: 0;
    }
    .qa-list {
      width: 100%;
      padding: 0;
    }
    .qa dt {
      width: 100%;
      margin-bottom: 15px;
      padding-left: 20px;
      margin: 15px auto;
    }
    .qa dd {
      width: 100%;
      margin-bottom: 50px;
      padding: 10px 20px 10px 20px;
      margin: 0 auto 50px auto;
    }
    .qa p {
      margin: 0;
      padding-left: 40px;
      font-size: 1.3rem;
    }
    .qa dt::before {
      padding-left: 1.2px;
    }
    .qa dd::before {
      padding-left: 1.3px;
    }
    .voice-wrapper {
      padding-top: 100px;
      padding-bottom: 60px;
    }
    .voice-container {
      width: 100%;
      display: block;
      padding: 0;
    }
    .voice-container .left-area {
      width: 100%;
    }
    .voice-container .right-area {
      width: 100%;
      min-width: inherit;
      padding-left: 5.335%;
    }
    .voice-title {
      width: 89.3%;
      margin: 0 auto;
    }
    .voice-list {
      width: 100%;
      padding-left: 20px;
    }
    .voice {
      background-color: #f5f5f5;
      padding: 10px 20px 15px 20px;
      width: 315px;
      height: 433px;
      margin-right: 10px;
    }
    .voice-title h2, .voice-title h3 {
      margin-left: 0;
    }
    .voice-title h3 {
      margin-bottom: 25px;
    }
    .voice-list {
      width: 100%;
    }
    .voice img {
      width: 132px;
      height: 132px;
    }
    .voice .product-title {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }
    .voice .star {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }
    .voice .title {
      font-size: 1.4rem;
      margin-left: -6px;
    }
    .voice .review {
      font-size: 1.2rem;
      border-top: 1px solid #7c7b6b;
      padding-top: 12px;
      margin-top: 12px;
      margin-bottom: 20px;
      height: 110px;
    }
    .voice .date {
      font-size: 1.0rem;
    }
    .slick-num {
      width: 100px;
      font-size: 16px;
      line-height: 2;
      text-align: center;
      margin: 0 6px;
    }
    .daito-wrapper {
      padding-top: 100px;
    }
    .daito-container {
      width: 89.3%;
      height: 100%;
    }
    .daito-container h2 {
      margin-bottom: 25px;
    }
    .daito-container ul {
      display: block;
    }
    .daito-container li {
      width: 100%;
    }
    .daito-container iframe {
      width: 100%;
      height: auto;
    }
    .daito-container img {
      display: block;
      width: 60%;
      max-width: 170px;
      margin: 30px auto 20px;
    }
    .daito-container p, .daito-container address, .daito-container span, .daito-container a {
      width: 100%;
      margin: 0 auto;
      font-size: 1.3rem;
    }
    .daito-container p {
      margin-bottom: 20px;
    }
    .daito-container address {
      font-size: 1.1rem;
      margin-bottom: 5px;
    }
    .daito-container span, .daito-container a {
      font-size: 1.1rem;
    }
    .footer-wrapper {
      width: 100%;
      height: 700px;
      margin-top: 105px;
      padding-top: 55px;
    }
    .footer-container a {
      color: #fff;
    }
    .footer-inner {
      width: 100%;
      max-width: 1180px;
      display: block;
      justify-content: center;
      margin: 0 auto;
      padding: 0 20px 44px;
      border-bottom: 2px solid #fff;
    }
    .footer-sns {
      margin-left: 0px;
    }
    .footer-inner ul {
      list-style: none;
    }
    .footer-info-title, .footer-sns-title {
      font-size: 2.0rem;
      margin-bottom: 18px;
    }
    .footer-inner li {
      font-size: 1.6rem;
      margin-bottom: 11px;
    }
    .footer-sns a {
      font-size: 1.3rem;
    }
    .footer-info {
      margin-bottom: 43px;
    }
    .footer-sns-title span {
      font-size: 1.6rem;
    }
    .footer-inner .red {
      display: block;
      color: #ff0000;
    }
    .footer-bottom {
      padding: 10px;
      display: block;
      text-align: center;
      gap: 16px;
    }
    .footer-bottom a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
    }
    .footer-bottom img {
      display: block;
      width: 104px;
      height: auto;
    }
    .footer-bottom span {
      font-size: 1.6rem;
    }
    .footer-bottom small {
      display: block;
      margin-top: 5px;
    }