@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lexend:wght@100..900&family=Yellowtail&family=Zen+Kaku+Gothic+New&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
fieldset,
legend,
input,
textarea,
select {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  border-collapse: collapse;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

:root {
  --font: 14px;
}
@media print, screen and (min-width: 768px) {
  :root {
    --font: 16px;
  }
}
@media print, screen and (min-width: 992px) {
  :root {
    --font: 18px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: var(--font);
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #555;
  background-color: #fafafa;
}

a {
  transition: color 0.3s ease;
}
@media (hover: hover) {
  a:hover, a:focus {
    color: #333;
  }
}

::-moz-selection {
  background: #d9b4b4;
  color: #333;
}

::selection {
  background: #d9b4b4;
  color: #333;
}

main {
  margin-top: 104px;
  margin-bottom: 104px;
  overflow: clip;
}
@media print, screen and (min-width: 768px) {
  main {
    margin-top: 160px;
    margin-bottom: 120px;
  }
}

.wrapper, .child__contents, .footer__wrapper, .copyright {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  width: 100%;
  text-align: center;
}
.cta__btn {
  display: inline-block;
  font-size: 16px;
  padding: 8px 24px;
  border: 1px solid #333;
  border-radius: 2px;
  cursor: pointer;
  transition: border 0.3s, color 0.3s, background 0.3s, letter-spacing 0.3s;
}
@media (hover: hover) {
  .cta__btn:hover, .cta__btn:focus {
    color: #9d4141;
    background-color: white;
    border-color: #9d4141;
    letter-spacing: 0.15em;
  }
}
@media print, screen and (min-width: 992px) {
  .cta__btn {
    font-size: 20px;
    padding: 12px 40px;
    border-radius: 4px;
  }
}

.bg-paint {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  transition-delay: 0.5s;
}
.bg-paint.visible {
  opacity: 1;
}

.fadein {
  opacity: 0;
  transition-delay: 0.5s;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
@media print, screen and (min-width: 992px) {
  .fadein {
    transform: translateY(40px);
  }
}
.fadein.visible {
  opacity: 1;
  transform: none;
}

.footer {
  border-top: 1px solid #d9d9d9;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  padding: 32px 4.2vw 16px;
}
.footer__logo {
  display: inline-block;
  width: 78px;
  transition: width 0.3s;
}
@media print, screen and (min-width: 992px) {
  .footer__logo {
    width: 120px;
  }
}
.footer__logo.larger {
  width: 120px;
}
@media print, screen and (min-width: 992px) {
  .footer__logo.larger {
    width: 240px;
  }
}
.footer__logo-link {
  width: 100%;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  padding-right: 16px;
}
@media print, screen and (min-width: 992px) {
  .footer__nav-list {
    flex-direction: row;
    gap: 32px;
    margin-top: 48px;
    padding-right: 0;
  }
}
.footer__nav-item {
  text-align: right;
  letter-spacing: 0.2em;
}
@media (hover: hover) {
  .footer__nav-item {
    position: relative;
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width: 992px) {
  .footer__nav-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 80px;
    height: 80px;
    background-image: url(../img/hover-img.png);
    background-size: contain;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
}
@media (hover: hover) and (hover: hover) {
  .footer__nav-item:hover::before, .footer__nav-item:focus::before {
    opacity: 1;
  }
}
.footer__nav-item:nth-child(1) a {
  color: #9d4141;
  font-weight: 600;
}

.copyright {
  font-size: 12px;
  padding: 16px 4.2vw;
  font-family: "Oswald", sans-serif;
}
@media print, screen and (min-width: 992px) {
  .copyright {
    padding: 32px 4.2vw;
    font-size: 14px;
  }
}

.cta__footer {
  margin-top: 16px;
}
.cta__footer .cta__btn {
  display: inline-block;
  font-size: 10px;
  padding: 6px 16px;
  border: 1px solid #333;
  border-radius: 2px;
  cursor: pointer;
  transition: border 0.3s, color 0.3s, background 0.3s, letter-spacing 0.3s;
}
@media (hover: hover) {
  .cta__footer .cta__btn:hover, .cta__footer .cta__btn:focus {
    color: #9d4141;
    background-color: white;
    border-color: #9d4141;
    letter-spacing: 0.15em;
  }
}
@media print, screen and (min-width: 992px) {
  .cta__footer .cta__btn {
    font-size: 14px;
    padding: 8px 24px;
    border-radius: 4px;
  }
}

.header {
  width: 100%;
  padding: 16px 0;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-out;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 4.2vw;
}
.header__logo {
  width: 78px;
}
@media print, screen and (min-width: 768px) {
  .header__logo {
    width: 160px;
  }
}
.header__logo img {
  width: 100%;
}
.header__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.header__nav-list {
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .header__nav-list {
    gap: 16px;
  }
}
@media print, screen and (min-width: 992px) {
  .header__nav-list {
    gap: 16px;
  }
}
.header__nav-item {
  font-size: 3.7vw;
  letter-spacing: 0.1em;
}
@media (hover: hover) {
  .header__nav-item {
    position: relative;
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width: 992px) {
  .header__nav-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 80px;
    height: 80px;
    background-image: url(../img/hover-img.png);
    background-size: contain;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
}
@media (hover: hover) and (hover: hover) {
  .header__nav-item:hover::before, .header__nav-item:focus::before {
    opacity: 1;
  }
}
@media print, screen and (min-width: 768px) {
  .header__nav-item {
    font-size: 16px;
    letter-spacing: 0.3em;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .header__nav-item {
    font-size: 2vw;
    letter-spacing: 0.3em;
  }
}
.header__nav-item img {
  max-width: 16px;
}
@media print, screen and (min-width: 992px) {
  .header__nav-item img {
    max-width: 20px;
  }
}
.header__nav-item a {
  display: inline-block;
  padding: 6px;
}
@media print, screen and (min-width: 992px) {
  .header__nav-item a {
    padding: 16px;
  }
}
.header__nav-item:nth-child(1) a {
  color: #9d4141;
  font-weight: 600;
}

.header.inview {
  transform: translateY(-100%);
}

.top {
  /* キービジュアルエリアのスタイリング */
  /* キャッチコピーエリアのスタイリング */
  /* CMSコンテンツエリアのスタイリング */
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .top {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
.top__kv {
  position: relative;
  width: 100%;
  margin-bottom: 104px;
  /* キービジュアル画像のスタイリング */
}
@media print, screen and (min-width: 768px) {
  .top__kv {
    margin-bottom: 160px;
  }
}
.top__kv-img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  max-width: 560px;
  border-radius: 2px;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .top__kv-img {
    width: 40vw;
    border-radius: 4px;
  }
}
.top__catch {
  position: absolute;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  top: 50%;
  transform: translateY(-50%);
  /* キャッチコピーテキストのスタイリング */
}
@media print, screen and (min-width: 768px) {
  .top__catch {
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .top__catch {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}
.top__catch-text {
  writing-mode: vertical-rl;
  font-size: 3.7vw;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media print, screen and (min-width: 768px) {
  .top__catch-text {
    font-size: 2.3vw;
  }
}
@media print, screen and (min-width: 1200px) {
  .top__catch-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .top__catch-text {
    font-size: 2vw;
    letter-spacing: 0.3em;
  }
}

.child__header {
  width: 100%;
  padding: 0 4.2vw;
}
.child__fv {
  position: relative;
  width: 70%;
  max-width: 560px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .child__fv {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .child__fv {
    width: 60%;
  }
}
.child__fv-img {
  display: block;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 992px) {
  .child__fv-img {
    border-radius: 4px;
  }
}
.child__catch {
  position: absolute;
  top: 50%;
  right: -10%;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .child__catch {
    gap: 16px;
  }
}
.child__catch-inner span {
  padding: 2px 8px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  border: 1px solid #333;
  font-size: 16px;
  text-align: right;
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .child__catch-inner span {
    font-size: 3vw;
    letter-spacing: 0.2em;
  }
}
@media print, screen and (min-width: 992px) {
  .child__catch-inner span {
    padding: 4px 16px;
    border-radius: 8px;
    font-size: 32px;
    min-width: 200px;
    text-align: center;
    display: inline-block;
  }
}
.child__fv-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 56px auto 0;
}
@media print, screen and (min-width: 992px) {
  .child__fv-description {
    margin-top: 104px;
  }
}
.child__fv-description p {
  display: flex;
}
@media print, screen and (min-width: 992px) {
  .child__fv-description p {
    font-size: 18px;
  }
}
.child__contents {
  padding: 0 4.2vw;
  margin-top: 56px;
}
@media print, screen and (min-width: 768px) {
  .child__contents {
    margin-top: 108px;
  }
}
@media print, screen and (min-width: 992px) {
  .child__contents {
    margin-top: 160px;
  }
}
.child__cta {
  margin-top: 56px;
}
@media print, screen and (min-width: 992px) {
  .child__cta {
    margin-top: 108px;
  }
}

strong {
  color: #9d4141;
}

.line {
  margin: 56px 0;
  border-top: 1px solid #d9d9d9;
}
@media print, screen and (min-width: 992px) {
  .line {
    margin: 80px 0;
  }
}

@media print, screen and (min-width: 992px) {
  .read__contents .article__contents-box {
    width: 60%;
  }
}
@media print, screen and (min-width: 992px) {
  .read__contents .article__box {
    display: flex;
  }
}
.read__heading {
  text-align: center;
  margin-bottom: 32px;
}
@media print, screen and (min-width: 992px) {
  .read__heading {
    position: sticky;
    height: -moz-fit-content;
    height: fit-content;
    width: 40%;
    top: calc(50vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
  }
}
.read__heading-en {
  text-transform: uppercase;
  color: #d9b4b4;
  font-family: "Oswald", sans-serif;
}
.read__heading-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
@media print, screen and (min-width: 992px) {
  .read__heading-title {
    font-size: 24px;
  }
}

.article__contents-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media print, screen and (min-width: 992px) {
  .article__contents-box {
    gap: 40px;
  }
}
.article__contents-box span {
  font-size: 12px;
  display: block;
  margin: 10px 0 8px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background-color: rgba(255, 255, 255, 0.5);
}
@media print, screen and (min-width: 992px) {
  .article__contents-box span {
    font-size: 14px;
    line-height: 2;
    margin: 16px 0 10px;
  }
}

.price__features p,
.article__contents-box p,
.single__desc-contents p {
  position: relative;
  padding-left: 1em;
}
.price__features p::before,
.article__contents-box p::before,
.single__desc-contents p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 2px;
  background-color: #9d4141;
}

.price__cards-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media print, screen and (min-width: 768px) {
  .price__cards-container {
    width: 50%;
    margin: 0 auto;
    gap: 56px;
  }
}
@media print, screen and (min-width: 992px) {
  .price__cards-container {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
  }
}
.price__card {
  padding: 24px 16px 32px;
  border-radius: 2px;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .price__card {
    padding: 32px 24px 40px;
  }
}
@media print, screen and (min-width: 992px) {
  .price__card {
    padding: 24px 20px 32px;
    border-radius: 4px;
  }
}
.price__card--white {
  border: 1px solid #d9d9d9;
  background-color: rgba(255, 255, 255, 0.8);
}
.price__card--pink {
  border: 1px solid #d9b4b4;
  background-color: rgba(255, 247, 247, 0.8);
}
.price__card--beige {
  border: 1px solid #d9b4b4;
  background-color: rgba(246, 235, 235, 0.8);
}
.price__card--option {
  margin: 40px auto 0;
}
@media print, screen and (min-width: 768px) {
  .price__card--option {
    max-width: 60%;
    margin-top: 80px;
  }
}
.price__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.price__card-header::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  border-bottom: 1px solid #d9d9d9;
  bottom: -24px;
  left: 0;
}
.price__card-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.price__card-body--option {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media print, screen and (min-width: 992px) {
  .price__card-body--option {
    gap: 32px;
    margin-top: 80px;
  }
}
@media print, screen and (min-width: 992px) {
  .price__heading--option .price__heading-ja {
    font-size: 28px;
  }
}
@media print, screen and (min-width: 992px) {
  .price__heading--option .price__heading-en {
    font-size: 20px;
  }
}
.price__heading-en {
  font-family: "Oswald", sans-serif;
  color: #d9b4b4;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.price__heading-ja {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}
@media print, screen and (min-width: 992px) {
  .price__heading-ja {
    font-size: 20px;
  }
}
.price__amount {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.price__amount span {
  font-size: 12px;
  margin: 0 4px;
  font-weight: 600;
}
.price__description-en {
  font-family: "Yellowtail", cursive;
  color: #9d4141;
  font-size: 22px;
}
.price__description-ja {
  font-size: 16px;
  font-weight: 600;
}
.price__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price__option-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: flex-end;
}
.price__option-name {
  font-weight: 600;
  font-size: 14px;
}
@media print, screen and (min-width: 992px) {
  .price__option-name {
    font-size: 18px;
  }
}
.price__caption {
  color: #9d4141;
  display: inline-block;
  font-size: 12px;
  margin-top: -10px;
}
@media print, screen and (min-width: 768px) {
  .price__caption {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 992px) {
  .price__contents .article__check-text {
    font-size: 16px;
  }
}

.faq__toggle {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .faq.child__contents {
    width: 60%;
    max-width: 1200px;
    margin: 108px auto 0;
  }
}
.faq__question {
  padding: 1em;
  display: block;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
}
@media print, screen and (min-width: 992px) {
  .faq__question {
    border-radius: 8px;
  }
}
.faq__question::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
  transition: transform 0.3s;
}
.faq__question--inner {
  padding-right: 24px;
}
@media print, screen and (min-width: 992px) {
  .faq__question--inner {
    padding: 0 32px 0 24px;
  }
}
.faq__answer {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
  display: flex;
  gap: 10px;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.faq__answer .qa {
  color: #9d4141;
}
@media print, screen and (min-width: 992px) {
  .faq__answer {
    padding-left: 42px;
    gap: 20px;
    margin-bottom: 24px;
  }
}
.faq__toggle:checked + .faq__question::before {
  transform: rotate(-45deg);
}
.faq__toggle:checked + .faq__question + .faq__answer {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}
@media print, screen and (min-width: 992px) {
  .faq__toggle:checked + .faq__question + .faq__answer {
    padding: 20px 42px;
  }
}
.faq .qa {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
}
@media print, screen and (min-width: 992px) {
  .faq .qa {
    font-size: 24px;
  }
}
.faq__accordion:nth-child(even) .faq__question {
  background-color: #d9b4b4;
}
.faq__accordion:nth-child(odd) .faq__question {
  background-color: white;
  color: #9d4141;
  border: 1px solid #9d4141;
}
.faq__accordion:nth-child(odd) .faq__question::before {
  border-top: 2px solid #9d4141;
  border-right: 2px solid #9d4141;
}

.answer__main {
  font-size: 16px;
  color: #333;
}
@media print, screen and (min-width: 992px) {
  .answer__main {
    font-size: 20px;
  }
}
.answer__sub {
  font-size: 14px;
  margin-top: 12px;
  display: inline-block;
  color: #555;
}
@media print, screen and (min-width: 992px) {
  .answer__sub {
    font-size: 16px;
  }
}

.single {
  min-height: 100vh;
}
@media print, screen and (min-width: 768px) {
  .single {
    max-width: 60%;
    margin: 0 auto;
  }
}
.single__heading--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 992px) {
  .single__heading--flex {
    margin-bottom: 56px;
  }
}
.single__comment {
  font-size: 12px;
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .single__comment {
    text-align: right;
    font-size: 16px;
  }
}
.single__img-container {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media print, screen and (min-width: 992px) {
  .single__img-container {
    margin-top: 48px;
    gap: 40px;
  }
}
.single__category {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 992px) {
  .single__category {
    gap: 16px;
    margin-bottom: 32px;
  }
}
.single__category-item {
  padding: 4px 16px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-block;
}
@media print, screen and (min-width: 992px) {
  .single__category-item {
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.single__category-item.basic {
  background-color: white;
  border: 1px solid #555;
}
.single__category-item.set {
  background-color: #9d4141;
  color: white;
  border: 1px solid white;
}
.single__category-item.express {
  background-color: white;
  color: #9d4141;
  border: 1px solid #9d4141;
}
.single__category-item.unique {
  background-color: #d9b4b4;
  color: white;
  border: 1px solid white;
}
.single__category-item.others {
  background-color: #d9d9d9;
}
.single__desc-title {
  margin: 32px 0 24px;
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .single__desc-title {
    margin: 56px 0 32px;
  }
}
.single__desc-title span {
  font-family: "Yellowtail", cursive;
  color: #9d4141;
  font-size: 20px;
}
.single__desc-title h3 {
  font-size: 18px;
  color: #333;
  margin-top: -4px;
}
.single__desc-contents {
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #555;
  border: 1px solid;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single__nav {
  margin-top: 80px;
}
@media print, screen and (min-width: 992px) {
  .single__nav {
    margin-top: 120px;
  }
}
.single__nav-links {
  display: flex;
}
.single__nav-links .nav-link {
  width: 50%;
  display: flex;
}
@media (hover: hover) {
  .single__nav-links .nav-link a {
    position: relative;
  }
}
@media print and (hover: hover), screen and (hover: hover) and (min-width: 992px) {
  .single__nav-links .nav-link a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 80px;
    height: 80px;
    background-image: url(../img/hover-img.png);
    background-size: contain;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
}
@media (hover: hover) and (hover: hover) {
  .single__nav-links .nav-link a:hover::before, .single__nav-links .nav-link a:focus::before {
    opacity: 1;
  }
}
.single__nav-links .nav-link.nav-next {
  justify-content: end;
}
.single__nav a {
  border-bottom: 1px solid;
  padding-bottom: 4px;
}
.single__title {
  font-size: 32px;
  font-family: "Oswald", sans-serif;
}
@media print, screen and (min-width: 1200px) {
  .single__title {
    font-size: 56px;
  }
}
.single__line {
  width: 50%;
  height: 2px;
  background-color: #d9d9d9;
  max-width: 600px;
}
.single__page-title {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
}
@media print, screen and (min-width: 992px) {
  .single__page-title {
    font-size: 24px;
  }
}

.cms {
  display: flex;
  flex-direction: column;
  gap: 56px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .cms {
    gap: 104px;
  }
}
.cms__wrapper {
  width: calc(100% - 17vw);
  margin: 0 auto 80px;
}
@media (min-width: 992px) {
  .cms__wrapper {
    width: calc(100% - 50vw);
    margin-bottom: 120px;
  }
}
.cms-box {
  width: 100%;
}
@media (min-width: 992px) {
  .cms-box {
    display: flex;
    border-radius: 4px;
  }
}
@media (min-width: 992px) {
  .cms-box:nth-child(odd) {
    justify-content: flex-start;
  }
  .cms-box:nth-child(odd) .cms-inner {
    width: 60%;
  }
  .cms-box:nth-child(odd) .cms-inner .cms-thumbnail {
    aspect-ratio: 3/2;
  }
}
.cms-box:nth-child(even) {
  width: 70%;
}
.cms-box:nth-child(even) .cms-thumbnail {
  aspect-ratio: 1/1;
}
@media (min-width: 992px) {
  .cms-box:nth-child(even) {
    width: 100%;
    justify-content: flex-end;
  }
  .cms-box:nth-child(even) .cms-inner {
    width: 50%;
  }
}
.cms-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cms-thumbnail {
    border-radius: 4px;
  }
}
.cms-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.cms-title {
  text-align: center;
  font-family: "Oswald", sans-serif;
  display: block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
  color: #333;
}
@media (min-width: 768px) {
  .cms-title {
    font-size: 20px;
  }
}

.cms__wrapper .archive__heading {
  margin-bottom: 108px;
  text-align: center;
}
@media (min-width: 768px) {
  .cms__wrapper .archive__heading {
    margin-bottom: 120px;
  }
}
.cms__wrapper .archive__heading span {
  color: #9d4141;
  font-size: 18px;
  font-family: "Yellowtail", cursive;
}
@media (min-width: 768px) {
  .cms__wrapper .archive__heading span {
    font-size: 24px;
  }
}
.cms__wrapper .archive__heading h2 {
  text-align: center;
  font-size: 20px;
  color: #333;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .cms__wrapper .archive__heading h2 {
    font-size: 32px;
  }
}
.cms__wrapper .works__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 108px;
}
@media (min-width: 992px) {
  .cms__wrapper .works__heading {
    margin-bottom: 120px;
  }
}
.cms__wrapper h2 {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
}
@media (min-width: 768px) {
  .cms__wrapper h2 {
    font-size: 56px;
  }
}
.cms__wrapper .works__line {
  width: 40%;
  height: 2px;
  background-color: #d9d9d9;
  max-width: 600px;
}
@media (min-width: 500px) {
  .cms__wrapper .works__line {
    width: 55%;
  }
}
@media (min-width: 1200px) {
  .cms__wrapper .works__line {
    width: 60%;
  }
}
@media (max-width: 1024px) and (orientation: landscape) {
  .cms__wrapper .works__line {
    width: 37%;
  }
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
  .works__contents {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

.wp-pagenavi {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 768px) {
  .wp-pagenavi {
    margin-top: 120px;
    gap: 20px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  align-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
@media (min-width: 992px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    border-radius: 4px;
  }
}
.wp-pagenavi a:not(.nextpostslink):not(.previouspostslink),
.wp-pagenavi span {
  width: 28px;
  height: 28px;
  justify-content: center;
  font-weight: 300;
}
@media (min-width: 992px) {
  .wp-pagenavi a:not(.nextpostslink):not(.previouspostslink),
  .wp-pagenavi span {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  height: 28px;
  font-size: 12px;
  padding: 4px;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .previouspostslink {
    height: 40px;
    font-size: 16px;
    padding: 8px;
  }
}
.wp-pagenavi .current {
  color: #333;
  border-color: #333;
}
@media (hover: hover) {
  .wp-pagenavi a:hover,
  .wp-pagenavi a:focus {
    border-color: #9d4141;
    color: #9d4141;
    background-color: white;
  }
}

.cms__categories {
  margin-top: 64px;
  text-align: center;
  border-top: 1px solid #d9d9d9;
}
.cms__categories hgroup {
  margin: 32px 0 24px;
}
@media print, screen and (min-width: 768px) {
  .cms__categories hgroup {
    margin: 80px 0 56px;
  }
}
.cms__categories hgroup span {
  color: #9d4141;
  font-family: "Yellowtail", cursive;
  font-size: 18px;
}
.cms__categories hgroup h3 {
  margin-top: -4px;
  color: #333;
  font-size: 18px;
}
@media print, screen and (min-width: 768px) {
  .cms__categories hgroup h3 {
    font-size: 24px;
  }
}
.cms__categories .category-ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media print, screen and (min-width: 768px) {
  .cms__categories .category-ul {
    gap: 16px;
  }
}
.cms__categories .category-ul li a {
  padding: 4px 16px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-block;
}
@media print, screen and (min-width: 992px) {
  .cms__categories .category-ul li a {
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.cms__categories .category-ul li a.basic {
  background-color: white;
  border: 1px solid #555;
}
.cms__categories .category-ul li a.set {
  background-color: #9d4141;
  color: white;
  border: 1px solid white;
}
.cms__categories .category-ul li a.express {
  background-color: white;
  color: #9d4141;
  border: 1px solid #9d4141;
}
.cms__categories .category-ul li a.unique {
  background-color: #d9b4b4;
  color: white;
  border: 1px solid white;
}
.cms__categories .category-ul li a.others {
  background-color: #d9d9d9;
}

.error-page {
  text-align: center;
  width: 100%;
  padding: 56px 4.2vw 0;
}
.error-page h2 {
  color: #333;
  font-size: 16px;
  margin-bottom: 32px;
}
@media print, screen and (min-width: 768px) {
  .error-page h2 {
    font-size: 28px;
    margin-bottom: 56px;
  }
}/*# sourceMappingURL=style.css.map */