@charset "utf-8";
/* CSS Document */

/*------------------------共通------------------------*/
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Baloo 2', cursive;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.6;
  transition: 0.3s;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  padding: 0;
  background-color: transparent;
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.none {
  display: none;
}

/*--------------ローディング画面--------------*/
#splash {
	position: fixed;
  top: 0;
  left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #F9F8F4;
	text-align: center;
	color: #fff;
}
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo svg{
  width:300px;
}
/*SVGアニメーション前の指定*/
#mask path {
  fill-opacity: 0;
  transition: fill-opacity .5s;
  fill: none;
  stroke: #333;
}
/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path{
  fill-opacity: 1;
  stroke: none;
}
#mask.done .cls-1 {
  fill:#4f6228;
}
#mask.done .cls-2 {
  fill:#333;
}

/*--------------ヘッダー--------------*/
#header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding-left: 24px;
  background-color: transparent;
  transition: background-color 0.5s;
}
.header__logo-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.header__logo-link {
  display: block;
  width: 120px;
  padding-top: 6px;
}
/*スクロールすると、ヘッダーの背景色が変わる*/
#header.change-color {
  background-color: rgba(255, 255, 255, 0.6);
}

/*ハンバーガーボタン*/
#hamburger-button {
  height: 50px;
  width: 50px;
  background-color: #4F6228;
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
  border: none;
}
#hamburger-button span{
  display: inline-block;
  transition: all .5s;
  position: absolute;
  left: 13px;
  width: 25px;
  height: 2px;
  border-radius: 5px;
  background: #FFF;
}
#hamburger-button span:nth-of-type(1) {
  top:10px; 
}
#hamburger-button span:nth-of-type(2) {
  top:18.5px;
}
#hamburger-button span:nth-of-type(3) {
  top:27px;
}
#hamburger-button span:nth-of-type(3)::after {
  content: "MENU";
  position: absolute;
  left: -4px;
  top: 3px;
  font-size: 1.2rem;
  line-height: 1.5em;
  color: #FFF;
  font-family: 'Baloo 2', cursive, 'Zen Maru Gothic', sans-serif;
  font-weight: 400;
}
/*ハンバーガーボタン押下時のアニメーション設定*/
#hamburger-button.active span:nth-of-type(1) {
  top: 19px;
  left: 13px;
  transform: rotate(-135deg);
}
#hamburger-button.active span:nth-of-type(2) {
  opacity: 0;
}

#hamburger-button.active span:nth-of-type(3){
  top: 19px;
  left: 13px;
  transform: rotate(135deg);
}
#hamburger-button.active span:nth-of-type(3)::after {
  content: "CLOSE";
  transform: translateY(0)rotate(-135deg);
  left: 10px;
  top: -22px;
}
@media(min-width: 1130px) {
  #header {
    height: 80px;
  }
  .header__logo-wrapper {
    width: 80vw;
    height: 100%;
    margin: 0 auto;
  }
  .header__logo-link {
    width: 202px;
    padding-top: 10px;
  }
  /*ハンバーガーメニュー*/
  #hamburger-button {
    height: 80px;
    width: 80px;
  }
  #hamburger-button span{
    left: 22px;
    width: 36px;
  }
  #hamburger-button span:nth-of-type(1) {
    top:20px; 
  }
  #hamburger-button span:nth-of-type(2) {
    top:32px;
  }
  #hamburger-button span:nth-of-type(3) {
    top:44px;
  }
  #hamburger-button span:nth-of-type(3)::after {
    left: 0px;
    top: 5px;
    font-size: 1.4rem;
  }
  #hamburger-button.active span:nth-of-type(1),
  #hamburger-button.active span:nth-of-type(3) {
    top: 30px;
    left: 23px;
  }
  #hamburger-button.active span:nth-of-type(3)::after {
    left: 18px;
    top: -29px;
  }
}

