@charset "UTF-8";
/* --------------------------------
[コーディングルール]
・SMACSSでCSS設計
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・メディアクエリーはPCファーストで、 @include max {} または @include min {} を使用
-------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main {
  display: block;
}

html {
  font-size: 10px;
}

body {
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.3rem;
  color: #000;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
}
a {
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    color: #000;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #FFC800;
}

.slick-dots li button::before {
  font-size: 14px;
}

.slick-next {
  width: 30px;
  height: 50px;
  right: 15px;
  z-index: 10;
}

.slick-prev {
  width: 30px;
  height: 50px;
  left: 15px;
  z-index: 10;
}

.slick-next:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #FFC800;
  border-left: none;
  border-bottom: none;
  -webkit-transform: translate(-80%, -50%) rotate(45deg);
          transform: translate(-80%, -50%) rotate(45deg);
}

.slick-prev:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #FFC800;
  border-left: none;
  border-bottom: none;
  -webkit-transform: translate(-20%, -50%) rotate(-135deg);
          transform: translate(-20%, -50%) rotate(-135deg);
}

.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 140px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 75px;
  }
}
.l-header.is-sc {
  height: 70px;
}
@media screen and (max-width: 767px) {
  .l-header.is-sc {
    height: 50px;
  }
}
.l-header-wrap {
  height: 140px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-wrap {
    height: 75px;
  }
}
.l-header-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.l-main {
  color: #2c2c2c;
}
.l-main a {
  color: #2c2c2c;
}

.h-logo {
  padding-top: 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .h-logo {
    padding-top: 15px;
    padding-left: 30px;
  }
}
.h-logo img {
  width: 120px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .h-logo img {
    width: 75px;
  }
}
.h-meta {
  position: absolute;
  right: 15px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.h-name {
  font-size: 11px;
  margin-right: 2em;
}
.h-snav {
  font-size: 11px;
}
.h-snav ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.h-snav li {
  position: relative;
}
.h-snav li + li {
  margin-left: 1em;
  padding-left: 1em;
}
.h-snav li + li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background-color: #b2b2b2;
}
.h-snav a:hover {
  text-decoration: underline;
}
.h-cart {
  position: relative;
  font-size: 11px;
  margin-left: 2em;
  padding-right: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.h-cart a:hover {
  text-decoration: underline;
}
.h-cart i {
  display: block;
  position: absolute;
  right: 0;
  top: -4px;
}
.h-search {
  position: absolute;
  right: 15px;
  top: 72px;
  width: 195px;
  height: 28px;
  background-color: #eee;
  border-radius: 50px;
  padding: 5px 0 0 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 960px) {
  .h-search {
    width: 145px;
  }
}
.h-search input {
  display: block;
  width: 140px;
  height: 20px;
  font-size: 11px;
  border: none;
  background: none;
}
@media screen and (max-width: 960px) {
  .h-search input {
    width: 90px;
  }
}
.h-search i {
  display: block;
  position: absolute;
  right: 11px;
  top: 4px;
}
.h-search i svg {
  width: 15px;
}
.h-gnav {
  position: absolute;
  left: 250px;
  top: 70px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 960px) {
  .h-gnav {
    left: 230px;
  }
}
.h-gnav ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.h-gnav li {
  margin-right: 2em;
}
@media screen and (max-width: 960px) {
  .h-gnav li {
    margin-right: 1em;
  }
}
.h-gnav li:hover:before {
  opacity: 1;
}
.h-gnav li:hover .h-mega {
  opacity: 1;
  pointer-events: auto;
}
.h-gnav a {
  position: relative;
  display: block;
  padding-bottom: 10px;
}
.h-gnav a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #FFC800;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.h-gnav a:hover:before {
  opacity: 1;
}
.h-gnav b {
  display: block;
  font-size: 15px;
}
@media screen and (max-width: 960px) {
  .h-gnav b {
    font-size: 12px;
  }
}
.h-gnav span {
  display: block;
  font-size: 11px;
}
@media screen and (max-width: 960px) {
  .h-gnav span {
    font-size: 10px;
  }
}
.h-mega {
  position: fixed;
  left: 0;
  top: 110px;
  padding-top: 30px;
  width: 100%;
  -webkit-transition: top 0.3s, opacity 0.3s;
  transition: top 0.3s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.h-mega-inner {
  background-color: #FEE295;
}
.h-mega ul {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 5px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.h-mega ul.is-s {
  max-width: 640px;
}
.h-mega li {
  margin: 0 10px;
}
.h-mega a:hover {
  text-decoration: underline;
}
.h-mega a:hover:before {
  display: none;
}
.h-btnsSp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 10px;
  top: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.h-btnsSp a {
  display: block;
  padding: 10px;
}
.h-btnsSp-menu a {
  position: relative;
  width: 44px;
  height: 44px;
}
.h-btnsSp-menu span {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  top: 20px;
  height: 2px;
  background-color: #999;
}
.h-btnsSp-menu span:nth-child(1) {
  top: 11px;
}
.h-btnsSp-menu span:nth-child(3) {
  top: 29px;
}
.h-navOverSp {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 12;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.h-navOverSp.is-show {
  opacity: 1;
  pointer-events: auto;
}
.h-navOverSp p {
  position: absolute;
  right: 0;
  top: 0;
}
.h-navOverSp p a {
  display: block;
  background-color: #000;
  width: 52px;
  height: 59px;
  position: relative;
}
.h-navOverSp p a span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.h-navOverSp p a span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.h-navSp {
  position: fixed;
  left: -324px;
  top: 0;
  z-index: 12;
  background-color: #fff;
  max-width: 324px;
  width: calc(100% - 52px);
  height: 100vh;
  overflow-y: auto;
  pointer-events: none;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}
.h-navSp.is-show {
  left: 0;
  pointer-events: auto;
}
.h-navSp-logo {
  border-bottom: 1px solid #b2b2b2;
  padding: 38px 0 38px 18px;
}
.h-navSp-logo img {
  width: 90px;
}
.h-navSp-name {
  padding: 20px 15px 20px 15px;
  font-size: 18px;
  letter-spacing: 0.1em;
}
.h-navSp-icons {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  text-align: center;
}
.h-navSp-icons li {
  width: 25%;
}
.h-navSp-icons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h-navSp-icons span {
  display: block;
  margin-top: auto;
  padding-top: 15px;
  font-size: 13px;
}
.h-navSp-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 28px;
  padding: 0 5px;
  list-style-type: none;
}
.h-navSp-btns li {
  width: 50%;
  padding: 0 2px;
}
.h-navSp-btns a {
  display: block;
  background-color: #b2b2b2;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
}
.h-navSp-pages {
  border-top: 1px solid #b2b2b2;
}
.h-navSp-pages li {
  border-bottom: 1px solid #b2b2b2;
}
.h-navSp-pages a {
  position: relative;
  display: block;
  padding: 17px 30px 17px 15px;
}
.h-navSp-pages a:before {
  content: "";
  display: block;
  position: absolute;
  right: 17px;
  top: 50%;
  width: 11px;
  height: 11px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border: 1px solid #333;
  border-left: none;
  border-bottom: none;
}
.h-navSp-pages b {
  font-size: 16px;
  margin-right: 2.5em;
}
.h-navSp-pages span {
  font-size: 11px;
}
.h-navChildSp {
  position: fixed;
  left: -324px;
  top: 0;
  z-index: 12;
  background-color: #fff;
  max-width: 324px;
  width: calc(100% - 52px);
  height: 100vh;
  overflow-y: auto;
  pointer-events: none;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}
.h-navChildSp.is-show {
  left: 0;
  pointer-events: auto;
}
.h-navChildSp-top {
  background-color: #4D4D4D;
  position: relative;
  height: 59px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.h-navChildSp-ttl {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.h-navChildSp-btn {
  position: absolute;
  left: 0;
  top: 0;
}
.h-navChildSp-btn a {
  display: block;
  width: 40px;
  height: 59px;
}
.h-navChildSp-btn a:before {
  content: "";
  display: block;
  position: absolute;
  left: 18px;
  top: 50%;
  width: 11px;
  height: 11px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
}
.h-navChildSp-pages {
  border-top: 1px solid #b2b2b2;
}
.h-navChildSp-pages li {
  border-bottom: 1px solid #b2b2b2;
}
.h-navChildSp-pages a {
  position: relative;
  display: block;
  padding: 17px 30px 17px 25px;
}
.h-navChildSp-pages b {
  font-weight: normal;
  font-size: 13px;
  margin-right: 1.5em;
}
.h-navChildSp-pages span {
  font-size: 13px;
}

.l-header.is-sc .h-logo {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .l-header.is-sc .h-logo {
    padding-top: 7px;
  }
}
.l-header.is-sc .h-logo img {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .l-header.is-sc .h-logo img {
    width: 55px;
  }
}
.l-header.is-sc .h-btnsSp {
  top: 5px;
}
.l-header.is-sc .h-name {
  display: none;
}
.l-header.is-sc .h-meta {
  padding-top: 10px;
}
.l-header.is-sc .h-snav-login {
  display: none;
}
@media screen and (max-width: 960px) {
  .l-header.is-sc .h-cart {
    margin-left: 0;
  }
}
.l-header.is-sc .h-cart span {
  display: none;
}
.l-header.is-sc .h-cart i {
  right: 0;
  top: 15px;
}
.l-header.is-sc .h-search {
  right: 60px;
  top: 35px;
  width: 255px;
}
@media screen and (max-width: 960px) {
  .l-header.is-sc .h-search {
    width: 205px;
  }
}
.l-header.is-sc .h-search input {
  width: 200px;
}
@media screen and (max-width: 960px) {
  .l-header.is-sc .h-search input {
    width: 150px;
  }
}
.l-header.is-sc .h-gnav {
  left: 230px;
  top: 16px;
}
@media screen and (max-width: 960px) {
  .l-header.is-sc .h-gnav {
    left: 130px;
  }
}
.l-header.is-sc .h-gnav li {
  margin-right: 1em;
}
.l-header.is-sc .h-gnav b {
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  .l-header.is-sc .h-gnav b {
    font-size: 12px;
  }
}
.l-header.is-sc .h-gnav span {
  font-size: 10px;
}
@media screen and (max-width: 960px) {
  .l-header.is-sc .h-gnav span {
    font-size: 10px;
  }
}
.l-header.is-sc .h-mega {
  top: 40px;
}

.f-logo {
  background-color: #FEE295;
  text-align: center;
  padding: 10px 15px;
}
.f-logo img {
  width: 170px;
}
@media screen and (max-width: 767px) {
  .f-logo img {
    width: 100px;
  }
}
.f-ig {
  background-color: #FFF4DA;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 43px 15px;
  text-align: center;
}
.f-ig a:hover {
  text-decoration: underline;
}

.u-over {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .u-over:hover {
    opacity: 0.7;
  }
}
.u-inline {
  display: inline;
}
.u-inline-block {
  display: inline-block;
}
.u-block {
  display: block;
}
.u-table {
  display: table;
}
.u-table-cell {
  display: table-cell;
}
.u-txt-left {
  text-align: left;
}
.u-txt-center {
  text-align: center;
}
.u-txt-right {
  text-align: right;
}
.u-img-cover {
  display: block;
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.home-kv {
  position: relative;
}
.home-kv h2 img {
  width: 27.7%;
}
@media screen and (max-width: 767px) {
  .home-kv h2 img {
    width: 57%;
  }
}
.home-kv .slick-next::before,
.home-kv .slick-prev::before {
  border: 1px solid #FFF;
  border-left: none;
  border-bottom: none;
}
.home-kv .slick-dots {
  bottom: -35px;
}
.home-kv-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-left: 6%;
  padding-bottom: 13.9%;
}
@media screen and (max-width: 767px) {
  .home-kv-info {
    padding-left: 0;
    text-align: center;
  }
}
.home-kv-img img {
  width: 100%;
}
.home-kv-btn {
  margin-top: 6.82%;
}
@media screen and (max-width: 767px) {
  .home-kv-btn {
    margin-top: 13%;
  }
}
.home-kv-btn img {
  width: 19.64%;
}
@media screen and (max-width: 767px) {
  .home-kv-btn img {
    width: 52%;
  }
}
.home-products {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.home-products h2 {
  margin-bottom: 58px;
  text-align: center;
}
.home-products h2 img {
  width: 158px;
}
.home-products-items {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .home-products-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .home-products-item {
    width: 33.33%;
    padding: 5px;
  }
}
@media screen and (max-width: 767px) {
  .home-products-item {
    padding-bottom: 15px;
  }
}
.home-products-item {
  position: relative;
}
.home-products-item a {
  display: block;
}
.home-products-img {
  position: relative;
}
.home-products-img:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.home-products-info {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.home-products-info.is-1 h3 img {
  width: 148px;
}
.home-products-info.is-2 h3 img {
  width: 118px;
}
.home-products-info.is-3 h3 img {
  width: 129px;
}
.home-products-info.is-4 h3 img {
  width: 157px;
}
.home-products-info.is-5 h3 img {
  width: 114px;
}
.home-products-info.is-6 h3 img {
  width: 168px;
}
.home-products-jp {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  margin-top: 0.5em;
}
.home-recom {
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 75px;
  padding-bottom: 100px;
}
.home-recom h2 {
  margin-bottom: 75px;
  text-align: center;
}
.home-recom h2 img {
  width: 355px;
}
.home-recom-sliderItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 50px;
}
.home-recom-sliderItem {
  width: 33.33%;
  padding: 0 3% 20px;
  text-align: center;
}
.home-recom-sliderItem a {
  display: inline-block;
}
.home-recom-sliderItem img {
  display: block;
}
.home-recom-sliderItem span {
  display: block;
  font-size: 23px;
  font-family: "Times New Roman";
  font-weight: bold;
  margin-top: 20px;
}
.home-recom-sliderSp {
  margin: 0 0;
}
.home-recom-sliderSpItem {
  padding: 0 10% 20px;
  text-align: center;
}
.home-recom-sliderSpItem img {
  display: block;
}
.home-recom-sliderSpItem span {
  display: block;
  font-size: 23px;
  font-family: "Times New Roman";
  font-weight: bold;
  margin-top: 20px;
}
.home-shops {
  margin-bottom: 85px;
}
.home-shops-cols {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .home-shops-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.home-shops-shop {
  position: relative;
}
@media screen and (min-width: 768px) {
  .home-shops-shop {
    width: 49.5%;
  }
}
@media screen and (max-width: 767px) {
  .home-shops-shop:nth-child(1) {
    margin-bottom: 15px;
  }
}
.home-shops-shop a {
  display: block;
}
.home-shops-ttl {
  position: absolute;
  left: 3vw;
  top: 4vw;
}
@media screen and (max-width: 767px) {
  .home-shops-ttl {
    left: 20px;
    top: 35px;
  }
}
.home-shops-ttl img {
  height: 28px;
}
@media screen and (max-width: 767px) {
  .home-shops-ttl img {
    height: 20px;
  }
}
.home-shops-info {
  position: absolute;
  left: 3vw;
  bottom: 70px;
}
@media screen and (max-width: 767px) {
  .home-shops-info {
    left: 20px;
    bottom: 20px;
  }
}
.home-shops-link {
  width: 140px;
  background-color: #FFBA07;
  border-radius: 100vh;
  text-align: center;
  padding: 10px;
}
.home-shops-link span {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .home-shops-link span {
    font-size: 14px;
  }
}
.home-shops-shop a:hover .home-shops-link span {
  text-decoration: none;
}
.home-susta {
  padding: 0 15px;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .home-susta {
    margin-bottom: 120px;
  }
}
.home-susta h2 {
  margin-bottom: 1em;
  font-size: 28px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .home-susta h2 {
    font-size: 24px;
  }
}
.home-susta-txt {
  margin-bottom: 1.5em;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .home-susta-txt {
    font-size: 14px;
  }
}
.home-susta-link a {
  font-size: 18px;
  text-decoration: underline;
}
.home-susta-link a:hover {
  text-decoration: none;
}
.home-about {
  margin-bottom: 75px;
}
.home-about-cols {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .home-about-cols {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .home-about-info {
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .home-about-info {
    text-align: center;
    margin-bottom: 50px;
  }
}
.home-about-info h2 {
  margin-bottom: 1em;
  font-size: 28px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .home-about-info h2 {
    font-size: 24px;
  }
}
.home-about-txt {
  margin-bottom: 1.5em;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .home-about-txt {
    font-size: 14px;
  }
}
.home-about-link a {
  font-size: 18px;
  text-decoration: underline;
}
.home-about-link a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .home-about-movie {
    width: 64.28%;
    margin: 0 auto;
  }
}
.home-about-movieInner {
  position: relative;
  padding-top: 56%;
}
.home-about-movieInner iframe,
.home-about-movieInner video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home-ig {
  max-width: 1140px;
  margin: 0 auto 75px;
  text-align: center;
}
.home-ig h2 img {
  width: 383px;
}
@media screen and (max-width: 767px) {
  .home-ig h2 img {
    width: 335px;
  }
}
.home-ig-lead {
  margin-bottom: 50px;
  font-size: 17px;
}
.home-ig-list #instafeed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home-ig-list a {
  position: relative;
  display: inline-block;
  width: 285px;
  height: 285px;
  text-align: center;
  overflow: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .home-ig-list a {
    width: 50vw;
    height: 50vw;
  }
}
.home-ig-list a:hover {
  opacity: 0.8;
}
.home-ig-list a img {
  position: absolute;
  margin: auto;
  top: -9999px;
  bottom: -9999px;
  left: -9999px;
  right: -9999px;
  height: 130%;
  vertical-align: bottom;
  max-width: initial;
}
.home-ig-follow li {
  list-style: none;
  display: inline-block;
  padding: 43px 30px;
}
.home-ig-follow li a {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
}
.home-ig-follow li a:hover {
  text-decoration: none;
}
.home-news {
  padding: 0 15px;
}

.about-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1070px;
  margin: 0 auto;
  padding: 10px 15px;
}
.about-nav a {
  display: inline-block;
  padding: 10px;
  font-size: 18px;
  text-decoration: underline;
}
.about-nav a:hover {
  text-decoration: none;
}
.about-nav a.is-cr {
  color: #F06C54;
}
.about-lead {
  max-width: 1400px;
  margin: 130px auto;
}
@media screen and (max-width: 767px) {
  .about-lead {
    margin: 90px auto;
  }
}
.about-lead-txt {
  padding: 0 15px;
  text-align: center;
  line-height: 1.8;
}
.about-lead-txt h3 {
  font-size: 1.8em;
  margin-top: -2em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .about-lead-txt h3 {
    margin-top: 0;
  }
}
.about-lead-txt p {
  font-size: 16px;
}
.about-wimg {
  max-width: 1400px;
  margin: 0 auto;
}
.about-nav + .about-wimg {
  margin-top: 0;
}
.about-wimg-wrap {
  position: relative;
}
.about-wimg-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-wimg-inner2 {
  padding: 0 15px;
  text-align: center;
  line-height: 1.8;
}
.about-wimg-bg span {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.about-wimg-bg.is-shades1 span {
  height: 304px;
}
.about-wimg-bg.is-shades2 span {
  height: 490px;
}
.about-wimg-bg.is-shades3 span {
  height: 348px;
}
.about-wimg-bg.is-mission1 span {
  height: 304px;
}
.about-wimg-bg.is-mission2 span {
  height: 531px;
}
.about-wimg-bg.is-mission3 span {
  height: 455px;
}
.about-wimg-ttl.is-shades1 img {
  width: 425px;
}
@media screen and (max-width: 767px) {
  .about-wimg-ttl.is-shades1 img {
    width: 312px;
  }
}
.about-wimg-ttl.is-shades2 img {
  width: 519px;
}
@media screen and (max-width: 767px) {
  .about-wimg-ttl.is-shades2 img {
    width: 315px;
  }
}
.about-wimg-ttl.is-mission1 img {
  width: 623px;
}
@media screen and (max-width: 767px) {
  .about-wimg-ttl.is-mission1 img {
    width: 328px;
  }
}
.about-wimg-ttl.is-mission2 img {
  width: 661px;
}
@media screen and (max-width: 767px) {
  .about-wimg-ttl.is-mission2 img {
    width: 263px;
  }
}
.about-wimg-ttl.is-mission3 img {
  width: 460px;
}
@media screen and (max-width: 767px) {
  .about-wimg-ttl.is-mission3 img {
    width: 323px;
  }
}
.about-wimg-jp {
  font-size: 18px;
  font-weight: 700;
  margin: 0.75em 0 0;
}
@media screen and (max-width: 767px) {
  .about-wimg-jp {
    margin: 0.75em 0 0;
  }
}
.about-wimg-jp.is-mission1 {
  color: #fff;
}
.about-wimg-jp2 {
  font-size: 16px;
  font-weight: 700;
  margin: 1em 0 3em;
}
@media screen and (max-width: 767px) {
  .about-wimg-jp2 {
    margin: 1em 0 2em;
  }
}
.about-wimg-jp2.is-mission2 {
  color: #fff;
}
.about-wimg-jp2.is-mission3 {
  color: #fff;
  margin-bottom: 1.5em;
}
.about-wimg-itxt.is-shades2 img {
  width: 160px;
}
.about-wimg-itxt.is-mission2 img {
  width: 247px;
}
.about-wimg-ttxt {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2em;
}
.about-wimg-txt {
  font-size: 16px;
}
.about-wimg-txt.is-mission3 {
  color: #fff;
  margin-bottom: 2.5em;
}
.about-wimg-logo.is-mission3 img {
  width: 159px;
}
.about-con {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
}
.about-con:last-child {
  padding-bottom: 50px;
}
.about-con-cols {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .about-con-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .about-con-info {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .about-con-info {
    margin-bottom: 50px;
    text-align: center;
  }
}
.about-con-num {
  color: #FFC800;
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 1em;
}
.about-con-ttl {
  margin-bottom: 1em;
}
.about-con-ttl.is-shades1 img {
  width: 349px;
}
.about-con-ttl.is-shades2 img {
  width: 372px;
}
.about-con-ttl.is-shades3 img {
  width: 332px;
}
.about-con-ttl.is-shades4 img {
  width: 302px;
}
.about-con-ttl.is-shades5 img {
  width: 432px;
}
@media screen and (max-width: 767px) {
  .about-con-ttl.is-shades5 img {
    width: 221px;
  }
}
.about-con-ttl.is-mission1 img {
  width: 446px;
}
@media screen and (max-width: 767px) {
  .about-con-ttl.is-mission1 img {
    width: 246px;
  }
}
.about-con-ttl.is-mission2 img {
  width: 342px;
}
.about-con-ttl.is-mission3 img {
  width: 270px;
}
.about-con-ttl.is-mission4 img {
  width: 382px;
}
@media screen and (max-width: 767px) {
  .about-con-ttl.is-mission4 img {
    width: 259px;
  }
}
.about-con-jp {
  margin-bottom: 1.3em;
  font-size: 16px;
  font-weight: 700;
}
.about-con-txt {
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .about-con-txt {
    text-align: left;
  }
}
.about-con-txt strong {
  display: inline-block;
  position: relative;
  font-weight: normal;
}
.about-con-txt strong:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #FFC800;
}
@media screen and (min-width: 768px) {
  .about-con-img {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .about-con-img {
    margin: 0 -15px;
  }
}
@media screen and (min-width: 768px) {
  .about-con-img {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .about-con-img {
    margin: 0 -15px;
  }
}
.about-con-more {
  margin-top: 1em;
}
.about-con-more a {
  font-size: 20px;
  text-decoration: underline;
}
.about-con-more a:hover {
  text-decoration: none;
}
.about-storyTtl {
  max-width: 1400px;
  margin: 0 auto 80px;
}
@media screen and (min-width: 768px) {
  .about-storyTtl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  .about-storyTtl {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .about-storyTtl-info {
    width: 390px;
  }
}
.about-storyTtl-info h2 {
  position: relative;
  margin-bottom: 30px;
}
.about-storyTtl-info h2 img {
  width: 453px;
  max-width: none;
}
.about-storyTtl-info p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .about-storyTtl-info p {
    padding-left: 70px;
  }
}
@media screen and (max-width: 767px) {
  .about-storyTtl-info p {
    padding: 70px 15px;
  }
}
.about-storyTtl-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about-storyCon {
  max-width: 1400px;
  margin: 0 auto;
}
.about-storyCon:last-child {
  padding-bottom: 50px;
}
.about-storyCon-cols {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .about-storyCon-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .about-storyCon-cols.is-re {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .about-storyCon-img {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .about-storyCon-img {
    margin-bottom: 60px;
  }
}
.about-storyCon-info {
  text-align: center;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .about-storyCon-info {
    width: 50%;
  }
}
.about-storyCon-il {
  margin-bottom: 50px;
}
.about-storyCon-il.is-story1 img {
  width: 295px;
}
.about-storyCon-il.is-story2 img {
  width: 293px;
}
.about-storyCon-il.is-story3 img {
  width: 495px;
}
.about-storyCon-il.is-story4 img {
  width: 180px;
}
.about-storyCon-il.is-story5 img {
  width: 320px;
}
.about-storyCon-txt {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about-storyCon-txt {
    text-align: left;
  }
}
.about-storyCon-txt strong {
  display: inline-block;
  position: relative;
  font-weight: normal;
}
.about-storyCon-txt strong:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #FFC800;
}
.about-storyWtxt {
  margin-bottom: 60px;
  padding: 0 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about-storyWtxt {
    text-align: left;
  }
}
.about-storyWtxt-ttl {
  margin-bottom: 60px;
  padding-top: 40px;
}
.about-storyWtxt-ttl.is-story1 img {
  width: 244px;
}
@media screen and (max-width: 767px) {
  .about-storyWtxt-ttl.is-story1 img {
    width: 135px;
  }
}
.about-storyWtxt-txt p {
  font-size: 16px;
  line-height: 2;
}

.lenskits-ttl {
  margin-bottom: 40px;
}
.lenskits-ttl-cols {
  max-width: 1332px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .lenskits-ttl-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.lenskits-ttl h2 {
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .lenskits-ttl h2 {
    margin-bottom: 20px;
    text-align: center;
  }
}
.lenskits-ttl h2 img {
  width: 269px;
}
.lenskits-ttl-img img {
  width: 931px;
}
.lenskits-point {
  margin-bottom: 130px;
}
.lenskits-point h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .lenskits-point h2 {
    font-size: 20px;
  }
}
.lenskits-point-cols {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .lenskits-point-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .lenskits-point-cols {
    max-width: 340px;
  }
}
.lenskits-point-col {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lenskits-point-col {
    width: 28%;
  }
}
@media screen and (max-width: 767px) {
  .lenskits-point-col {
    margin-bottom: 50px;
  }
}
.lenskits-point-img {
  margin-bottom: 10px;
  min-height: 190px;
}
@media screen and (max-width: 767px) {
  .lenskits-point-img {
    min-height: 0;
  }
}
.lenskits-point h3 {
  margin-bottom: 1.2em;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .lenskits-point h3 {
    font-size: 19px;
  }
}
.lenskits-point-txt {
  font-size: 14px;
}
.lenskits-movie {
  padding: 0 15px 60px;
}
.lenskits-movie-movie {
  background-color: #FFF4DA;
  padding: 30px;
  max-width: 650px;
  margin: 0 auto;
}
.lenskits-movie-movieInner {
  position: relative;
  padding-top: 56%;
}
.lenskits-movie-movieInner iframe,
.lenskits-movie-movieInner video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.lenskits-items {
  padding-bottom: 30px;
}
.lenskits-items-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  list-style-type: none;
}
.lenskits-items-list li {
  width: 33.33%;
  padding: 0 3.5%;
  text-align: center;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .lenskits-items-list li {
    width: 50%;
  }
}
.lenskits-items-list li a {
  display: block;
}
.lenskits-items-list li a:hover {
  text-decoration: underline;
}
.lenskits-items-list li span {
  display: block;
  color: #575757;
  font-size: 22px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .lenskits-items-list li span {
    font-size: 16px;
  }
}
.lenskits-des {
  margin-bottom: 170px;
  padding: 0 15px;
}
.lenskits-des-cols {
  max-width: 1046px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .lenskits-des-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .lenskits-des-col {
    width: 48%;
  }
}
.lenskits-des h2 {
  line-height: 1.8;
  font-size: 18px;
  margin: 2em 0 1em;
}
.lenskits-des h2:first-child {
  margin-top: 0;
}
.lenskits-des p {
  line-height: 1.8;
  margin-bottom: 1.5em;
  font-size: 14px;
}
.lenskits-des strong {
  display: inline-block;
  position: relative;
  font-weight: normal;
}
.lenskits-des strong:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #FFC800;
}
.lenskits-bottom {
  padding: 0 15px 140px;
  text-align: center;
}
.lenskits-bottom h2 {
  margin-bottom: 18px;
}
.lenskits-bottom h2 img {
  width: 485px;
}
.lenskits-bottom-line {
  margin-bottom: 25px;
}
.lenskits-bottom-line img {
  width: 94px;
}
.lenskits-bottom-txt {
  font-size: 16px;
}

.warranty-kv {
  padding: 45px 15px 20px;
}
.warranty-kv-movie {
  background-color: #FFF4DA;
  padding: 30px;
  max-width: 650px;
  margin: 0 auto;
}
.warranty-kv-movieInner {
  position: relative;
  padding-top: 56%;
}
.warranty-kv-movieInner iframe,
.warranty-kv-movieInner video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.warranty-con {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px 80px;
}
.warranty-con h2 {
  margin: 3em 0 2em;
  font-size: 22px;
  line-height: 1.8;
}
.warranty-con p {
  margin-bottom: 3em;
  font-size: 14px;
  line-height: 1.8;
}
.warranty-con-last {
  margin-top: -1em;
}

.news-sec {
  padding: 0 15px;
}
.news-ttl h2 {
  font-size: 36px;
  text-align: center;
  padding: 40px 15px;
}
.news-posts {
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .news-posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.news-post {
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .news-post {
    width: 46%;
  }
}
.news-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-postImg {
  width: 40%;
}
.news-postInfo {
  width: 56%;
}
.news-postDate {
  font-size: 12px;
}
.news-postTtl {
  font-size: 16px;
  line-height: 1.8;
}
.news-postTxt {
  font-size: 13px;
  line-height: 1.8;
}
.news-postNav {
  padding: 20px 15px 95px;
  text-align: center;
  font-size: 20px;
}
.news-postNav a {
  text-decoration: underline;
}
.news-postNav a:hover {
  text-decoration: none;
}

.newsSingle-sec {
  padding: 0 15px;
}
.newsSingle-ttl h2 {
  font-size: 36px;
  text-align: center;
  padding: 40px 15px;
}
.newsSingle-post {
  max-width: 730px;
  margin: 0 auto;
}
.newsSingle-postDate {
  font-size: 18px;
  text-align: center;
}
.newsSingle-postTtl {
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 2em;
  text-align: center;
}
.newsSingle-postCon {
  font-size: 14px;
  line-height: 1.8;
  padding-bottom: 75px;
}
.newsSingle-postCon p {
  margin-bottom: 1.5em;
}
.newsSingle-postConImg {
  text-align: center;
}
.newsSingle-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newsSingle-share h2 {
  font-size: 15px;
  font-weight: normal;
  margin-right: 25px;
}
.newsSingle-share p {
  padding-left: 10px;
}
.newsSingle-share p img {
  width: 32px;
}
.newsSingle-postNav {
  padding: 20px 15px 95px;
  text-align: center;
  font-size: 20px;
}
.newsSingle-postNav a {
  text-decoration: underline;
}
.newsSingle-postNav a:hover {
  text-decoration: none;
}

/* --------------------------------
[サンプルコード]
-----------------------------------
    白文字が太いとき
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;

    画像文字を縮小してぼやけるとき
    backface-visibility;
    -webkit-backface-visibility;

    自動カーニング
    font-feature-settings : 'palt';

    両端揃え
    text-align: justify;
    text-justify: inter-ideograph;

    クリアーフィックス
    .clearfix {zoom: 1;}
    .clearfix:after {
      content: "";
      display: block;
      clear: both;
    }

    スマホ画像切り替え
    <picture>
      <source media="(max-width:767px)" srcset="image_sp.jpg">
      <img src="image.jpg" alt="">
    </picture>

    ダミー画像 GIF形式（39bytes）
    <img src="data:image/gif;base64,R0lGODlhAQABAGAAACH5BAEKAP8ALAAAAAABAAEAAAgEAP8FBAA7" alt="" height="1" width="1">

    NotoSans
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
-------------------------------- */
/*# sourceMappingURL=styles.css.map */
