@charset "UTF-8";
/* CSS Document */
/* Body Html Fonts
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;500;800&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 17px;
  background-color: #FFF;
}
html:has(header.shopify), html:has(main.agent) {
  background: #FFF;
}
html:has(main.agent-company) {
  background-color: #F4F4F4;
}
html:has(main.agent-company) body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
html:has(main.shopify2026) {
  background-color: #0066FF;
}
@media screen and (max-width: 700px) {
  html {
    font-size: 16px;
  }
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #262630;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.06em;
}
body.fixed {
  position: fixed;
}
body a {
  color: #2a90cd;
  text-decoration: none;
  transition: color 0.3s ease;
}
body a:hover {
  text-decoration: underline;
}
body a img {
  transition: opacity 0.3s ease;
  backface-visibility: hidden;
}
body a img:hover {
  opacity: 0.7;
}
body img, body picture {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
body iframe {
  vertical-align: top;
}
body .wrap {
  width: 1080px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
body ::selection {
  background: rgba(42, 144, 205, 0.2); /* Safari */
}
body ::-moz-selection {
  background: rgba(42, 144, 205, 0.2); /* Firefox */
}
body:has(#voice-detail) {
  background: #eff3f3;
}

/* header
------------------------------------------------------------*/
header {
  position: relative;
  z-index: 10;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
  padding-left: 40px;
  padding-right: 40px;
  /* @include mqMax(1200px){
    position: fixed;
    left: 0;
    top: 0;
    height: 60px;
    @include b_box;
    width: 100%;
    padding-left: 15px;
    padding-right: 10px;
    +*{
      margin-top: 60px;
    }
    .head{
      &-logo{
        position: relative;
        z-index: 3;
      }
      &-nav{
        display: none;
      }
      &-menu{
        margin-left: auto;
        @include fb;
        @include direction(column);
        @include justify(center);
        @include align(center);
        top: 0;
        height: 50px;
        width: 50px;
        text-align: center;
        @include b_box;
        background: $black;
        @include radius(50%);
        z-index: 3;
        cursor: pointer;
        overflow: hidden;
        span{
          display: block;
          width: 20px;
          height: 2px;
          margin: 0 auto;
          background-color: $f;
          @include transition;
          &:last-child{
            margin-bottom: 0;
          }
          &.top{
            @include transformY(-6px);
          }
          &.middle{
            margin-top: -2px;
            left: 0;
            position: relative;
          }
          &.bottom{
            margin-top: -2px;
            @include transformY(6px);
          }
        }
      }
      &-hidden{
        @include transition;
        @include hidden;
        @include coverBG(false,100%,100%,0,0,fixed);
        @include fb;
        @include justify(center);
        @include f_wrap;
        background: rgba($bg,0.8);
        @include bdFilter;
        z-index: 2;
        @include pe;
        nav{
          @include transition;
          @include scale(1.1,center,center);
          @include fb;
          @include direction(column);
          @include justify(center);
          @include align(center);
          ul{
            @include direction(column);
            @include align(center);
            @include justify(center);
            li{
              margin-right: 0;
              margin-bottom: 25px;
              >a{
                &:after{
                  top: 50%;
                  left: -5px;
                  @include transform(-100%,-50%);
                }
              }
            }
          }
        }
      }
    }
    &.active{
      .head{
        &-menu{
          .middle {
            @include opacity(0);
            left: 20px;
          }
          .top {
            @include rotate(-45deg,center,center);
          }
          .bottom {
            @include rotate(45deg,center,center);
          }
        }
        &-hidden{
          @include hidden(visible);
          @include pe(auto);
          nav{
            @include scale(1.0,center,center);
          }
        }
      }
    }
  } */
}
header .head-logo {
  margin-right: auto;
}
header .head-logo + .head-menu {
  display: none;
}
header .head-logo a {
  display: block;
  position: relative;
}
header .head-logo a img {
  transition: all 0.3s ease;
}
header .head-logo a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  background: url(../img/common/logo-white.svg) no-repeat center/contain;
}
header .head-nav {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .head-nav > ul {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .head-nav > ul > li {
  margin-right: 30px;
  font-family: "Barlow", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-size: 0.8235294118rem;
  font-weight: bold;
  position: relative;
  text-align: center;
  line-height: 1.4;
}
header .head-nav > ul > li.current > a:after, header .head-nav > ul > li.current > span:after {
  opacity: 1;
  visibility: visible;
}
header .head-nav > ul > li > a, header .head-nav > ul > li > span {
  color: #262630;
  position: relative;
  display: block;
}
header .head-nav > ul > li > a:after, header .head-nav > ul > li > span:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -10px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background: #FFF;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
header .head-nav > ul > li > a:hover, header .head-nav > ul > li > span:hover {
  text-decoration: none;
}
header .head-nav > ul > li > a:hover:after, header .head-nav > ul > li > span:hover:after {
  opacity: 1;
  visibility: visible;
}
header .head-nav > ul > li:hover > span:after {
  opacity: 1;
  visibility: visible;
}
header .head-nav > ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}
header .head-nav > ul > li ul {
  position: absolute;
  left: -10px;
  top: calc(100% + 5px);
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  text-align: left;
}
header .head-nav > ul > li ul:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 10px;
  bottom: 100%;
}
header .head-nav > ul > li ul li {
  font-size: 13px;
  font-size: 0.7647058824rem;
  padding-left: 15px;
  position: relative;
}
header .head-nav > ul > li ul li:not(:last-child) {
  margin-bottom: 10px;
}
header .head-nav > ul > li ul li a {
  color: #262630;
  white-space: nowrap;
}
header .head-nav > ul > li ul li:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #262630;
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
header .head-nav > ul > li ul li:hover:after, header .head-nav > ul > li ul li.current:after {
  opacity: 1;
  visibility: visible;
}
header .head-nav .btn {
  font-weight: bold;
}
header .head-menu, header .head-hidden {
  display: none;
}
header.shopify {
  background: #FFF;
}
header.shopify .head-nav > ul > li > a:after {
  background-color: #30b7cb;
}
header.shopify .head-nav > ul > li ul li:after {
  background-color: #30b7cb;
}
header.shopify .btn {
  background-color: #30b7cb;
  color: #FFF;
}
header.shopify .btn:hover {
  background-color: rgb(86.7768924303, 198.6494023904, 215.2231075697);
}
header.ad .head-nav > ul > li > a:after {
  background-color: #FFE300;
}
header.ad .head-nav > ul > li ul li:after {
  background-color: #FFE300;
}
header.ad .btn {
  background-color: #FFE300;
  border: none;
}
header.ad .btn:hover {
  background-color: rgb(255, 232.6, 51);
  color: #262630;
}
header.shopify2026 {
  background: #FFF;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  left: 0;
  top: 0;
}
header.shopify2026 + * {
  margin-top: 50px;
}
header.shopify2026 .head-logo img {
  width: 150px;
}
header.shopify2026 .head-nav > ul > li > a:after {
  background-color: #0066FF;
}
header.shopify2026 .head-nav > ul > li ul li:after {
  background-color: #0066FF;
}
header.shopify2026-02 .head-logo a img {
  opacity: 0;
  visibility: hidden;
}
header.shopify2026-02 .head-logo a:after {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1001px) {
  header.shopify2026-02 .head-nav > ul > li > a, header.shopify2026-02 .head-nav > ul > li > span {
    color: #FFF;
  }
}
header.shopify2026-02 + #mainimg {
  padding-top: 10px;
}
header.resort {
  background: #FFF;
}
header.resort .head-nav > ul > li > a:after, header.resort .head-nav > ul > li > span:after {
  background-color: #f6ff00;
}
header.resort .head-nav > ul > li ul li:after {
  background-color: #f6ff00;
}
header.resort .btn {
  background-color: #30b7cb;
  color: #FFF;
}
header.resort .btn:hover {
  background-color: rgb(86.7768924303, 198.6494023904, 215.2231075697);
}
header.agent {
  position: absolute;
  width: 100%;
  top: 0;
  box-sizing: border-box;
}
header.agent:not(:has(.head-cv.show)) .head-logo a img {
  opacity: 0;
  visibility: hidden;
}
header.agent:not(:has(.head-cv.show)) .head-logo a:after {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 701px) and (max-width: 1080px) {
  header.agent .head-logo img {
    width: 140px;
  }
}
header.agent .head-nav {
  margin-right: 140px;
}
header.agent .head-nav > ul > li.current > a:after, header.agent .head-nav > ul > li.current > span:after {
  background-color: #DD5D00;
}
header.agent .head-nav > ul > li ul li:after {
  background-color: #DD5D00;
}
@media screen and (min-width: 1081px) {
  header.agent .head-nav .btn {
    display: none;
  }
}
header.agent .head-cv {
  position: absolute;
  top: 0;
  width: 180px;
  right: 0;
  aspect-ratio: 1;
  display: flex;
}
header.agent .head-cv a {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  flex-direction: column;
  text-align: center;
  color: #FFF;
  background: #DD5D00;
  line-height: 1.4;
}
header.agent .head-cv a p {
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.0588235294rem;
  font-weight: bold;
}
header.agent .head-cv a small {
  font-size: 14px;
  font-size: 0.8235294118rem;
  font-weight: 500;
}
header.agent .head-cv a:after {
  content: "";
  width: 20px;
  height: 24px;
  background: no-repeat center/contain;
  background-image: url(../img/agent/arrow-down.svg);
  margin-top: 15px;
  transition: all 0.3s ease;
}
header.agent .head-cv a:hover {
  text-decoration: none;
}
header.agent .head-cv a:hover:after {
  transform: translateY(5px);
}
@media screen and (min-width: 701px) and (max-width: 1080px) {
  header.agent .head-cv {
    width: 160px;
  }
  header.agent .head-cv a p {
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
  header.agent .head-cv a small {
    font-size: 13px;
    font-size: 0.7647058824rem;
  }
}
@media screen and (max-width: 700px) {
  header.agent .head-cv {
    position: fixed;
    top: initial;
    width: 100%;
    bottom: 0;
    height: auto;
    aspect-ratio: auto;
    transition: all 0.3s ease;
  }
  header.agent .head-cv:not(.show) {
    opacity: 0;
    visibility: hidden;
  }
  header.agent .head-cv a {
    padding: 10px 10px;
    -webkit-box-orient: horizontal;
    flex-direction: row;
  }
  header.agent .head-cv a p {
    font-size: 14px;
    font-size: 0.8235294118rem;
    margin-bottom: 4px;
  }
  header.agent .head-cv a p br {
    display: none;
  }
  header.agent .head-cv a small {
    font-size: 10px;
    font-size: 0.5882352941rem;
    display: none;
  }
  header.agent .head-cv a:after {
    width: 12px;
    height: 12px;
    background-size: contain;
    margin-top: 0;
    margin-left: 10px;
  }
}
@media screen and (max-width: 1080px) {
  header.agent {
    position: fixed;
  }
  header.agent .head-nav {
    margin-right: 0;
  }
}
@media screen and (max-width: 1080px) and (min-width: 701px) {
  header.agent .head-cv {
    margin-right: 70px;
    aspect-ratio: auto;
    width: auto;
  }
  header.agent .head-cv a {
    width: auto;
    height: auto;
    padding: 10px 15px;
  }
  header.agent .head-cv a p {
    font-size: 15px;
    font-size: 0.8823529412rem;
    margin-bottom: 5px;
  }
  header.agent .head-cv a small {
    font-size: 11px;
    font-size: 0.6470588235rem;
  }
  header.agent .head-cv a br {
    display: none;
  }
  header.agent .head-cv a:after {
    width: 20px;
    height: 20px;
    background-size: contain;
    margin-top: 8px;
  }
}
@media screen and (max-width: 700px) {
  header.agent .head-logo {
    width: 120px;
  }
}
header.agent-company {
  position: absolute;
  width: 100%;
  top: 0;
  box-sizing: border-box;
  padding-right: 10px;
}
header.agent-company .head-nav {
  margin-right: 180px;
}
@media screen and (min-width: 1081px) {
  header.agent-company .head-nav .btn {
    display: none;
  }
}
header.agent-company .head-nav > ul > li.current > a:after, header.agent-company .head-nav > ul > li.current > span:after {
  background-color: #35b912;
}
header.agent-company .head-nav > ul > li ul li:after {
  background-color: #35b912;
}
header.agent-company .head-cv {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  right: 0;
}
header.agent-company .head-cv a {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1DDC47;
  padding: 15px 15px;
  display: flex;
  -webkit-box-orient: vertical;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFF;
  transition: all 0.3s ease;
  text-align: center;
}
header.agent-company .head-cv a p {
  font-size: 16px;
  font-size: 0.9411764706rem;
  font-weight: 600;
  line-height: 1.3;
}
header.agent-company .head-cv a small {
  font-size: 12px;
  font-size: 0.7058823529rem;
  font-weight: 600;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header.agent-company .head-cv a:after {
  content: "";
  width: 16px;
  height: 20px;
  background: no-repeat center/contain;
  background-image: url(../img/agent/arrow-down.svg);
  margin-top: 6px;
  transition: all 0.3s ease;
}
header.agent-company .head-cv a:hover {
  text-decoration: none;
  opacity: 0.8;
}
header.agent-company .head-cv a:hover:after {
  transform: translateY(5px);
}
header.agent-company .head-menu {
  margin-left: 10px;
}
@media screen and (min-width: 701px) and (max-width: 1080px) {
  header.agent-company {
    height: 80px;
  }
  header.agent-company .head-cv {
    margin-right: 70px;
  }
  header.agent-company .head-cv a {
    padding: 10px 15px;
  }
  header.agent-company .head-nav {
    margin-right: 0;
  }
}
@media screen and (max-width: 1080px) {
  header.agent-company {
    position: fixed;
  }
}
@media screen and (max-width: 700px) {
  header.agent-company {
    height: 60px;
    background: transparent;
  }
  header.agent-company .head-logo {
    width: 160px;
  }
  header.agent-company .head-cv {
    position: fixed;
    top: initial;
    height: auto;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 5px;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  header.agent-company .head-cv:not(.show) {
    opacity: 0;
    visibility: hidden;
  }
  header.agent-company .head-cv a {
    -webkit-box-orient: vertical;
    flex-direction: column;
    height: auto;
    position: relative;
    border-radius: 40px;
    padding: 5px 30px 5px 10px;
    line-height: 1.2;
  }
  header.agent-company .head-cv a p {
    margin-right: 0;
    margin-bottom: 4px;
    font-size: 14px;
    font-size: 0.8235294118rem;
    font-weight: bold;
  }
  header.agent-company .head-cv a small {
    font-size: 10px;
    font-size: 0.5882352941rem;
    font-weight: bold;
  }
  header.agent-company .head-cv a small:before {
    display: none;
  }
  header.agent-company .head-cv a:after {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -5px;
  }
  header.agent-company .head-nav {
    margin-right: 0;
  }
}
@media screen and (min-width: 1001px) {
  header.white .head-nav > ul > li > a, header.white .head-nav > ul > li > span {
    color: #FFF;
  }
}
@media screen and (max-width: 1240px) {
  header {
    padding-left: 30px;
    padding-right: 30px;
  }
  header .head-nav > ul > li {
    margin-right: 22px;
  }
}
@media screen and (min-width: 701px) and (max-width: 1080px) {
  header {
    padding-left: 30px;
    padding-right: 30px;
  }
  header .head-nav > ul > li {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1080px) {
  header {
    position: fixed;
    left: 0;
    top: 0;
    height: 60px;
    box-sizing: border-box;
    width: 100%;
    padding-left: 15px;
    padding-right: 10px;
  }
  header .head-logo {
    position: relative;
    z-index: 3;
  }
  header .head-nav {
    display: none;
  }
  header .head-menu {
    margin-left: auto;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    height: 50px;
    width: 50px;
    text-align: center;
    box-sizing: border-box;
    background: #262630;
    border-radius: 50%;
    z-index: 3;
    cursor: pointer;
    overflow: hidden;
  }
  header .head-menu span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background-color: #FFF;
    transition: all 0.3s ease;
  }
  header .head-menu span:last-child {
    margin-bottom: 0;
  }
  header .head-menu span.top {
    transform: translateY(-6px);
  }
  header .head-menu span.middle {
    margin-top: -2px;
    left: 0;
    position: relative;
  }
  header .head-menu span.bottom {
    margin-top: -2px;
    transform: translateY(6px);
  }
  header .head-hidden {
    transition: all 0.3s ease;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    background: rgba(38, 38, 48, 0.8);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  header .head-hidden .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  header .head-hidden nav {
    position: fixed;
    top: 0;
    width: 240px;
    height: 100%;
    right: 0;
    transition: all 0.3s ease;
    transform: translateX(100%);
    display: block;
    padding-top: 60px;
    padding-bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    box-sizing: border-box;
  }
  header .head-hidden nav > ul {
    display: block;
    border-bottom: 1px solid #ddd;
  }
  header .head-hidden nav > ul > li {
    border-top: 1px solid #ddd;
    margin-right: 0;
    text-align: left;
  }
  header .head-hidden nav > ul > li > a, header .head-hidden nav > ul > li > span {
    padding: 15px 15px 15px 25px;
  }
  header .head-hidden nav > ul > li > a br, header .head-hidden nav > ul > li > span br {
    display: none;
  }
  header .head-hidden nav > ul > li > a:after, header .head-hidden nav > ul > li > span:after {
    top: 50%;
    left: 10px;
    background-color: #262630;
    transform: translateY(-50%);
  }
  header .head-hidden nav > ul > li ul {
    position: relative;
    left: 0;
    width: auto;
    top: 0;
    opacity: 1;
    visibility: visible;
    padding: 0 10px 15px 25px;
    background: transparent;
  }
  header .head-hidden nav > ul > li ul li {
    font-size: 14px;
    font-size: 0.8235294118rem;
  }
  header .head-hidden nav > ul > li ul li:not(:last-child) {
    margin-bottom: 8px;
  }
  header .head-hidden nav .btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  header.active .head-logo a img {
    opacity: 0;
    visibility: hidden;
  }
  header.active .head-logo a:after {
    opacity: 1;
    visibility: visible;
  }
  header.active .head-menu .middle {
    opacity: 0;
    left: 20px;
  }
  header.active .head-menu .top {
    transform: rotate(-45deg);
    transform-origin: center center;
  }
  header.active .head-menu .bottom {
    transform: rotate(45deg);
    transform-origin: center center;
  }
  header.active .head-hidden {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header.active .head-hidden nav {
    transform: translateX(0);
  }
  header + * {
    margin-top: 60px;
  }
  header.shopify {
    /*position: absolute;*/
  }
  header.shopify img {
    width: 170px;
    height: auto;
  }
  header.shopify2026 {
    padding-left: 10px;
    padding-right: 0;
  }
  header.shopify2026 .head-menu {
    border-radius: 0;
    background-color: #0066FF;
  }
  header.shopify2026 .head-hidden nav {
    background-color: #FFF;
  }
}

#cv {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 20px;
}
#cv .icon {
  line-height: 0;
  margin-right: 14px;
}
#cv .text {
  font-size: 20px;
  font-size: 1.1764705882rem;
  font-weight: bold;
}
#cv .text small {
  font-size: 14px;
  font-size: 0.8235294118rem;
  font-weight: 500;
  margin-left: 20px;
  display: -moz-inline-box;
  display: inline-block;
}
#cv .text a {
  color: #262630;
}
#cv.resort {
  background-color: #f6ff00;
}
@media screen and (max-width: 1080px) {
  #cv + header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
  #cv + header + * {
    margin-top: 0;
  }
}
@media screen and (max-width: 700px) {
  #cv .icon {
    margin-right: 10px;
  }
  #cv .text {
    font-size: 16px;
    font-size: 0.9411764706rem;
    line-height: 1.2;
  }
  #cv .text small {
    font-size: 11px;
    font-size: 0.6470588235rem;
    margin-left: 0px;
    display: block;
    margin-top: 2px;
  }
}