/*--------------ナビゲーション--------------*/
#navigation {
  width: 100vw;
  height: 100vh;
  background-color: #F9F8F4;
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
}
.navigation__logo {
  display: block;
  width: 168px;
  height: 52px;
  margin: 60px auto 70px;
}
.navigation__logo img {
  width: 100%;
}
.navigation__menu {
  text-align: left;
  width: 165px;
  margin: 0 auto;
}
.navigation__menu li {
  padding: 10px 0;
  margin-bottom: 10px;
}
.navigation__menu li a {
  color: #333;
  font-size: 1.8rem;
  text-decoration: none;
}
.navigation__menu li:nth-of-type(4) {
  background-image : linear-gradient(to right, #333, #333 4px, transparent 4px, transparent 8px);
  background-size: 8px 1px;
  background-position: left top;
  background-repeat: repeat-x;
  padding-top: 30px;
  margin-top: 40px;
}
.navigation__menu--instagram-logo {
  width: 25px;
  margin-right: 16px;
  vertical-align: bottom;
}
@media(min-width: 1130px) {
  .navigation__logo {
    position: absolute;
    left: 55%;
    top: 117px;
    margin: 0;
  }
  .navigation__menu {
    position: absolute;
    left: 75%;
    top: 117px;
  }
  .navigation__menu li a {
    font-size: 2.0rem;
  }
}

/*--------------ショップページリンク--------------*/
.shops-link {
  padding: 0 24px;
  margin-bottom: 100px;
}
.shops-link__content {
  width: 100%;
  max-width: 1130px;
  height: 180px;
  display: block;
  border-radius: 10px;
  text-decoration: none;
  color: #FFF;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.shops-link__content::after {
  content: "";
  background-image: url("../images/shops_link.jpg");
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  transition: all .3s ease-out;
  z-index: -1;
}
.shops-link__content:hover {
  opacity: 1;
}
.shops-link__content:hover::after {
  transform: scale(1.1);
}
.shops-link__content-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shops-link__content h2 {
  font-size: 3.0rem;
  font-weight: 400;
  line-height: 1.5em;
  font-family: 'Baloo 2', cursive;
}
.shops-link__content-wrapper--sub-title {
  font-size: 1.4rem;
  font-weight: 400;
}
.shops-link__content-wrapper--arrow img {
  width: 198px;
}
@media(min-width: 1130px) {
  .shops-link {
    margin-bottom: 0;
  }
  .shops-link__content {
    height: 300px;
    border-radius: 20px;
  }
  .shops-link__content h2 {
    font-size: 6.0rem;
  }
  .shops-link__content-wrapper {
    border-radius: 20px;
  }
  .shops-link__content-wrapper--sub-title {
    font-size: 1.6rem;
  }
  .shops-link__content-wrapper--arrow img {
    width: 250px;
  }
}

/*--------------フッター--------------*/
.footer {
  background-image: url("../images/footer_bg.png");
  background-size: cover;
  background-position: 0% 0%;
  padding-bottom: 40px;
  position: relative;
}
.footer h2 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 30px;
}
.footer h3 {
  font-size: 2.0rem;
  font-weight: 500;
  position: relative;
  margin-bottom: 110px;
  font-family: 'Baloo 2', cursive;
}
.footer h3::after {
  content: "";
  width: 1px;
  height: 70px;
  background-color: #333;
  position: absolute;
  bottom: -90px;
  left: 50%;
}
.footer__instagram-link {
  text-decoration: none;
  color: #333;
  display: inline-block;
  font-family: 'Baloo 2', cursive;
}
.footer__instagram-link:hover {
  opacity: 0.8;
  color: #71893F;
}
.footer small {
  font-size: 1.2rem;
  line-height: 1.5em;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Baloo 2', cursive;
}
@media(min-width: 1130px) {
  .footer {
    padding-top: 250px;
  }
  .footer h2 {
    font-size: 1.8rem;
    margin-bottom: 0;
    line-height: 2.5em;
  }
  .footer h3 {
    font-size: 3.0rem;
    margin-bottom: 100px;
  }
  .footer h3::after {

    bottom: -87px;
    left: 50%;
  }
  .footer__instagram-link {
    margin-bottom: 17px;
    font-size: 2.4rem;
  }
  .footer .none__pc {
    display: none;
  }
  .footer small {
    font-size: 1.4rem;
  }
}

/*Instagram*/
.insta-list {
  list-style: none;
  margin-top: 26px;
}
.insta-list li {
  height: 33.3vw;
}
.insta-list img {
  padding: 0 2px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media(min-width: 768px) {
  .insta-list li {
    height: 25vw;
  }
}
@media(min-width: 1130px) {
  .insta-list li {
    height: 20vw;
  }
}

/*--------------アニメーション--------------*/
.fadeUpTrigger{
  opacity: 0;
}

/* 下から */
.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 滑らかに変形して出現 */
.smooth {
	animation-name: smoothAnime;
	animation-duration: 2s;
	animation-fill-mode: forwards;
  transform-origin: left;
	opacity:0;
}
.smooth-5s {
	animation-name:smoothAnime;
	animation-duration:5s;
	animation-fill-mode:forwards;
  transform-origin:left;
	opacity:0;
}

@keyframes smoothAnime{
  from {
  transform:translate3d(0, 100%, 0) skewY(5deg);
  opacity:0;
  }

  to {
  transform:translate3d(0, 0, 0) skewY(0);
  opacity:1;
  }
}


/*------------------------TOPページ------------------------*/


/*--------------ファーストビュー--------------*/
.page-top__fv {
  position: relative;
  padding-left: 24px;
}
.page-top__fv--stitch-top img {
  width: 165px;
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 1;
}
#page-top__fv--slider {
  width: 100%;
  height: 50vh;
  margin-top: 100px;
  position: relative;
}
#page-top__fv--slider li:nth-child(2) img {
  object-position: 0% 50%;
}
#page-top__fv--slider li:nth-child(3) img {
  object-position: 50% 10%;
}
#page-top__fv--slider li:nth-child(5) img {
  object-position: 70% 50%;
}
.page-top__fv--slider-image img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.page-top__fv .slick-list {
  border-radius: 30px 0 0 30px;
}
/*Slickのドットカスタマイズ設定*/
.slide-dots__vertical {
  position: absolute;
  bottom: 50px;
  left: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slide-dots__vertical li {
  position: relative;
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
}
.slide-dots__vertical li.slick-active
  button::before {
  color: #888;
}
.slide-dots__vertical li button {
  background: transparent;
  border:0;
  font-size: 0pt;
}
.slide-dots__vertical li button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 5px;
  line-height: 20px;
  text-align: center;
  color: #DDD;
}
/*スライドアニメーション設定*/
.slick-animation{
    animation: fadezoom 8s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.page-top__fv h2 {
  writing-mode: vertical-rl;
  text-align: start;
  font-weight: 400;
  font-size: min(5.3vw, 3.0rem);
  line-height: 2.0em;
  margin: 30px auto 50px;
  padding-right: 24px;
  ruby-position : over;
  position: relative;
  letter-spacing: 0.4rem;
}
.page-top__fv h2 ruby {
  writing-mode: vertical-rl;
  margin-top: -4px;
  position: relative;
}
.page-top__fv h2 ruby rt {
  font-size: 1.0rem;
  letter-spacing: 0.1rem;
  position: absolute;
  right: 2px;
}
.page-top__fv--leather {
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 269px;
  height: 182px;
}
.page-top__fv--leather img {
  width: 100%;
  height: 100%;
  opacity: 0.2;
  object-fit: cover;
  border-top-right-radius: 30px;
}
.page-top__fv--stitch-bottom img {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 84px;
}
@media(min-width: 768px) {
  .page-top__fv--leather {
    bottom: -400px;
    height: 547px;
  }
  .page-top__fv h2 {
    margin: 50px auto 50px;
  }
  .page-top__fv h2 ruby {
    margin-top: 0;
  }
  .page-top__fv h2 ruby rt {
    font-size: 1.2rem;
  }
}
@media(min-width: 1130px) {
  .page-top__fv--stitch-top img {
    width: 25vw;
    top: 0;
    right: 0;
  }
  .page-top__fv .slick-list {
    border-radius: 0 0 0 30px;
  }
  #page-top__fv--slider {
    width: 70%;
    height: 100vh;
    margin: 0 0 0 auto;
  }
  .page-top__fv--wrapper {
    display: flex;
    flex-direction: row-reverse;
  }
  .page-top__fv--slider-image img {
    height: 100vh;
  }
  .slide-dots__vertical {
    left: -32px;
  }
  .page-top__fv h2 {
    margin: auto 0 auto 10vw;
    padding-right: 0;
  }
  .page-top__fv--stitch-bottom img {
    bottom: 30px;
    left: 0;
    width: 189px;
  }
  .page-top__fv--leather {
    width: 20vw;
  }
  /*スクロールダウン*/
  .page-top__fv--scroll {
    display: block;
    position: absolute;
    right: 30px;
    bottom: -50px;
    height: 150px;
    font-family: 'Baloo 2', cursive;
  }
  .page-top__fv--scroll span {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-size: 1.4rem;
    position: absolute;
    bottom: 160px;
    left: -12px;
  }
  .page-top__fv--scroll::after {
    content: "";
    width: 1px;
    height: 80px;
    background-color: #333;
    position: absolute;
    top: 0;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
  }
}
/*スクロールダウンのアニメーション設定*/
@keyframes pathmove {
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:80px;
    opacity: 1;
  }
  100%{
    height:0;
    top:150px;
    opacity: 0;
  }
}

