@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&family=Roboto&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  visibility: hidden;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
body {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  letter-spacing: 0.05em;
  line-height: 2;
}

img {
  width: 100%;
  height: auto;
}

body {
  background-color: #ECE8E2;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .u-mobile {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-tablet {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.article-page {
  display: block;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .article-page {
    display: flex;
  }
}

.article-images {
  margin-bottom: 2.5rem;
}

.button-link {
  border-radius: 3rem;
  border: solid #311503 1px;
  padding: 1.5rem 0;
  display: block;
  text-align: center;
  color: #311503;
}

.button-link:hover {
  background-color: #311503;
  color: #fff;
  opacity: 1;
}

.button-link--white {
  color: #fff;
  border-color: #fff;
}

.button-link--white:hover {
  background-color: #fff;
  color: #111;
  border-color: #fff;
  opacity: 1;
}

.button-link-brown {
  background-color: #311503;
  color: #fff;
}

.button-link-brown:hover {
  background-color: #ECE8E2;
  color: #311503;
  opacity: 1;
}

.button-box {
  margin: 0 auto;
  margin-top: 2rem;
  width: 19rem;
}
@media screen and (min-width: 768px) {
  .button-box {
    margin-top: 3.5rem;
  }
}
@media screen and (min-width: 600px) {
  .button-box {
    margin-top: 3.5rem;
  }
}

.contents-inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contents-inner {
    max-width: 870px;
  }
}

.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.image-animate img {
  display: none;
}

.image-animate.img-wrap img {
  display: inline-block;
}

.img-wrap {
  overflow: hidden;
  position: relative;
}

.img-wrap::before {
  animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #ECE8E2;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}
.img-wrap-r {
  overflow: hidden;
  position: relative;
}

.img-wrap-r::before {
  animation: img-wrap-r 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@keyframes img-wrap-r {
  100% {
    transform: translateX(100%);
  }
}
.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

summary {
  position: relative;
  padding: 20px 70px 20px 70px;
  cursor: pointer;
  border-bottom: #311503 solid 1px;
}

.faq summary {
  list-style: none;
}

@media not all and (min-width: 768px) {
  summary {
    padding: 20px 50px 20px 70px;
  }
}
summary::-webkit-details-marker {
  display: none;
}

summary:hover,
details[open] summary {
  opacity: 0.8;
}

summary::before {
  content: "Q.";
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  transition: transform 0.5s;
  font-size: 1.125rem;
  font-weight: 100;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: transform 0.5s;
  font-size: 30px;
  font-weight: 100;
}

details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.answer {
  padding: 20px 70px 20px 70px;
  position: relative;
}

.answer::before {
  content: "A.";
  position: absolute;
  top: 20px;
  left: 30px;
  transition: transform 0.5s;
  font-size: 1.125rem;
  font-weight: 100;
}

@media not all and (min-width: 768px) {
  summary::after {
    right: 20px;
    font-size: 20px;
  }
  .answer {
    padding: 20px 20px 20px 70px;
  }
}
details[open] .answer {
  animation: fadein 0.5s ease;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body, p {
  margin: 0;
}

details {
  margin-bottom: 10px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

@media not all and (min-width: 640px) {
  details {
    width: 100%;
  }
}
details:first-of-type {
  margin-top: 30px;
}

.side-bar {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .side-bar {
    margin-top: 0rem;
    margin-left: 2rem;
  }
}

.side-bar-box {
  color: #311503;
}

.side-bar-items {
  margin-top: 0.625rem;
}

.side-bar__title, .side-bar__sub-title {
  margin-bottom: 1.5rem;
  margin-top: 3.5rem;
}

.side-monthly li {
  margin-top: 0.4375rem;
  padding: 0.1875rem;
}

.sidebar-back-to-all {
  margin-top: 2rem;
}

.side-category-archive {
  margin-top: 2.5rem;
}

.topic-side {
  padding-top: 2rem;
}

.topic-side summary::before {
  display: none;
}

.topic-side .answer::before {
  display: none;
}

.test {
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}

.title-h2 {
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #311503;
}
@media screen and (min-width: 768px) {
  .title-h2 {
    font-size: 2rem;
  }
}

.title-h2--white {
  color: #fff;
}

.top-title {
  font-size: 1.25rem;
  padding-bottom: 2rem;
  font-family: "Roboto", sans-serif;
  color: #311503;
}
@media screen and (min-width: 768px) {
  .top-title {
    font-size: 1.5rem;
    padding-bottom: 3rem;
  }
}

.top-title-jp {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-size: 1rem;
  padding-left: 3rem;
  position: relative;
  display: inline-block;
  color: #311503;
}
@media screen and (min-width: 768px) {
  .top-title-jp {
    font-size: 0.875rem;
  }
}

.top-title-jp::before {
  content: "";
  background-color: #311503;
  display: block;
  position: absolute;
  width: 1.125rem;
  height: 0.0625rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0.875rem;
}

.page-title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  color: #311503;
  font-size: 1.25rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .page-title {
    font-size: 1.5rem;
  }
}

.product-effect__sub-title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  color: #311503;
  font-size: 1.25rem;
  font-weight: 300;
}

.product-effect__sub-title--small {
  font-size: 0.875rem;
}

.h2-topic-title {
  padding-bottom: 2rem;
}

.contact-inner {
  padding-top: 5rem;
}

.contact-summary {
  margin-top: 3.5rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
}

.contact-box {
  max-width: 42.5rem;
  margin: 0 auto;
  margin-top: 6.25rem;
}

.input-title {
  margin-top: 2.5rem;
}

.required-tag {
  margin-left: 1.5rem;
  background-color: #311503;
  border-radius: 0.1875rem;
  padding: 0.1875rem 0.3125rem;
  color: #fff;
}

.input-style {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #311503;
  margin-top: 0.625rem;
  padding: 0.625rem;
}

.input-style-short {
  max-width: 13.3125rem;
}

textarea {
  height: 11.5rem;
}

.privacy-attention {
  margin-top: 3.125rem;
  height: 154px;
  width: 100%;
  overflow: auto;
  background-color: #FFFFFF;
  box-shadow: inset 3px 3px 6px rgba(49, 21, 3, 0.1137254902);
  padding: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .privacy-attention {
    width: 100%;
  }
}
.privacy-attention a {
  text-decoration: underline;
}

/*************************************************
セレクトの矢印
*************************************************/
select {
  position: relative;
  padding: 10px;
  width: 100%;
  color: #333333 !important;
}

option {
  color: #333333 !important;
}

.select-wrap {
  position: relative;
  max-width: 13.3125rem;
  width: 100%;
}

.select-wrap:after {
  content: "";
  position: absolute;
  right: 1.1875rem;
  top: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid #311503;
  border-left: 2px solid #311503;
  transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}

/*************************************************
チェックボックス
*************************************************/
.check-box {
  display: block;
  max-width: 18.75rem;
  margin: 0.9375rem auto 3.75rem;
  text-align: center;
}

input[type=checkbox] {
  visibility: hidden;
}

.check-box__text {
  display: inline-block;
  padding: 0.1875rem 0 0.1875rem 2.5rem;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  line-height: 24px;
}

.check-box__text::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.6875rem;
  padding-top: 1.6875rem;
  border-radius: 0.5rem;
  top: 0;
  left: 0;
  border: 1px solid #311503;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .check-box__text::before {
    margin-top: 0;
  }
}

