@charset "UTF-8";
/*!
Template: ystandard
Theme Name:yStandard Child
Theme URI: https://wp-ystandard.com
Author: yosiakatsuki
Author URI: https://yosiakatsuki.net
Description:「自分色に染めた、自分だけのサイトを作る楽しさ」を感じてもらうために作った一風変わったWordPressテーマ
Version: 4.49.4
Requires at least: 6.1
Requires PHP: 7.4.0
Text Domain: ystandard
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/* Component */
.--center {
  text-align: center;
}

h1.c-heading {
  margin: 0 auto 0.5em;
}

h3 {
  padding-left: 1em;
  padding-bottom: 0.1em;
  position: relative;
}
h3::before {
  content: "";
  width: 0.2em;
  height: 100%;
  background: #ce7baa;
  position: absolute;
  top: 0;
  left: 0;
}

h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5em;
  margin-top: 2em;
}
h4::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  width: 2em;
  height: 1px;
  margin-top: 0.75em;
  background: #ce7baa;
}
h4:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width:768px) {
  h4 {
    font-size: 1.1em;
  }
}

ol:not([class]) > li:not([class]):not(:last-child), ul:not([class]) > li:not([class]):not(:last-child) {
  margin-bottom: 1em;
}

.c-summary {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.c-summary:not(:last-child) {
  margin-bottom: 4em;
}
.c-summary .c-btn {
  margin: 0 auto;
}
.c-summary .c-btn[target=_blank] {
  border-color: #b185d9;
  background: #b185d9;
}
.c-summary .c-btn[target=_blank]:hover {
  background: #FFF;
  color: #b185d9;
}
@media screen and (max-width:390px) {
  .c-summary {
    font-size: 14px;
    text-align: left;
  }
}
.c-summary__date {
  display: block;
  font-weight: bold;
  color: #ce7baa;
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 220px;
  padding: 0.55em 2em 0.45em;
  border: 1px solid #ce7baa;
  border-radius: 2em;
  background: #ce7baa;
  color: #FFF;
  text-decoration: none;
}
.c-btn.--secondary {
  border-color: #b185d9;
  background: #b185d9;
}
.c-btn:hover {
  background: #FFF;
  color: #ce7baa;
}
.c-btn:hover.--secondary {
  background: #FFF;
  color: #b185d9;
}
.c-btn:not(:first-child) {
  margin-top: 0.5em;
}

.c-ads {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 12px;
  text-align: center;
}
.c-ads:not(:last-child) {
  margin-bottom: 5em;
}
.c-ads dt {
  margin: 0;
}
.c-ads dt:not(:last-child) {
  margin-bottom: 5px;
}
.c-ads dd:not([class]) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  margin: 0;
}
.c-ads dd:not([class]) > a {
  color: inherit;
  text-decoration: none;
}
.c-ads dd:not([class]) > a:hover {
  opacity: 0.8;
}
@media screen and (max-width:768px) {
  .c-ads dd:not([class]) {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-accordion:not(:last-child) {
  margin-bottom: 5em;
}
.c-accordion__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  width: min(300px, 100%);
  padding: 1.3em 2em 1.5em;
  border-radius: 2em;
  border: 2px solid #ce7baa;
  background: #FFF;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-accordion__btn::after {
  content: "🔎";
  display: block;
  line-height: 0.1;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-accordion.is-open .c-accordion__btn, .c-accordion__btn:hover {
  background: #ce7baa;
  color: #FFF;
}
.c-accordion__target {
  height: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.c-accordion__target.is-open {
  height: auto;
  opacity: 1;
  pointer-events: inherit;
  z-index: 99;
}

/* common */
body {
  font-family: "Murecho", Meiryo, sans-serif;
}

.global-nav__toggle {
  position: fixed;
  top: 0;
  right: 0;
}

#back-to-top {
  bottom: calc(0vh + 1em);
  right: calc(0vh + 1em);
}

.wp-block-group h1.wp-block-heading, .wp-block-group h2.wp-block-heading, .wp-block-group h3.wp-block-heading, .wp-block-group h4.wp-block-heading, .wp-block-group h5.wp-block-heading, .wp-block-group h6.wp-block-heading {
  margin-top: 1em;
}

.ystdb-balloon__body {
  padding: 2em;
}

/* header */
.site-branding {
  margin-bottom: 1em;
}

a.custom-logo-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.info-bar {
  margin-bottom: 1em;
}

/* footer */
.wp-block-tag-cloud {
  font-size: 12px;
}

/* 記事一覧 */
.archive__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* 記事詳細 */
.ys-ad-content.is-before-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding: 0.2em 0.5em 0.1em;
  font-size: 12px;
  text-align: right;
  background: lightsteelblue;
  color: #FFF;
}

.entry-content h2::after {
  content: "";
  display: block;
  width: 3em;
  height: 0.2em;
  margin: 0.5em 0 0;
  background: #ce7baa;
}

.post-taxonomy {
  font-size: 12px;
}

.author-box {
  padding: 2em 1em;
  background: lavender;
}

.wp-block-table td, .wp-block-table th {
  padding: 1em 2em;
}
@media screen and (max-width:390px) {
  .wp-block-table td, .wp-block-table th {
    padding: 1em;
    font-size: 14px;
  }
}

@media screen and (max-width:390px) {
  .wp-block-table tr td:first-child {
    width: 8em;
  }
}

/* 売れ筋ランキング */
.c-rankingBlock + .c-rankingBlock {
  margin-top: 6em;
}
.c-rankingBlock__point {
  font-size: 1.1em;
}
.c-rankingBlock__point:not(:last-child) {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid gray;
}
.c-rankingBlock__heading,
.c-rankingBlock h3.c-rankingBlock__heading {
  margin-bottom: 1em;
}
.c-rankingBlock__body {
  display: grid;
  grid-template-columns: min(22%, 300px) 1fr;
  grid-column-gap: 1em;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 2em 1em;
  font-size: 12px;
}
@media screen and (max-width:768px) {
  .c-rankingBlock__body {
    grid-template-columns: 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-rankingBlock__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-rankingBlock__img > picture {
  display: block;
  text-align: center;
}
@media screen and (max-width:768px) {
  .c-rankingBlock__img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.c-rankingBlock__review {
  padding: 4px 1em;
  background: goldenrod;
  text-align: center;
}
.c-rankingBlock__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  padding: 2em 2em;
  background: whitesmoke;
}
.c-rankingBlock__summaryText {
  color: gray;
}
.c-rankingBlock__model {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}
.c-rankingBlock__model:not(:first-child) {
  margin-top: 1em;
}
.c-rankingBlock__btnGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}
.c-rankingBlock__btnGroup:not(:first-child) {
  margin-top: 1em;
}
.c-rankingBlock__btn,
.c-rankingBlock a.c-rankingBlock__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 220px;
  gap: 1em;
  padding: 1em 2em;
  margin: 0 auto;
  border-radius: 2em;
  background: #ce7baa;
  color: #FFF;
  text-decoration: none;
}
.c-rankingBlock__btn.--inline,
.c-rankingBlock a.c-rankingBlock__btn.--inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
}
.c-rankingBlock__btn.--secondary,
.c-rankingBlock a.c-rankingBlock__btn.--secondary {
  background: #b185d9;
}
.c-rankingBlock__btn.--ps5,
.c-rankingBlock a.c-rankingBlock__btn.--ps5 {
  background: #072B9E;
}
.c-rankingBlock__btn.--ps4,
.c-rankingBlock a.c-rankingBlock__btn.--ps4 {
  background: #284599;
}
.c-rankingBlock__btn.--switch,
.c-rankingBlock a.c-rankingBlock__btn.--switch {
  background: #E60012;
}
.c-rankingBlock__btnGroup .c-rankingBlock__btn,
.c-rankingBlock__btnGroup .c-rankingBlock a.c-rankingBlock__btn {
  margin: 0;
}
.c-rankingBlock__btn:hover,
.c-rankingBlock a.c-rankingBlock__btn:hover {
  opacity: 0.7;
}

