@charset "UTF-8";
body {
  font-family: "Yu Gothic", YuGothic, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo,
    メイリオ, sans-serif;
  color: #554b50;
  background-color: #ffffff;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.section-inner {
  width: 100%;
  text-align: center;
}

.gold {
  margin-bottom: 55px;
  width: 350px;
}

/** -----------------------------------
    テキスト
-------------------------------------**/

h2.large {
  font-family: "Dancing Script", cursive;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

h2.small,
h2.smallsp,
h2.small-kaisuu {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

h2.big {
  font-family: "Imperial Script", cursive;
  text-align: center;
  font-size: 80px;
  letter-spacing: 0.03em;
  margin-right: 30px;
  color: #c8cbe3;
}

p.large {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

p.medium {
  font-family: "Rochester", cursive;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-align: left;
  color: #c1ac67;
}

/** -----------------------------------
    ヘッダー
-------------------------------------**/
#header {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
  position: fixed;
  top: 0;
  z-index: 4;
  background-color: #ffffff;
}
h1.header-logo a img {
  height: 70px;
}
.gnav-pc-wrap {
  display: flex;
  align-items: center;
}
.gnav-pc {
  margin-left: auto;
}
.gnav-pc-wrap img {
  width: 100px;
  margin-left: 30px;
}
.gnav-pc-wrap img:hover {
  top: -3px;
  box-shadow: 0 2px 3px rgb(0 0 0 / 30%);
}
.gnav-pc li {
  display: inline-flex;
  margin-right: 32px;
}
.gnav-pc-wrap a {
  text-decoration: none;
  transition: 0.5s;
  display: flex;
}
.gnav-pc li a {
  font-family: "Dancing Script", cursive;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #554b50;
}
#header a.qaqa{
  font-size: 24px;
}


#header .gnav-pc li a:hover {
  color: #9297c8;
}

.hamburger-menu {
  display: none;
}

/** -----------------------------------
    メインビジュアルー
-------------------------------------**/

#mainvisual {
  width: 100%;
  background-size: 100vh;
  height: calc(100vh - 70px);
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 70px;
  position: relative;
}

#mainvisual .bg {
  width: 100%;
  max-height: calc(100vh - 70px);
  position: relative;
  top: 50vh;
  z-index: -1;
}
#mainvisual .main1 {
  overflow: hidden;
  width: 78%;
  height: calc(100vh - 150px);
  position: absolute;
  left: 0;
  top: 80px;
}

#mainvisual .main1 img {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

#mainvisual .copy-wrap {
  position: absolute;
  top: 50px;
  right: 100px;
  color: #9297c8;
  text-align: end;
}

#mainvisual .copy-wrap img {
  display: block;
}
#mainvisual .copy-wrap a {
  text-decoration: none;
  transition: 0.7s;
}
#mainvisual .copy-wrap .maincopy {
  margin-top: 20px;
  color: #717073;
}
#mainvisual .subcopy {
  font-family: "Marck Script", cursive;
  font-size: 60px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 3px;
  line-height: 1;
}

#mainvisual h2.small {
  font-size: 80px;
  text-align: end;
  line-height: 1.2;
  /* color: #273b52; */
}
p.maincopy {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

#mainvisual .badge1 {
  width: 28%;
  position: absolute;
  top: 50px;
  left: 60px;
}
#mainvisual .badge2 {
  width: 28%;
  position: absolute;
  bottom: 20px;
  right: 60px;
}
#mainvisual .badge2-sp {
  position: absolute;
  display: none;
}

/* スクロール */
#mainvisual .scrolldown2 {
  position: absolute;
  right: 10%;
  bottom: 40px;
}
.scrolldown2 span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #554b50;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9297c8;
  animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
  -webkit-animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 170px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 170px;
  background: #9297c8;
}

/** -----------------------------------
    キャンペーン
-------------------------------------**/

#campaign {
  padding: 130px 0 0 0;
}

.multiple-items {
  /*幅の最大値を600pxに*/
  /*幅をもたせて中央寄せにする*/
  /* max-width: 600px; */
  margin: 0 auto;
  width: 100vw;
}