/* footer
------------------------------------------------------------*/
footer {
  background: #262630;
  color: rgba(255, 255, 255, 0.4);
  padding: 70px 50px 50px;
}
footer a {
  color: rgba(255, 255, 255, 0.4);
}
footer a:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.2);
}
footer > * {
  width: 1080px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
footer .foot-top {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
footer .foot-top .logo {
  margin-right: auto;
  opacity: 0.5;
}
footer .foot-top .copy {
  font-family: "Barlow", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.1;
  font-size: 32px;
  font-size: 1.8823529412rem;
  font-weight: 300;
}
footer .foot-nav {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .foot-nav nav {
  display: flex;
  width: 10px;
  -ms-flex: 1 0 auto;
  flex-grow: 1;
}
footer .foot-nav nav ul:nth-child(1):not(:last-child) {
  display: flex;
  flex-wrap: wrap;
  margin-right: -30px;
  margin-bottom: -15px;
}
footer .foot-nav nav ul:nth-child(1):not(:last-child) li {
  width: calc(33.3333333333% - 30px);
  margin-right: 30px;
  margin-bottom: 15px;
}
footer .foot-nav nav ul:nth-child(1):not(:last-child) li span {
  display: block;
}
footer .foot-nav nav ul:nth-child(1):not(:last-child) li span:nth-child(1) {
  font-family: "Barlow", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 20px;
  font-size: 1.1764705882rem;
  line-height: 1.3;
  margin-bottom: 5px;
}
footer .foot-nav nav ul:nth-child(1):not(:last-child) li span:nth-child(2) {
  font-size: 11px;
  font-size: 0.6470588235rem;
  font-weight: bold;
}
footer .foot-nav nav ul:nth-child(2) {
  margin-left: 70px;
  display: flex;
}
footer .foot-nav nav ul:nth-child(2) > li {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  padding-left: 30px;
  padding-right: 30px;
  font-family: "Barlow", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 20px;
  font-size: 1.1764705882rem;
}
footer .foot-nav nav ul:first-child:last-child {
  display: flex;
}
footer .foot-nav nav ul:first-child:last-child > li {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  padding-left: 30px;
  padding-right: 30px;
  font-family: "Barlow", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 20px;
  font-size: 1.1764705882rem;
}
footer .foot-nav .address {
  font-size: 12px;
  font-size: 0.7058823529rem;
}
footer .foot-nav > div {
  -webkit-box-original-group: 3;
  -ms-flex-order: 3;
  order: 3;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 15px;
  margin-top: 30px;
}
footer .foot-nav > div ul {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-bottom: -5px;
  font-size: 13px;
  font-size: 0.7647058824rem;
}
footer .foot-nav > div ul li {
  margin-right: 20px;
  margin-bottom: 5px;
}
footer.agent {
  position: relative;
  z-index: 4;
  background-color: #FFF;
  color: #262630;
}
footer.agent .foot-inside {
  width: 1280px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
footer.agent .foot-logo {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}
footer.agent .foot-logo span {
  margin-right: 20px;
  font-size: 15px;
  font-size: 0.8823529412rem;
  font-weight: bold;
}
footer.agent .foot-address {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-size: 0.8235294118rem;
  margin-right: -40px;
}
footer.agent .foot-address p {
  margin-right: 40px;
}
footer.agent .foot-right {
  margin-left: auto;
}
footer.agent .foot-nav {
  display: flex;
  margin-left: -1em;
}
footer.agent .foot-nav li {
  font-size: 14px;
  font-size: 0.8235294118rem;
  margin-left: 1em;
}
footer.agent .foot-nav li a {
  color: #262630;
}
footer.agent .foot-copy {
  display: block;
  text-align: right;
  font-size: 14px;
  font-size: 0.8235294118rem;
  margin-top: 10px;
}
@media screen and (min-width: 701px) and (max-width: 1080px) {
  footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  footer .foot-nav nav ul:nth-child(1):not(:last-child) {
    margin-right: -20px;
  }
  footer .foot-nav nav ul:nth-child(1):not(:last-child) li {
    width: calc(33.3333333333% - 20px);
    margin-right: 20px;
  }
}
@media screen and (min-width: 701px) and (max-width: 1080px) and (max-width: 850px) {
  footer .foot-nav nav ul:nth-child(1):not(:last-child) li {
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 701px) and (max-width: 1080px) {
  footer .foot-nav nav ul:nth-child(1):not(:last-child) li span:nth-child(1) {
    font-size: 18px;
    font-size: 1.0588235294rem;
  }
  footer .foot-nav nav ul:nth-child(2) {
    margin-left: 40px;
  }
}
@media screen and (min-width: 701px) and (max-width: 1080px) and (max-width: 900px) {
  footer .foot-nav nav ul:nth-child(2) {
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (min-width: 701px) and (max-width: 1080px) {
  footer .foot-nav nav ul:nth-child(2) li {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    font-size: 1.0588235294rem;
  }
  footer.agent .foot-address {
    margin-right: -30px;
  }
  footer.agent .foot-address p {
    margin-right: 30px;
  }
  footer.agent .foot-right {
    margin-left: auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 700px) {
  footer {
    padding: 30px 20px 20px;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
  }
  footer .foot-top {
    -webkit-box-original-group: 3;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-orient: vertical;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 0;
  }
  footer .foot-top .logo {
    margin-right: 0;
    margin-bottom: 10px;
  }
  footer .foot-top .logo img {
    width: 180px;
  }
  footer .foot-top .copy {
    font-size: 20px;
    font-size: 1.1764705882rem;
  }
  footer .foot-nav {
    -webkit-box-original-group: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    flex-wrap: wrap;
  }
  footer .foot-nav nav {
    flex-wrap: wrap;
    width: 100%;
  }
  footer .foot-nav nav ul:nth-child(1):not(:last-child) {
    margin-right: -15px;
    margin-bottom: -10px;
  }
  footer .foot-nav nav ul:nth-child(1):not(:last-child) li {
    width: calc(33.3333333333% - 15px);
    margin-right: 15px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 700px) and (max-width: 400px) {
  footer .foot-nav nav ul:nth-child(1):not(:last-child) li {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 700px) {
  footer .foot-nav nav ul:nth-child(1):not(:last-child) li span:nth-child(1) {
    font-size: 17px;
    font-size: 1rem;
  }
  footer .foot-nav nav ul:nth-child(1):not(:last-child) li span:nth-child(2) {
    font-size: 10px;
    font-size: 0.5882352941rem;
  }
  footer .foot-nav nav ul:nth-child(2) {
    margin-left: 0;
    width: 100%;
    margin-top: 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer .foot-nav nav ul:nth-child(2) li {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
  footer .foot-nav nav ul:nth-child(2) li:first-child {
    border-left: none;
  }
  footer .foot-nav nav ul:first-child:last-child {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer .foot-nav nav ul:first-child:last-child li {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
  footer .foot-nav nav ul:first-child:last-child li:first-child {
    border-left: none;
  }
  footer .foot-nav > div {
    -webkit-box-original-group: 2;
    -ms-flex-order: 2;
    order: 2;
    border-top-color: rgba(255, 255, 255, 0.2);
    margin-top: 15px;
    padding-top: 15px;
  }
  footer .foot-nav > div ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: -15px;
  }
  footer .foot-nav > div ul li {
    margin-right: 15px;
  }
  footer .foot-nav .address {
    -webkit-box-original-group: 3;
    -ms-flex-order: 3;
    order: 3;
    text-align: center;
    padding-top: 20px;
    width: 100%;
  }
  footer.agent .foot-logo {
    width: 100%;
    margin-bottom: 20px;
  }
  footer.agent .foot-logo span {
    text-align: center;
    width: 100%;
    margin-right: 0px;
    font-size: 13px;
    font-size: 0.7647058824rem;
  }
  footer.agent .foot-logo span:not(:last-child) {
    margin-bottom: 10px;
  }
  footer.agent .foot-address {
    font-size: 13px;
    font-size: 0.7647058824rem;
    margin-right: -15px;
    margin-bottom: -10px;
  }
  footer.agent .foot-address p {
    margin-right: 15px;
    width: calc(50% - 15px);
    margin-bottom: 10px;
  }
  footer.agent .foot-right {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  footer.agent .foot-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer.agent .foot-nav li {
    font-size: 13px;
    font-size: 0.7647058824rem;
  }
  footer.agent .foot-copy {
    text-align: center;
    font-size: 12px;
    font-size: 0.7058823529rem;
    margin-top: 10px;
  }
}
footer.shopify2026, footer.simple {
  background-color: #FFF;
  padding: 40px 50px;
}
footer.shopify2026 .foot-inside, footer.simple .foot-inside {
  width: 1200px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
footer.shopify2026 .foot-logo a, footer.simple .foot-logo a {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 5px;
  gap: 20px;
  color: #262630;
  font-size: 13px;
  font-size: 0.7647058824rem;
  font-weight: 500;
}
footer.shopify2026 .foot-links, footer.simple .foot-links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 40px;
  row-gap: 10px;
}
footer.shopify2026 .foot-links li, footer.simple .foot-links li {
  font-family: "Barlow", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
footer.shopify2026 .foot-links li a, footer.simple .foot-links li a {
  font-size: 13px;
  font-size: 0.7647058824rem;
  color: #A0A0A0;
}
footer.shopify2026.black, footer.simple.black {
  background-color: #262630;
}
footer.shopify2026.black .foot-logo a, footer.simple.black .foot-logo a {
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 701px) and (max-width: 1080px) {
  footer.shopify2026, footer.simple {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 700px) {
  footer.shopify2026, footer.simple {
    padding: 20px;
  }
  footer.shopify2026 .foot-inside, footer.simple .foot-inside {
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  footer.shopify2026 .foot-logo a, footer.simple .foot-logo a {
    -webkit-box-orient: vertical;
    flex-direction: column;
    row-gap: 5px;
    gap: 5px;
  }
  footer.shopify2026 .foot-links, footer.simple .foot-links {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 10px;
    row-gap: 5px;
  }
}

#mainimg {
  padding: 30px 50px 60px;
  text-align: center;
}
#mainimg h1 {
  text-align: center;
  font-size: 54px;
  font-size: 3.1764705882rem;
  font-weight: 900;
  line-height: 1.2037037037;
  margin-bottom: 100px;
}
#mainimg h1 span {
  font-size: 72px;
  font-size: 4.2352941176rem;
}
#mainimg h2 {
  margin-bottom: 60px;
}
#mainimg p {
  font-size: 17px;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  #mainimg {
    padding: 20px 20px 30px;
  }
  #mainimg h1 {
    font-size: min(6.5vw, 46 + px);
    font-size: min(6.5vw, 2.7058823529rem);
    margin-bottom: 40px;
    line-height: 1.5;
  }
  #mainimg h1 span {
    font-size: 1.5em;
  }
  #mainimg h2 {
    margin-bottom: 30px;
  }
  #mainimg p {
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
}

/* main ad
------------------------------------------------------------*/
main.ad {
  padding-bottom: 20px;
}
main.ad #thought, main.ad #price, main.ad #case {
  background: linear-gradient(135.94deg, #F2F4F7 6.41%, #DAE6F6 104.02%);
  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: 20px;
  padding: 100px 50px;
}
main.ad #thought .content, main.ad #price .content {
  width: 1060px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  row-gap: 50px;
}
main.ad #thought .item-hd, main.ad #price .item-hd {
  width: 315px;
  font-size: 45px;
  font-size: 2.6470588235rem;
  font-weight: 900;
  line-height: 1.6;
  text-align: right;
}
main.ad #thought .item-text, main.ad #price .item-text {
  width: 10px;
  -ms-flex: 1 0 auto;
  flex-grow: 1;
  font-size: 17px;
  font-size: 1rem;
}
main.ad #thought .item-text p:not(:last-child), main.ad #price .item-text p:not(:last-child) {
  margin-bottom: 25px;
}
main.ad #thought .item-price, main.ad #price .item-price {
  width: 880px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #FFF;
  color: #E93A91;
  text-align: center;
  font-size: 24px;
  font-size: 1.4117647059rem;
  font-weight: bold;
  padding: 30px;
  border-radius: 15px;
  box-sizing: border-box;
}
main.ad #thought .item-price small, main.ad #price .item-price small {
  font-size: 20px;
  font-size: 1.1764705882rem;
}
main.ad #case {
  padding-top: 80px;
  padding-bottom: 80px;
}
main.ad #case .content {
  width: 1200px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #FFF;
  box-sizing: border-box;
  border-radius: 15px;
  padding: 80px;
}
main.ad #case .item-title {
  text-align: center;
  line-height: 1.2;
  margin-bottom: 30px;
}
main.ad #case .item-title > span {
  color: #E93A91;
  font-size: 24px;
  font-size: 1.4117647059rem;
  font-weight: bold;
}
main.ad #case .item-title h2 {
  font-size: 45px;
  font-size: 2.6470588235rem;
  font-weight: 800;
}
main.ad #case .item-title h2 span {
  font-family: "Barlow", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #E93A91;
}
main.ad #case .item-title h2 span span {
  font-size: 64px;
  font-size: 3.7647058824rem;
  font-weight: 800;
}
main.ad #case .item-title h3 {
  font-size: 20px;
  font-size: 1.1764705882rem;
  margin-top: 10px;
}
main.ad #case .item-result {
  border: 1px solid #DFDFE2;
  padding: 30px;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  border-radius: 5px;
  margin-bottom: 60px;
}
main.ad #case .item-result > * {
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
main.ad #case .item-result > *:not(:last-child) {
  border-right: 1px solid #DFDFE2;
  padding-right: 40px;
  margin-right: 40px;
}
main.ad #case .item-table {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 60px;
}
main.ad #case .item-table > *:not(:last-child) {
  margin-right: 35px;
}
main.ad #case .item-graph {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
  gap: 50px;
}
main.ad #case .item-point {
  border: 1px solid #E93A91;
  background: #FEF5F9;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px;
}
main.ad #case .item-point h2 {
  display: flex;
  -webkit-box-orient: vertical;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-size: 1.1764705882rem;
  font-weight: bold;
  color: #E93A91;
  margin-right: 30px;
}
main.ad #case .item-point h2:before {
  content: "";
  width: 68px;
  height: 68px;
  background: no-repeat center/auto;
  background-image: url(../img/ad/case/icon-point.svg);
}
main.ad #case .item-point ul {
  display: flex;
}
main.ad #case .item-point ul li {
  border-left: 1px solid #DFDFE2;
  padding-left: 20px;
}
main.ad #case .item-point ul li:not(:last-child) {
  margin-right: 20px;
}
main.ad #case .item-point ul li h3 {
  background: url(../img/ad/case/icon-check.svg) no-repeat left center;
  padding-left: 32px;
  font-size: 17px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}
