/*リンクの色と下の線を消す*/
a {color: #000; text-decoration: none;}
li {list-style: none;}


body{
  margin: 0;
  padding: 0;
}


/*btn-close*/
.btn{
 position: fixed;
 width: 50px;
 height: 50px;
 border: 0px solid #FFF;
 right: 0;
 z-index: 999;
}

.btn::before, .btn::after{
 position: absolute;
 top: 50%;
 left: 0;
 content: "";
 display: block;
 width: 50px;
 border-top: 1px solid #d4d4d4;
 z-index: 888;
}

::before {
  transform: skewY(-45deg);
}

::after {
  transform: skewY(45deg);
}


/*main*/
.btn-box{
  height: 80px;
}

.fadein{
  max-width: 100%;
}

.work_de_cap{
  text-align: right;
  font-style: italic;
  font-family: 'Spartan', sans-serif;
  font-size: 10px;
  color: #b0b0b0;
  max-width: 640px;
  margin: 5px auto 15vh auto;
  padding: 0 15px;
}

/*section*/
.box{
  width: 100%;
  height: 100%;
  display: block;
}



p{
  font-family: Yu Gothic Medium,游ゴシック Medium,YuGothic,游ゴシック体,ヒラギノ角ゴ Pro W3,メイリオ,sans-serif;
  font-size: 12px;
  font-weight: lighter;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 30px;
}




/*footer*/
footer {
  font-size: 10px;
  max-width: 100%;
  margin: 16vh auto 25px auto;
  padding: 0 30px;
  z-index: 9;
  font-family: 'Spartan', sans-serif;
  letter-spacing: 0.4px;
  box-sizing: border-box;
}

/*fadein*/
.fadein {
  animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@media screen and (max-width:821px){
  .btn-box{
    height: 80px;
  }

  .work_de_cap{
    margin: 5px auto 15vh auto;
    padding: 0 45px;
  }

  footer{
    background: pink;
    font-size: 10px;
    max-width: 100%;
    margin: 0 auto 0 auto;
    z-index: 9;
    font-family: 'Spartan', sans-serif;
    letter-spacing: 0.4px;
    box-sizing: border-box;
}

}

@media screen and (max-width:390px){
  .btn-box{
    height: 116px;
  }

  .work_de_cap{
    margin: 5px auto 15vh auto;
    padding: 0 45px;
  }

  p{
    font-size: 9px;
  }

  footer{
    font-size: 10px;
    max-width: 700px;
    margin: 16vh auto 25px auto;
    padding: 0 30px;
    z-index: 9;
    font-family: 'Spartan', sans-serif;
    letter-spacing: 0.4px;
    box-sizing: border-box;
}
  }


/*=========================================================================
# スライダーのCSS
========================================================================== */
.slider {
  width:100%;
  margin: 0 auto;
  padding: 0;
  padding-top: 2%;
  padding-bottom: 2%;
  padding-left: 45px;

}

.slider img {
  width: 670px;/*スライダー内の画像を横幅100%に*/
  max-width: 100%;/*画像の最大幅*/
  height: auto;
  max-height: auto;
}

.work_de_cap{
  margin: 0px auto 15vh auto;
  padding: 0 30px;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin:0 40px;
}

@media screen and (max-width:769px){
  .slider {
    padding-left: 0;
    padding-top: 2%;
    padding-bottom: 1%;
  }
  .slider img {
    max-width: 100%;
  }

  .work_de_cap{
    margin: 5px auto 15vh auto;
    padding: 0 30px;
  }

}

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

.slick-prev {/*戻る矢印の位置と形状*/
  left: 0px;
  opacity: 0;
  transform: rotate(-135deg);
  transition: all .5s;
}

.slick-next {/*次へ矢印の位置と形状*/
  right: 0px;
  opacity: 0;
  transform: rotate(45deg);
  transition: all .5s;
}

@media screen and (max-width:769px){
  .slider {
    padding-top: 2%;
    padding-bottom: 2%;
  }

  .slick-prev,
  .slick-next {
    display: none!important;/*スマホ時非表示*/
  }

  .work_de_cap{
    margin: 5px auto 15vh auto;
    padding: 0 30px;
  }

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
  .slider .slick-slide {
    margin:0 25px;
  }

}


/* スライダーにカーソルした時ボタン出現
---------------------------------------------------*/
.slider:hover .slick-prev {
  left: 1%;
  opacity: 1;
}

.slider:hover .slick-next {
  right: 1%;
  opacity: 1;
}


/* ドットナビゲーションの設定
---------------------------------------------------*/
.element.style {
    width: 280px;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-dots-container {
    height: 1em;
    display:flex;
}
.slick-slide {
    margin: auto;
    height: 100%;
    min-height: 1px;
    display: none;
}
*, *:before, *:after {
    box-sizing: border-box;
}
user agent stylesheet
div {
    display: block;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
body, input, textarea, button, select {
    font-size: 16px;
    line-height: 1.6;
    font-family: "Merriweather",serif;
    color: #333;
    font-weight: 300;
    -webkit-text-size-adjust: 100%;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: border-box;
}
.slick-dots {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.wrapper, .content>.sqs-layout, .content>.sqs-shopping-cart-wrapper, .navigation--compress .navigation, .slick-dots {
    padding-left: 1em;
    padding-right: 1em;
}
*, *:before, *:after {
    box-sizing: border-box;
}
user agent stylesheet
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
body, input, textarea, button, select {
    font-size: 16px;
    line-height: 1.6;
    font-family: "Merriweather",serif;
    color: #333;
    font-weight: 300;
    -webkit-text-size-adjust: 100%;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: border-box;
}
.slick-dots li button {
    border: 0;
    background-color: rgba(153,153,153,.15);
    display: block;
    height: 5px;
    width: 5px;
    border-radius: 5px;
    outline: none;
    color: transparent;
    cursor: pointer;
    padding: 0;
}

button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}
body, input, textarea, button, select {
    font-size: 16px;
    line-height: 1.6;
    font-family: "Merriweather",serif;
    color: #333;
    font-weight: 300;
    -webkit-text-size-adjust: 100%;
}
button {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    outline: none;
}
button, select {
    text-transform: none;
}
button, input {
    overflow: visible;
}
button, input, optgroup, select, textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
*, *:before, *:after {
    box-sizing: border-box;
}
user agent stylesheet
button {
    appearance: auto;
    writing-mode: horizontal-tb !important;
    font-style: ;
    font-variant-ligatures: ;
    font-variant-caps: ;
    font-variant-numeric: ;
    font-variant-east-asian: ;
    font-weight: ;
    font-stretch: ;
    font-size: ;
    font-family: ;
    text-rendering: auto;
    color: buttontext;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: center;
    align-items: flex-start;
    cursor: default;
    box-sizing: border-box;
    background-color: buttonface;
    margin: 0em;
    padding: 1px 6px;
    border-width: 2px;
    border-style: outset;
    border-color: buttonborder;
    border-image: initial;
}
.slick-dots li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 1em;
    width: 1em;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
user agent stylesheet
li {
    text-align: -webkit-match-parent;
}
user agent stylesheet
ul {
    list-style-type: disc;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
li>*:first-child::before {
    white-space: pre;
}
*, *:before, *:after {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: border-box;
}
Rendered Fonts
Merriweather Light—Network resource(1 glyph)

@media screen and (max-width:769px){
  .slider {
    padding-top: 2%;
    padding-bottom: 2%;
  }

  .slick-dots {
    display: none!important;/*スマホ時非表示*/
  }
}