.slick-slide img{
  margin: 0 1%;
}

.slick-dots {
  display: block;
  bottom: -60px;

}

/** -----------------------------------
    コンセプト
-------------------------------------**/

#concept {
  padding: 130px 0 0 0;
}
#concept .section-inner {
  position: relative;
  padding: 0 10%;
}
.concept-all {
  display: flex;
  flex-wrap: wrap;
}

.concept {
  width: 42%;
  margin: 0 4% 4% 4%;
}

.concept-up {
  display: flex;
  align-items: center;
}
.concept-down {
  display: flex;
  align-items: center;
}
.concept-down img {
  height: 100px;
  margin-right: 20px;
}
#concept h2.small {
  text-align: left;
  font-size: 22px;
}
h2.smallsp {
  display: none;
}
.concept p {
  text-align: left;
}
.cencept-number{
  width: 100px;
}
.salon-pic{
  margin: 50px auto 200px auto;
  display: flex;
  justify-content: space-between;
}
.salon-pic1 ,.salon-pic2 ,.salon-pic3{
  width: 30%;
  position: relative;
}
h2.salon{
  position: absolute;
  top: 4%;
  left: 4%;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;}

/** -----------------------------------
    CTAー
-------------------------------------**/
#cta {
  padding: 80px 0 80px 0;
  background-image: url(../images/cta.png);
  background-size: cover;
  text-align: center;
}

#cta h2.small {
  font-size: 30px;
  line-height: 1.8;
  text-shadow: 0 0 20px #fffef7, 0 0 20px #fffef7;
}
#cta img {
  width: 200px;
  margin-top: 50px;
}
#cta h2.smallsp {
  display: none;
}

/** -----------------------------------
    priceー
-------------------------------------**/

#price {
  padding: 130px 0 0 0;
}

#price .section-inner {
  position: relative;
  padding: 0 15%;
}

#price h2.small {
  background-image: url(../images/hukidashi.png);
  background-position: bottom;
}

.price-button {
  position: relative;
  width: 50%;
  text-align: center;
}


.price-button a {
  font-size: 18px; /*文字サイズ*/
  color: white;
  text-decoration: none;
  margin: 0;
  padding: 7px;
  display: block;
  background-image: url(../images/price-circle.png);
  background-position: center;
  padding: 40px 7px;
}

.price-button:hover {
  filter: drop-shadow(0 0px 5px #9297c8);
}

.price-page {
  display: flex;
  margin: 50px auto 0 auto;
  width: 600px;
  }
/** -----------------------------------
    voiceー
-------------------------------------**/

#voice {
  padding: 130px 0 0 0;
  margin-top: 100px;
  background-image: url(../images/voice-background.png);
  background-size: 100% 100%;
}

.voice-all {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
  padding: 0 8%;
  justify-content: space-between;
  padding-bottom: 150px;
}

.voice1 {
  width: 22%;
  margin: 10px;
  padding: 11px 11px 20px;
  background: #fff;
}
.voice-up1,
.voice-up2,
.voice-up3,
.voice-up4,
.voice-up5,
.voice-up6,
.voice-up7,
.voice-up8 {
  width: 100%;
  height: 165px;
  background-position: center;
  background-size: contain;
}
.voice-up1{
  background-image: url(../images/voice1.png);
}
.voice-up2{
  background-image: url(../images/voice2.png);
}
.voice-up3{
  background-image: url(../images/voice3.png);
}
.voice-up4{
  background-image: url(../images/voice4.png);
}
.voice-up5{
  background-image: url(../images/voice5.png);
}
.voice-up6{
  background-image: url(../images/voice6.png);
}
.voice-up7{
  background-image: url(../images/voice7.png);
}
.voice-up8 {
  background-image: url(../images/voice8.png);
}

.voice-down h2.small {
  font-size: 16px;
  text-align: left;
}
.readmore {
  display: flex;
  justify-content: end;
  align-items: center;
}