main.ad #case .item-point ul li p {
  font-size: 14px;
  font-size: 0.8235294118rem;
  font-weight: 500;
  line-height: 1.6;
}
main.ad #contact {
  margin-left: 40px;
  margin-right: 40px;
  padding: 60px 50px;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f97316 100%);
}
main.ad #contact .content {
  text-align: center;
  width: 1060px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
main.ad #contact p {
  font-size: 17px;
  font-size: 1rem;
  font-weight: bold;
  color: #FFF;
}
main.ad #contact p:not(:last-child) {
  margin-bottom: 40px;
}
main.ad #contact .btn {
  margin-left: auto;
  margin-right: auto;
}
main.ad #contact .btn-ad {
  background-color: #FFE300;
  height: 80px;
  font-size: 20px;
  font-size: 1.1764705882rem;
  font-weight: 900;
  border-radius: 500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000000;
  transition: all 0.3s ease;
  position: relative;
}
main.ad #contact .btn-ad:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  right: 0;
  background: url(../img/ad/arrow-btn.svg) no-repeat center;
  transition: all 0.3s ease;
}
main.ad #contact .btn-ad:hover {
  text-decoration: none;
  background-color: rgba(255, 227, 0, 0.8);
}
main.ad #contact .btn-ad:hover:after {
  transform: translateX(5px);
}

