@charset "UTF-8";
/* =========================================================
consol log
========================================================= */
/* =========================================================
body
========================================================= */
.tpl-share {
  margin-left: auto;
  margin-right: auto;
}

.tpl-share a {
  font-family: Noto Sans JP, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS P Gothic, Verdana, Arial, Helvetica, sans-serif;
}

.article {
  color: #333;
  font-family: var(--font, "Noto Sans JP", sans-serif);
}

.article * {
  font-family: var(--font, "Noto Sans JP", sans-serif);
  letter-spacing: 0.075em;
}

.article *:before, .article *:after {
  display: block;
}

.article input, .article button, .article textarea, .article select {
  color: intial;
  box-sizing: border-box;
  outline: none;
}

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

@media (hover: hover) {
  .article .opacity-link {
    transition: opacity 0.2s ease;
  }

  .article .opacity-link:hover {
    opacity: 0.6;
  }
}
.feature-top {
  width: 100%;
  background: var(--bg-color01, #fff);
}

@media (max-width: 750px) {
  .feature-top {
    padding: 24px 0 15px;
  }
}
@media (min-width: 751px) {
  .feature-top {
    padding: 64px 7.35vw 46px;
  }
}
.feature-bottom {
  width: 100%;
  background: var(--bg-color02, #fff);
}

@media (max-width: 750px) {
  .feature-bottom {
    padding: 17px 0 80px;
  }
}
@media (min-width: 751px) {
  .feature-bottom {
    padding: 44px 7.35vw 80px;
  }
}
/* =========================================================
contents
========================================================= */
/*------------------------------------------
MV
------------------------------------------*/
.feature-mv img {
  width: 100%;
  max-width: auto;
}

/*------------------------------------------
article
------------------------------------------*/
.feature-article {
  width: clamp(1px, 89.33vw, 960px);
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.57;
}

@media (max-width: 750px) {
  .feature-article + * {
    margin: 30px auto 0;
  }
}
@media (min-width: 751px) {
  .feature-article + * {
    margin: 48px auto 0;
  }
}
/*------------------------------------------
navigation
------------------------------------------*/
.feature-nav {
  max-width: 1070px;
}

.feature-nav__list {
  display: grid;
}

@media (max-width: 750px) {
  .feature-nav__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (min-width: 751px) {
  .feature-nav__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 10px;
  }
}
.feature-nav__item button {
  width: 100%;
  height: 100%;
  padding: 15px;
  background: var(--button-color, #fff);
  color: var(--button-text, #333);
  letter-spacing: 0.025em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 750px) {
  .feature-nav__item button {
    font-size: clamp(1px, 3.46vw, 13px);
  }
}
@media (min-width: 751px) {
  .feature-nav__item button {
    font-size: 15px;
  }
}
.feature-nav__item button.is-current {
  background: var(--button-current, #ddd);
}

/*------------------------------------------
list
------------------------------------------*/
.feature-list {
  display: grid;
}

@media (max-width: 750px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 11px;
  }
}
@media (min-width: 751px) {
  .feature-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 20px;
  }
}
/*------------------------------------------
item
------------------------------------------*/
.feature-item button {
  height: 100%;
  background: var(--bg-item, #fff);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.feature-item button > * {
  width: 100%;
}

.feature-item__img {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

.feature-item__img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}

.feature-item__img > * {
  width: 100%;
  height: 100%;
}

.feature-item__img > * img {
  width: 100%;
  height: 100%;
  max-width: auto;
}

.feature-item__img--bg {
  filter: blur(10px);
}

.feature-item__img--bg img {
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-item__img--thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-item__img--thumb img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 750px) {
  .feature-item__detail {
    padding: 8px;
  }
}
@media (min-width: 751px) {
  .feature-item__detail {
    padding: 16px;
  }
}
.feature-item__name {
  color: var(--text-shop, #6F6F6F);
}

@media (max-width: 750px) {
  .feature-item__name {
    font-size: 12px;
    line-height: 1.66;
  }
}
@media (min-width: 751px) {
  .feature-item__name {
    font-size: 14px;
    line-height: 1.57;
  }
}
.feature-item__ttl {
  max-height: 4em;
  margin: 8px auto 0;
  color: var(--text-title, #333);
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 750px) {
  .feature-item__ttl {
    font-size: 14px;
    line-height: 1.57;
  }
}
@media (min-width: 751px) {
  .feature-item__ttl {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (hover: hover) {
  .feature-item .feature-item__img::before {
    transition: opacity 0.2s ease;
  }

  .feature-item button:hover .feature-item__img::before {
    opacity: 1;
  }
}
/*------------------------------------------
modal
------------------------------------------*/
.feature-modal {
  width: 100vw;
  height: 100vh;
  height: 100lvh;
  background: rgba(255, 255, 255, 0.8);
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

.feature-modal__in {
  min-height: 100%;
}

@media (max-width: 750px) {
  .feature-modal__in {
    padding: 78px 20px 100px;
  }
}
@media (min-width: 751px) {
  .feature-modal__in {
    padding: 80px 7.35vw;
  }
}
.feature-modal__cont {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  background: var(--bg-item, #fff);
}

@media (max-width: 750px) {
  .feature-modal__cont {
    padding: 25px 6.66vw;
  }
}
@media (min-width: 751px) {
  .feature-modal__cont {
    padding: 70px 5.14vw;
  }
}
@media (min-width: 751px) and (max-width: 1024px) {
  .feature-modal__cont {
    max-width: 650px;
  }
}
@media (min-width: 1025px) {
  .feature-modal__block {
    display: flex;
    align-items: flex-start;
    gap: clamp(1px, 2.94vw, 40px);
  }
}
.feature-modal__img {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .feature-modal__img {
    width: 40.2%;
  }
}
.feature-modal__img > * {
  width: 100%;
  height: 100%;
}

.feature-modal__img > * img {
  width: 100%;
  height: 100%;
}

.feature-modal__img--bg {
  filter: blur(10px);
}

.feature-modal__img--bg img {
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-modal__img--thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-modal__img--thumb img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 750px) {
  .feature-modal__detail {
    margin: 14px auto 0;
  }
}
@media (min-width: 751px) and (max-width: 1024px) {
  .feature-modal__detail {
    margin: 30px auto 0;
  }
}
@media (min-width: 1025px) {
  .feature-modal__detail {
    flex: 1;
  }
}
.feature-modal__detail .name {
  color: var(--text-shop, #6F6F6F);
}

@media (max-width: 750px) {
  .feature-modal__detail .name {
    font-size: 12px;
    line-height: 1.66;
  }
}
@media (min-width: 751px) {
  .feature-modal__detail .name {
    font-size: 14px;
    line-height: 1.57;
  }
}
.feature-modal__detail .ttl {
  margin: 8px auto 0;
  color: var(--text-title, #333);
  font-weight: bold;
}

@media (max-width: 750px) {
  .feature-modal__detail .ttl {
    font-size: 14px;
    line-height: 1.57;
  }
}
@media (min-width: 751px) {
  .feature-modal__detail .ttl {
    font-size: 22px;
    line-height: 1.45;
  }
}
.feature-modal__detail .txt {
  margin: 8px auto 0;
  padding: 18px 0 0;
  border-top: 2px solid #DEDEDE;
  color: var(--text-article, #333);
  font-size: 14px;
  line-height: 1.57;
}

.feature-modal__close--top {
  position: absolute;
  right: 0;
}

@media (max-width: 750px) {
  .feature-modal__close--top {
    bottom: calc(100% + 5px);
  }
}
@media (min-width: 751px) {
  .feature-modal__close--top {
    bottom: calc(100% + 10px);
  }
}
.feature-modal__close--top button {
  aspect-ratio: 1/1;
  display: block;
  background: none;
  position: relative;
}

@media (max-width: 750px) {
  .feature-modal__close--top button {
    width: 25px;
  }
}
@media (min-width: 751px) {
  .feature-modal__close--top button {
    width: 30px;
  }
}
.feature-modal__close--top button::before, .feature-modal__close--top button::after {
  content: "";
  width: 141.42%;
  height: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
}

.feature-modal__close--top button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.feature-modal__close--top button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.feature-modal__close--bottom {
  max-width: 270px;
}

@media (max-width: 750px) {
  .feature-modal__close--bottom {
    margin: 30px auto 0;
  }
}
@media (min-width: 751px) and (max-width: 1024px) {
  .feature-modal__close--bottom {
    margin: 50px auto 0;
  }
}
@media (min-width: 751px) {
  .feature-modal__close--bottom {
    margin: 85px auto 0;
  }
}
.feature-modal__close--bottom button {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background: #F6F6F6;
  color: #000;
  line-height: 1;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 750px) {
  .feature-modal__close--bottom button {
    gap: 15px;
    font-size: 14px;
  }
}
@media (min-width: 751px) {
  .feature-modal__close--bottom button {
    gap: 10px;
    font-size: 16px;
  }
}
.feature-modal__close--bottom .ico {
  display: block;
  width: 13px;
  height: 13px;
  position: relative;
}

.feature-modal__close--bottom .ico::before, .feature-modal__close--bottom .ico::after {
  content: "";
  width: 141.42%;
  height: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
}

.feature-modal__close--bottom .ico::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.feature-modal__close--bottom .ico::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* =========================================================
wysiwyg
========================================================= */
.wysiwyg {
  word-break: break-all;
}

.wysiwyg *,
.wysiwyg ::before,
.wysiwyg ::after {
  box-sizing: content-box;
}

.wysiwyg h1 {
  font-size: 2em;
  font-weight: 600;
}

.wysiwyg h2 {
  font-size: 1.5em;
  font-weight: 600;
}

.wysiwyg h3 {
  font-size: 1.17em;
  font-weight: 600;
}

.wysiwyg h4 {
  font-weight: 600;
}

.wysiwyg h5 {
  font-size: 0.83em;
  font-weight: 600;
}

.wysiwyg h6 {
  font-size: 0.67em;
  font-weight: 600;
}

.wysiwyg hr {
  display: block;
}

.wysiwyg a {
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .wysiwyg a:hover {
    opacity: 0.6;
  }
}
.wysiwyg strong,
.wysiwyg b {
  font-weight: 600;
}

.wysiwyg em {
  font-style: italic;
}

.wysiwyg ul,
.wysiwyg ol {
  padding-left: 1.5em;
}

.wysiwyg ul {
  list-style: disc;
}

.wysiwyg ol {
  list-style: decimal;
}

.wysiwyg table {
  border-collapse: separate;
  border-spacing: revert;
  padding: revert-layer;
}

.wysiwyg th,
.wysiwyg td {
  padding: revert-layer;
}