p.sankaku {
  font-size: 10px;
  pointer-events: auto;
}

.readmore:hover {
  color: #9297c8;
}

/*ポップアップここから*/
.popup_wrap input {
  display: none;
}

.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.popup_content {
  position: relative;
  align-self: center;
  width: 70%;
  max-width: 600px;
  padding: 30px 30px 15px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
}
.content-img {
  display: flex;
}
.content-img img {
  width: 45%;
  margin-right: 10px;
}
.content-img h2 {
  width: 50%;
  margin: auto auto auto 0;
  text-align: left;
}
.close_btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
}

.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
/* .voice1 :hover{
  top: -3px;
      box-shadow: 0 2px 3px rgb(0 0 0 / 30%);} */
/** -----------------------------------
    qaー
-------------------------------------**/

#qa {
  padding: 130px 0 0 0;
}

#qa .section-inner {
  position: relative;
  padding: 0 15%;
}

/** -----------------------------------
    accessー
-------------------------------------**/

#access {
  padding: 130px 0 100px 0;
}

.access {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  width: 80%;
  max-width: 700px;
}

.item1 {
  width: 50%;
}

.item2 {
  width: 50%;
}
.address,
.address1 {
  display: flex;
  margin: 30px 0;
}
.address img,
.address1 img {
  width: 23px;
  object-fit: contain;
  margin-right: 30px;
}

.address p,
.address1 p {
  text-align: left;
}
.address1 p {
  margin-right: 40px;
}
.gmapsp {
  display: none;
}
a.large{
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: left;
  color: #554b50;
  text-decoration: none;
}

/** -----------------------------------
    footerー
-------------------------------------**/

.footer {
  width: 100%;
  position: relative;
  background-color: #c8cbe3;
  text-align: center;
  padding: 40px 0;
}

.footer-inner {
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.footer h2 {
  font-size: 30px;
}

.icon {
  display: flex;
  justify-content: space-between;
  width: 200px;
  margin: 0 auto;
  align-items: baseline;
}

.insta img {
  width: 40px;
}
.insta img {
  width: 100%;
}

.footer-ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 8px 0;
  margin: 0 auto;
  width: 350px;
}

.footer-ul-li a {
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
  color: #2d2a26;
}
.footer-ul li a:hover {
  color: #fff;
}

.footer-copyright {
  color: #2d2a26;
  text-align: center;
  font-size: 12px;
  margin-top: 50px;
}

/** -------- スマホ -------- **/