@media screen and (min-width: 701px) and (max-width: 1080px) {
  /* main ad
  ------------------------------------------------------------*/
  main.ad #thought, main.ad #price, main.ad #case {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 80px 40px;
  }
  main.ad #thought .content, main.ad #price .content {
    gap: 40px;
    row-gap: 40px;
  }
  main.ad #thought .item-hd, main.ad #price .item-hd {
    width: 32%;
    font-size: min(3.7vw, 40 + px);
    font-size: min(3.7vw, 2.3529411765rem);
  }
  main.ad #thought .item-text, main.ad #price .item-text {
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
  main.ad #thought .item-text p:not(:last-child), main.ad #price .item-text p:not(:last-child) {
    margin-bottom: 25px;
  }
  main.ad #thought .item-price, main.ad #price .item-price {
    font-size: 21px;
    font-size: 1.2352941176rem;
  }
  main.ad #thought .item-price small, main.ad #price .item-price small {
    font-size: 18px;
    font-size: 1.0588235294rem;
  }
  main.ad #case .content {
    padding: 60px 40px;
  }
  main.ad #case .item-title > span {
    font-size: 21px;
    font-size: 1.2352941176rem;
  }
  main.ad #case .item-title h2 {
    font-size: min(5vw, 40 + px);
    font-size: min(5vw, 2.3529411765rem);
  }
  main.ad #case .item-title h2 span {
    font-family: "Barlow", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #E93A91;
  }
  main.ad #case .item-title h2 span span {
    font-size: 1.4em;
  }
  main.ad #case .item-title h3 {
    font-size: 18px;
    font-size: 1.0588235294rem;
  }
  main.ad #case .item-result {
    padding: 25px;
  }
  main.ad #case .item-result > *:not(:last-child) {
    padding-right: 25px;
    margin-right: 25px;
  }
  main.ad #case .item-table > *:not(:last-child) {
    margin-right: 15px;
  }
  main.ad #case .item-graph {
    gap: 20px;
  }
  main.ad #case .item-point {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  main.ad #case .item-point h2 {
    font-size: 18px;
    font-size: 1.0588235294rem;
    margin-right: 20px;
  }
  main.ad #case .item-point h2:before {
    content: "";
    width: 68px;
    height: 68px;
    background: no-repeat center/auto;
    background-image: url(../img/ad/case/icon-point.svg);
  }
  main.ad #case .item-point ul {
    width: 10px;
    -ms-flex: 1 0 auto;
    flex-grow: 1;
    flex-wrap: wrap;
  }
  main.ad #case .item-point ul li {
    width: 100%;
    box-sizing: border-box;
  }
  main.ad #case .item-point ul li:not(:last-child) {
    padding-bottom: 30px;
    margin-right: 0px;
  }
  main.ad #case .item-point ul li h3 {
    background: url(../img/ad/case/icon-check.svg) no-repeat left center;
    padding-left: 32px;
    font-size: 17px;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  main.ad #case .item-point ul li p {
    font-size: 14px;
    font-size: 0.8235294118rem;
    font-weight: 500;
    line-height: 1.6;
  }
  main.ad #contact {
    margin-left: 20px;
    margin-right: 20px;
    padding: 60px 40px;
  }
}
@media screen and (max-width: 700px) {
  /* main ad
  ------------------------------------------------------------*/
  main.ad #thought, main.ad #price, main.ad #case {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 50px 20px;
  }
  main.ad #thought .content, main.ad #price .content {
    gap: 0;
    row-gap: 20px;
  }
  main.ad #thought .item-hd, main.ad #price .item-hd {
    width: 100%;
    font-size: min(7vw, 40 + px);
    font-size: min(7vw, 2.3529411765rem);
    text-align: left;
  }
  main.ad #thought .item-text, main.ad #price .item-text {
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
  main.ad #thought .item-text p:not(:last-child), main.ad #price .item-text p:not(:last-child) {
    margin-bottom: 15px;
  }
  main.ad #thought .item-price, main.ad #price .item-price {
    font-size: 19px;
    font-size: 1.1176470588rem;
    padding: 20px;
  }
  main.ad #thought .item-price small, main.ad #price .item-price small {
    font-size: 16px;
    font-size: 0.9411764706rem;
    display: block;
  }
  main.ad #case {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  main.ad #case .content {
    padding: 40px 20px;
  }
  main.ad #case .item-title {
    margin-bottom: 20px;
  }
  main.ad #case .item-title > span {
    font-size: 18px;
    font-size: 1.0588235294rem;
  }
  main.ad #case .item-title h2 {
    font-size: min(6vw, 30 + px);
    font-size: min(6vw, 1.7647058824rem);
  }
  main.ad #case .item-title h2 span span {
    font-size: 1.4em;
  }
  main.ad #case .item-title h3 {
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
  main.ad #case .item-result {
    padding: 20px;
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
  }
  main.ad #case .item-result > *:not(:last-child) {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 25px;
  }
  main.ad #case .item-result > *:nth-child(1) img {
    width: 230px;
  }
  main.ad #case .item-table {
    -webkit-box-orient: vertical;
    flex-direction: column;
    margin-bottom: 30px;
  }
  main.ad #case .item-table > *:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  main.ad #case .item-table span img {
    transform: rotate(90deg);
    transform-origin: center center;
  }
  main.ad #case .item-graph {
    -webkit-box-orient: vertical;
    flex-direction: column;
    margin-bottom: 30px;
    gap: 20px;
  }
  main.ad #case .item-point {
    max-width: 100%;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    flex-direction: column;
    padding: 20px;
  }
  main.ad #case .item-point h2 {
    margin-right: 0;
    margin-bottom: 15px;
  }
  main.ad #case .item-point ul {
    -webkit-box-orient: vertical;
    flex-direction: column;
  }
  main.ad #case .item-point ul li {
    width: auto;
    border-left: none;
  }
  main.ad #case .item-point ul li:not(:last-child) {
    margin-right: 0px;
    padding-bottom: 20px;
  }
  main.ad #case .item-point ul li h3 {
    font-size: 17px;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  main.ad #contact {
    margin-left: 10px;
    margin-right: 10px;
    padding: 40px 20px;
  }
  main.ad #contact p {
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
  main.ad #contact p:not(:last-child) {
    margin-bottom: 25px;
  }
  main.ad #contact .btn {
    height: 60px;
    font-size: 17px;
    font-size: 1rem;
    max-width: 100%;
  }
}
/* form */
textarea {
  -webkit-appearance: none;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  resize: vertical;
  border: none;
  background: #FFF;
  font-size: 14px;
  font-size: 0.8235294118rem;
  padding: 10px;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
textarea:focus {
  background-color: #FFF;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}
textarea.h100 {
  height: 100px;
}
textarea::placeholder {
  color: #999;
}

input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], input[type=search] {
  -webkit-appearance: none;
  height: 60px;
  line-height: 60px;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: all 0.3s ease;
  border-radius: 15px;
  border: none;
  font-size: 14px;
  font-size: 0.8235294118rem;
  position: relative;
  padding-left: 10px;
  background: #FFF;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 700px) {
  input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], input[type=search] {
    height: 50px;
    line-height: 50px;
  }
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus, input[type=number]:focus, input[type=search]:focus {
  background-color: #FFF;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}
input[type=text].lg, input[type=email].lg, input[type=tel].lg, input[type=password].lg, input[type=number].lg, input[type=search].lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.0588235294rem;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, input[type=password]::placeholder, input[type=number]::placeholder, input[type=search]::placeholder {
  color: #999;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + .checkbox:after {
  opacity: 1;
  visibility: visible;
  transform: rotate(45deg);
  transform-origin: center center;
}
input[type=radio] {
  display: none;
}
input[type=radio]:checked + .radio:after {
  opacity: 1;
  visibility: visible;
}

label.checkbox {
  padding-left: 40px;
  min-height: 30px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  font-weight: normal;
  position: relative;
  line-height: 1.5;
}
label.checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: -moz-inline-box;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #FFF;
  border: none;
  border-radius: 50%;
  margin-top: 0;
}
label.checkbox:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 11px;
  display: block;
  width: 5px;
  height: 10px;
  border-right: 3px solid #262630;
  border-bottom: 3px solid #262630;
  transform: rotate(60deg);
  transform-origin: center center;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
}
label.radio {
  padding-left: 30px;
  min-height: 24px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  font-weight: normal;
  position: relative;
  line-height: 1.5;
}
label.radio.single {
  width: 20px;
  padding-left: 0;
}
label.radio:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  display: -moz-inline-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  background-color: #FFF;
  border-radius: 50% 50% 50% 50%;
  margin-top: 2px;
}
label.radio:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #262630;
  border-radius: 50% 50% 50% 50%;
  opacity: 0;
  visibility: hidden;
  margin-top: 2px;
}
label.select {
  position: relative;
  display: block;
  max-width: 100%;
}
label.select:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  right: 0;
  background: url(../img/common/arrow-select.svg) no-repeat center;
  pointer-events: none;
}
@media screen and (max-width: 700px) {
  label.select:after {
    width: 45px;
  }
}
label.select select {
  padding-right: 70px;
}
@media screen and (max-width: 700px) {
  label.select select {
    padding-right: 50px;
  }
}