/* ショップ＆商品ブロック */
.c-shopGoodsBlock__container {
  border: 2px solid #e9ecef;
}
.c-shopGoodsBlock__heading {
  padding: 0.5em 1em;
  margin: 0 !important;
  background: #e9ecef;
}
.c-shopGoodsBlock__shop {
  padding: 2em 1em;
  text-align: center;
}
.c-shopGoodsBlock__shop .c-btn {
  margin: 1em auto 0;
}
.c-shopGoodsBlock__recommended {
  margin: 0;
  overflow-x: hidden;
}
.c-shopGoodsBlock__recommended dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 2em);
  padding: 0 3em;
  margin: 0 auto;
  font-size: 1.1em;
  text-align: center;
  position: relative;
}
.c-shopGoodsBlock__recommended dt::before, .c-shopGoodsBlock__recommended dt::after {
  content: "";
  width: 2em;
  height: 1px;
  background: #000;
  position: absolute;
  top: 0.75em;
  left: 0;
}
.c-shopGoodsBlock__recommended dt::after {
  left: auto;
  right: 0;
}
.c-shopGoodsBlock__recommended dt:not(:last-child) {
  margin-bottom: 1em;
}
.c-shopGoodsBlock__recommended dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  padding: 0 0 1em;
  margin: 0;
  border: 1em solid #e9ecef;
  background: #e9ecef;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  overflow: auto;
}
.c-shopGoodsBlock__recommended dd::-webkit-scrollbar {
  height: 1em;
}
.c-shopGoodsBlock__recommended dd::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer !important;
}
.c-shopGoodsBlock__recommended dd::-webkit-scrollbar-thumb {
  border-radius: 0.5em;
  background: rgba(128, 128, 128, 0.4);
  cursor: pointer !important;
}
.c-shopGoodsBlock__recommended dd .c-shopItemLink {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(100%, 300px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.c-shopItemLink {
  padding: 1em;
  background: rgba(255, 255, 255, 0.7);
}
.c-shopItemLink:hover {
  text-decoration: none;
}
.c-shopItemLink__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: min(50%, 128px);
  margin: 0 auto;
  background: #FFF;
  overflow: hidden;
}
.c-shopItemLink__img:not(:last-child) {
  margin-bottom: 1em;
}
.c-shopItemLink__img > img {
  -o-object-fit: cover;
     object-fit: cover;
}
.c-shopItemLink__title {
  margin: 0 !important;
  font-size: inherit;
}
.c-shopItemLink__title:before {
  display: none;
}

/* 新商品 */
.c-newItems {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1rem;
}
.c-newItems:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .c-newItems {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-newItems__left > a {
  display: block;
}
.c-newItems__left > a ~ * {
  margin: 0;
}
.c-newItems__left picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #CCC;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}
.c-newItems__left h3 {
  margin: 1rem 0 0;
  font-size: inherit;
}
.c-newItems__right {
  font-size: 14px;
}

/* 原神の壁紙 */
.c-genshinIllustList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5em 2em;
  padding: 0;
  margin: 0 0 6em;
  list-style: none;
  font-size: 14px;
  overflow: hidden;
}
@media screen and (max-width:390px) {
  .c-genshinIllustList {
    grid-template-columns: repeat(1, 1fr);
    font-size: 12px;
  }
}
.c-genshinIllustList__item {
  display: block;
}
.c-genshinIllustList__title {
  padding-left: calc(4px + 0.2em);
  margin: 0 0 0.6em;
  border-left: 4px solid #ce7baa;
  font-size: 1.1em;
}
.c-genshinIllustList__container {
  display: grid;
  grid-template-columns: min(30%, 300px) 1fr;
  gap: 2em;
}
@media screen and (max-width:768px) {
  .c-genshinIllustList__container {
    grid-template-columns: 1fr;
  }
}
.c-genshinIllustList__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: gainsboro;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.c-genshinIllustList__img img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-genshinIllustList__body .c-btn {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin: 1em 0 0;
}
@media screen and (max-width:768px) {
  .c-genshinIllustList__body .c-btn {
    margin: 1em auto 0;
  }
}
.c-genshinIllustList__data {
  display: grid;
  grid-template-columns: 5.5em 1fr;
  gap: 0.5em;
  font-size: 12px;
  font-weight: normal;
}
.c-genshinIllustList__data > strong {
  font-weight: bold;
}
.c-genshinIllustList__data:not(:last-child) {
  margin-bottom: 0.5em;
}
@media screen and (max-width:390px) {
  .c-genshinIllustList__data {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.c-searchBox:not(:last-child) {
  margin-bottom: 4em;
}
.c-searchBox .c-accordion__target {
  background: ghostwhite;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-searchBox__contents {
  padding: 2em 1em 3em;
}
.c-searchBox h2 {
  margin: 0 auto 1em;
  font-size: 16px;
}
.c-searchBox h3 {
  font-size: 14px;
}

.c-searchItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 1em;
  font-size: 12px;
}
.c-searchItems label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px 0.5em 0;
  border: 1px solid gray;
  border-radius: 2em;
  color: gray;
  cursor: pointer;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  -webkit-transition-property: border, background, color;
  transition-property: border, background, color;
}
.c-searchItems label:hover, .c-searchItems label:has(input[type=checkbox]:checked) {
  border-color: #ce7baa;
  background: #ce7baa;
  color: #FFF;
}
.c-searchItems input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}
.c-searchItems input[type=checkbox]:checked {
  background: #ce7baa;
  color: #FFF;
}

/* 自作ウィジェット */
.site-content {
  margin-top: 0;
}

.wpWidget-contentsOver {
  padding: 2em 0 1em;
}
.wpWidget-contentsOver:not(:first-of-type) {
  padding-bottom: 3em;
  margin-bottom: 3em;
}
.wpWidget-contentsOver > * {
  width: min(100%, var(--ystd-container-width) + var(--ystd-container-gutter) * 2);
  padding: 0 var(--ystd-container-gutter);
  margin: 0 auto;
}

.taxonomy-list-block {
  overflow: hidden;
}
.taxonomy-list-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  padding: 0.5em 0;
  margin: 0;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  list-style: none;
  overflow: auto;
}
.taxonomy-list-block ul::-webkit-scrollbar {
  height: 1em;
}
.taxonomy-list-block ul::-webkit-scrollbar-track {
  background: #f1f1f3;
  cursor: pointer !important;
}
.taxonomy-list-block ul::-webkit-scrollbar-thumb {
  border-radius: 0.5em;
  background: rgba(101, 101, 101, 0.4);
  cursor: pointer !important;
}
.taxonomy-list-block ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.taxonomy-list-block ul li:not(:last-child) {
  margin-bottom: 0 !important;
}
.taxonomy-list-block ul li > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.6em 1em 0.4em 1.5em;
  border: 1px solid var(--link-text);
  background: var(--link-text);
  color: #FFF;
  text-decoration: none;
  position: relative;
}
.taxonomy-list-block ul li > a::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  top: calc(50% - 0.25em);
  left: 0.5em;
}
.taxonomy-list-block ul li > a:hover {
  background: #FFF;
  color: var(--link-text);
}
.taxonomy-list-block ul li > a:hover::before {
  background: var(--link-text);
}/*# sourceMappingURL=style.css.map */