.check-box__text::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.25rem;
  padding-top: 0.625rem;
  top: 0.3125rem;
  left: 0.25rem;
  border-left: 2px solid #311503;
  border-bottom: 2px solid #311503;
  transform: rotate(-45deg);
  opacity: 0;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

input[aria-invalid=false] + label + span::after {
  opacity: 1;
}

.button-submit {
  padding: 1.5rem 4.5rem;
}

.thanks-message {
  text-align: center;
}

.thanks-inner {
  padding-top: 11.25rem;
}

.error {
  color: red;
}

.check-change {
  display: flex;
  flex-direction: column-reverse;
}

#footer {
  background-color: #311503;
  padding: 3rem 1.5rem;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  #footer {
    padding: 10.625rem 3.5rem;
    margin-top: 10rem;
  }
}

.footer__container {
  display: flex;
  flex-direction: column-reverse;
  gap: 3.5rem;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer__container {
    flex-direction: row;
  }
}

.footer__link-container {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer__link-container {
    flex-direction: row;
    text-align: left;
    width: 40%;
  }
}

.footer__item-address {
  width: 17.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__item-address {
    margin: unset;
  }
}

.footer__link-item {
  margin-top: 1.5rem;
}

.footer__link-item:nth-of-type(1) {
  margin-top: unset;
}

.footer__text-color {
  color: #fff;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer__text-color {
    font-size: 1rem;
  }
}

.company-name {
  margin-top: 1.5rem;
}

#header {
  position: fixed;
  width: 100%;
  z-index: 999;
}

.header__inner {
  display: flex;
  max-width: 100rem;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  padding: 0;
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 2.5rem;
    margin-top: 1.25rem;
  }
}

.header__pc-menu {
  margin-left: auto;
}

.header__navigation {
  display: flex;
  gap: 2rem;
}

.header__button {
  margin-left: 2rem;
}

.header__button-link {
  background-color: #111;
  color: #fff;
  padding: 1.0625rem 3rem;
  border-radius: 0.625rem;
}

.header__list a {
  color: #fff;
}