/*--------------コンセプト--------------*/
#page-top__concept {
  padding-top: 60px;
}
#page-top__concept h2 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5em;
  text-align: left;
  padding-left: 24px;
  position: relative;
  font-family: 'Baloo 2', cursive;
}
#page-top__concept h2::before {
  content: "";
  width: 115px;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: -24px;
}
.page-top__concept-content {
  padding: 60px 0 50px 24px ;
  margin-right: 24px;
  margin-top: 296px;
  background-image: url("../images/marble.png");
  background-size: cover;
  background-position: 60% 50%;
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode:lighten;
  border-radius: 0 20px 20px 0;
  text-align: left;
  position: relative;
}
.page-top__concept-content--image {
  width: 80vw;
  height: 296px;
  position: absolute;
  top: -266px;
  right: -24px;
}
.page-top__concept-content--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 5% 50%;
  border-radius: 20px 0 0 20px;
}
.page-top__concept-content h3 {
  font-size: 3.0rem;
  font-weight: 400;
  line-height: 1.5em;
  font-family: 'Baloo 2', cursive;
}
.page-top__concept-content--sub-title {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 40px;
}
.page-top__concept-content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.page-top__about-button {
  width: 130px;
  height: 34px;
  background-color: #FFF;
  border: solid 1px #333;
  border-radius: 5px;
  color: #333;
  font-size: 1.8rem;
  line-height: 34px;
  text-decoration: none;
  padding-left: 30px;
  position: relative;
  display: block;
  margin: 0 auto;
  font-family: 'Baloo 2', cursive;
}
.page-top__about-button::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 17px;
  left: -35px;
}
.page-top__about-button:hover {
  color: #FFF;
  background-color: #4F6228;
  border: solid 1px #FFF;
  opacity: 1;
}
.page-top__about-button:hover::before {
  background-color: #4F6228;
  opacity: 1;
}
@media(min-width: 768px) {
  #page-top__concept {
    padding-top: 124px;
  }
  #page-top__concept h2 {
    font-size: 4.0rem;
    margin-bottom: 60px;
  }
  #page-top__concept h2::before {
    width: 200px;
  }
  .page-top__concept-content .none__pc {
    display: none;
  }
}
@media(min-width: 1130px) {
  #page-top__concept {
    max-width: 1130px;
    margin: 0 auto;
  }
  #page-top__concept h2 {
    padding-left: 0;
  }
  #page-top__concept h2::before {
    top: 50%;
    left: -1010px;
    width: 1000px;
  }
  .page-top__concept-content {
    width: 1060px;
    height: 642px;
    padding: 60px 0 50px 24px ;
    margin: 0 0 0 auto;
    border-radius: 20px;
    position: relative;
  }
  .page-top__concept-content--image {
    width: 463px;
    height: 582px;
    top: 120px;
    left: -70px;
  }
  .page-top__concept-content--image img {
    object-position: 20% 50%;
    border-radius: 20px;
  }
  .page-top__concept-content--title {
    text-align: right;
    position: absolute;
    right: 0;
    top: -48px;
  }
  .page-top__concept-content h3 {
    font-size: 6.0rem;
  }
  .page-top__concept-content--sub-title {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
  .page-top__concept-content p {
    font-size: 1.6rem;
    line-height: 2.0em;
    margin: 120px 0 70px 468px;
  }
  .page-top__about-button {
    width: 240px;
    height: 46px;
    border-radius: 10px;
    font-size: 2.4rem;
    line-height: 46px;
    padding-left: 0px;
    margin: 0 auto 0 575px;
    text-align: center;
  }
  .page-top__about-button::before {
    width: 80px;
    top: 23px;
    left: -60px;
  }
}

