/* =========================================================
common css
========================================================= */
*:before, *:after {
  display: block;
}

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

@media (max-width: 1024px) {
  .to-pc {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .to-sp {
    display: none !important;
  }
}

@media (hover: hover) {
  .opacity-link {
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .opacity-link:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) {
  .underline-link {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .underline-link:hover {
    text-decoration: underline;
  }
}
.wrapper {
  min-width: 320px;
  position: relative;
}

section {
  width: 100%;
}

/*------------------------------------------
.img__bedding,
.img__peak
------------------------------------------*/
.img__bedding,
.img__peak {
  width: 100%;
  height: 100%;
}
.img__bedding > img,
.img__peak > img {
  width: 100%;
  height: 100%;
}

.img__bedding {
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.img__bedding > img {
  -o-object-fit: cover;
     object-fit: cover;
}

.img__peak {
  position: absolute;
  top: 0;
  left: 0;
}
.img__peak > img {
  -o-object-fit: contain;
     object-fit: contain;
}

/* =========================================================
common ttl
========================================================= */
.cmn__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}
@media (min-width: 1025px) {
  .cmn__ttl {
    margin: 0 auto 60px;
  }
}
.cmn__ttl .txt {
  line-height: 1.2;
  display: inline-block;
  font-family: "Zen Maru Gothic";
  font-weight: bold;
  color: #006cba;
  font-size: 26px;
  padding: 0 30px;
  position: relative;
}
@media (min-width: 1025px) {
  .cmn__ttl .txt {
    line-height: 1.6;
    padding: 0 50px;
    font-size: 35px;
  }
}
.cmn__ttl .txt::before, .cmn__ttl .txt::after {
  content: "";
  background: url(../images/common/icon_ttl.png) no-repeat center/100%;
  position: absolute;
  width: 11px;
  height: 17px;
}
@media (min-width: 1025px) {
  .cmn__ttl .txt::before, .cmn__ttl .txt::after {
    width: 20px;
    height: 32px;
  }
}
.cmn__ttl .txt::before {
  top: 0;
  left: 0;
}
.cmn__ttl .txt::after {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  bottom: 0;
  right: 0;
}

.cmn__subttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
@media (min-width: 1025px) {
  .cmn__subttl {
    margin: 0 auto 50px;
  }
}
.cmn__subttl .txt {
  line-height: 1.2;
  display: inline-block;
  font-family: "Zen Maru Gothic";
  font-weight: bold;
  color: #006cba;
  font-size: 24px;
  padding: 0 20px 10px;
  border-bottom: 2px dotted #006cba;
}
@media (min-width: 1025px) {
  .cmn__subttl .txt {
    padding: 0 20px;
    line-height: 1.6;
    border-bottom: 4px dotted #006cba;
    font-size: 32px;
  }
}

.shop__block {
  margin-bottom: 50px;
}
@media (min-width: 1025px) {
  .shop__block {
    margin-bottom: 100px;
  }
}
.shop__block:last-child {
  margin-bottom: 0;
}