select:not(.ui-datepicker-month, .ui-datepicker-year) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 60px;
  width: 100%;
  line-height: 60px;
  max-width: 100%;
  padding: 0 40px 0 10px;
  box-sizing: border-box;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  border-radius: 15px;
  background: #FFF;
  cursor: pointer;
  color: #262630;
  font-size: 14px;
  font-size: 0.8235294118rem;
  font-weight: normal;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
select:not(.ui-datepicker-month, .ui-datepicker-year) option {
  padding: 8px;
  border: none;
}
select:not(.ui-datepicker-month, .ui-datepicker-year).lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.0588235294rem;
}
select:not(.ui-datepicker-month, .ui-datepicker-year)::-ms-expand {
  display: none;
}

.check-radios {
  display: flex;
  flex-wrap: wrap;
  margin-right: -25px;
  margin-bottom: -10px;
}
.check-radios > * {
  margin: 0 25px 10px 0;
}
.check-radios .horizontal-item {
  margin-left: 0;
}
.check-radios .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.check-radios.vertical {
  -webkit-box-orient: vertical;
  flex-direction: column;
}

/* form */
/* btn */
.btn {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  max-width: 100%;
  height: 60px;
  padding-left: 15px;
  padding-right: 15px;
  background: transparent;
  border: 2px solid #615e5e;
  color: #262630;
  border-radius: 40px;
  font-size: 17px;
  font-size: 1rem;
  font-weight: bold;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -moz-transition: background 0.3s ease, color 0.3s ease;
  -ms-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  appearance: none;
  top: 0;
  line-height: 1.2;
}
@media screen and (max-width: 700px) {
  .btn {
    font-size: 16px;
    font-size: 0.9411764706rem;
    height: 50px;
  }
}
.btn:hover {
  text-decoration: none;
  color: #FFF;
  background-color: #262630;
  color: #FFF;
}
.btn:disabled {
  pointer-events: none;
  opacity: 0.7;
}
.btn.sml {
  height: 35px;
  font-size: 14px;
  font-size: 0.8235294118rem;
}
.btn.lg {
  height: 70px;
  font-size: 18px;
  font-size: 1.0588235294rem;
}
.btn.xl {
  height: 80px;
  font-size: 24px;
  font-size: 1.4117647059rem;
}
@media screen and (max-width: 700px) {
  .btn.xl {
    height: 65px;
    font-size: 19px;
    font-size: 1.1176470588rem;
  }
}
.btn.xxl {
  height: 100px;
  font-size: 24px;
  font-size: 1.4117647059rem;
  font-weight: 500;
  border-radius: 5px;
}
@media screen and (max-width: 700px) {
  .btn.xxl {
    height: 60px;
    font-size: 20px;
    font-size: 1.1764705882rem;
  }
}
.btn.en {
  font-family: "Barlow", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.btn.gray {
  background-color: rgba(170, 170, 170, 0.4);
}
.btn.gray:hover {
  background-color: #aaaaaa;
  color: #FFF;
}
.btn.shadow {
  box-shadow: 0px 4px 10px 0px rgba(38, 38, 48, 0.1);
}
.btn.ad {
  background-color: #FFE300;
  border: none;
}
.btn.resort {
  border: none;
  color: #262630;
  background: #a0e9eb;
}
.btn.resort:hover {
  background-color: #f6ff00;
  color: #262630;
  border-color: #f6ff00;
}
.btn.clear {
  border-color: #FFF;
  color: #FFF;
  background: transparent;
}
.btn.clear:hover {
  background-color: #FFF;
  color: #262630;
}
.btn.black {
  background-color: #262630;
  color: #FFF;
}
.btn.agent {
  background-color: #DD5D00;
  border-color: #DD5D00;
  color: #FFF;
}
.btn.agent:hover {
  background-color: #FFF;
  color: #DD5D00;
}
.btn.agent-company {
  background-color: #1DDC47;
  border-color: #1DDC47;
  color: #FFF;
}
.btn.agent-company:hover {
  background-color: #FFF;
  color: #1DDC47;
}
.btn.line {
  background-color: #00c300;
  color: #FFF;
  border-color: #00c300;
}
.btn.line:before {
  content: "";
  width: 30px;
  height: 30px;
  background: no-repeat center/contain;
  margin-right: 10px;
  background-image: url(../img/common/icon-line.svg);
  transition: all 0.3s ease;
}
.btn.line:hover {
  background-color: rgba(0, 195, 0, 0.8);
}
.btn.line:hover:before {
  animation-name: pop;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
.btn.arrow {
  margin-right: 60px;
}
.btn.arrow:after {
  transition: all 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  left: calc(100% + 2px);
  top: -1px;
  height: calc(100% + 2px);
  aspect-ratio: 1;
  border: 2px solid #262630;
  background: #000;
  border-radius: 50%;
  box-sizing: border-box;
  background: url(../img/common/arrow-btn_black.svg) no-repeat center;
}
.btn.arrow.more:after {
  transform: rotate(90deg);
  transform-origin: center center;
}
.btn.arrow.more:hover:after {
  transform: rotate(90deg);
  transform-origin: center center;
}
.btn.arrow:hover:after {
  transform: translateX(5px);
  background-color: #262630;
  background-image: url(../img/common/arrow-btn_white.svg);
}
.btn.arrow.clear:after {
  border-color: #FFF;
  background-image: url(../img/common/arrow-btn_white.svg);
}
.btn.arrow.clear:hover:after {
  background-color: #FFF;
  background-image: url(../img/common/arrow-btn_black.svg);
}
.btn.arrow.ec:after {
  border-color: #ffc871;
  background-color: #ffc871;
}
.btn.arrow.ec:hover:after {
  background-color: rgb(255, 180.2464788732, 62);
}
@media screen and (max-width: 700px) {
  .btn.arrow {
    margin-right: 0;
    padding-right: 50px;
  }
  .btn.arrow:after {
    left: initial;
    right: 0;
    border: none;
    background-color: transparent !important;
    background-size: 16px auto;
  }
}
.btn.arrow-inside:after {
  content: "";
  width: 21px;
  height: 22px;
  background: no-repeat center/auto;
  background-image: url(../img/common/arrow-btn_white.svg);
  margin-left: 10px;
  transition: all 0.3s ease;
}
.btn.arrow-inside:hover:after {
  transform: translateX(5px);
}
.btn.arrow-inside.agent:after {
  width: 28px;
  height: 26px;
  background-image: url(../img/agent/arrow-btn.svg);
}
.btn.arrow-inside.agent:hover:after {
  background-image: url(../img/agent/arrow-btn_orange.svg);
}
.btn.arrow-inside.agent-company:after {
  width: 19px;
  height: 11px;
  background-image: url(../img/agent-company/arrow.svg);
}
.btn.arrow-inside.agent-company:hover:after {
  background-image: url(../img/agent-company/arrow-green.svg);
}
.btn-green {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #35b912;
  height: 100px;
  border-radius: 5px;
  transition: all 0.3s ease;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.btn-green[target=_blank]:after {
  content: "";
  width: 13px;
  height: 12px;
  background: no-repeat center/auto;
  background-image: url(../img/common/icon-external.svg);
  margin-left: 20px;
}
.btn-green:hover {
  background-color: rgba(53, 185, 18, 0.7);
}
@media screen and (max-width: 700px) {
  .btn-green {
    height: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .btn-green[target=_blank]:after {
    margin-left: 10px;
  }
}
.btn:hover.h-ec {
  background-color: #ffc871;
  border-color: #ffc871;
  color: #262630;
}
.btn:hover.h-ec.arrow:after {
  border-color: #ffc871;
  background-color: #ffc871;
  background-image: url(../img/common/arrow-btn_black.svg);
}
.btn:hover.h-shopify {
  background-color: #30b7cb;
  border-color: #30b7cb;
  color: #FFF;
}
.btn:hover.h-shopify.arrow:after {
  border-color: #30b7cb;
  background-color: #30b7cb;
  background-image: url(../img/common/arrow-btn_white.svg);
}
.btn:hover.h-revival {
  background-color: #FFDD44;
  border-color: #262630;
  color: #262630;
}
.btn:hover.h-revival.arrow:after {
  border-color: #262630;
  background-color: #FFDD44;
  background-image: url(../img/common/arrow-btn_black.svg);
}
.btn:hover.h-pm {
  background-color: #ebe6da;
  border-color: #ebe6da;
  color: #262630;
}
.btn:hover.h-pm.arrow:after {
  border-color: #ebe6da;
  background-color: #ebe6da;
}
.btn.white {
  background-color: #FFF;
  border: none;
}
.btn.white:hover {
  background-color: #262630;
  color: #FFF;
}
.btn.ec {
  background-color: #ffc871;
  border: none;
}
.btn.ec:hover {
  background-color: rgb(255, 180.2464788732, 62);
  color: #FFF;
}
.btn.shopify {
  background-color: #30b7cb;
  color: #FFF;
  border: none;
}
.btn.shopify:hover {
  background-color: rgb(38.2470119522, 145.8167330677, 161.7529880478);
  color: #FFF;
}
.btn.shopify-border {
  border: 2px solid #30b7cb;
  background-color: transparent;
  color: #30b7cb;
}
.btn.shopify-border:hover {
  background-color: #30b7cb;
  color: #FFF;
}
.btn.shopify2026 {
  background-color: #FF006F;
  color: #FFF;
  font-size: 20px;
  font-size: 1.1764705882rem;
  font-weight: 900;
  border-color: #FF006F;
  height: 60px;
  box-shadow: 0 8px 0 0px #E1E1E1;
  border-radius: 50px;
  margin-right: 0;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}
.btn.shopify2026.back {
  background-color: #FFF;
  color: #FF006F;
}
.btn.shopify2026:active {
  top: 6px;
  box-shadow: 0 2px 0 0px #E1E1E1;
}
.btn.shopify2026.lg {
  height: 100px;
  font-size: 32px;
  font-size: 1.8823529412rem;
  box-shadow: 0 8px 0 0px #E1E1E1;
}
.btn.shopify2026.lg:active {
  box-shadow: 0 2px 0 0px #E1E1E1;
}
@media screen and (max-width: 700px) {
  .btn.shopify2026 {
    height: 55px;
    font-size: 18px;
    font-size: 1.0588235294rem;
  }
  .btn.shopify2026.lg {
    height: 70px;
    font-size: 19px;
    font-size: 1.1176470588rem;
  }
}
.btn.shopify2026.arrow:after {
  content: "";
  width: 20px;
  height: 20px;
  background: no-repeat center/contain;
  background-image: url(../img/shopify2026/arrow-btn.svg);
  margin-left: 15px;
  position: relative;
  left: inherit;
  border: none;
  top: inherit;
}
@media screen and (max-width: 700px) {
  .btn.shopify2026.arrow:after {
    width: 20px;
    height: 20px;
    background-size: contain;
    margin-left: 10px;
  }
}
@media screen and (min-width: 701px) {
  .btn.shopify2026.arrow.lg:after {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 40px;
    top: 50%;
    margin-top: -15px;
  }
}
.btn-block {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -10px -15px;
}
.btn-block.left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.btn-block.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.btn-block.f-wrap {
  flex-wrap: wrap;
}
.btn-block > * {
  margin: 0 10px 15px;
}
.btn-block > *.w5p {
  width: calc(5% - 20px);
}
.btn-block > *.w10p {
  width: calc(10% - 20px);
}
.btn-block > *.w15p {
  width: calc(15% - 20px);
}
.btn-block > *.w20p {
  width: calc(20% - 20px);
}
.btn-block > *.w25p {
  width: calc(25% - 20px);
}
.btn-block > *.w30p {
  width: calc(30% - 20px);
}
.btn-block > *.w35p {
  width: calc(35% - 20px);
}
.btn-block > *.w40p {
  width: calc(40% - 20px);
}
.btn-block > *.w45p {
  width: calc(45% - 20px);
}
.btn-block > *.w50p {
  width: calc(50% - 20px);
}
.btn-block > *.w55p {
  width: calc(55% - 20px);
}
.btn-block > *.w60p {
  width: calc(60% - 20px);
}
.btn-block > *.w65p {
  width: calc(65% - 20px);
}
.btn-block > *.w70p {
  width: calc(70% - 20px);
}
.btn-block > *.w75p {
  width: calc(75% - 20px);
}
.btn-block > *.w80p {
  width: calc(80% - 20px);
}
.btn-block > *.w85p {
  width: calc(85% - 20px);
}
.btn-block > *.w90p {
  width: calc(90% - 20px);
}
.btn-block > *.w95p {
  width: calc(95% - 20px);
}
.btn-block > *.w100p {
  width: calc(100% - 20px);
}
@media screen and (max-width: 700px) {
  .btn-block {
    flex-wrap: wrap;
    margin: 0 -5px -10px;
  }
  .btn-block > * {
    margin: 0 5px 10px;
  }
  .btn-block > *.w5p {
    width: calc(5% - 10px);
  }
  .btn-block > *.w5p-sp {
    width: calc(5% - 10px);
  }
  .btn-block > *.w10p {
    width: calc(10% - 10px);
  }
  .btn-block > *.w10p-sp {
    width: calc(10% - 10px);
  }
  .btn-block > *.w15p {
    width: calc(15% - 10px);
  }
  .btn-block > *.w15p-sp {
    width: calc(15% - 10px);
  }
  .btn-block > *.w20p {
    width: calc(20% - 10px);
  }
  .btn-block > *.w20p-sp {
    width: calc(20% - 10px);
  }
  .btn-block > *.w25p {
    width: calc(25% - 10px);
  }
  .btn-block > *.w25p-sp {
    width: calc(25% - 10px);
  }
  .btn-block > *.w30p {
    width: calc(30% - 10px);
  }
  .btn-block > *.w30p-sp {
    width: calc(30% - 10px);
  }
  .btn-block > *.w35p {
    width: calc(35% - 10px);
  }
  .btn-block > *.w35p-sp {
    width: calc(35% - 10px);
  }
  .btn-block > *.w40p {
    width: calc(40% - 10px);
  }
  .btn-block > *.w40p-sp {
    width: calc(40% - 10px);
  }
  .btn-block > *.w45p {
    width: calc(45% - 10px);
  }
  .btn-block > *.w45p-sp {
    width: calc(45% - 10px);
  }
  .btn-block > *.w50p {
    width: calc(50% - 10px);
  }
  .btn-block > *.w50p-sp {
    width: calc(50% - 10px);
  }
  .btn-block > *.w55p {
    width: calc(55% - 10px);
  }
  .btn-block > *.w55p-sp {
    width: calc(55% - 10px);
  }
  .btn-block > *.w60p {
    width: calc(60% - 10px);
  }
  .btn-block > *.w60p-sp {
    width: calc(60% - 10px);
  }
  .btn-block > *.w65p {
    width: calc(65% - 10px);
  }
  .btn-block > *.w65p-sp {
    width: calc(65% - 10px);
  }
  .btn-block > *.w70p {
    width: calc(70% - 10px);
  }
  .btn-block > *.w70p-sp {
    width: calc(70% - 10px);
  }
  .btn-block > *.w75p {
    width: calc(75% - 10px);
  }
  .btn-block > *.w75p-sp {
    width: calc(75% - 10px);
  }
  .btn-block > *.w80p {
    width: calc(80% - 10px);
  }
  .btn-block > *.w80p-sp {
    width: calc(80% - 10px);
  }
  .btn-block > *.w85p {
    width: calc(85% - 10px);
  }
  .btn-block > *.w85p-sp {
    width: calc(85% - 10px);
  }
  .btn-block > *.w90p {
    width: calc(90% - 10px);
  }
  .btn-block > *.w90p-sp {
    width: calc(90% - 10px);
  }
  .btn-block > *.w95p {
    width: calc(95% - 10px);
  }
  .btn-block > *.w95p-sp {
    width: calc(95% - 10px);
  }
  .btn-block > *.w100p {
    width: calc(100% - 10px);
  }
  .btn-block > *.w100p-sp {
    width: calc(100% - 10px);
  }
}

input.btn {
  display: -moz-inline-box;
  display: inline-block;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* btn */
/* link */
.link {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #262630;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}
.link:after {
  content: "";
  width: 15px;
  height: 16px;
  background: no-repeat center/contain;
  background-image: url(../img/common/arrow-btn_black.svg);
  margin-left: 10px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 700px) {
  .link {
    font-size: 15px;
    font-size: 0.8823529412rem;
  }
}
.link.brown {
  color: #d49c59;
}
.link.brown:after {
  background-image: url(../img/common/arrow-btn_brown.svg);
}
.link.shopify {
  color: #30b7cb;
}
.link.shopify:after {
  background-image: url(../img/common/arrow-btn_shopify.svg);
}
.link:hover:after {
  transform: translateX(5px);
}
.link-block {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -10px -15px;
}
.link-block.left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.link-block.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.link-block.f-wrap {
  flex-wrap: wrap;
}
.link-block > * {
  margin: 0 10px 15px;
}
.link-block > *.w5p {
  width: calc(5% - 20px);
}
.link-block > *.w10p {
  width: calc(10% - 20px);
}
.link-block > *.w15p {
  width: calc(15% - 20px);
}
.link-block > *.w20p {
  width: calc(20% - 20px);
}
.link-block > *.w25p {
  width: calc(25% - 20px);
}
.link-block > *.w30p {
  width: calc(30% - 20px);
}
.link-block > *.w35p {
  width: calc(35% - 20px);
}
.link-block > *.w40p {
  width: calc(40% - 20px);
}
.link-block > *.w45p {
  width: calc(45% - 20px);
}
.link-block > *.w50p {
  width: calc(50% - 20px);
}
.link-block > *.w55p {
  width: calc(55% - 20px);
}
.link-block > *.w60p {
  width: calc(60% - 20px);
}
.link-block > *.w65p {
  width: calc(65% - 20px);
}
.link-block > *.w70p {
  width: calc(70% - 20px);
}
.link-block > *.w75p {
  width: calc(75% - 20px);
}
.link-block > *.w80p {
  width: calc(80% - 20px);
}
.link-block > *.w85p {
  width: calc(85% - 20px);
}
.link-block > *.w90p {
  width: calc(90% - 20px);
}
.link-block > *.w95p {
  width: calc(95% - 20px);
}
.link-block > *.w100p {
  width: calc(100% - 20px);
}
@media screen and (max-width: 700px) {
  .link-block {
    flex-wrap: wrap;
    margin: 0 -5px -10px;
  }
  .link-block > * {
    margin: 0 5px 10px;
  }
  .link-block > *.w5p {
    width: calc(5% - 10px);
  }
  .link-block > *.w5p-sp {
    width: calc(5% - 10px);
  }
  .link-block > *.w10p {
    width: calc(10% - 10px);
  }
  .link-block > *.w10p-sp {
    width: calc(10% - 10px);
  }
  .link-block > *.w15p {
    width: calc(15% - 10px);
  }
  .link-block > *.w15p-sp {
    width: calc(15% - 10px);
  }
  .link-block > *.w20p {
    width: calc(20% - 10px);
  }
  .link-block > *.w20p-sp {
    width: calc(20% - 10px);
  }
  .link-block > *.w25p {
    width: calc(25% - 10px);
  }
  .link-block > *.w25p-sp {
    width: calc(25% - 10px);
  }
  .link-block > *.w30p {
    width: calc(30% - 10px);
  }
  .link-block > *.w30p-sp {
    width: calc(30% - 10px);
  }
  .link-block > *.w35p {
    width: calc(35% - 10px);
  }
  .link-block > *.w35p-sp {
    width: calc(35% - 10px);
  }
  .link-block > *.w40p {
    width: calc(40% - 10px);
  }
  .link-block > *.w40p-sp {
    width: calc(40% - 10px);
  }
  .link-block > *.w45p {
    width: calc(45% - 10px);
  }
  .link-block > *.w45p-sp {
    width: calc(45% - 10px);
  }
  .link-block > *.w50p {
    width: calc(50% - 10px);
  }
  .link-block > *.w50p-sp {
    width: calc(50% - 10px);
  }
  .link-block > *.w55p {
    width: calc(55% - 10px);
  }
  .link-block > *.w55p-sp {
    width: calc(55% - 10px);
  }
  .link-block > *.w60p {
    width: calc(60% - 10px);
  }
  .link-block > *.w60p-sp {
    width: calc(60% - 10px);
  }
  .link-block > *.w65p {
    width: calc(65% - 10px);
  }
  .link-block > *.w65p-sp {
    width: calc(65% - 10px);
  }
  .link-block > *.w70p {
    width: calc(70% - 10px);
  }
  .link-block > *.w70p-sp {
    width: calc(70% - 10px);
  }
  .link-block > *.w75p {
    width: calc(75% - 10px);
  }
  .link-block > *.w75p-sp {
    width: calc(75% - 10px);
  }
  .link-block > *.w80p {
    width: calc(80% - 10px);
  }
  .link-block > *.w80p-sp {
    width: calc(80% - 10px);
  }
  .link-block > *.w85p {
    width: calc(85% - 10px);
  }
  .link-block > *.w85p-sp {
    width: calc(85% - 10px);
  }
  .link-block > *.w90p {
    width: calc(90% - 10px);
  }
  .link-block > *.w90p-sp {
    width: calc(90% - 10px);
  }
  .link-block > *.w95p {
    width: calc(95% - 10px);
  }
  .link-block > *.w95p-sp {
    width: calc(95% - 10px);
  }
  .link-block > *.w100p {
    width: calc(100% - 10px);
  }
  .link-block > *.w100p-sp {
    width: calc(100% - 10px);
  }
}

/* link */
/* cat */
.cat {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #262630;
  color: #262630;
  padding: 5px 15px;
  line-height: 1.3;
  transition: all 0.3s ease;
  font-size: 15px;
  font-size: 0.8823529412rem;
  border-radius: 20px;
  min-width: 100px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .cat {
    min-width: 0;
  }
}
.current .cat {
  background-color: #f5f1e7;
  border: none;
}
.cat:hover {
  text-decoration: none;
  background-color: #262630;
  color: #FFF;
}
.cat-list {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -10px -10px 0;
}
.cat-list.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cat-list.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.cat-list.f-wrap {
  flex-wrap: wrap;
}
.cat-list > * {
  margin: 0 10px 10px 0;
}
.cat-list > *.w5p {
  width: calc(5% - 20px);
}
.cat-list > *.w10p {
  width: calc(10% - 20px);
}
.cat-list > *.w15p {
  width: calc(15% - 20px);
}
.cat-list > *.w20p {
  width: calc(20% - 20px);
}
.cat-list > *.w25p {
  width: calc(25% - 20px);
}
.cat-list > *.w30p {
  width: calc(30% - 20px);
}
.cat-list > *.w35p {
  width: calc(35% - 20px);
}
.cat-list > *.w40p {
  width: calc(40% - 20px);
}
.cat-list > *.w45p {
  width: calc(45% - 20px);
}
.cat-list > *.w50p {
  width: calc(50% - 20px);
}
.cat-list > *.w55p {
  width: calc(55% - 20px);
}
.cat-list > *.w60p {
  width: calc(60% - 20px);
}
.cat-list > *.w65p {
  width: calc(65% - 20px);
}
.cat-list > *.w70p {
  width: calc(70% - 20px);
}
.cat-list > *.w75p {
  width: calc(75% - 20px);
}
.cat-list > *.w80p {
  width: calc(80% - 20px);
}
.cat-list > *.w85p {
  width: calc(85% - 20px);
}
.cat-list > *.w90p {
  width: calc(90% - 20px);
}
.cat-list > *.w95p {
  width: calc(95% - 20px);
}
.cat-list > *.w100p {
  width: calc(100% - 20px);
}
@media screen and (max-width: 700px) {
  .cat-list {
    flex-wrap: wrap;
    margin: 0 -5px -10px;
  }
  .cat-list > * {
    margin: 0 5px 10px;
  }
  .cat-list > *.w5p {
    width: calc(5% - 10px);
  }
  .cat-list > *.w5p-sp {
    width: calc(5% - 10px);
  }
  .cat-list > *.w10p {
    width: calc(10% - 10px);
  }
  .cat-list > *.w10p-sp {
    width: calc(10% - 10px);
  }
  .cat-list > *.w15p {
    width: calc(15% - 10px);
  }
  .cat-list > *.w15p-sp {
    width: calc(15% - 10px);
  }
  .cat-list > *.w20p {
    width: calc(20% - 10px);
  }
  .cat-list > *.w20p-sp {
    width: calc(20% - 10px);
  }
  .cat-list > *.w25p {
    width: calc(25% - 10px);
  }
  .cat-list > *.w25p-sp {
    width: calc(25% - 10px);
  }
  .cat-list > *.w30p {
    width: calc(30% - 10px);
  }
  .cat-list > *.w30p-sp {
    width: calc(30% - 10px);
  }
  .cat-list > *.w35p {
    width: calc(35% - 10px);
  }
  .cat-list > *.w35p-sp {
    width: calc(35% - 10px);
  }
  .cat-list > *.w40p {
    width: calc(40% - 10px);
  }
  .cat-list > *.w40p-sp {
    width: calc(40% - 10px);
  }
  .cat-list > *.w45p {
    width: calc(45% - 10px);
  }
  .cat-list > *.w45p-sp {
    width: calc(45% - 10px);
  }
  .cat-list > *.w50p {
    width: calc(50% - 10px);
  }
  .cat-list > *.w50p-sp {
    width: calc(50% - 10px);
  }
  .cat-list > *.w55p {
    width: calc(55% - 10px);
  }
  .cat-list > *.w55p-sp {
    width: calc(55% - 10px);
  }
  .cat-list > *.w60p {
    width: calc(60% - 10px);
  }
  .cat-list > *.w60p-sp {
    width: calc(60% - 10px);
  }
  .cat-list > *.w65p {
    width: calc(65% - 10px);
  }
  .cat-list > *.w65p-sp {
    width: calc(65% - 10px);
  }
  .cat-list > *.w70p {
    width: calc(70% - 10px);
  }
  .cat-list > *.w70p-sp {
    width: calc(70% - 10px);
  }
  .cat-list > *.w75p {
    width: calc(75% - 10px);
  }
  .cat-list > *.w75p-sp {
    width: calc(75% - 10px);
  }
  .cat-list > *.w80p {
    width: calc(80% - 10px);
  }
  .cat-list > *.w80p-sp {
    width: calc(80% - 10px);
  }
  .cat-list > *.w85p {
    width: calc(85% - 10px);
  }
  .cat-list > *.w85p-sp {
    width: calc(85% - 10px);
  }
  .cat-list > *.w90p {
    width: calc(90% - 10px);
  }
  .cat-list > *.w90p-sp {
    width: calc(90% - 10px);
  }
  .cat-list > *.w95p {
    width: calc(95% - 10px);
  }
  .cat-list > *.w95p-sp {
    width: calc(95% - 10px);
  }
  .cat-list > *.w100p {
    width: calc(100% - 10px);
  }
  .cat-list > *.w100p-sp {
    width: calc(100% - 10px);
  }
  .cat-list > * .cat {
    font-size: 12px;
    font-size: 0.7058823529rem;
  }
}

/* cat */
/* etc */
.lh0 {
  line-height: 0;
}

.w10 {
  width: 10px;
}
.w20 {
  width: 20px;
}
.w30 {
  width: 30px;
}
.w40 {
  width: 40px;
}
.w50 {
  width: 50px;
}
.w60 {
  width: 60px;
}
.w70 {
  width: 70px;
}
.w80 {
  width: 80px;
}
.w90 {
  width: 90px;
}
.w100 {
  width: 100px;
}
.w110 {
  width: 110px;
}
.w120 {
  width: 120px;
}
.w130 {
  width: 130px;
}
.w140 {
  width: 140px;
}
.w150 {
  width: 150px;
}
.w160 {
  width: 160px;
}
.w170 {
  width: 170px;
}
.w180 {
  width: 180px;
}
.w190 {
  width: 190px;
}
.w200 {
  width: 200px;
}
.w210 {
  width: 210px;
}
.w220 {
  width: 220px;
}
.w230 {
  width: 230px;
}
.w240 {
  width: 240px;
}
.w250 {
  width: 250px;
}
.w260 {
  width: 260px;
}
.w270 {
  width: 270px;
}
.w280 {
  width: 280px;
}
.w290 {
  width: 290px;
}
.w300 {
  width: 300px;
}
.w310 {
  width: 310px;
}
.w320 {
  width: 320px;
}
.w330 {
  width: 330px;
}
.w340 {
  width: 340px;
}
.w350 {
  width: 350px;
}
.w360 {
  width: 360px;
}
.w370 {
  width: 370px;
}
.w380 {
  width: 380px;
}
.w390 {
  width: 390px;
}
.w400 {
  width: 400px;
}
.w410 {
  width: 410px;
}
.w420 {
  width: 420px;
}
.w430 {
  width: 430px;
}
.w440 {
  width: 440px;
}
.w450 {
  width: 450px;
}
.w460 {
  width: 460px;
}
.w470 {
  width: 470px;
}
.w480 {
  width: 480px;
}
.w490 {
  width: 490px;
}
.w500 {
  width: 500px;
}
.w510 {
  width: 510px;
}
.w520 {
  width: 520px;
}
.w530 {
  width: 530px;
}
.w540 {
  width: 540px;
}
.w550 {
  width: 550px;
}
.w560 {
  width: 560px;
}
.w570 {
  width: 570px;
}
.w580 {
  width: 580px;
}
.w590 {
  width: 590px;
}
.w600 {
  width: 600px;
}
.w610 {
  width: 610px;
}
.w620 {
  width: 620px;
}
.w630 {
  width: 630px;
}
.w640 {
  width: 640px;
}
.w650 {
  width: 650px;
}
.w660 {
  width: 660px;
}
.w670 {
  width: 670px;
}
.w680 {
  width: 680px;
}
.w690 {
  width: 690px;
}
.w700 {
  width: 700px;
}
.w710 {
  width: 710px;
}
.w720 {
  width: 720px;
}
.w730 {
  width: 730px;
}
.w740 {
  width: 740px;
}
.w750 {
  width: 750px;
}
.w760 {
  width: 760px;
}
.w770 {
  width: 770px;
}
.w780 {
  width: 780px;
}
.w790 {
  width: 790px;
}
.w800 {
  width: 800px;
}
.w810 {
  width: 810px;
}
.w820 {
  width: 820px;
}
.w830 {
  width: 830px;
}
.w840 {
  width: 840px;
}
.w850 {
  width: 850px;
}
.w860 {
  width: 860px;
}
.w870 {
  width: 870px;
}
.w880 {
  width: 880px;
}
.w890 {
  width: 890px;
}
.w900 {
  width: 900px;
}
.w910 {
  width: 910px;
}
.w920 {
  width: 920px;
}
.w930 {
  width: 930px;
}
.w940 {
  width: 940px;
}
.w950 {
  width: 950px;
}
.w960 {
  width: 960px;
}
.w970 {
  width: 970px;
}
.w980 {
  width: 980px;
}
.w990 {
  width: 990px;
}
.w1000 {
  width: 1000px;
}
.w150 {
  width: 150px;
}
.w200 {
  width: 200px;
}
.w250 {
  width: 250px;
}
.w300 {
  width: 300px;
}
.w350 {
  width: 350px;
}
.w400 {
  width: 400px;
}
.w450 {
  width: 450px;
}
.w500 {
  width: 500px;
}
.w550 {
  width: 550px;
}
.w600 {
  width: 600px;
}
.w650 {
  width: 650px;
}
.w700 {
  width: 700px;
}
.w750 {
  width: 750px;
}
.w800 {
  width: 800px;
}
.w850 {
  width: 850px;
}
.w900 {
  width: 900px;
}
.w950 {
  width: 950px;
}
.w1000 {
  width: 1000px;
}
.w5p {
  width: 5%;
}
.w10p {
  width: 10%;
}
.w15p {
  width: 15%;
}
.w20p {
  width: 20%;
}
.w25p {
  width: 25%;
}
.w30p {
  width: 30%;
}
.w35p {
  width: 35%;
}
.w40p {
  width: 40%;
}
.w45p {
  width: 45%;
}
.w50p {
  width: 50%;
}
.w55p {
  width: 55%;
}
.w60p {
  width: 60%;
}
.w65p {
  width: 65%;
}
.w70p {
  width: 70%;
}
.w75p {
  width: 75%;
}
.w80p {
  width: 80%;
}
.w85p {
  width: 85%;
}
.w90p {
  width: 90%;
}
.w95p {
  width: 95%;
}
.w100p {
  width: 100%;
}
@media screen and (max-width: 700px) {
  .w10-sp {
    width: 10px;
  }
}
@media screen and (max-width: 700px) {
  .w20-sp {
    width: 20px;
  }
}
@media screen and (max-width: 700px) {
  .w30-sp {
    width: 30px;
  }
}
@media screen and (max-width: 700px) {
  .w40-sp {
    width: 40px;
  }
}
@media screen and (max-width: 700px) {
  .w50-sp {
    width: 50px;
  }
}
@media screen and (max-width: 700px) {
  .w60-sp {
    width: 60px;
  }
}
@media screen and (max-width: 700px) {
  .w70-sp {
    width: 70px;
  }
}
@media screen and (max-width: 700px) {
  .w80-sp {
    width: 80px;
  }
}
@media screen and (max-width: 700px) {
  .w90-sp {
    width: 90px;
  }
}
@media screen and (max-width: 700px) {
  .w100-sp {
    width: 100px;
  }
}
@media screen and (max-width: 700px) {
  .w110-sp {
    width: 110px;
  }
}
@media screen and (max-width: 700px) {
  .w120-sp {
    width: 120px;
  }
}
@media screen and (max-width: 700px) {
  .w130-sp {
    width: 130px;
  }
}
@media screen and (max-width: 700px) {
  .w140-sp {
    width: 140px;
  }
}
@media screen and (max-width: 700px) {
  .w150-sp {
    width: 150px;
  }
}
@media screen and (max-width: 700px) {
  .w160-sp {
    width: 160px;
  }
}
@media screen and (max-width: 700px) {
  .w170-sp {
    width: 170px;
  }
}
@media screen and (max-width: 700px) {
  .w180-sp {
    width: 180px;
  }
}
@media screen and (max-width: 700px) {
  .w190-sp {
    width: 190px;
  }
}
@media screen and (max-width: 700px) {
  .w200-sp {
    width: 200px;
  }
}
@media screen and (max-width: 700px) {
  .w210-sp {
    width: 210px;
  }
}
@media screen and (max-width: 700px) {
  .w220-sp {
    width: 220px;
  }
}
@media screen and (max-width: 700px) {
  .w230-sp {
    width: 230px;
  }
}
@media screen and (max-width: 700px) {
  .w240-sp {
    width: 240px;
  }
}
@media screen and (max-width: 700px) {
  .w250-sp {
    width: 250px;
  }
}
@media screen and (max-width: 700px) {
  .w260-sp {
    width: 260px;
  }
}
@media screen and (max-width: 700px) {
  .w270-sp {
    width: 270px;
  }
}
@media screen and (max-width: 700px) {
  .w280-sp {
    width: 280px;
  }
}
@media screen and (max-width: 700px) {
  .w290-sp {
    width: 290px;
  }
}
@media screen and (max-width: 700px) {
  .w300-sp {
    width: 300px;
  }
}
@media screen and (max-width: 700px) {
  .w310-sp {
    width: 310px;
  }
}
@media screen and (max-width: 700px) {
  .w320-sp {
    width: 320px;
  }
}
@media screen and (max-width: 700px) {
  .w330-sp {
    width: 330px;
  }
}
@media screen and (max-width: 700px) {
  .w340-sp {
    width: 340px;
  }
}
@media screen and (max-width: 700px) {
  .w350-sp {
    width: 350px;
  }
}
@media screen and (max-width: 700px) {
  .w360-sp {
    width: 360px;
  }
}
@media screen and (max-width: 700px) {
  .w370-sp {
    width: 370px;
  }
}
@media screen and (max-width: 700px) {
  .w380-sp {
    width: 380px;
  }
}
@media screen and (max-width: 700px) {
  .w390-sp {
    width: 390px;
  }
}
@media screen and (max-width: 700px) {
  .w400-sp {
    width: 400px;
  }
}
@media screen and (max-width: 700px) {
  .w410-sp {
    width: 410px;
  }
}
@media screen and (max-width: 700px) {
  .w420-sp {
    width: 420px;
  }
}
@media screen and (max-width: 700px) {
  .w430-sp {
    width: 430px;
  }
}
@media screen and (max-width: 700px) {
  .w440-sp {
    width: 440px;
  }
}
@media screen and (max-width: 700px) {
  .w450-sp {
    width: 450px;
  }
}
@media screen and (max-width: 700px) {
  .w460-sp {
    width: 460px;
  }
}
@media screen and (max-width: 700px) {
  .w470-sp {
    width: 470px;
  }
}
@media screen and (max-width: 700px) {
  .w480-sp {
    width: 480px;
  }
}
@media screen and (max-width: 700px) {
  .w490-sp {
    width: 490px;
  }
}
@media screen and (max-width: 700px) {
  .w500-sp {
    width: 500px;
  }
}
@media screen and (max-width: 700px) {
  .w150-sp {
    width: 150px;
  }
}
@media screen and (max-width: 700px) {
  .w200-sp {
    width: 200px;
  }
}
@media screen and (max-width: 700px) {
  .w250-sp {
    width: 250px;
  }
}
@media screen and (max-width: 700px) {
  .w300-sp {
    width: 300px;
  }
}
@media screen and (max-width: 700px) {
  .w350-sp {
    width: 350px;
  }
}
@media screen and (max-width: 700px) {
  .w400-sp {
    width: 400px;
  }
}
@media screen and (max-width: 700px) {
  .w450-sp {
    width: 450px;
  }
}
@media screen and (max-width: 700px) {
  .w500-sp {
    width: 500px;
  }
}
@media screen and (max-width: 700px) {
  .w5p-sp {
    width: 5%;
  }
}
@media screen and (max-width: 700px) {
  .w10p-sp {
    width: 10%;
  }
}
@media screen and (max-width: 700px) {
  .w15p-sp {
    width: 15%;
  }
}
@media screen and (max-width: 700px) {
  .w20p-sp {
    width: 20%;
  }
}
@media screen and (max-width: 700px) {
  .w25p-sp {
    width: 25%;
  }
}
@media screen and (max-width: 700px) {
  .w30p-sp {
    width: 30%;
  }
}
@media screen and (max-width: 700px) {
  .w35p-sp {
    width: 35%;
  }
}
@media screen and (max-width: 700px) {
  .w40p-sp {
    width: 40%;
  }
}
@media screen and (max-width: 700px) {
  .w45p-sp {
    width: 45%;
  }
}
@media screen and (max-width: 700px) {
  .w50p-sp {
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .w55p-sp {
    width: 55%;
  }
}
@media screen and (max-width: 700px) {
  .w60p-sp {
    width: 60%;
  }
}
@media screen and (max-width: 700px) {
  .w65p-sp {
    width: 65%;
  }
}
@media screen and (max-width: 700px) {
  .w70p-sp {
    width: 70%;
  }
}
@media screen and (max-width: 700px) {
  .w75p-sp {
    width: 75%;
  }
}
@media screen and (max-width: 700px) {
  .w80p-sp {
    width: 80%;
  }
}
@media screen and (max-width: 700px) {
  .w85p-sp {
    width: 85%;
  }
}
@media screen and (max-width: 700px) {
  .w90p-sp {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  .w95p-sp {
    width: 95%;
  }
}
@media screen and (max-width: 700px) {
  .w100p-sp {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  br.pc {
    display: none;
  }
}
br.tablet {
  display: none;
}
@media screen and (min-width: 701px) and (max-width: 1080px) {
  br.tablet {
    display: inline;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 700px) {
  br.sp {
    display: inline;
  }
}

@media screen and (max-width: 700px) {
  img.pc {
    display: none;
  }
}
@media screen and (min-width: 701px) {
  img.sp {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .hidden-sp {
    display: none;
  }
}

/* etc */