.header__menu-button {
  width: 3rem;
  height: 3rem;
  padding: 0.875rem 0.5rem;
  margin-left: auto;
}

.header__menu-button-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.header__menu-button-inner span {
  display: inline-block;
  background-color: #fff;
  width: 100%;
  height: 0.125rem;
  border-radius: 0.0625rem;
  position: absolute;
  left: 0;
}
.header__menu-button-inner span:nth-of-type(1) {
  top: 0;
}
.header__menu-button-inner span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__menu-button-inner span:nth-of-type(3) {
  bottom: 0;
}

.header__menu-button-inner.active span:nth-of-type(1) {
  top: 50%;
  rotate: 45deg;
  transform: translateY(-50%);
}
.header__menu-button-inner.active span:nth-of-type(2) {
  opacity: 0;
}
.header__menu-button-inner.active span:nth-of-type(3) {
  bottom: 50%;
  rotate: -45deg;
  transform: translateY(50%);
}

.header__sp-menu {
  display: none;
  position: fixed;
}

.header__sp-menu.open {
  display: block;
  background-color: #311503;
  width: 100%;
  color: #fff;
  height: 100vh;
  padding-top: 5rem;
  z-index: 99;
}

.header__navigation--sp {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
}

.header__list--button {
  margin: 0 auto;
  margin-top: 2rem;
}

.header__button--sp {
  background-color: #111;
  color: #fff;
  padding: 1.0625rem 3rem;
  border-radius: 0.625rem;
  max-width: 250px;
}

.header__list--sp {
  margin-top: 2rem;
  text-align: center;
}

.header__list--sp:nth-last-of-type(2) {
  margin-bottom: 1rem;
}

.change-color {
  color: #111;
  transition: 0.3s;
  height: 48px;
  align-items: center;
  background-color: #311503;
}
.change-color .header__list a {
  color: #111;
}
@media screen and (min-width: 768px) {
  .change-color {
    color: #111;
    transition: 0.3s;
    height: 64px;
    align-items: center;
    background-color: rgba(236, 232, 226, 0.8);
  }
}

body.noScroll {
  overflow-y: hidden;
}

.js-header.bgNone {
  background-color: unset;
}

.change-color3 {
  color: #111;
  transition: 0.3s;
  height: 48px;
  align-items: center;
  background-color: #311503;
}
.change-color3 .header__list a {
  color: #111;
}
@media screen and (min-width: 768px) {
  .change-color3 {
    color: #111;
    transition: 0.3s;
    height: 64px;
    align-items: center;
    background-color: rgba(236, 232, 226, 0.8);
  }
}

.product-page-title__container {
  background-image: url(../images/common/second-visual.png);
}
@media screen and (min-width: 768px) {
  .product-page-title__container {
    padding-bottom: unset;
  }
}

.product-page__box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  height: 12.5rem;
}
@media screen and (min-width: 768px) {
  .product-page__box {
    height: 23.4375rem;
  }
}

.product-page-title {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .product-page-title {
    width: 30.875rem;
    display: block;
    left: 5rem;
    font-size: 2rem;
  }
}

.page-header__image {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-header__image {
    width: 29.625rem;
    display: block;
  }
}

.product-introduction {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding-top: 6rem;
}
@media screen and (min-width: 600px) {
  .product-introduction {
    flex-direction: row;
    gap: 8%;
  }
}

.product__image {
  width: 17.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .product__image {
    width: 40%;
    margin: unset;
  }
}
@media screen and (min-width: 768px) {
  .product__image {
    width: 19.3125rem;
  }
}

.product__text {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .product__text {
    width: 60%;
  }
}

.product-introduction__list-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .product-introduction__list-box {
    flex-direction: row;
  }
}

.product-introduction__list {
  color: #311503;
  padding: 0.75rem 0.5rem;
  text-align: center;
  border: solid #311503 0.0625rem;
  width: 18.4375rem;
}
@media screen and (min-width: 768px) {
  .product-introduction__list {
    width: 15.625rem;
  }
}

.product-details__container {
  background-color: rgba(253, 253, 253, 0.35);
  margin-top: 4rem;
  padding: 2.8125rem 1.5rem;
}

.product-effect__container {
  text-align: center;
  margin-top: 8.125rem;
}

.product-effect__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .product-effect__list {
    width: 62.25rem;
    justify-content: space-between;
  }
}
.product-effect__list h3 {
  font-weight: 400;
}

.product-details {
  width: 100%;
  margin: 0 auto;
  padding: 2.8125rem 0;
}
@media screen and (min-width: 768px) {
  .product-details {
    width: 40rem;
  }
}

