@charset "utf-8";
/* スマホファースト ブレイクポイント sp~767/tb768~1023/pc1024~*/
/* ==================
共通・スマホサイズ
=====================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 2px solid blue; */
}

:root {
  --text-color: #4d4d4d;
}
body {
  /* height: 30vh; */
  width: 100%;
  font-family: serif;
  color: var(--text-color);
}
html {
  font-size: 62.5%;
}
.wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  text-align: center;
}
ul,
li {
  list-style: none;
}
a,
li a {
  text-decoration: none;
  color: var(--text-color);
}
.video {
  margin-bottom: 40px;
  max-width: 100%;
}
.featureText::after {
  background-color: #4d4d4d;
}
.logo {
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-bottom: 8px;
}
/* ------------------------------------------------------
  図形アニメーション
 -------------------------------------------------------- */

#anime1 {
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(images/sp/feature1_2.png); /* 背景画像1を指定 */
  filter: brightness(96%); /*背景画像を鮮明に*/
  background-position: -72px -32px;
}

#anime2 {
  background-repeat: no-repeat;
  background-size: 90%;
  background-image: url(images/sp/feature2_2.png); /* 背景画像1を指定 */
  background-color: rgba(77, 77, 77, 0.7);
  background-blend-mode: darken; /*背景画像を暗く*/
  background-position: 240% 70%;
}

#anime3 {
  background-repeat: no-repeat;
  background-size: 60%;
  background-image: url(images/sp/feature3_4.png); /* 背景画像2を指定 */
  filter: brightness(96%);
  background-position: -20% 20%;
}

#anime4 {
  background-repeat: no-repeat;
  background-size: 78%;
  background-image: url(images/sp/item_circle1.png); /* 背景画像2を指定 */
  filter: brightness(96%);
  background-position: 140% 130%;
}

#anime5 {
  background-repeat: no-repeat;
  background-size: 90%;
  background-image: url(images/sp/item_circle2.png); /* 背景画像2を指定 */
  filter: brightness(96%);
  background-position: -90% 56%;
}

#anime6 {
  background-repeat: no-repeat;
  background-size: 90%;
  background-image: url(images/sp/voice_circle1.png); /* 背景画像2を指定 */
  filter: brightness(96%);
  background-position: -145% 62%;
}

#anime7 {
  background-repeat: no-repeat;
  background-size: 90%;
  background-image: url(images/sp/about_circle1.png); /*about*/
  background-color: rgba(77, 77, 77, 0.7);
  background-blend-mode: darken; /*背景画像を暗く*/

  background-position: -120% 70%;
}

#anime8 {
  background-repeat: no-repeat;
  background-size: 50%;
  background-image: url(images/sp/qa_circle1.png); /* 背景画像2を指定 */
  filter: brightness(96%);
  background-position: 100% 60%;
}

/* ------------------------------------------------------
ヘッダー・ハンバーガーメニュー
 -------------------------------------------------------- */

.brandName {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.8rem;
}
header nav ul {
  list-style: none;
}
header nav ul li {
  display: inline-block;
}
header nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.8rem;
}
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 9vh;
  z-index: 9999;
}
.navItem {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background-color: #fff;
  height: 7vh; /*高さ指定*/
}
/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 9999; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -9999;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  left: 0;
  width: 100%;
  height: 90vh; /*ナビの高さ*/
  background: #efeff4;
  /*動き*/
  transition: all 0.3s;
  transform: translateX(100%); /*メニューが背面に行ってリンクが飛べてしまうので、必ず入れる*/
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 9999;
  transform: translateX(0%); /*ハンバーガーボタンクリックにより、メニューが開く*/
  z-index: -1;
}

/*ナビゲーション*/
#g-nav #g-nav-list ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 9999;
  top: 15%;
  left: 10%;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%; /*表示する高さ*/
  overflow: hidden;
}

#g-nav.panelactive ul {
  display: block;
}
/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: left;
  padding-bottom: 5px;
}

#g-nav li a {
  color: var(--text-color);
  text-decoration: none;
  padding: 10px;
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.navSublinks {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 40px;
}
.navSp {
  font-size: 1.2rem;
}
#g-nav #g-nav-list .navSublinks .navSp a {
  font-size: 1.2rem;
  padding-bottom: 0;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0;
  right: 5%;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: var(--text-color);
  width: 45%;
}
.openbtn1 .active {
  opacity: 1;
}

.openbtn1 span:nth-of-type(1) {
  top: 40%;
}

.openbtn1 span:nth-of-type(2) {
  top: 53%;
}

.openbtn1 span:nth-of-type(3) {
  top: 66%;
}