@media screen and (max-width: 820px) {
  /** -----------------------------------
      テキスト
  -------------------------------------**/

  h2.large {
    font-size: 30px;
  }
  h2.small,
  h2.smallsp,
  h2.small-kaisuu {
    font-size: 16px;
  }
  h2.big {
    font-size: 50px;
    width: 60px;
  }

  /** -----------------------------------
    全体ー
-------------------------------------**/

  #concept .section-inner {
    padding: 0 24px;
    max-width: 550px;
    margin: 0 auto;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .gold {
    margin-bottom: 30px;
    width: 70%;
  }
  /** -----------------------------------
      ヘッダー
  -------------------------------------**/

  #header {
    padding: 0;
  }
  #header a.qaqa{
    font-size: 18px;
  }
  h1.header-logo a img {
    margin: 8px 0 0 20px;
    height: 50px;
  }
  .hamburger-menu {
    display: flex;
  }
  .gnav-pc-wrap {
    display: none;
  }
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }

  .menu-btn {
    position: fixed;
    top: 4px;
    right: 4px;
    display: flex;
    height: 50px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #fff;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #333333;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }

  /* バツが三本線 */
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  /* end */

  #menu-btn-check {
    display: none;
  }

  .menu-content {
    width: 50%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 100%;
    z-index: 80;
    background-color: #fff;
    border: 3px solid #9297c8;
  }
  .menu-content ul {
    padding: 50px 30px 0;
  }
  .menu-content ul li {
    border-bottom: solid 1px #2d2a26;
    list-style: none;
  }
  .menu-content ul li a {
    font-family: "Dancing Script", cursive;
    display: block;
    width: 100%;
    font-size: 25px;
    box-sizing: border-box;
    color: #554b50;
    text-decoration: none;
    padding: 20px 0 20px 0;
    position: relative;
    text-align: center;
  }
  .menu-content img {
    margin-top: 30px;
  }

  #menu-btn-check:checked ~ .menu-content {
    right: 0; /*メニューを画面内へ*/
  }

  /** -----------------------------------
    メインビジュアル
-------------------------------------**/
#mainvisual .main1 {
  width: 100%;
  height: 55vh;
  top: 0;
}
#mainvisual .main1 img {
  object-fit: cover;
}
#mainvisual .bg {
  height: calc(100vh - 370px);
  top: 300px;
}
#mainvisual .copy-wrap {
  left: 0;
  top: auto;
  bottom: 50px;
  margin: 10px 0 0 30px;
  mix-blend-mode: normal;
  right: auto;
  text-align: start;
}
#mainvisual h2.small {
  font-size: 40px;
  color: #9297c8;
  text-align: start;
}
#mainvisual .maincopy {
  font-size: 20px;
}
#mainvisual .subcopy {
  font-size: 30px;
  color: #9297c8;
  line-height: 1.5;
}
#mainvisual .scrolldown2 {
  display: none;
}
  /** -----------------------------------
  campaign
-------------------------------------**/
  #campaign {
    padding: 70px 0 0 0;
  }
  .slick-slide img {
    margin: 0 2%;
    width: 95%;
 }

  /** -----------------------------------
  concept
-------------------------------------**/

  #concept {
    padding: 70px 0 0 0;
  }
  #concept h2.small {
    display: none;
  }
  h2.smallsp {
    display: block;
  }
  #concept h2.smallsp {
    text-align: left;
  }
  .concept-all {
    margin: 0;
    display: block;
  }
  .concept {
    width: 100%;
    margin: 0 0 50px 0;
  }
  .concept-down img {
    display: none;
  }
  .concept-up {
    margin-bottom: 10px;
  }
  .salon-pic {
    display: block;
    margin: 10px auto 100px auto;
    width: 100%;
  }
  .salon-pic1, .salon-pic2, .salon-pic3{
    margin: 0 auto 10px auto;
    width: 100%;
  }
  /** -----------------------------------
  price
-------------------------------------**/
  #cta {
    padding: 20px 24px 20px 24px;
  }
  #cta h2.smallsp {
    display: block;
    font-size: 16px;
    line-height: 1.8;
    text-shadow: 0 0 20px #c1ac67, 0 0 20px #c1ac67;
  }
  #cta h2.small {
    display: none;
  }
  #cta img {
    width: 120px;
    margin-top: 20px;
  }

  /** -----------------------------------
  price
-------------------------------------**/
  #price {
    padding: 70px 0 0 0;
  }
  #price .section-inner {
    padding: 0 24px;
  }

  .price-page {
    margin-top: 40px;
    justify-content: space-between;
    width: 330px;
  }

  .price-button {
    width: 45%;
    margin: 0 10px;
  }
  .price-button a {
    padding: 0;
  }
  .price-button a {
    font-size: 14px;
    background-size: contain;
    padding: 10px 0;
  }
  /** -----------------------------------
  voice
-------------------------------------**/
#voice {
    padding: 70px 0 0 0;
    margin-top: 0;
  }
#voice .section-inner {
    padding: 0 24px;
    max-width: 550px;
    margin: 0 auto;
  }