/*--------------こだわり--------------*/
.page-top__commitment {
  padding-top: 30px;
  margin-bottom: 100px;
}
.page-top__commitment h2 {
  font-size: 2.0rem;
  font-weight: 400;
  text-align: left;
  display: block;
  width: 7.0em;
  margin: 43px auto;
  position: relative;
}
.page-top__commitment h2::before {
  content: "";
  display: inline-block;
  width: 86px;
  height: 63px;
  background-image: url("../images/frame_top.png");
  background-size: contain;
  position: absolute;
  top: -43px;
  right: -43px;
}
.page-top__commitment h2::after {
  content: "";
  display: inline-block;
  width: 86px;
  height: 63px;
  background-image: url("../images/frame_bottom.png");
  background-size: contain;
  position: absolute;
  top: 33px;
  left: -66px;
}
.page-top__commitment-list {
  padding-top: 40px;
  list-style: none;
}
.page-top__commitment-list li {
  padding: 60px 24px;
  margin-bottom: 120px;
  background-color: #F9F8F4;
  position: relative;
}
.page-top__commitment-list li:nth-of-type(1) {
  border-top-left-radius: 40px;
}
.page-top__commitment-list li:nth-of-type(2) {
  border-radius: 0 40px 40px 0;
}
.page-top__commitment-list li:nth-of-type(3) {
  border-bottom-left-radius: 40px;
  margin-bottom: 40px;
}
.page-top__commitment-list--image {
  height: 300px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
}
.page-top__commitment-list--image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.page-top__commitment-list--sub-description {
  font-size: 1.6rem;
  font-weight: 400;
  writing-mode: vertical-rl;
  text-align: start;
  letter-spacing: 0.2em;
  position: absolute;
  top: -80px;
}
.page-top__commitment-list li:nth-of-type(1) .page-top__commitment-list--sub-description {
  right: 30px;
  line-height: 2.2em;
}
.page-top__commitment-list li:nth-of-type(2) .page-top__commitment-list--sub-description {
  left: 30px;
}
.page-top__commitment-list li:nth-of-type(3) .page-top__commitment-list--sub-description {
  right: 30px;
}
.page-top__commitment-list--marker {
  padding-bottom: 5px;
  padding-right: 4px;
  background: linear-gradient(transparent 0%, #FFF 0%);
}
.page-top__commitment-list--description {
  font-size: 1.4rem;
  text-align: left;
  width: 252px;
  margin: 0 auto;
}
.page-top__commitment-list--description h3 {
  font-size: 3.0rem;
  font-weight: 400;
  line-height: 1.5em;
  padding-top: 20px;
  font-family: 'Baloo 2', cursive;
}
.page-top__commitment-list--number {
  font-size: 4.0rem;
  font-weight: 600;
  padding-right: 15px;
}
.page-top__commitment-list--description p {
  padding-top: 10px;
}
.page-top__commitment-list--paint {
  position: absolute;
}
.page-top__commitment-list li:nth-of-type(1) .page-top__commitment-list--paint {
  right: 0;
  bottom: -120px;
  width: 200px;
}
.page-top__commitment-list li:nth-of-type(2) .page-top__commitment-list--paint {
  left: 0;
  bottom: -120px;
  width: 200px;
}
.page-top__commitment-list li:nth-of-type(3) .page-top__commitment-list--paint {
  right: 0;
  bottom: -60px;
  width: 167px;
}
.page-top__commitment .page-top__about-button {
  text-align: left;
}
@media(min-width: 1130px) {
  .page-top__commitment {
    padding-top: 160px;
    margin-bottom: 100px;
  }
  .page-top__commitment h2 {
    font-size: 4.0rem;
    line-height: 1.5em;
    margin: 43px auto;
  }
  .page-top__commitment h2::after {
    top: 98px;
    left: -78px;
  }
  .page-top__commitment-list {
    padding-top: 100px;
    position: relative;
  }
  .page-top__commitment-list::before {
    content: "";
    width: 343px;
    height: 343px;
    background-image: url("../images/paint1.png");
    background-size: cover;
    position: absolute;
    left: 3vw;
    top: -80px;
  }
  .page-top__commitment-list li {
    width: 70vw;
    height: 300px;
  }
  .page-top__commitment-list li:nth-of-type(1) {
    margin: 0 0 100px auto;
    padding: 50px 0 80px 6vw;
  }
  .page-top__commitment-list li:nth-of-type(2) {
    margin: 0 auto 100px 0;
    padding: 50px 6vw 80px 0;
  }
  .page-top__commitment-list li:nth-of-type(3) {
    margin: 0 0 170px auto;
    padding: 50px 0 80px 6vw;
  }
  .page-top__commitment-list--wrapper {
    width: 675px;
    display: flex;
  }
  .page-top__commitment-list li:nth-of-type(1) .page-top__commitment-list--wrapper,
  .page-top__commitment-list li:nth-of-type(3) .page-top__commitment-list--wrapper {
    flex-direction: row-reverse;
    margin: 0 auto 0 0;
  }
  .page-top__commitment-list li:nth-of-type(2) .page-top__commitment-list--wrapper {
    margin: 0 0 0 auto;
  }
  .page-top__commitment-list--image {
    height: 300px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    position: relative;
  }
  .page-top__commitment-list li:nth-of-type(1) .page-top__commitment-list--image {
    margin: 0 auto 0 0;
  }
  .page-top__commitment-list--sub-description {
    font-size: 1.8rem;
    top: -160px;
  }
  .page-top__commitment-list--description {
    min-width: 288px;
  }
  .page-top__commitment-list li:nth-of-type(1) .page-top__commitment-list--description,
  .page-top__commitment-list li:nth-of-type(3) .page-top__commitment-list--description {
    margin-right: 40px;
  }
  .page-top__commitment-list li:nth-of-type(2) .page-top__commitment-list--description {
    margin-left: 40px;
  }
  
  .page-top__commitment-list--description h3 {
    font-size: 4.0rem; 
  }
  .page-top__commitment-list li:nth-of-type(3) .page-top__commitment-list--description h3 {
    padding-top: 0;
  }
  .page-top__commitment-list--number {
    font-size: 6.0rem;
  }
  .page-top__commitment-list--description p {
    font-size: 1.6rem;
  }
  .page-top__commitment-list li:nth-of-type(1) .page-top__commitment-list--paint,
  .page-top__commitment-list li:nth-of-type(2) .page-top__commitment-list--paint {
    right: 0;
    bottom: -200px;
    width: 28vw;
    max-height: 400px;
  }
  .page-top__commitment-list li:nth-of-type(3) .page-top__commitment-list--paint {
    left: 170px;
    bottom: -130px;
    width: 233px;
  }
  .page-top__commitment .page-top__about-button {
    text-align: center;
    margin: 0 auto;
  }
}

/*--------------アイテム--------------*/
.page-top__items {
  text-align: left;
  margin-bottom: 170px;
}
.page-top__items h2 {
  font-size: 3.0rem;
  font-weight: 600;
  line-height: 1.3em;
  text-align: left;
  padding-left: 24px;
  position: relative;
  font-family: 'Baloo 2', cursive;
}
.page-top__items h2::before {
  content: "";
  width: 185px;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-top__items__sub-title {
  font-size: 1.4rem;
  font-weight: 400;
  padding-left: 15px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.page-top__items-wrapper {
  padding: 40px 24px 50px;
  margin-top: 25px;
  background-color: #F9F8F4;
}
.page-top__items-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}
.page-top__items-list li {
  margin-bottom: 20px;
}
.page-top__items-list p {
  font-size: 1.4rem;
  padding-top: 2px;
  line-height: 1.5em;
}
.page-top__items-list--image {
  width: 42vw;
  max-width: 320px;
  height: 50vw;
  max-height: 400px;
}
.page-top__items-list--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.page-top__items-button {
  width: 136px;
  height: 34px;
  background-color: #FFF;
  border: solid 1px #333;
  border-radius: 5px;
  color: #333;
  font-size: 1.8rem;
  line-height: 34px;
  text-decoration: none;
  padding-left: 30px;
  position: relative;
  display: block;
  margin: 20px auto 0;
  font-family: 'Baloo 2', cursive;
  opacity: 1;
}
.page-top__items-button::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 17px;
  left: -35px;
}
.page-top__items-button:hover {
  color: #FFF;
  background-color: #4F6228;
  border: solid 1px #FFF;
  opacity: 1;
}
.page-top__items-button:hover::before {
  background-color: #4F6228;
  opacity: 1;
}
@media(min-width: 1130px) {
  .page-top__items {
    background-color: #F9F8F4;
    margin-bottom: 150px;
  }
  .page-top__items .none__pc {
    display: none;
  }
  .page-top__items h2 {
    font-size: 6.0rem;  
    width: 1130px;
    margin: 0 auto;
    padding: 60px 0 0;
  }
  .page-top__items h2::before {
    width: 1000px;
    top: 60%;
    left: -1010px;
  }
  .page-top__items__sub-title {
    font-size: 1.6rem;
    line-height: 1.5em;
    padding-left: 0;
    display: block;
  }
  .page-top__items-wrapper {
    margin-top: 0;
    padding-bottom: 100px;
  }
  .page-top__items-list li {
    margin-bottom: 40px;
  }
  .page-top__items-list p {
    font-size: 1.6rem;
  }
  .page-top__items-button {
    width: 224px;
    height: 46px;
    border-radius: 10px;
    font-size: 2.4rem;
    line-height: 46px;
    text-align: center;
    padding-left: 0;
  }
  .page-top__items-button::before {
    width: 80px;
    top: 23px;
    left: -60px;
  }
}


/*------------------------ABOUTページ------------------------*/


/*--------------ABOUT--------------*/
.page-about__top-title {
  position: relative;
}
.page-about__top-title--image-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50vw;
  max-width: 443px;
  opacity: 0.5;
}
.page-about__top-title--image-left {
  position: absolute;
  left: -16px;
  bottom: -105px;
  width: 40vw;
  max-width: 313px;
  opacity: 0.5;
}
.page-about__top h2 {
  font-size: 3.0rem;
  padding-top: 106px;
  font-family: 'Baloo 2', cursive;
}
.page-about__top-title--sub-title {
  font-size: 1.4rem;
  position: relative;
  margin-bottom: 72px;
  display: inline-block;
}
.page-about__top-title--sub-title::after {
  content: "";
  width: 190px;
  height: 200px;
  background-image: url("../images/paint4.png");
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode:lighten;
  position: absolute;
  top: -85px;
  left: -42px;
  z-index: -1;
}
.page-about__top-content {
  background-image: url("../images/stitch_about_mobile.png");
  background-size: cover;
  background-position: 0% 0%;
}
.page-about__top h3 {
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 1.5em;
  text-align: left;
  display: inline-block;
  margin: 0 auto 60px;
  padding-left: 45px;
}
.page-about__top-content--description {
  margin: 0 24px 40px;
  text-align: left;
  font-size: 1.4rem;
  background-color: rgba(255, 255, 255, 0.6);
}
.page-about__items-button {
  width: 136px;
  height: 34px;
  background-color: #FFF;
  border: solid 1px #333;
  border-radius: 5px;
  color: #333;
  font-size: 1.8rem;
  line-height: 34px;
  text-decoration: none;
  position: relative;
  display: block;
  margin: 0 auto 110px;
  padding-left: 5px;
  font-family: 'Baloo 2', cursive;
}
.page-about__items-button::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 17px;
  left: -35px;
}
.page-about__items-button:hover {
  color: #FFF;
  background-color: #4F6228;
  border: solid 1px #FFF;
  opacity: 1;
}
.page-about__items-button:hover::before {
  background-color: #4F6228;
  opacity: 1;
}
@media(min-width:768px) {
  .page-about__top {
    background-image: url("../images/stitch_about_pc.png");
    background-size: cover;
    background-position: 100% 0%;
  }
  .page-about__top-title--sub-title {
    font-size: 1.6rem;
  }
  .page-about__top-content--description {
    font-size: 1.6rem;
    margin: 0 auto 40px;
    width: 661px;
  }
  .page-about__top-content {
    background-image: none;
  }
}
@media(min-width: 1130px) {
  .page-about__top h2 {
    font-size: 4.0rem;
    padding-top: 169px;
    line-height: 1.5em;
  }
  .page-about__top-title--sub-title {
    margin-bottom: 126px;
  }
  .page-about__top-title--sub-title::after {
    width: 350px;
    height: 236px;
    top: -170px;
    left: -110px;
  }
  .page-about__top h3 {
    font-size: 3.0rem;
    margin: 0 auto 40px;
    padding-left: 0;
    width: 661px;
  }
  .page-about__top-content {
    position: relative;
  }
  .page-about__top-content--image-bottom {
    display: block;
    width: 362px;
    position: absolute;
    bottom: 46px;
    left: 2vw;
  }
  .page-about__items-button {
    width: 240px;
    height: 46px;
    border-radius: 10px;
    font-size: 2.4rem;
    line-height: 46px;
    margin: 0 auto 154px;
  }
  .page-about__items-button::before {
    width: 80px;
    top: 23px;
    left: -60px;
  }
  .page-about__top .none__pc {
    display: none;
  }
}