.product-effect__round {
  background-color: rgba(66, 59, 47, 0.08);
  width: 18.75rem;
  height: 18.75rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content.product-effect-content {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 14px;
}

.product-explain {
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
  max-width: 75rem;
  padding: 0 1.5rem;
  margin: 0 auto;
  margin-top: 8.125rem;
}
@media screen and (min-width: 768px) {
  .product-explain {
    flex-direction: row;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .product-explain__image {
    width: 36.25rem;
  }
}

@media screen and (min-width: 768px) {
  .product-explain__text {
    width: 31.25rem;
    margin-right: auto;
  }
}

.product-expalin-link {
  margin-top: 1.5rem;
}

.product-price {
  background-color: rgba(253, 253, 253, 0.35);
  padding: 5rem 0;
  margin-top: 8.125rem;
}

.product-price__innner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .product-price__innner {
    justify-content: space-between;
    flex-direction: row;
  }
}

.product-price__title {
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .product-price__list {
    width: 34rem;
  }
}

.product-price__table-row,
.product-info__table-row {
  position: relative;
  padding: 1.25rem 0;
  color: #311503;
}
@media screen and (min-width: 768px) {
  .product-price__table-row,
  .product-info__table-row {
    display: flex;
  }
}

.product-info__table-row::after,
.product-price__table-row::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #311503;
  width: 100%;
  height: 0.0625rem;
  bottom: 0;
}

.product-info__table-row:nth-of-type(1)::before,
.product-price__table-row:nth-of-type(1)::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #311503;
  width: 100%;
  height: 0.0625rem;
  top: 0;
}

.content.product-price__content {
  margin-top: 1.5rem;
}

.content.product-image__button-content {
  margin-top: 0.75rem;
}

.product-parts__container {
  max-width: 68.75rem;
  margin: 0 auto;
  margin-top: 2.5rem;
  padding: 10px;
}
.product-parts__container .page-title {
  text-align: center;
}

.product-parts__caption {
  text-align: center;
  padding-bottom: 1.375rem;
}

.product-parts__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.125rem;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .product-parts__list {
    flex-wrap: nowrap;
  }
}

.product-image-box {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .product-image-box {
    width: 27.9375rem;
  }
}

.product-box {
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .product-box {
    width: 17rem;
  }
}

.product-notion {
  text-align: center;
  margin-top: 32px;
}

.product-image-modaal {
  width: 40%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .product-image-modaal {
    width: 8.75rem;
  }
}

.product-price__table-head {
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .product-price__table-head {
    width: 30%;
    padding-bottom: unset;
  }
}

.product-info__table-head {
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .product-info__table-head {
    width: 25%;
    padding-bottom: unset;
  }
}

.product-parts__figure {
  display: flex;
  flex-direction: column-reverse;
  width: 40%;
}
@media screen and (min-width: 768px) {
  .product-parts__figure {
    width: auto;
  }
}

.product-shop__count__container {
  margin-top: 7.5rem;
}

.product-shop__count-list-box {
  margin-top: 4rem;
}

.product-relation {
  background-color: rgba(253, 253, 253, 0.35);
  padding: 5.5rem 1.5rem;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .product-relation {
    margin-top: 8.125rem;
  }
}

.product-relation__list-box {
  width: 41.5rem;
}

.product__center-title {
  text-align: center;
  margin-top: 6.25rem;
  margin-bottom: 2.5rem;
}

.product__center-title.product-relation__main-title {
  margin-top: unset;
}

.product-relation__title {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  padding: 2rem 0;
  color: #311503;
}

.product-relation__list-box {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 0 auto;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .product-relation__list-box {
    grid-template-columns: 1fr 1fr;
    width: 41.25rem;
  }
}

.doctor-recommend {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .doctor-recommend {
    margin-top: 8.125rem;
  }
}

.doctor__title {
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 600px) {
  .doctor__title {
    padding-bottom: 3.5rem;
  }
}

.doctor__card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 600px) {
  .doctor__card {
    flex-direction: row;
    padding-bottom: 3.5rem;
  }
}

.doctor__image-box {
  width: 50%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .doctor__image-box {
    width: unset;
    margin: unset;
  }
}

.doctor__text-box {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .doctor__text-box {
    width: 70%;
  }
}

.doctor__link-box {
  display: flex;
}

.doctor-bold {
  font-weight: bold;
  color: #311503;
  font-size: 1.125rem;
  padding-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .doctor-bold {
    font-size: 1.25rem;
  }
}

.doctor__link-box {
  margin-top: 2rem;
  display: flex;
  gap: 2.5rem;
}

.doctor-button-box {
  margin-top: unset;
}

.product-shop__name-list-box {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .product-shop__name-list-box {
    width: 30.5625rem;
  }
}

.product-shop__count-list-box {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .product-shop__count-list-box {
    width: 30.5625rem;
  }
}

.product-shop__prefecture-list {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}