.voice-all{
  padding: 0;
}
.voice1 {
  width: 43%;
  padding: 7px 7px 10px;
}
.voice-up1,
.voice-up2,
.voice-up3,
.voice-up4,
.voice-up5,
.voice-up6,
.voice-up7,
.voice-up8 {
  width: 100%;
  height: 120px;
}
.popup_content {
  width: 90%;
  padding: 20px 10px 10px;
}
.content-img {
  display: block;
}
.content-img img {
  width: 60%;
  margin-right: 0;
  align-items: flex-start;
}
.content-img h2 {
    width: 100%;
}

  /** -----------------------------------
  q&A
-------------------------------------**/
  #qa {
    padding: 70px 0 0 0;
  }
  #qa .section-inner {
    padding: 0 24px;
  }
}
  @media screen and (max-width: 400px) {
  /** -----------------------------------
  access
-------------------------------------**/
  #access {
    padding: 70px 0 50px 0;
  }
  #access .section-inner {
    padding: 0 24px;
  }
  .access {
    display: block;
    width: 100%;
  }
  .item1 {
    width: 100%;
  }
  .gmap {
    display: none;
  }
  .gmapsp {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  /** -----------------------------------
  footer
-------------------------------------**/
  .footer-ul {
    display: block;
  }
  .footer {
    padding: 20px 0;
  }
}

/** -----------------------------------
  レディース。メンズメニュー
-------------------------------------**/
#ladies,
#mens {
  padding: 130px 0 100px 0;
}
#ladies .section-inner,
#mens .section-inner {
  margin: 0 auto;
}
#ladies h2.smallsp,
#mens h2.smallsp {
  display: none;
}
.menu-page {
  display: flex;
  justify-content: space-between;
  margin: 55px auto 0 auto;
  width: 641px;
}
.menu-arrow1 {
  position: absolute;
  top: 65%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.menu-arrow2 {
  position: absolute;
  top: 50%;
  right: 30%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.menu-button1,
.menu-button2,
.menu-link {
  position: relative;
}
.menu-button1 a,
.menu-button2 a {
  position: absolute;
  top: 35%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  color: #554b50;
  text-decoration: none;
}
.menu-button2 a {
  position: absolute;
  top: 45%;
  left: 45%;
}

#ladies .trade #mens .trade {
  padding: 130px 0 40px 0;
}

h2.detail1,
h2.detail2,
h2.detail3 {
  margin: 0 auto;
  text-align: left;
  font-size: 15px;
  font-family: "Shippori Mincho", serif;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
h2.detail1 {
  width: 382px;
}
h2.detail2 {
  width: 415px;
}
h2.detail3 {
  width: 155px;
}

table,
td,
th {
  border: 3px solid #ffffff;
  border-collapse: collapse;
  width: 600px;
  margin: 40px auto 0 auto;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.1;
}
td,
th {
  padding: 3px;
  width: 30px;
  height: 25px;
}
th,
td {
  background: #c8cbe3;
}
tr {
  height: 50px;
}
.menu-pagesp {
  display: none;
}
.tategaki{
  display: none;
}

/** -------- スマホ -------- **/

@media screen and (max-width: 600px) {
  #ladies,
  #mens {
    padding: 70px 0 30px 0;
  }
  #ladies .section-inner,
  #mens .section-inner {
    width: 100%;
    padding: 0 24px;
  }
  #ladies .small,
  #mens .small {
    display: none;
  }
  #ladies h2.smallsp,
  #mens h2.smallsp {
    display: block;
  }
  .menu-page {
    display: none;
  }
  .menu-pagesp {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  .menu-button1 {
    width: 45%;
    height: 60px;
    background-image: url(../images/ladies-button1.png);
    background-size: cover;
    padding: 7px;
  }
  #mens .menu-button1 {
    background-image: url(../images/mens-button1.png);
  }
  .menu-button1 a,
  .menu-button2 a {
    position: initial;
    font-size: 16px;
  }
  .menu-arrow1 {
    top: 75%;
    width: 10%;
  }
  .menu-button2 {
    width: 100%;
    height: 40px;
    background-image: url(../images/mens-button2.png);
    background-size: cover;
    padding: 7px;
  }
  #mens .menu-button2 {
    background-image: url(../images/ladies-button2.png);
  }
  .menu-arrow2 {
    right: 5%;
  }
  #ladies .trade,
  #mens .trade {
    padding: 70px 0 10px 0;
    width: 100%;
  }

  table {
    font-size: 15px;
    width: 100%;
    /* overflow: scroll; */
  }
  th {
    width: 10%;
  }
  td,th {
    font-size: 14px;
  }

  .kaisuu-price {
    width: 23%;
  }

  h2.detail1,
  h2.detail2,
  h2.detail3 {
    width: 100%;
  }
  .yokogaki{
    display: none;
  }
  .tategaki{
    display: revert;
  }
}
/** -----------------------------------
  特定取引
-------------------------------------**/
#trade {
  padding: 130px 0 100px 0;
}
#trade h2.large {
  font-size: 30px;
  font-family: shippori-mincho, sans-serif;
}
#trade h2.small {
  margin-right: 100px;
  width: 20%;
  text-align: left;
}
.small-right {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
}