/*--------------Feature--------------*/
.page-about__feature h2 {
  font-size: 3.0rem;
  font-weight: 600;
  line-height: 1.3em;
  text-align: left;
  padding-left: 24px;
  position: relative;
  font-family: 'Baloo 2', cursive;
}
.page-about__feature h2::before {
  content: "";
  width: 278px;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-about__feature-title {
  font-size: 1.4rem;
  font-weight: 400;
  padding-left: 15px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.page-about__feature-point1--wrapper, .page-about__feature-point2--wrapper {
  height: 303px;
  background-color: #F9F8F4;
  position: relative;
  z-index: -2;
}
.page-about__feature-point1--wrapper {
  border-top-right-radius: 40px;
  padding: 48px 0 0 24px;
  margin: 47px 24px 150px 0;
}
.page-about__feature-point2--wrapper {
  border-bottom-left-radius: 40px;
  padding: 48px 24px 0 0;
  margin: 97px 0 150px 24px;
}
.page-about__feature-point1--wrapper h3, .page-about__feature-point2--wrapper h3 {
  font-size: 2.0rem;
  font-weight: 400;
  position: absolute;
}
.page-about__feature-point1--wrapper h3 {
  text-align: left;
  top: -60px;
  left: 0;
}
.page-about__feature-point2--wrapper h3 {
  text-align: right;
  top: -60px;
  right: 0px;
}
.page-about__feature-point1--wrapper h3 img,
.page-about__feature-point2--wrapper h3 img {
  width: 16px;
  margin: 0 10px;
}
.page-about__feature-point1--content,
.page-about__feature-point2--content {
  width: 100%;
  height: 100%;
  margin-bottom: 150px;
}
.page-about__feature-point1--image-wrapper,
.page-about__feature-point2--image-wrapper {
  width: 310px;
  height: 100%;
  position: relative;
  margin: 0 auto;
}
.page-about__feature-point1--image1,
.page-about__feature-point1--image2,
.page-about__feature-point2--image1,
.page-about__feature-point2--image2 {
  width: 180px;
  height: 225px;
  position: absolute;
}
.page-about__feature-point1--image1 {
  bottom: 30px;
  right: 147px;
}
.page-about__feature-point1--image2 {
  bottom: -90px;
  right: 20px;
  z-index: -1;
}
.page-about__feature-point2--image1 {
  bottom: 30px;
  left: 147px;
}
.page-about__feature-point2--image2 {
  bottom: -90px;
  left: 20px;
  z-index: -1;
}
.page-about__feature-point1--image1 img,
.page-about__feature-point1--image2 img,
.page-about__feature-point2--image1 img,
.page-about__feature-point2--image2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-about__feature-point1--description,
.page-about__feature-point2--description {
  display: inline-block;
  position: relative;
}
.page-about__feature-point1--description img {
  width: 45px;
  position: absolute;
  top: -110px;
  right: 200px;
}
.page-about__feature-point2--description img {
  width: 90px;
  position: absolute;
  top: -140px;
  left: 180px;
}
.page-about__feature .page-about__items-button {
  margin-top: 50px;
}
@media(min-width:768px) {
  .page-about__feature-point1--wrapper {
    margin: 47px 24px 150px 0;
    height: 385px;
  }
  .page-about__feature-point2--wrapper {
    height: 385px;
  }
  .page-about__feature-point1--wrapper h3, .page-about__feature-point2--wrapper h3 {
    font-size: 3.0rem;
  }
  .page-about__feature-point1--wrapper h3 img,
  .page-about__feature-point2--wrapper h3 img{
    width: 25px;
    margin: 0 10px;
  }
  .page-about__feature-point1--image-wrapper,
  .page-about__feature-point2--image-wrapper {
    width: 670px;
    height: 100%;
    position: relative;
    margin: 0 auto;
  }
  .page-about__feature-point1--image1,
  .page-about__feature-point1--image2,
  .page-about__feature-point2--image1,
  .page-about__feature-point2--image2 {
    width: 320px;
    height: 400px;
    position: absolute;
  }
  .page-about__feature-point1--image1 {
    bottom: -90px;
    right: 360px;
  }
  .page-about__feature-point1--image2 {
    bottom: -90px;
    right: 20px;
  }
  .page-about__feature-point2--image1 {
    bottom: -90px;
    left: 360px;
  }
  .page-about__feature-point2--image2 {
    bottom: -90px;
    left: 20px;
  }
  .page-about__feature .none__pc {
    display: none;
  }
}
@media(min-width: 1130px) {
  .page-about__feature h2 {
    font-size: 6.0rem;
    padding-left: 0;
    width: 1130px;
    margin: 0 auto;
  }
  .page-about__feature h2::before {
    width: 1000px;
    top: 40%;
    left: -1010px;
  }
  .page-about__feature-title {
    font-size: 1.6rem;
    padding-left: 0;
    display: block;
    line-height: 1.5em;
  }
  .page-about__feature-point1,
  .page-about__feature-point2 {
    display: flex;
    justify-content: space-between;
  }
  .page-about__feature-point2 {
    flex-direction: row-reverse;
  }
  .page-about__feature-point1--wrapper h3, .page-about__feature-point2--wrapper h3 {
    font-size: 4.0rem;
  }
  .page-about__feature-point1--wrapper h3 img,
  .page-about__feature-point2--wrapper h3 img {
    width: 36px;
    margin: 0 28px;
  }
  .page-about__feature-point1--wrapper {
    width: 70vw;
    margin: 83px 24px 150px 0;
  }
  .page-about__feature-point2--wrapper {
    width: 70vw;
    margin: 97px 0 150px auto;
  }
  .page-about__feature-point1--image-wrapper {
    margin: 0 110px 0 auto;
  }
  .page-about__feature-point1--description,
  .page-about__feature-point2--description {
    display: block;
    width: 30vw;
    height: 385px;
    line-height: 385px;
    margin-top: 47px;
    font-size: 1.8rem;
  }
  .page-about__feature-point1--description img {
    width: 90px;
    position: absolute;
    top: -110px;
    right: 20px;
  }
  .page-about__feature-point2--description img {
    width: 160px;
    position: absolute;
    top: -80px;
    left: 30px;
  }
  .page-about__feature .page-about__items-button {
    margin-bottom: 150px;
  }
}


/*--------------イベント--------------*/
#page-about__event {
  margin: 90px 0 60px;
  padding: 45px 0 10px;
  background-color: #F9F8F4;
  position: relative;
}
.page-about__event--tent-image {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#page-about__event-top {
  padding: 0 24px;
}
#page-about__event-top h2 {
  font-size: 3.0rem;
  font-family: 'Baloo 2', cursive;
}
.page-about__event-title {
  font-size: 1.4rem;
  margin-bottom: 45px;
}
#page-about__event-top p {
  font-size: 1.4rem;
}
.page-about__event-top--illustration {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.page-about__event-top--illustration-left {
  width: 100px;
  height: 105px;
}
.page-about__event-top--illustration-right {
  width: 80px;
  height: 105px;
}
#page-about__event-cotent {
  display: none;
}
.page-about__event-cotent--wrapper {
  padding: 0 24px;
  text-align: left;
}
.page-about__event-cotent--area {
  margin-bottom: 40px;
}
#page-about__event-cotent h3 {
  font-weight: 400;
  width: 75px;
  height: 36px;
  line-height: 36px;
  background-color: #FFF;
  border: solid 1px #333;
  text-align: center;
  margin-bottom: 10px;
}
#page-about__event-cotent table {
  font-size: 1.4rem;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 20px;
}
#page-about__event-cotent tr {
  padding-bottom: 20px;
}
#page-about__event-cotent td.width70 {
  width: 70%;
}
#page-about__event-cotent td.width30 {
  width: 30%;
}
#page-about__event-button {
  position: relative;
  z-index: 1;
}
#page-about__event-button--open {
  width: 40px;
  height: 44px;
  margin: 0 auto;
  cursor: pointer;
  opacity: 1;
}
#page-about__event-button--close {
  display: none;
  width: 38px;
  height: 55px;
  margin: 0 auto;
  cursor: pointer;
}
#page-about__event-button.open img,
#page-about__event-button.close img {
  width: 100%;
}
#page-about__event-button:hover {
  opacity: 0.6;
}
#page-about__event-button--open.active {
  display: none;
}
#page-about__event-button--close.active {
  display: block;
}
@media(min-width: 768px) {
  #page-about__event-cotent {
    width: 70vw;
    margin: 0 auto;
  }
  #page-about__event-cotent h3 {
    font-size: 1.8rem;
    width: 88px;
  }
  #page-about__event-cotent table {
    font-size: 1.6rem;
  }
}
@media(min-width: 1130px) {
  #page-about__event {
    margin: 0 0 200px;
    padding: 100px 0 20px;
    min-height: 480px;
  }
  #page-about__event-top h2 {
    font-size: 6.0rem;
    line-height: 1.3em;
  }
  .page-about__event-title {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
  #page-about__event-top p {
    font-size: 1.6rem;
  }
  .page-about__event-top--illustration {
    height: 90px;
    position: relative;
  }
  .page-about__event-top--illustration-left {
    width: 217px;
    height: 217px;
    position: absolute;
    bottom: 0;
    left: 7vw;
  }
  .page-about__event-top--illustration-right {
    width: 200px;
    height: 262px;
    position: absolute;
    bottom: -50px;
    right: 7vw;
  }
  #page-about__event-cotent {
    width: 1020px;
  }
  .page-about__event-cotent--wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: 130px 198px 478px 286px 242px 154px;
    grid-auto-flow: column;
  }
  .page-about__event-cotent--area {
    width: 380px;
  }
  .page-about__event-cotent--area:nth-child(6) {
    grid-row: 1 / 6;
  }
  #page-about__event-button--open {
    width: 44px;
    height: 48px;
  }
  #page-about__event-button--close {
    width: 42px;
    height: 61px;
  }
}