.product-shop__name-list-box {
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  display: grid;
}
@media screen and (min-width: 768px) {
  .product-shop__name-list-box {
    width: 30.5625rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    text-align: left;
  }
}

.product-shop___prefecture,
.product-count___prefecture {
  font-weight: bold;
  padding-bottom: 1.5rem;
  color: #311503;
}
@media screen and (min-width: 768px) {
  .product-shop___prefecture,
  .product-count___prefecture {
    padding-bottom: 2rem;
  }
}

.product-shop__name {
  padding-bottom: 1rem;
  color: #311503;
}

.faq__title {
  text-align: center;
  padding-top: 8.125rem;
}

.thumbnails-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
}

.thumbnails-wrapper img {
  max-width: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbnails-wrapper img:hover {
  opacity: 0.7;
  cursor: pointer;
}

.slides-wrapper {
  padding: 0 20px;
  max-width: 1000px;
  position: relative;
}

.slides-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  z-index: 1003;
  transition: 0.3s;
}

.slides-overlay.active {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}

.slides-overlay img {
  display: none;
}

.slides-overlay img.active {
  display: block;
}

#close-02 {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 10%;
  right: 5%;
  background-color: #000;
  transition: 0.3s;
  z-index: 1;
}

#close-02:hover {
  opacity: 0.7;
}

#close-02::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

#close-02::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

#prev,
#next {
  position: absolute;
  color: #959595;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(62, 62, 62);
  transition: 0.3s;
}

#prev:hover,
#next:hover {
  opacity: 0.7;
}

#prev.active,
#next.active {
  background-color: #000;
}

#prev {
  left: -50px;
}

#next {
  right: -50px;
}

#prev.active::after,
#next.active::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#next::after {
  content: "前";
}

#prev::after {
  content: "次";
}

.modal-opened {
  overflow-y: hidden;
  /*背景を固定*/
}

.num-of-thumbnails {
  color: #fff;
  text-align: center;
}

.shop-place {
  color: #311503;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-size: 1.5rem;
  border-bottom: 1px solid #311503;
  padding-bottom: 1.5rem;
  font-weight: 300;
  margin-top: 3.5rem;
}

.shop-detail-card {
  margin-top: 3.5rem;
  color: #311503;
}
@media screen and (min-width: 768px) {
  .shop-detail-card {
    display: flex;
  }
}

.shop-detail-info {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .shop-detail-info {
    margin-top: 0rem;
  }
}