.openbtn1.active span:nth-of-type(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.fa-solid.fa-bag-shopping {
  font-size: 2rem;
  margin-right: 24px;
}

.navShop {
  margin-right: 20px;
}
.navShop ul li {
  margin-right: 10px;
}

/*==================================================
main
===================================*/
main {
  letter-spacing: 0.08em;
}
/* スライダー無しVer */
.mainVisual {
  position: relative;
}
.noSlide {
  height: 100vh;
  width: 100%;
  background-image: url("images/sp/fv1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  z-index: -1;
}
.noSlide h1 {
  position: absolute; /*絶対配置*/
  color: var(--text-color);
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  top: 10%;
  left: 12%;
  margin: 0; /*余白なし*/
  padding: 0;
}

.noSlide h1 img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 44px;
  height: 44px;
}
.logo_br {
  display: block;
  margin-top: 5rem;
}
/*---------------------
fvのスライダーStart
-----------------------*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  width: 100vw;
  height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
  background-image: url("images/sp/fv1.jpg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  position: relative;
}

/*** 1枚目の文字 ***/
.slider-item01 h1 {
  position: absolute; /*絶対配置*/
  color: var(--text-color);
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  top: 10%;
  left: 12%;
  margin: 0; /*余白なし*/
  padding: 0;
}
.slick-slide img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 44px;
  height: 44px;
}
.slider-item02 {
  background-image: url("images/sp/fv2.jpg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}

.slider-item03 {
  background-image: url("images/sp/fv3.jpg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}
.slider-item04 {
  background-image: url("images/sp/fv4.jpg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}
.slider-item05 {
  background-image: url("images/sp/fv5.jpg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh;
  background-size: contain; /*背景画像が.slider-item全体を覆い表示*/
  overflow: hidden;
  margin: auto;
  max-width: 100%;
  min-width: 250px;
  position: relative;
  margin-bottom: -2%;
}

.slider-item01.slider-item img {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 16px;
  margin-right: 8px;
  width: 40px;
  height: 40px;
}

/*矢印の設定*/

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff; /*矢印の色*/
  border-right: 2px solid #fff; /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0; /*ドットの位置*/
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 6px; /*ドットボタンのサイズ*/
  height: 6px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #fff; /*ドットボタンの色 */
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}
.slick-dots li button {
  width: 10px;
  height: 10px;
}
.slick-dots li button:before {
  width: 10px;
  height: 10px;
  line-height: 10px;
}
.slick-dotted.slick-slider {
  margin-bottom: -20%;
}
/*----------------
fvのスライダーEnd
-------------------*/
.mark {
  margin-bottom: 20px;
}

.summary {
  background-image: url("images/sp/summary_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 112px;
  display: flex;
  justify-content: center;
  padding: 30px 0;
}
.summary li,
.summary li:nth-child(3) span {
  color: #fff;
  font-size: 1.6rem;
  white-space: nowrap;
  line-height: 2.5rem;
  letter-spacing: 0.01em;
  padding: 20px;
  display: flex;
  text-align: center;
  align-items: center;
  width: 33%;
  justify-content: center;
  padding: 0;
}

.summary li:nth-child(3) {
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.summary li + li {
  border-left: 1px solid #fff;
}
.copyBox {
  text-align: center;
}

.copy {
  writing-mode: vertical-rl;
  display: inline-block;
  height: 200px;
  text-align: left;
  line-height: 2;
  margin: 40px auto;
}
.copy h2 {
  padding-top: 40px;
  letter-spacing: 0.1em;
  color: var(--text-color);
}

.copyDetail {
  text-align: center;
  padding-bottom: 56px;
}
/* キャッチコピー円 */
.bgCircle {
  background-image: url(images/sp/bgCircle_1.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 375px;
  height: 375px;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
/* キャッチコピー円の上の縦棒 */
.bgCircle::after {
  content: "";
  height: 8%;
  width: 2px;
  top: -10%;
  left: 50%;
  position: absolute;
  background: var(--text-color);
  margin-top: 24px;
}

.copyTitle {
  color: var(--text-color);
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.copyTitle span {
  font-size: 2.6rem;
  color: var(--text-color);
  letter-spacing: 0.08em;
}
.copyTitle span::before {
  margin-top: 20px;
}
/* ----------------------------
OSOCUの服の特徴/デザインとサイズ
---------------------------------*/
.featureBox,
.itemBox,
.voiceBox,
.flowChart,
.aboutBox {
  width: 100%;
  margin: 0 auto;
  padding: 56px 0;
}

.feature {
  background-color: #efeff4;
}
.feature .featureBox {
  padding-top: 56px;
}
#featureBox1 {
  padding-bottom: 0;
}
.featureDetail,
.itemDetail,
.aboutDetail,
.qaDetail {
  display: inline-block;
  width: 100%;
  min-width: 300px;
  height: auto;
  text-align: center;
  line-height: 2;
  margin: 40px auto 0 auto;
}
.featureDetail {
  margin: 0 auto;
}
.featureHeading {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
.featureHeading span {
  font-size: 1.6rem;
}

.title1,
.title2 {
  font-size: 2rem;
  writing-mode: vertical-rl;
  word-break: break-word;
  text-orientation: upright;
  border-left: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
  padding: 0px 16px;
  margin: 0 auto 30px;
  text-align: left;
  white-space: nowrap;
  line-height: 2;
}
.title2 {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  color: #fff;
}
#flowChart .title2,
#featureBox1 .title2,
#itemDetail .title2,
#anime8 .title2 {
  border-left: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
  color: var(--text-color);
}
@-moz-document url-prefix() {
  .title1 {
    width: calc(100% / 7.5);
  }
  .title2 {
    width: calc(100% / 4.5);
  }
}
_::-webkit-full-page-media,
_:future,
:root .title1 {
  /* ここにsafariブラウザのみ適用したいCSSプロパティを入れる */
  white-space: nowrap;
}

.feature1Img {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.feature1_3l,
.feature3_3l {
  width: 60%;
  height: 70%;
  margin-top: 80px;
}
.feature2_3l {
  width: 60%;
  height: 70%;
}
.feature2_4r {
  width: 35%;
  height: 80%;
  margin-top: 80px;
  position: relative;
}

.feature1_4r,
.feature3_4r {
  width: 35%;
  height: 70%;
  position: relative;
  /* padding-left: 23px;
  padding-bottom: 50px; */
}
.feature2 h3,
.feature2 p {
  color: #fff;
}
.feature2 {
  background-color: var(--text-color);
}
.feature3 {
  background-color: #efeff4;
}
.featureText {
  letter-spacing: 0.005em;
}
.featureText,
.aboutText {
  text-align: left;
  padding: 40px 32px;
}

.lineText {
  text-align: center;
}
.listTitle {
  width: 60%;
  margin: 0 auto;
}
.subItemname {
  border-bottom: 1px solid var(--text-color);
  margin-top: 40px;
}

.itemName {
  /* font-size: 1.8rem; */
  border-bottom: 1px solid var(--text-color);
  display: flex;
  flex-direction: column;
  background-color: #efeff4;
  margin-bottom: 40px;
  white-space: nowrap;
}
/* .itemList {
  padding-left: 24px;
  padding-right: 24px;
} */
/* .itemLink img,
.lineLink img {
  display: block;
  width: 300px;
} */
.itemLink,
.lineLink {
  width: 300px;
  position: relative; /*矢印の位置を基点とする*/
  padding: 8px;
}

/* .itemLink::after,
.lineLink::after {
  content: "";
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute; /*矢印アイコンの位置を設定*/
/*top: 50%;
  right: 10%;
  transform: translateY(-50%) rotate(45deg); /*矢印の向きを変更させる*/
/*} */
.lineLink {
  /*ラインボタンの形状*/
  display: inline-block;
  color: #fff;
  padding: 18px 60px;
  border-radius: 50px;
  text-decoration: none;
  outline: none;
  /*背景色*/
  background: linear-gradient(to top, #00a75b 40%, #f7f7f0 100%);
  border: 1px solid #06a75b;
  /*アニメーションの指定*/
  transition: all 0.3s ease-out;
}
.itemLink {
  /*ボタンの形状*/
  display: inline-block;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  outline: none;
  /*背景色*/
  background: linear-gradient(to top, #4a4a4a 40%, #f7f7f0 100%);
  border: 1px solid #9a9797;
  /*アニメーションの指定*/
  transition: all 0.3s ease-out;
  line-height: 1.1;
  font-feature-settings: "palt";
}
.sortLink,
.sortLink_1 {
  /*ボタンの形状*/
  display: inline-block;
  color: #fff;

  border-radius: 50px;
  text-decoration: none;
  outline: none;
  /*背景色*/
  background: linear-gradient(to top, #4a4a4a 40%, #f7f7f0 100%);
  border: 1px solid #9a9797;
  /*アニメーションの指定*/
  transition: all 0.3s ease-out;

  height: 74px;
}
.sortLink {
  padding: 18px 5px;
  line-height: 1.8;
}
.sortLink_1 {
  padding: 14px 5px;
  line-height: 1.2;
}
/*hoverした際のスケールで全体を拡大し影を付ける*/
.lineLink:hover {
  transform: scale(1.05);
  /*ボックスの影*/
  box-shadow: 0 5px 10px #366c53;
  color: #efeff4;
}
.itemLink:hover,
.sortLink:hover,
.sortLink_1:hover {
  transform: scale(1.05);
  /*ボックスの影*/
  box-shadow: 0 5px 10px #9a9797;
  color: #efeff4;
}
.itemLink,
.lineLink,
.sortLink,
.sortLink_1 {
  position: relative; /*矢印の位置を基点とする*/
  font-family: serif;
  margin-bottom: 10px;
}

.lineIcon,
.setIcon {
  position: relative;
}

/* top: 0;
  left: 15%; */

.pantsIcon,
.shirtIcon,
.itemIcon {
  position: relative;
  /* top: 0;
  left: 3%; */
}

.link {
  text-decoration: none;
}

/* .linkIcon {
  width: 18px;
  height: 15px;
  margin-bottom: 10px;
} */
.itemText {
  text-align: left;
  /* font-size: 1.5rem; */
  padding: 0 24px;
}
/* .itemLink span {
  position: absolute;
  font-size: 2rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

/* .lineLink span {
  position: absolute;
  font-size: 2rem;
  white-space: nowrap;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */
/* デザインとサイズ */
.slide-class {
  position: relative;
}

.animation-slide .s-scale-img {
  border-top: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
  max-width: 320px;
  margin: 0 auto;
}
.slick-slide .s-fade-txt {
  font-size: 1.4rem;
  line-height: 1.5;
  /* white-space: nowrap; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 320px;
}
.voiceDetail .slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.slick-active .s-fade-txt {
  animation: FadeAni 0.5s ease 0.5s 1 normal both;
}
@keyframes FadeAni {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
スライダーのためのcss
===================================*/

/*画像の横幅を100%にしてレスポンシブ化*/
img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
  object-fit: cover;
  max-height: 100%;
  max-width: 100%;
}

/*メイン画像下に余白をつける*/
.gallery {
  margin: 0 0 5px 0;
}

.gallery li {
  list-style: none;
}

/* 商品スライダー画像サイズ */
.gallery li img {
  width: 100%;
  height: 100vw;
  object-fit: cover;
}
/* 商品スライダーの選択ボタンの画像サイズ */
.choice-btn li img {
  width: 100%;
  height: 20vw;
  object-fit: cover;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc; /*矢印の色*/
  border-right: 2px solid #ccc; /*矢印の色*/
  height: 20px;
  width: 20px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}
.slick-prev:before,
.slick-next:before {
  color: transparent;
}
/*選択するサムネイル画像の設定*/

.choice-btn li {
  cursor: pointer;
  outline: none;
  background: #333;
  list-style: none;
}

.choice-btn li img {
  opacity: 0.4; /*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}
/*-------------------
スライダーのためのcssここまで
------------------------*/
/* デザインとサイズ */
/* .itemList .itemLink {
  width: 300px;
  height: auto;
  max-width: 100%;
} */
/* .itemList .itemLink span {
  font-size: 1.6rem;
  top: 50%;
  left: 40%;
  transform: translate(-40%, -50%);
} */
/* .itemList .itemLink::after {
  top: 50%;
  right: 10%; */
/*transform: translateY(-50%) rotate(45deg); /*矢印の向きを変更させる*/
/*}*/

/* お客様の声 */
.voiceBox {
  background-color: rgba(247, 247, 240, 0.7);
}
/* 発送から到着までの流れ */
.flowDetail {
  text-align: center;
  position: relative;
}
.flow {
  width: 240px;
  /* position: relative; */
}
.flowComment {
  width: 120px;
  position: absolute;
  bottom: 10%;
  right: 10%;
}
/* OSOCUにいついて */
.about {
  background-color: var(--text-color);
}
.aboutText {
  color: #fff;
}
.aboutDetail {
  margin-top: 20px;
}
/* よくある質問 */
.qaDetail {
  text-align: left;
}
.linkBtn {
  text-align: center;
  margin-top: 56px;
}
.linkBtn li a {
  z-index: 999;
}
.qaDetail .title1 {
  margin-top: 56px;
}
.qaText {
  padding: 0 24px;
}
.question,
.answer {
  line-height: 2;
}
.question {
  font-weight: 800;
  margin-top: 48px;
  margin-bottom: 24px;
}
/* フッター */
footer {
  text-align: left;
  background-color: #f2f2f2;
  margin-top: 40px;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
}
#footer {
  padding-bottom: 140px;
}
.footerDetail {
  display: flex;
  justify-content: center;
  padding: 22px 0;
  align-items: start;
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 24px;
}
.footerDetail p {
  font-size: 1.4rem;
  margin-right: 24px;
  padding-top: 7px;
}

.footerList {
  font-size: 1.4rem;
  line-height: 2;
  text-align: left;
}

.floatBtn {
  display: none;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
}

/* ==================
スマホ（375px以下）サイズ
=====================*/
/* @media screen and (max-width: 375px) {
  #header {
    margin-bottom: -20%;
  }
  .slider-item {
    max-width: 375px;
    width: 100%;
    margin-top: -3%;
    margin-bottom: -2%;
  }
  .slider-item01 h1 {
    top: 20%;
    left: 7%;
  }

  .summary li,
  .summary li:nth-child(3) span {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .summary li:nth-child(3) {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
  }
  .copy h2 {
    font-size: 1.6rem;
  }
  .copyTitle span {
    font-size: 2rem;
  }
  .copyTitle {
    font-size: 1.3rem;
  }
  .bgCircle::after {
    height: 10%;
    top: -15%;
  }
  .bgCircle {
    width: 280px;
    height: 280px;
  }
  .title1,
  .title2 {
    font-size: 1.8rem;
  }
  .featureHeading {
    font-size: 2rem;
  }
  .featureHeading span {
    font-size: 1.4rem;
  }
  .featureText,
  .lineText,
  .itemText,
  .aboutText {
    font-size: 1.4rem;
  } */

/* .itemLink span,
  .lineLink span {
    font-size: 1.6rem;
  } */
/* .flow {
    width: 200px;
  }

  .animation-slide .s-fade-txt {
    font-size: 1.1rem;
  }

  .slick-dotted.slick-slider {
    margin-bottom: -30%;
  }
  .slick-dots {
    bottom: 10%;
  } */
/*メインビジュアルスライダー無し */
/* .mainVisual,
  .heading {
    margin-top: 0;
  }
  .noSlide h1 {
    top: 20%;
    left: 8%;
  }
  .noSlide h1 img {
    margin-right: 10px;
    margin-bottom: 1rem;
  }
} */
/* @media screen and (max-width: 360px) {
 
  .mainVisual,
  .heading {
    margin-top: -8rem;
  }
  .noSlide h1 {
    top: 25%;
    left: 8%;
  }
  .noSlide h1 img {
    margin-right: 10px;
    margin-bottom: 1rem;
  }
  .lineLink {
    padding: 18px 20px;
  }
  .itemIcon {
    position: relative;
    top: 0;
    left: 8%;
  }
  .lineIcon {
    position: relative;
    top: 0;
    left: 20%;
  }
} */
/* @media screen and (max-width: 349px) {
  .slider-item01 h1 {
    font-size: 2rem;
    top: 20%;
    left: 7%;
  }

  .slick-dots {
    bottom: 8%;
  } */
/* .itemList .itemLink::after {
    top: 50%;
    right: 5%; */
/*transform: translateY(-50%) rotate(45deg); /*矢印の向きを変更させる*/
/* } */
/* .itemName {
    font-size: 1.6rem;
  }
} */
@media screen and (min-width: 280px) {
  /*メインビジュアルスライダー無し */

  .noSlide h1 {
    font-size: 2rem;
  }
  .itemLink,
  .lineLink {
    font-size: 1.4rem;
  }
  .question,
  .answer {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 300px) {
  /*メインビジュアルスライダー無し */
  .mainVisual,
  .heading {
    margin-top: -65px;
  }
  .noSlide h1 {
    font-size: 2rem;
    top: 20%;
    left: 8%;
  }
  .noSlide h1 img {
    margin-right: 10px;
    margin-bottom: 1rem;
  }
  #header {
    margin-bottom: -20%;
  }
  .slider-item {
    max-width: 375px;
    width: 100%;
    margin-top: -3%;
    margin-bottom: -2%;
  }
  .slider-item01 h1 {
    top: 20%;
    left: 7%;
  }

  .summary li,
  .summary li:nth-child(3) span {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .summary li:nth-child(3) {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
  }
  .copy h2 {
    font-size: 1.6rem;
  }
  .copyTitle span {
    font-size: 2rem;
  }
  .copyTitle {
    font-size: 1.3rem;
  }
  .bgCircle::after {
    height: 10%;
    top: -15%;
  }
  .bgCircle {
    width: 280px;
    height: 280px;
  }
  .title1,
  .title2 {
    font-size: 1.8rem;
  }
  .featureHeading {
    font-size: 2rem;
  }
  .featureHeading span {
    font-size: 1.4rem;
  }
  .featureText,
  .lineText,
  .itemText,
  .aboutText {
    font-size: 1.4rem;
  }
  .itemLink span,
  .lineLink span {
    font-size: 1.6rem;
  }
  .itemLink,
  .lineLink {
    width: 280px;
  }
  .flow {
    width: 200px;
  }
  .flowComment {
    width: 100px;
  }
  .animation-slide .s-fade-txt {
    font-size: 1.2rem;
  }

  .slick-dotted.slick-slider {
    margin-bottom: -30%;
  }
  .slick-dots {
    bottom: 10%;
  }

  .listTitle {
    width: 80%;
  }
  .subItemname {
    font-size: 1.2rem;
  }

  .itemName {
    font-size: 1.3rem;
  }
  .itemLink {
    padding: 14px 20px;
    height: 74px;
  }
  .sortLink,
  .sortLink_1 {
    font-size: 1.4rem;
    width: 280px;
  }
  .itemIcon {
    top: -18%;
    left: 18%;
  }
  .pantsIcon,
  .shirtIcon {
    position: relative;
    top: -18%;
    left: 18%;
  }
  .lineIcon {
    left: 30%;
  }
  .setIcon {
    left: 12%;
  }
  .br {
    display: inline-block;
  }
}
@media screen and (min-width: 344px) {
  .noSlide h1 {
    top: 23%;
    left: 8%;
  }
}
@media screen and (min-width: 360px) {
  .mainVisual,
  .heading {
    margin-top: -40px;
  }
}
@media screen and (min-width: 375px) {
  .mainVisual,
  .heading {
    margin-top: -11px;
  }
  .noSlide h1 {
    font-size: 2.5rem;
    top: 15%;
  }
  .featureText,
  .lineText,
  .itemText,
  .aboutText {
    font-size: 1.5rem;
  }
  .bgCircle {
    width: 300px;
    height: 300px;
  }
  .subItemname {
    font-size: 1.4rem;
  }

  .itemName {
    font-size: 1.5rem;
  }
  .itemLink,
  .lineLink {
    font-size: 1.8rem;
    width: 300px;
  }
  .sortLink,
  .sortLink_1 {
    font-size: 1.6rem;
    width: 300px;
  }
  .question,
  .answer {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 390px) {
  /*メインビジュアルスライダー無し */
  .mainVisual,
  .heading {
    margin-top: -7rem;
  }
  .noSlide h1 {
    top: 21%;
    left: 8%;
  }
  .noSlide h1 img {
    margin-right: 10px;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 407px) {
  /*メインビジュアルスライダー無し */
  .mainVisual,
  .heading {
    margin-top: -10rem;
  }

  .noSlide h1 img {
    margin-right: 10px;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 412px) {
  /*メインビジュアルスライダー無し */
  .mainVisual,
  .heading {
    margin-top: -6rem;
  }

  .noSlide h1 img {
    margin-right: 10px;
    margin-bottom: 1rem;
  }
  .featureHeading {
    font-size: 2.4rem;
  }
  .featureHeading span {
    font-size: 1.5rem;
  }

  /* .itemLink,
  .lineLink {
    font-size: 1.6rem;
  } */
  .animation-slide .s-fade-txt {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 414px) {
  .slider-item {
    margin-top: -2%;
    margin-bottom: -3%;
  }
  .slick-dotted.slick-slider {
    margin-bottom: -40%;
  }
  .summary {
    margin-top: 12px;
  }

  .noSlide h1 {
    top: 25%;
    left: 10%;
  }
  .noSlide h1 img {
    margin-right: 10px;
    margin-bottom: 1rem;
  }
}
/* ==================
スマホ（428px）サイズ
=====================*/

@media screen and (min-width: 428px) {
  .slick-dotted.slick-slider {
    margin-bottom: -30%;
  }
  #header {
    margin-bottom: -40%;
  }
  #footer {
    padding-bottom: 100px;
  }

  .summary {
    margin-top: 0;
  }
  .slider-item01 h1 {
    top: 20%;
    left: 12%;
  }
  .slider-item {
    max-width: 428px;
    margin-bottom: -4%;
  }
  .slick-dots {
    bottom: 10%;
    margin: 0;
  }

  .mainVisual,
  .heading {
    margin-top: -16rem;
  }
  .noSlide h1 {
    top: 22%;
    left: 8%;
  }
  .noSlide h1 img {
    margin-right: 10px;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 465px) {
  .slider-item {
    max-width: 465px;
  }
  .slick-dots {
    bottom: 0;
  }
  #header {
    margin-bottom: -40%;
  }
}

@media screen and (min-width: 490px) {
  .slider-item01 h1 {
    top: 10%;
    left: 13%;
  }
  #header {
    margin-bottom: 24px;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
  .slider-item {
    margin-bottom: 0;
  }
  .slick-dots {
    bottom: 0;
  }
}
@media screen and (min-width: 540px) {
  .mainVisual,
  .heading {
    margin-top: 0;
  }
  .noSlide h1 {
    top: 8%;
    left: 11%;
  }
  .noSlide h1 img {
    margin-right: 10px;
    margin-bottom: 1rem;
  }

  .lineIcon {
    position: relative;
    top: 0;
    left: 32%;
  }
}

@media screen and (min-width: 560px) {
  .slider-item01 h1 {
    top: 10%;
    left: 16%;
  }
}

@media screen and (min-width: 600px) {
  .slider-item01 h1 {
    top: 10%;
    left: 21%;
  }
}
/* ==================
縦向き：スマホ(640px以上）サイズ
=====================*/
@media (orientation: landscape) and (min-width: 640px) {
  .noSlide h1 {
    top: 5%;
    left: 32%;
  }
}
@media (orientation: landscape) and (min-width: 653px) {
  .noSlide h1 {
    top: 5%;
    left: 32%;
    font-size: 1.5rem;
  }
}
@media (orientation: landscape) and (min-width: 667px) {
  .noSlide h1 {
    top: 5%;
    left: 33%;
  }
}

@media screen and (min-width: 710px) {
  .noSlide h1 {
    top: 8%;
    left: 28%;
    font-size: 2rem;
  }
}

@media screen and (min-width: 720px) {
  .slider-item01 h1 {
    top: 10%;
    left: 25%;
  }
}
/* ==================
縦向き：スマホ(736px以上）サイズ
=====================*/
@media (orientation: landscape) and (min-width: 736px) {
  .noSlide h1 {
    top: 10%;
    left: 30%;
    font-size: 2rem;
  }
}
@media (orientation: landscape) and (min-width: 740px) {
  .noSlide h1 {
    left: 26%;
    font-size: 2rem;
  }
}

/* ==================
タブレットサイズ
=====================*/
@media screen and (min-width: 768px) {
  #header,
  #containerPc,
  #footer {
    max-width: 400px;
    margin: 0 auto;
  }
  #header {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  .slider {
    max-width: 400px;
    position: relative;
    z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    width: 100vw;
    height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }
  .bgCircle {
    width: 375px;
    height: 375px;
  }
  .copyTitle span {
    font-size: 2.6rem;
  }
  .copyTitle {
    font-size: 1.6rem;
  }
  .copy h2 {
    font-size: 1.8rem;
  }
  .title1,
  .title2 {
    font-size: 2rem;
  }
  .openbtn1 {
    top: 1.1%;
    right: 25%;
  }
  #header.fixed {
    top: 0;
    left: 24%;
  }

  .mainVisual,
  .heading {
    margin-top: -22rem;
  }
  .navLinks {
    width: 50%;
  }
  ul.navLinks {
    align-items: center;
  }
  .itemName {
    font-size: 1.8rem;
  }

  .slider-item01.slider-item img {
    width: 40px;
    height: 40px;
  }
  .slider-item {
    min-width: 300px;
    margin-top: 2%;
  }

  .slider-item01 h1 {
    top: 30%;
    left: 10%;
  }
  .slick-dots {
    bottom: 20%;
  }

  .slick-dotted.slick-slider {
    margin-top: -45%;
  }

  .gallery li img {
    height: 55vw;
  }
  #anime6 {
    background-position: -145% 88%;
  }
  .flowComment {
    right: 10%;
  }
  #g-nav.panelactive {
    z-index: 999;
  }
  .floatBtn {
    bottom: -3%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .noSlide h1 {
    top: 28%;
    left: 8%;
  }
  .featureText,
  .lineText,
  .itemText,
  .aboutText {
    font-size: 1.5rem;
  }
  .lineText {
    font-size: 1.6rem;
  }

  .itemName {
    font-size: 1.8rem;
  }
  .sortLink,
  .sortLink_1 {
    font-size: 1.8rem;
  }
  .featureHeading span {
    font-size: 1.6rem;
  }
}
@media (orientation: landscape) and (min-width: 780px) {
  .mainVisual,
  .heading {
    margin-top: -2rem;
  }
  .noSlide h1 {
    top: 11%;
    left: -2%;
  }
}
@media (orientation: landscape) and (min-width: 784px) {
  .noSlide h1 {
    top: 8%;
  }
}
@media (orientation: landscape) and (min-width: 812px) {
  .noSlide h1 {
    top: 5%;
  }
}
@media screen and (min-width: 820px) {
  #header.fixed {
    top: 0;
    left: 25.6%;
  }

  .slick-dotted.slick-slider {
    margin-top: -75%;
  }
  .slick-dots {
    bottom: 25%;
  }
  .slider-item {
    margin-top: 2%;
  }
  .openbtn1 {
    top: 1.4%;
    right: 25%;
  }

  .mainVisual,
  .heading {
    margin-top: -30rem;
  }
  .noSlide h1 {
    top: 30%;
    left: 8%;
  }
  .noSlide h1 img {
    margin-right: 10px;
    margin-bottom: 1rem;
  }
}

@media (orientation: landscape) and (min-width: 844px) {
  .noSlide h1 {
    top: 8%;
  }
}
@media screen and (min-width: 853px) {
  .mainVisual,
  .heading {
    margin-top: -35rem;
  }
  .noSlide h1 {
    top: 30%;
    left: 8%;
  }
}
@media screen and (min-width: 868px) {
  .slick-dotted.slick-slider {
    margin-top: -10%;
  }
  .openbtn1 {
    top: 0;
    right: 30%;
  }

  #header.fixed {
    top: 0;
    left: 26.95%;
  }
  .slider-item01 h1 {
    top: 18%;
    left: 10%;
  }

  .slick-dots {
    bottom: 5%;
  }
}

@media (orientation: landscape) and (min-width: 896px) {
  .mainVisual,
  .heading {
    margin-top: 2rem;
  }
  .noSlide h1 {
    top: 2%;
    left: 1%;
  }
  .noSlide h1 img {
    margin-bottom: 1rem;
  }
  .openbtn1 {
    top: -1rem;
    right: 30%;
  }
}
@media screen and (min-width: 900px) {
  .noSlide h1 {
    top: 15%;
    left: 10%;
  }
}

@media screen and (min-width: 912px) {
  .openbtn1 {
    top: 1%;
    right: 30%;
  }
  #header.fixed {
    top: 0;
    left: 28.2%;
  }
  .slider-item01 h1 {
    top: 30%;
    left: 10%;
  }

  #anime6 {
    background-position: -145% 102%;
  }

  .mainVisual,
  .heading {
    margin-top: -40rem;
  }
  .noSlide h1 {
    top: 35%;
  }
  .noSlide h1 img {
    margin-bottom: 1rem;
  }
  .itemText {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 985px) {
  .openbtn1 {
    top: 0;
    right: 30%;
  }
  #header.fixed {
    top: 0;
    left: 29.5%;
  }
}

@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: landscape) {
  .mainVisual,
  .heading {
    margin-top: 0;
  }
  .noSlide h1 {
    top: 10%;
  }
  .noSlide h1 img {
    margin-bottom: 1rem;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .noSlide h1 {
    left: 18%;
    font-size: 1.6rem;
  }
}
/* ==================
  PCサイズ
  =====================*/
@media screen and (min-width: 1024px) {
  #header,
  #containerPc,
  #footer {
    max-width: 600px;
    margin: 0 auto;
  }
  .slider {
    max-width: 600px;
  }

  .slider-item01.slider-item img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  .slider-item01 h1 {
    top: 22%;
    left: 10%;
  }
  .slick-dotted.slick-slider {
    margin-top: -50%;
  }
  .slider-item {
    margin-top: 2%;
  }
  .slick-dots {
    bottom: 18%;
  }

  /*　背景画像設定　*/

  .slider-item01,
  .slider-item02,
  .slider-item03,
  .slider-item04,
  .slider-item05 {
    background-position: 50%;
    background-size: contain;
    position: relative;
  }
  header.brandName {
    height: 100px;
    width: 170px;
  }
  header nav ul {
    margin-left: 20px;
  }

  .openbtn1 {
    top: 1.5%;
    right: 23%;
  }
  #g-nav {
    height: 100vh;
  }
  #header.fixed {
    top: 0;
    left: 20.7%;
  }

  /* HBでのアニメーションのために消していたものを表示させるために上書きの記述 */
  .navLinks li {
    opacity: 1;
    margin-right: 20px;
  }

  /* ハンバーガーメニュー の三本線pc版は消す */
  div.burger {
    display: none;
    cursor: pointer;
  }
  .navItem {
    display: flex;
    justify-content: end;
  }
  .navLinks li a {
    color: var(--text-color);
  }
  .navSp {
    display: none;
  }

  .summary li,
  .summary li:nth-child(3) span {
    color: #fff;
    font-size: 2rem;
    white-space: nowrap;
    line-height: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    flex: 1;
  }
  .summary li:nth-child(3) {
    font-size: 1.7rem;
  }
  #anime6 {
    background-position: -145% 75%;
  }
  /* 商品スライダー画像サイズ */
  .gallery li img {
    height: 50vw;
  }
  /* 商品スライダーの選択ボタンの画像サイズ */
  .choice-btn li img {
    height: 10vw;
  }
  #floatBtn {
    bottom: -4%;
  }
  #floatBtn a img {
    max-width: 600px;
  }
  .qaDetail {
    margin-bottom: 20px;
  }

  .mainVisual,
  .heading {
    margin-top: -25rem;
  }
  .noSlide h1 {
    top: 25%;
    left: 10%;
  }
  .noSlide h1 img {
    margin-bottom: 1rem;
  }

  .flowComment {
    width: 120px;
  }

  .itemLink,
  .lineLink {
    font-size: 2rem;
  }

  .sortLink,
  .sortLink_1 {
    font-size: 2rem;
  }
  .sortLink_1 {
    padding: 11px 5px;
  }
  .pantsIcon,
  .shirtIcon {
    top: -29%;
  }
  .itemIcon {
    top: -23%;
  }

  .copyRight {
    font-size: 1.2rem;
  }
}
@media (orientation: landscape) and (min-width: 1024px) {
  .mainVisual,
  .heading {
    margin-top: 2rem;
  }
  .noSlide h1 {
    top: 20%;
    left: 18%;
  }
  .noSlide h1 img {
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 1230px) {
  #header.fixed {
    top: 0;
    left: 25.5%;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) {
  .mainVisual,
  .heading {
    margin-top: -5rem;
  }
  .noSlide h1 {
    top: 25%;
    left: 15%;
  }
  .noSlide h1 img {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1280px) {
  #header.fixed {
    top: 0;
    left: 26.6%;
  }
  .openbtn1 {
    top: 0.5%;
    right: 28%;
  }

  .slider-item01 h1 {
    top: 12%;
    left: 12%;
  }
  .slick-dots {
    bottom: 5%;
  }
  .slider-item {
    margin-top: 3%;
  }
  .slick-dotted.slick-slider {
    margin-top: 0;
    margin-bottom: 0;
  }
  .slider-item01.slider-item img {
    width: 55px;
    height: 55px;
  }

  .slick-prev,
  .slick-next {
    top: 50%;
  }
  #floatBtn {
    bottom: -7%;
  }

  .mainVisual,
  .heading {
    margin-top: 0;
  }
  .noSlide h1 {
    top: 10%;
    left: 15%;
  }
  .noSlide h1 img {
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 1366px) {
  #header.fixed {
    top: 0;
    left: 29%;
  }

  .slick-dotted.slick-slider {
    margin-top: 0;
    margin-bottom: 18%;
  }
  #floatBtn {
    bottom: -8%;
  }
  .mainVisual,
  .heading {
    margin-top: 0;
  }
  .noSlide h1 {
    top: 7%;
    left: 12%;
  }
  .noSlide h1 img {
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 1440px) {
  #header.fixed {
    top: 0;
    left: 29.15%;
  }
  .openbtn1 {
    top: 1%;
    right: 30%;
  }
  .slider-item01 h1 {
    top: 14%;
    left: 12%;
  }
  #floatBtn {
    bottom: -6%;
  }
  .featureHeading {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1920px) {
  #header.fixed {
    top: 0;
    left: 34.28%;
  }
  .slider-item {
    margin-top: 1.5%;
  }
  .openbtn1 {
    top: 1%;
    right: 35%;
  }
  .slider-item01 h1 {
    top: 18%;
    left: 12%;
  }
  .slick-dotted.slick-slider {
    margin-top: -10%;
    margin-bottom: -15%;
  }
  .slick-dots {
    bottom: 8%;
  }

  .gallery li img {
    height: 35vw;
  }

  .mainVisual,
  .heading {
    margin-top: -6rem;
  }
  .noSlide h1 {
    font-size: 3rem;
    top: 20%;
  }
  .noSlide h1 img {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1960px) {
  #header.fixed {
    top: 0;
    left: 34.7%;
  }
}
@media screen and (min-width: 2048px) {
  #header.fixed {
    top: 0;
    left: 35.35%;
  }
  .slick-dotted.slick-slider {
    margin-top: -18%;
    margin-bottom: -10%;
  }
  .openbtn1 {
    top: 1.2%;
    right: 36%;
  }
  .slider-item01 h1 {
    top: 20%;
    left: 12%;
  }

  .itemIcon {
    position: relative;
    top: 0;
    left: 20%;
  }
  .lineIcon {
    position: relative;
    top: 0;
    left: 30%;
  }

  .setIcon {
    top: 0;
    left: 15%;
  }
  .pantsIcon,
  .shirtIcon {
    top: -15%;
    left: 20%;
  }
  .itemLink,
  .lineLink,
  .sortLink,
  .sortLink_1 {
    width: 600px;
    height: 100px;
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 2304px) {
  #header,
  #containerPc,
  #footer {
    max-width: 1500px;
    margin: 0 auto;
  }

  .slick-dotted.slick-slider {
    margin-top: 0;
    margin-bottom: 0;
  }
  #header.fixed {
    top: 0;
    left: 17.48%;
  }
  .openbtn1 {
    top: 1.7%;
    right: 18%;
  }
  /* スライダーありの場合表示↓ */
  /* .heading {
    margin-top: 0;
  } */
  /* .slick-prev,
  .slick-next {
    top: 50%;
  }
  .slider {
    max-width: 1500px;
  }
  .slider-item {
    margin-top: 0;
  }
  .slider-item01 h1 {
    font-size: 3rem;
    top: 14%;
    left: 25%;
  } */
  /* 商品スライダー画像サイズ */
  .gallery li img {
    height: 60vw;
  }
  #floatBtn a img {
    max-width: 2000px;
  }
  .summary {
    height: 150px;
  }
  .summary li:nth-child(3) {
    font-size: 2rem;
  }
  header nav ul li a {
    font-size: 2.5rem;
  }
  .brandName {
    font-size: 3rem;
  }
  .openbtn1 {
    width: 80px;
    height: 80px;
  }
  .summary li,
  .summary li:nth-child(3) span {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .copy h2 {
    font-size: 2rem;
    padding-top: 24px;
  }

  .bgCircle {
    width: 420px;
    height: 420px;
  }
  .copyTitle span {
    font-size: 3rem;
  }
  .copyTitle {
    font-size: 2rem;
  }

  .title1,
  .title2 {
    font-size: 3rem;
    margin: 0 auto 40px;
  }
  .featureHeading {
    font-size: 3rem;
  }
  .featureHeading span {
    font-size: 2rem;
  }
  .featureText,
  .aboutText {
    font-size: 2.4rem;
  }
  .itemName {
    font-size: 2.5rem;
  }

  .itemText {
    font-size: 2.4rem;
  }
  .slick-slide .s-fade-txt {
    font-size: 1.8rem;
  }
  .animation-slide .s-scale-img {
    max-width: 400px;
  }
  .animation-slide .s-fade-txt {
    font-size: 1.8rem;
  }

  .flow {
    width: 400px;
  }
  .flowComment {
    right: 35%;
    width: 180px;
  }
  .question,
  .answer {
    font-size: 2.4rem;
  }

  .footerDetail p,
  .footerList {
    font-size: 1.8rem;
  }
  #floatBtn {
    bottom: -5%;
  }

  .mainVisual,
  .heading {
    margin-top: 0;
  }
  .noSlide h1 {
    font-size: 4rem;
    top: 10%;
    left: 22%;
    margin: 0;
    padding: 0;
  }
  .noSlide h1 img {
    width: 88px;
    height: 88px;
    margin-bottom: 1rem;
  }
  .logo_br {
    margin-top: 9rem;
  }
}
@media screen and (min-width: 2560px) {
  #header.fixed {
    top: 0;
    left: 20.7%;
  }
  .openbtn1 {
    top: 1.8%;
    right: 21%;
  }
}