/*------------------------ITEMSページ------------------------*/


.page-items__title {
  position: relative;
}
.stitch-top img {
  width: 117px;
  position: absolute;
  top: 0;
  right: 0;
}
.page-items__title h2 {
  font-size: 3.0rem;
  line-height: 1.2em;
  padding-top: 95px;
  font-family: 'Baloo 2', cursive;
}
.page-items__title--sub-title {
  font-size: 1.4rem;
  margin-bottom: 50px;
}
.stitch-bottom img {
  width: 65px;
  position: absolute;
  bottom: -30px;
  left: 0;
}
.grid-wrapper {
  max-width: 1163px;
  margin: 0 auto;
}
#grid {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}
.grid-item {
  width: 40vw;
  margin-bottom: 29px;
}
.grid-item img {
  width: 100%;
  vertical-align: bottom;
}
.page-items__message {
  font-size: 1.4rem;
  padding-top: 30px;
}
.page-items__message::after {
  display: block;
  margin: 30px auto 110px;
  content: "";
  width: 118px;
  height: 1px;
  background-size: 8px 1px;
  background-image: linear-gradient(to right, #E2E6D8, #E2E6D8 4px, transparent 4px, transparent 4px);
  background-repeat: repeat-x;
}
@media(min-width: 768px) {
  .grid-item {
    width: 28vw;
    max-width: 335px;
    margin-bottom: 29px;
  }
}
@media(min-width: 1130px) {
  .stitch-top img {
    width: 407px;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .page-items__title h2 {
    font-size: 4.0rem;
    padding-top: 188px;
    width: 1130px;
    margin: 0 auto;
    position: relative;
    text-align: left;
  }
  .page-items__title--sub-title {
    font-size: 1.6rem;
    text-align: left;
    width: 1130px;
    margin: 0 auto 130px;
  }
  .page-items__title h2::before {
    content: "";
    width: 1000px;
    height: 1px;
    background-color: #333;
    position: absolute;
    bottom: 20px;
    left: -1010px;
  }
  .stitch-bottom img {
    width: 189px;
    bottom: -500px;
    left: 0;
    z-index: 1;
  }
  .grid-item {
    margin: 0 16px 62px;
  }
  .page-items__message {
    font-size: 1.8rem;
    padding-top: 60px;
  }
  .page-items__message .none {
    display: inline-block;
  }
  .page-items__message .none__pc {
    display: none;
  }
  .page-items__message::after {
    margin: 60px auto 30px;
    width: 200px;
    height: 1px;
  }
}


/*------------------------SHOPSページ------------------------*/


.page-shops__title {
  position: relative;
}
.stitch-top img {
  width: 117px;
  position: absolute;
  top: 0;
  right: 0;
}
.page-shops__title h2 {
  font-size: 3.0rem;
  line-height: 1.2em;
  padding-top: 95px;
  font-family: 'Baloo 2', cursive;
}
.page-shops__title--sub-title {
  font-size: 1.4rem;
  margin-bottom: 50px;
}
.stitch-bottom img {
  width: 65px;
  position: absolute;
  bottom: -30px;
  left: 0;
}
.page-shops__shop-list {
  margin: 0 24px 130px;
  list-style: none;
  max-width: 1130px;
}
.page-shops__shop-list--image {
  border-radius: 20px;
  max-width: 630px;
  width: 100%;
  margin-bottom: 10px;
}
.page-shops__shop-list li:nth-child(1) .page-shops__shop-list--description,
.page-shops__shop-list li:nth-child(3) .page-shops__shop-list--description {
  width: 301px;
}
.page-shops__shop-list li:nth-child(2) .page-shops__shop-list--description,
.page-shops__shop-list li:nth-child(4) .page-shops__shop-list--description {
  width: 192px;
}
.page-shops__shop-list--description {
  text-align: left;
  margin: 0 auto 100px;
}
.page-shops__shop-list--shop-link {
  text-decoration: none;
  color: #333;
}
.page-shops__shop-list--shop-link:hover {
  color: #71893F;
  transition: 0.3s;
}
.page-shops__shop-list--description h3 {
  font-size: 2.0rem;
  font-weight: 400;
  display: inline-block;
}
.page-shops__shop-list--description p {
  font-size: 1.4rem;
  margin: 20px auto 10px 0;
}
.page-shops__shop-list--description table {
  font-size: 1.4rem;  
  table-layout: fixed;
  margin-bottom: 10px;
}
.page-shops__shop-list--description td.td-right {
  padding-left: 25px;
}
.map-link {
  color: #333;
  font-size: 1.4rem;
  height: 20px;
}
.map-link img {
  width: 20px;
  vertical-align: baseline;
}
@media(min-width: 1130px) {
  .stitch-top img {
    width: 407px;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .page-shops__title h2 {
    font-size: 4.0rem;
    padding-top: 188px;
    width: 1130px;
    margin: 0 auto;
    position: relative;
    text-align: left;
  }
  .page-shops__title--sub-title {
    font-size: 1.6rem;
    text-align: left;
    width: 1130px;
    margin: 0 auto 130px;
  }
  .page-shops__title h2::before {
    content: "";
    width: 1000px;
    height: 1px;
    background-color: #333;
    position: absolute;
    bottom: 20px;
    left: -1010px;
  }
  .stitch-bottom img {
    width: 189px;
    bottom: -500px;
    left: 0;
    z-index: 1;
  }
  .page-shops__shop-list {
    margin: 0 auto;
  }
  .page-shops__shop-list li {
    display: flex;
    margin-bottom: 65px;
  }
  .page-shops__shop-list li:nth-child(2), .page-shops__shop-list li:nth-child(4) {
    flex-direction: row-reverse;
  }
  .page-shops__shop-list--description-wrapper {
    display: flex;
    align-items: center;
    margin: 0 auto;
  }
  .page-shops__shop-list li:nth-child(4) {
    margin-bottom: 0;
  }
}