@media screen and (min-width: 600px) {
  .shop-detail-image {
    max-width: 18.75rem;
    margin-right: 1.25rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.shop-name {
  font-size: 1.5rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 300;
}

.authorised {
  font-size: 1rem;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-weight: normal;
  margin-right: 0.5rem;
  background-color: #311503;
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.1875rem;
}

.shop-address {
  margin-top: 2rem;
}

.shop-contact {
  display: flex;
  padding: 0.5rem 0;
  gap: 1.5rem;
}

.shop-hompage {
  margin-left: 3.4375rem;
}
.shop-hompage a {
  text-decoration: underline;
}

.shop-message__box {
  display: flex;
  flex-wrap: wrap-reverse;
}
@media screen and (min-width: 600px) {
  .shop-message__box {
    flex-wrap: nowrap;
  }
}

.shop-message {
  margin-top: 2.5rem;
}

.shop-message__text {
  min-width: 22.5rem;
  width: 100%;
  background: #fff;
  margin-top: 0.75rem;
  padding: 0.9375rem 0.75rem;
  border-radius: 0.5rem;
  position: relative;
}
@media screen and (min-width: 600px) {
  .shop-message__text {
    width: calc(100% - 1.25rem);
    margin-right: 1.25rem;
  }
}

.shop-message__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left: 10px solid #fff;
}
@media screen and (min-width: 600px) {
  .shop-message__text::before {
    top: 50%;
    left: 100%;
  }
}

.shop-message__icon {
  max-width: 7.5rem;
  width: 100%;
  margin-top: 0.75rem;
}

.shop-message__icon img {
  height: 7.5rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop-homepage-link {
  padding-bottom: 0.5rem;
}

.article-page summary {
  padding: 0 70px 0 30px;
  border-bottom: none;
}
.article-page summary::after {
  display: none;
}
.article-page summary .side-category-archive {
  margin-top: -31px;
  padding-left: 20px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media, _:future, .article-page summary .side-category-archive {
    margin-top: -20px;
  }
}
.article-page .answer {
  padding: 0 0 0 30px;
}

.google-map iframe {
  width: 100%;
  height: 310px;
}
@media screen and (min-width: 768px) {
  .google-map iframe {
    max-width: 870px;
    height: 410px;
  }
}

.google-map {
  width: 100%;
  margin: 30px auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .google-map {
    max-width: 1150px;
    padding-inline: 25px;
  }
}

.main-visual {
  height: 200vh;
  width: 100%;
  z-index: -1;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  --background: url(../images/common/main-visual.png);
  background-image: var(--background);
  background-attachment: fixed;
  overflow: hidden;
}

.box {
  animation: image_anime 6s ease infinite;
  /* 5秒のアニメーションを繰り返す */
}

@keyframes image_anime {
  0% {
    background-image: url(../images/common/main-visual.png);
    /* 背景画像1を指定 */
  }
  50% {
    background-image: url(../images/common/second-visual.png);
    /* 背景画像2を指定 */
  }
  100% {
    background-image: url(../images/common/main-visual.png);
    /* 背景画像1を指定 */
  }
}
.main-title__container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
}

.main-title {
  font-size: 1.75rem;
  color: #fff;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  letter-spacing: 0.2em;
  font-weight: 200;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 600px) {
  .main-title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .main-title {
    font-size: 3rem;
  }
}

.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.second-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.second-title {
  font-size: 1.125rem;
  text-align: center;
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 300;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 600px) {
  .second-title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .second-title {
    font-size: 2rem;
  }
}

.second-view-item {
  width: 7.5rem;
  margin: 0 auto;
  margin-top: 3.75rem;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 600px) {
  .second-view-item {
    width: 11.25rem;
  }
}
@media screen and (min-width: 768px) {
  .second-view-item {
    width: 15.25rem;
  }
}

.vision {
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 600px) {
  .vision {
    padding-top: 9.375rem;
    flex-direction: row;
    justify-content: space-between;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 600px) {
  .vision-item__text {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .vision-item__text {
    width: 28.75rem;
  }
}

.vision-item__image {
  width: 16.25rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .vision-item__image {
    margin-right: unset;
    margin-left: auto;
    width: 26.75rem;
  }
}

.profile {
  margin-top: 1.5rem;
  text-align: right;
}

.content {
  margin-top: 1.5rem;
  line-height: 2;
  color: #311503;
}
@media screen and (min-width: 600px) {
  .content {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .content {
    margin-top: 3.5rem;
  }
}

.about {
  padding-top: 6.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 600px) {
  .about {
    padding-top: 10rem;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 600px) {
  .about-item__text {
    width: 65%;
  }
}
@media screen and (min-width: 768px) {
  .about-item__text {
    width: 35.875rem;
  }
}

.about-item__image {
  display: flex;
  gap: 1.125rem;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  .about-item__image {
    flex-direction: column;
    width: 12.5rem;
    gap: 2rem;
    height: 50%;
  }
}
@media screen and (min-width: 768px) {
  .about-item__image {
    width: 23.125rem;
  }
}

.about-pic01 {
  width: 50%;
}
@media screen and (min-width: 600px) {
  .about-pic01 {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .about-pic01 {
    width: 18.25rem;
  }
}

.about-pic02 {
  width: 50%;
  height: 100%;
  margin-top: auto;
}
@media screen and (min-width: 600px) {
  .about-pic02 {
    width: 7.5rem;
    -o-object-fit: contain;
       object-fit: contain;
    margin-top: unset;
  }
}
@media screen and (min-width: 768px) {
  .about-pic02 {
    width: 15.1875rem;
    margin-left: auto;
  }
}

.feature {
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .feature {
    padding-top: 10rem;
  }
}

.feature__inner {
  max-width: 100%;
  padding-left: unset;
  padding-right: unset;
}
@media screen and (min-width: 600px) {
  .feature__inner {
    max-width: 68.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.feature__mobile {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.top-table {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
  border-spacing: 0.4375rem;
  font-size: 0.875rem;
  color: #311503;
}
@media screen and (min-width: 600px) {
  .top-table {
    font-size: 1rem;
    margin-top: 4rem;
  }
}

.top-table__head {
  background-color: #311503;
  color: #fff;
  font-weight: 200;
  padding: 0.8125rem 0.5rem;
}

.top-table__list {
  background-color: #F1F3EF;
  padding: 0.8125rem 0;
  margin-top: 0.375rem;
  margin-left: 0.5rem;
}

.top-table__data {
  background-color: #F1F3EF;
  width: 40%;
  padding: 0.8125rem 0.5rem;
}

.top-table__arrow-box {
  background-image: url(../images/common/table-arrow-bottom.png);
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: center;
}

.top-table__last {
  padding: 1.25rem 0.5rem;
  border: solid 1px #311503;
}

.table-none {
  background-color: #ECE8E2;
  border: unset;
  padding: 0.625rem 0;
}

.table-arrow {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 0.5rem;
  padding: 0 0.3125rem;
}
@media screen and (min-width: 600px) {
  .table-arrow {
    width: 3rem;
  }
}

.table-arrow::before {
  content: "";
  background-image: url(../images/common/table-arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  width: 100%;
  height: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.product {
  background-image: url(../images/common/second-visual.png);
  padding: 4.5rem 0;
  margin-top: 6rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .product {
    margin-top: 8.75rem;
    padding: 7.5rem 0;
  }
}

.product__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 47.5rem;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .product__inner {
    flex-direction: row;
  }
}

.product__item--image {
  width: 11.25rem;
  position: relative;
  z-index: 200;
}
.product__item--image:after {
  display: block;
  position: absolute;
  content: "";
  top: 6px;
  left: 10px;
  animation: expandCircle 4s ease-in-out infinite;
  width: 90%;
  height: 90%;
  margin: auto;
  border-radius: 30px 50px 50px 50px;
  box-shadow: inset 0 0 50px #d7951b, inset 20px 0 60px rgba(222, 157, 110, 0.9490196078), inset -20px 0 60px rgba(222, 157, 110, 0.9490196078), inset 20px 0 350px rgba(222, 157, 110, 0.9490196078), inset -20px 0 350px rgba(222, 157, 110, 0.9490196078), 0 0 50px #d7951b, -10px 0 60px rgba(222, 157, 110, 0.9490196078), 10px 0 60px rgba(222, 157, 110, 0.9490196078);
  z-index: 100;
}
.product__item--image img {
  z-index: 400;
  position: relative;
}
@media screen and (min-width: 600px) {
  .product__item--image {
    width: 15.375rem;
  }
}

@keyframes expandCircle {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}
.effect {
  align-items: center;
  margin-top: 3.5rem;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .effect {
    display: flex;
    gap: 2rem;
    flex-direction: row-reverse;
    margin-top: 6rem;
  }
}

.effect-link__container {
  margin-top: 2.5rem;
  justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .effect-link__container {
    display: flex;
  }
}

.effect-link {
  margin-top: 1rem;
  color: #311503;
}
@media screen and (min-width: 600px) {
  .effect-link {
    margin-top: unset;
  }
}

.effect-item__image {
  margin: 0 auto;
  margin-top: 2rem;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .effect-item__image {
    margin-top: unset;
  }
}

.link-under-bar {
  display: block;
  text-decoration: underline;
  text-decoration-color: #311503;
  padding-bottom: 0.5rem;
}

.story {
  margin-top: 6.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .story {
    flex-direction: row;
    gap: 2rem;
    margin-top: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .story-item__text {
    width: 37.5rem;
  }
}

.story-item__image {
  width: 18.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
}
@media screen and (min-width: 600px) {
  .story-item__image {
    width: 22.4375rem;
  }
}
@media screen and (min-width: 768px) {
  .story-item__image {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.story-pic01 {
  width: 10.625rem;
}
@media screen and (min-width: 600px) {
  .story-pic01 {
    width: unset;
  }
}

.story-pic02 {
  width: 7.5rem;
  height: 100%;
  margin-left: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 600px) {
  .story-pic02 {
    width: 11.25rem;
  }
}
@media screen and (min-width: 768px) {
  .story-pic02 {
    width: 18.75rem;
  }
}

@media screen and (min-width: 768px) {
  .content-story {
    width: 35rem;
  }
}

.flow {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .flow {
    margin-top: 10rem;
  }
}

.flow-card__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .flow-card__container {
    flex-direction: row;
  }
}

.flow-card__item {
  background-color: #DFDBD4;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 600px) {
  .flow-card__item {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .flow-card__item {
    width: 33.3333333333%;
  }
}

.flow__step {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-size: 1.5rem;
}

.flow-card__icon {
  width: 6.25rem;
}

.flow-card__content {
  margin-top: unset;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 75rem;
  margin-top: 5rem;
  gap: 2.5rem;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact {
    flex-direction: row;
    padding-right: 6.25rem;
    margin-top: 10rem;
  }
}

.contact__image-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .contact__image-box {
    width: 36.0625rem;
  }
}

.contact-pic01 {
  width: 27.9375rem;
}

.contact-pic02 {
  width: 16.1875rem;
  margin-left: auto;
}

.contact__text-box {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact__text-box {
    width: 26.5625rem;
    margin-top: unset;
  }
}

.column {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .column {
    margin-top: 8.75rem;
  }
}

.column__list-box {
  position: relative;
  margin-top: 2.25rem;
}

.column__list-box:nth-of-type(1) {
  margin-top: unset;
}

.column__list-box::after {
  content: "";
  background-color: #311503;
  width: 100%;
  height: 0.0625rem;
  position: absolute;
}

.column__date time {
  font-weight: bold;
  color: #311503;
  font-size: 0.875rem;
}

.column__title {
  margin-top: 1.5rem;
  padding-bottom: 1.125rem;
  color: #311503;
}

@media screen and (min-width: 600px) {
  .column-button-box {
    margin-left: auto;
  }
}

.topic-title {
  font-size: 1.5rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 300;
}

.topic-data {
  display: flex;
  border-bottom: 1px solid #311503;
  padding-bottom: 0.5rem;
}

.topic-date {
  color: #311503;
  font-size: 1rem;
}

.topic-tags {
  color: #311503;
  margin-left: 4.9375rem;
}

.topic-inner {
  margin-top: 2.5rem;
}

.topic-text {
  margin-top: 1.25rem;
}

.topic__back-button {
  width: 18.75rem;
  margin: 0 auto;
  margin-top: 4.5rem;
}

/*************************************************
一覧
*************************************************/
@media screen and (min-width: 600px) {
  .topic-list-box {
    display: flex;
    flex-wrap: wrap;
  }
}

.topic-list-card {
  margin-top: 3.5rem;
}
@media screen and (min-width: 600px) {
  .topic-list-card {
    width: calc(50% - 3.75rem);
  }
  .topic-list-card:nth-child(odd) {
    margin-right: 3.75rem;
  }
}

/*************************************************
以下ページネーション修飾
*************************************************/
.pagination {
  margin: 40px 0 0;
}

.nav-links {
  display: flex;
}

.pagination .page-numbers {
  display: inline-block;
  margin-right: 10px;
  padding: 1px 10px;
  color: #311503;
  border-radius: 1px;
  background: #ECE8E2;
  border: 1px solid #311503;
  font-size: 14px;
}

.pagination .current {
  background: #CECDCD;
  color: #311503;
}

.pagination .prev,
.pagination .next {
  background: transparent;
  box-shadow: none;
  color: #311503;
}

.pagination .dots {
  background: transparent;
  box-shadow: none;
  border: none;
}

/*************************************************
youtubeモーダル用
*************************************************/
.modaal-overlay {
  background: rgba(49, 21, 3, 0.6) !important;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.video-container img {
  width: 70%;
  margin-inline: auto;
}

.modaal-inner-wrapper {
  padding-inline: 0 !important;
}
@media screen and (min-width: 768px) {
  .modaal-inner-wrapper {
    padding-inline: 25px;
  }
}

/*************************************************
関連記事
*************************************************/
.topic-related {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .topic-related {
    margin-top: 7.5rem;
  }
}

.topic-related-title {
  font-size: 1.5rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 300;
}

.topic-related-box {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .topic-related-box {
    display: flex;
    margin-top: 3.5rem;
  }
}

.topic-related-card {
  width: 100%;
  margin-top: 0.9375rem;
}
.topic-related-card:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .topic-related-card {
    width: calc(33% - 1.1875rem);
    margin-right: 1.1875rem;
    display: flex;
    flex-wrap: wrap;
  }
}

.topic-related-card a {
  display: flex;
}
@media screen and (min-width: 768px) {
  .topic-related-card a {
    display: block;
  }
}

.topic-related-card img {
  max-width: 7.5rem;
  width: 100%;
  margin-right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .topic-related-card img {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.topic-title-box {
  margin-top: 1.5rem;
}

.topic-related__article-title {
  font-size: 1.125rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-weight: 300;
}

/*************************************************
CPAエリア
*************************************************/
.buy-contact-area {
  text-align: center;
}

.buy-contact-area__title {
  font-size: 1.5rem;
  margin-top: 6.25rem;
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .buy-contact-area__title {
    font-size: 2rem;
  }
}

.wp-block-image {
  margin: 3rem 0;
}

.topic-thumbnail-box {
  display: flex;
  height: 9.375rem;
}
.topic-thumbnail-box img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .topic-thumbnail-box {
    width: 100%;
    height: 16.25rem;
  }
}

.topic-list__image {
  height: 18.75rem;
}
@media screen and (min-width: 768px) {
  .topic-list__image {
    height: 23.75rem;
  }
}
.topic-list__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.under-header {
  top: 0;
}

.under-header .header__list a {
  color: #311503;
}

.js-under-header .header__list a {
  color: #311503;
}
.js-under-header span {
  background-color: #311503;
}

.change-color--2 {
  color: #111;
  transition: 0.3s;
  height: 48px;
  align-items: center;
  background-color: #311503;
}
.change-color--2 span {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .change-color--2 {
    color: #111;
    transition: 0.3s;
    height: 64px;
    align-items: center;
    background-color: rgba(236, 232, 226, 0.8);
  }
}

.under-header__menu-button-inner span {
  background-color: #311503;
}

.under-header__sp-menu {
  top: 0;
}

.under-header__menu-button-inner.active span {
  background: #fff;
}