.trade {
  display: flex;
  width: 600px;
  border-bottom: 2px solid #9297c8;
  padding: 80px 25px 25px 25px;
  margin: 0 auto;
}
.trade1 {
  margin-right: 50px;
}
/** -------- スマホ -------- **/

@media screen and (max-width: 820px) {
  #trade {
    padding: 70px 0 50px 0;
  }
  #trade .section-inner {
    width: 100%;
    padding: 0 24px;
  }
  #trade h2.large {
    font-size: 20px;
  }
  #trade h2.small {
    width: 24%;
    margin-right: 10px;
  }
  #trade .trade {
    margin: 30px auto 20px auto;
    width: 100%;
    padding: 10px 5px;
  }
}

/** -----------------------------------
  プライバシーポリシー
-------------------------------------**/

#policy {
  padding: 130px 0 100px 0;
}
#policy h2.large {
  font-size: 30px;
  font-family: shippori-mincho, sans-serif;
}
#policy .trade {
  display: flex;
  width: 600px;
  border-bottom: 2px solid #9297c8;
  padding: 25px;
  margin: 50px auto 50px auto;
}
#policy h2.small {
  width: 600px;
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
}
h2.center {
  width: 600px;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
/** -------- スマホ -------- **/

@media screen and (max-width: 820px) {
  #policy {
    padding: 70px 0 50px 0;
  }
  #policy .section-inner {
    width: 100%;
    padding: 0 24px;
  }
  #policy h2.large {
    font-size: 20px;
  }
  #policy h2.small,
  #policy .trade {
    width: 100%;
  }
  #policy .trade {
    margin: 30px auto 20px auto;
  }
}

/** -----------------------------------
  キャンペーン
-------------------------------------**/

#campaign-page {
  padding: 130px 0 100px 0;
}
#campaign-page h2.large {
  font-size: 30px;
  font-family: shippori-mincho, sans-serif;
}
#campaign-page .trade {
  display: flex;
  width: 600px;
  border-bottom: 2px solid #9297c8;
  padding: 25px;
  margin: 50px auto 50px auto;
}
#campaign-page h2.small {
  width: 600px;
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
}
#campaign-page .campaign-line{
  margin: 90px 0 0 0;
}
#campaign-page h2.line{
  color: #9297c8;
  font-size: 30px;
  line-height: 1.8;
}
#campaign-page h2.line-sp{
  display:none;
}
/** -------- スマホ -------- **/

@media screen and (max-width: 820px) {
  #campaign-page  {
    padding: 70px 0 50px 0;
  }
  #campaign-page  .section-inner {
    width: 100%;
    padding: 0 24px;
  }
  #campaign-page  h2.large {
    font-size: 20px;
  }
  #campaign-page  h2.small,
  #campaign-page  .trade {
    width: 100%;
  }
  #campaign-page  .trade {
    margin: 30px auto 20px auto;
  }
  #campaign-page h2.line{
    display:none;
  }
  #campaign-page h2.line-sp{
    display:block;
  }
  #campaign-page .campaign-line{
    margin: 50px 0 0 0;
  }
}

/* slick */
.slick-prev,
.slick-next {
  z-index: 10;
}
.slick-next {
  right: 46px;
}
.slick-prev {
  left: 46px;
}

.slick-prev:before,
.slick-next:before {
  color: #9297c8;
}
