@charset "UTF-8";
/*---------------
Postページ用CSS
---------------*/
.filter_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem 0 6rem;
}
.filter_tag li.active a {
  color: #fff;
  background-color: var(--color-main);
}
.filter_tag a {
  display: block;
  padding: 1rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 1.8rem;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  background-color: #fff;
  transition: 0.3s;
}
@media (hover) {
  .filter_tag a:hover {
    color: #fff;
    background-color: var(--color-main);
  }
}

.item_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.item_tag a {
  font-size: 1.2rem;
  border: 1px solid var(--color-main);
  padding: 0.8rem 1rem;
  line-height: 1;
  color: var(--color-main);
  transition: 0.3s;
}
@media (hover) {
  .item_tag a:hover {
    background-color: var(--color-main);
    color: #fff;
  }
}
.item_tag span {
  font-size: 1.2rem;
  border: 1px solid var(--color-main);
  padding: 0.8rem 1rem;
  line-height: 1;
  color: var(--color-main);
}

/*case*/
.case {
  align-items: flex-start;
}
.case li {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.case li figure {
  margin-bottom: 1rem;
  cursor: zoom-in;
}
.case li h2 {
  margin-bottom: 2rem;
}
.case li h2 a {
  display: block;
  line-height: 1.3;
  transition: opacity 0.3s;
}
@media (hover) {
  .case li h2 a:hover {
    opacity: 0.7;
  }
}
.case_detail {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.2s;
}
.case_detail.open {
  max-height: 100%;
  visibility: visible;
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .case_detail p {
    font-size: 1.6rem;
  }
}
.case_btn {
  width: 100%;
  padding: 2rem;
  font-size: 1.6rem;
  color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  margin-top: auto;
}
.case_btn:after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  transform: rotate(45deg) translateY(-0.3em);
  margin-left: 1rem;
}
.case_btn.active:after {
  transform: rotate(-135deg);
}
@media (hover) {
  .case_btn:hover {
    opacity: 0.7;
  }
}

/*menu*/
.menu_tab {
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .menu_tab {
    grid-template-columns: repeat(4, 1fr);
  }
}
.menu_tab li {
  border-bottom: 1px solid var(--color-main);
  border-left: 1px solid var(--color-main);
}
.menu_tab li a {
  background-color: #fff;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-main);
}
@media screen and (min-width: 1000px) {
  .menu_tab li a {
    font-size: 1.8rem;
  }
}
.menu_tab li.active a {
  background-color: var(--color-main);
  color: #fff;
}
.menu-treatment {
  margin-top: 2rem;
}
.menu-treatment li {
  border: 1px solid var(--color-main);
}
.menu-treatment li a {
  display: block;
  padding: 2rem 1.5rem;
  height: 100%;
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .menu-treatment li a {
    padding: 2rem;
  }
}
@media (hover) {
  .menu-treatment li a:hover {
    box-shadow: 0 0 1.5rem rgba(var(--color-mainrgb), 0.3);
  }
}
.menu-treatment .item_tag {
  margin-bottom: 0;
  margin-top: 1rem;
}
.menu-treatment .item_tag span {
  color: var(--color-border);
  border-color: var(--color-border);
}
.menu-item li {
  border-bottom: 1px solid var(--color-main);
}
.menu-item li a {
  display: block;
  height: 100%;
  padding-block: 2rem;
  transition: 0.3s;
}
@media (hover) {
  .menu-item li a:hover {
    opacity: 0.7;
  }
}
.menu-item li + li {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .menu-item li + li {
    margin-top: 0;
  }
}
.menu-item li h3 {
  display: grid;
  grid-template-columns: 1fr 3rem;
  column-gap: 1rem;
  margin-bottom: 2rem;
}
.menu-item li h3 span {
  min-height: 3rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
}
.menu-item li h3::after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(../img/common/btn_arrow.svg) no-repeat center/cover;
}
.menu-img li {
  border-bottom: 1px solid var(--color-main);
}
.menu-img li a {
  display: grid;
  grid-template-columns: 5.8rem 1fr 3rem;
  column-gap: 2rem;
  align-items: center;
  height: 100%;
  padding-block: 2rem;
  transition: 0.3s;
}
.menu-img li a::after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(../img/common/btn_arrow.svg) no-repeat center/cover;
}
@media (hover) {
  .menu-img li a:hover {
    opacity: 0.6;
  }
}
.menu-img li + li {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .menu-img li + li {
    margin-top: 0;
  }
}

.btn_anchor {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .btn_anchor {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0 auto 6rem;
    max-width: 59rem;
  }
}
.btn_anchor li {
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .btn_anchor li {
    width: 5rem;
    margin: 0 0.5rem;
  }
}
.btn_anchor li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  background-color: #fff;
  transition: 0.3s;
}
@media (hover) {
  .btn_anchor li a:hover {
    background-color: var(--color-main);
    color: #fff;
  }
}

#menu-treatment article + article {
  margin-top: 6rem;
}

#article-treatment .wp-block-heading,
#article-worries .wp-block-heading,
#article-checkup .wp-block-heading,
#article-supply .wp-block-heading {
  font-weight: 400;
}

.wp-block-splide-carousel__container {
  padding-bottom: 3rem;
  margin-top: 4rem;
}
.wp-block-splide-carousel__container .wp-block-splide-carousel {
  margin-bottom: 0;
}
.wp-block-splide-carousel__container .splide__arrow {
  width: 3rem !important;
  height: 3rem !important;
  background: url(../img/common/arrow.svg) no-repeat center/cover #fff !important;
  border: 1px solid var(--color-main) !important;
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .wp-block-splide-carousel__container .splide__arrow {
    width: 5rem !important;
    height: 5rem !important;
  }
}
.wp-block-splide-carousel__container .splide__arrow svg {
  display: none;
}
.wp-block-splide-carousel__container .splide__arrow.splide__arrow--prev {
  left: -1rem !important;
}
@media screen and (min-width: 1000px) {
  .wp-block-splide-carousel__container .splide__arrow.splide__arrow--prev {
    left: -2.5rem !important;
  }
}
.wp-block-splide-carousel__container .splide__arrow.splide__arrow--next {
  transform: translateY(-50%) scale(-1, 1) !important;
  right: -1rem !important;
}
@media screen and (min-width: 1000px) {
  .wp-block-splide-carousel__container .splide__arrow.splide__arrow--next {
    right: -2.5rem !important;
  }
}
.wp-block-splide-carousel__container .splide__track {
  overflow: visible !important;
}
.wp-block-splide-carousel__container .splide__slide {
  max-width: 80%;
}
.wp-block-splide-carousel__container .splide__pagination__page {
  background-color: #fff !important;
  border: 1px solid var(--color-border) !important;
  width: 1rem !important;
  height: 1rem !important;
  margin: 0 0.5rem !important;
}
.wp-block-splide-carousel__container .splide__pagination__page.is-active {
  border-color: var(--color-main) !important;
}

.andmore {
  position: relative;
}
.andmore-content {
  height: 20rem;
  overflow: hidden;
  transition: height 0.3s ease;
}
@media screen and (min-width: 768px) {
  .andmore-content {
    height: 25rem;
  }
}

.andmore-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 1.6rem;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 1rem;
  background: linear-gradient(0deg, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.andmore-btn:before {
  content: "＋";
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  text-align: center;
  line-height: 2.2rem;
  border: 1px solid #333;
  background-color: #fff;
  margin-right: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.andmore-btn.active {
  background: none;
}
.andmore-btn.active:before {
  content: "－";
}

.wp-element-caption {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .table-scroll .wp-block-table {
    margin-inline: -1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .table-scroll .wp-block-table table {
    margin-inline: 1.5rem;
    width: auto;
    min-width: 70rem;
  }
}
@media screen and (max-width: 767px) {
  .table-scroll .wp-block-table table th {
    white-space: nowrap;
  }
}

/*column*/
.column_cate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
@media screen and (min-width: 768px) {
  .column_cate {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .column_cate-center {
    justify-content: center;
  }
}
.column_cate li {
  position: relative;
  border-bottom: 1px solid var(--color-main);
  border-left: 1px solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .column_cate li {
    width: 25%;
  }
  .column_cate li:nth-child(-n+4) {
    border-top: 1px solid var(--color-main);
  }
  .column_cate li:last-child, .column_cate li:nth-child(4n) {
    border-right: 1px solid var(--color-main);
  }
}
@media screen and (max-width: 767px) {
  .column_cate li:nth-child(-n+2) {
    border-top: 1px solid var(--color-main);
  }
  .column_cate li:nth-child(even), .column_cate li:last-child {
    border-right: 1px solid var(--color-main);
  }
}
.column_cate li a {
  position: relative;
  background-color: #fff;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-main);
  transition: 0.3s;
  line-height: 1.4;
  padding-inline: 0.5rem;
}
@media screen and (min-width: 1000px) {
  .column_cate li a {
    font-size: 1.8rem;
  }
}
@media (hover) {
  .column_cate li a:hover {
    background-color: var(--color-main);
    color: #fff;
  }
}
.column_cate li.active a {
  background-color: var(--color-main);
  color: #fff;
}
.column_item {
  margin-top: 4rem;
}
.column_item li a {
  display: block;
}
@media screen and (min-width: 1000px) {
  .column_item li a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
  }
}
.column_item li figure {
  margin-bottom: 1.5rem;
}
.column_item li figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.column_item li .item_tag {
  margin-top: 2rem;
}

.article_column li a {
  display: block;
}
.article_column li figure {
  margin-bottom: 1.5rem;
}
.article_column li figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.article_column li .item_tag {
  margin-top: 2rem;
}

/*詳細共通*/
.wysiwyg_area p a {
  color: var(--color-main);
  font-weight: 500;
}
.wysiwyg_area p + p {
  margin-top: 1em;
}
.wysiwyg_area p + .wp-block-list {
  margin-top: 1em;
}
.wysiwyg_area p + .wp-block-list:has(+ *) {
  margin-bottom: 2em;
}

/*メニュー詳細*/
.article_main {
  overflow: hidden;
}
.article_main .inner > .wp-block-group + .wp-block-group {
  margin-top: 8rem;
}
@media screen and (min-width: 1000px) {
  .article_main .inner > .wp-block-group + .wp-block-group {
    margin-top: 10rem;
  }
}
.article_main .bg-gray {
  position: relative;
}
.article_main .bg-gray::before {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: var(--color-bg);
  position: absolute;
  top: 0;
  left: -1.5rem;
}
@media screen and (min-width: 768px) {
  .article_main .bg-gray::before {
    left: -2rem;
  }
}
@media screen and (min-width: 1000px) {
  .article_main .bg-gray::before {
    left: -5rem;
  }
}
@media screen and (min-width: 1300px) {
  .article_main .bg-gray::before {
    left: calc((120rem - 100vw) / 2);
  }
}
.article_main .bg-gray > div {
  position: relative;
}

.menu_main h1 {
  line-height: 1.3;
}
.menu_main .article_tag {
  margin: 2rem 0 3rem;
}
@media screen and (min-width: 1000px) {
  .menu_main .article_tag {
    margin: 3rem 0 0;
  }
}
.menu_main .article_tag a {
  color: var(--color-border);
  border-color: var(--color-border);
  pointer-events: none;
  cursor: text;
}
.menu_main .article_tag .wp-block-post-terms__separator {
  display: none !important;
}
.menu_main > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
@media screen and (min-width: 1000px) {
  .menu_main > .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: 1fr 46.88%;
    grid-template-rows: auto 1fr;
    column-gap: 3.13%;
    row-gap: 4rem;
  }
}
.menu_main .menu_main_parts {
  order: 1;
}
@media screen and (min-width: 1000px) {
  .menu_main .menu_main_parts {
    grid-area: 1/1/2/2;
  }
}
.menu_main figure {
  order: 2;
  margin: 0 -1.5rem 3rem 0;
}
@media screen and (min-width: 768px) {
  .menu_main figure {
    text-align: center;
  }
}
@media screen and (min-width: 1000px) {
  .menu_main figure {
    margin: 0 -2rem 0 0;
    grid-area: 1/2/3/3;
  }
}
@media screen and (min-width: 1200px) {
  .menu_main figure {
    margin: 0 -5rem 0 0;
  }
}
@media screen and (min-width: 1300px) {
  .menu_main figure {
    margin: 0 calc((120rem - 100vw) / 2) 0 0;
  }
}
.menu_main figure img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .menu_main figure img {
    max-width: 90rem;
  }
}
@media screen and (min-width: 1000px) {
  .menu_main figure img {
    max-width: 100%;
  }
}
.menu_main .menu_main_txt {
  order: 3;
}
@media screen and (min-width: 1000px) {
  .menu_main .menu_main_txt {
    grid-area: 2/1/3/2;
  }
}

.bg-gray {
  padding: 6rem 1.5rem;
}
@media screen and (min-width: 1000px) {
  .bg-gray {
    padding-inline: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .bg-gray {
    padding-inline: 5rem;
  }
}

h2 + .bg-gray {
  margin-top: 4rem;
}

.check_list {
  background-color: #fff;
  padding: 3rem;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .check_list {
    max-width: 100rem;
    margin: 0 auto;
  }
}
.check_list li {
  display: grid;
  grid-template-columns: 2.9rem 1fr;
  column-gap: 2rem;
}
@media screen and (min-width: 1000px) {
  .check_list li {
    font-size: 1.8rem;
  }
}
.check_list li::before {
  content: "";
  width: 2.9rem;
  height: 2rem;
  background: url(../img/common/icon_check.svg) no-repeat center/cover;
}
@media screen and (min-width: 1000px) {
  .check_list li::before {
    transform: translateY(0.5rem);
  }
}
.check_list li + li {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .check_list li + li {
    margin-top: 2rem;
  }
}

.block_ttl {
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block_ttl p {
  line-height: 1.3;
  text-align: right;
  margin-left: auto;
}

.splide-case:not(.is-active) {
  visibility: visible;
}
.splide-case:not(.is-active) .carousel-progress {
  display: none;
}
@media screen and (max-width: 767px) {
  .splide-case:not(.is-active) .splide__list {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .splide-case:not(.is-active) .splide__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .splide-case:not(.is-active) .splide__list {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 3rem;
  }
}
.splide-case .splide__track {
  overflow: visible;
}
.splide-case .splide__list {
  align-items: flex-start;
}
.splide-case .splide__list li {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .splide-case .splide__list li {
    width: 27.8rem !important;
  }
}
.splide-case .splide__list li figure {
  margin-bottom: 1rem;
  cursor: zoom-in;
}
.splide-case .splide__list li h2 {
  margin-bottom: 2rem;
}
.splide-case .splide__list li h2 a {
  display: block;
  line-height: 1.3;
  transition: opacity 0.3s;
}
@media (hover) {
  .splide-case .splide__list li h2 a:hover {
    opacity: 0.7;
  }
}

.pickup_item {
  padding-bottom: 2.5rem;
}
.pickup_item:not(.is-active) {
  visibility: visible;
}
.pickup_item:not(.is-active) .carousel-progress {
  display: none;
}
.pickup_item:not(.is-active) .splide__list {
  column-gap: 2rem;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .pickup_item:not(.is-active) .splide__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1000px) {
  .pickup_item:not(.is-active) .splide__list {
    column-gap: 3rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
.pickup_item:not(.is-active) .splide__list li {
  width: auto !important;
}
@media screen and (max-width: 1199px) {
  .pickup_item .splide__track {
    overflow: visible;
  }
}
@media screen and (max-width: 767px) {
  .pickup_item .splide__list li {
    width: 20rem !important;
  }
}
.pickup_item .splide__list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.sec-hidden {
  overflow: hidden;
}

.bottom_btn {
  background-color: var(--color-bg-pink);
  padding: 6rem 0;
}

.wp-block-table.menu_overview_table {
  margin-top: 4rem;
  margin-bottom: 0;
  border-color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .wp-block-table.menu_overview_table {
    max-width: 104rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .wp-block-table.menu_overview_table {
    max-width: 110rem;
  }
}
.wp-block-table.menu_overview_table td {
  font-size: 1.6rem;
  padding: 1rem;
  border: 1px solid var(--color-main);
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .wp-block-table.menu_overview_table td {
    padding: 1rem 2rem;
  }
}
.wp-block-table.menu_overview_table td:first-child {
  color: #fff;
  background-color: var(--color-main);
  white-space: nowrap;
  border-color: var(--color-light);
}

.bottom-nospace + footer .footer {
  margin-top: 0;
}

.worries-menulist figure {
  aspect-ratio: 165/95;
}
.worries-menulist figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.worries-menulist h3 {
  margin-bottom: 1rem;
}

.flex-col1 .btn_list {
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .flex-col1 .btn_list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .flex-col1 .btn_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.flex-col1 .machine_item {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .flex-col1 .machine_item {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .flex-col1 .machine_item {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.flex-col2 {
  display: grid;
  row-gap: 8rem;
}
@media screen and (min-width: 1000px) {
  .flex-col2 {
    grid-template-columns: 1fr 1fr;
    row-gap: 0;
  }
}
.flex-col2 .btn_list {
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .flex-col2 .btn_list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .flex-col2 .btn_list {
    grid-template-columns: 1fr;
  }
}
.flex-col2 .btn_list li {
  width: 100%;
  max-width: 45rem;
}
.flex-col2 .machine_item {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .flex-col2 .machine_item {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .flex-col2 .machine_item {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.btn_list li a {
  display: block;
  background-color: #fff;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 3rem;
  column-gap: 1rem;
  align-items: center;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
@media (hover) {
  .btn_list li a:hover {
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);
  }
}
.btn_list li a:after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(../img/common/btn_arrow.svg) no-repeat center/100% auto;
}

.machine_item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.machine_item h3 {
  margin-top: 2rem;
}

.sec-pickup {
  position: relative;
}
.sec-pickup:before {
  content: "";
  width: 20rem;
  height: 26rem;
  background-color: var(--color-bg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .sec-pickup:before {
    width: 61.7%;
    aspect-ratio: 79/20;
  }
}

.sec-price {
  position: relative;
}
.sec-price:before {
  content: "";
  width: 100%;
  height: calc(100% - 12rem);
  background-color: var(--color-bg);
  position: absolute;
  left: 0;
  top: 16rem;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .sec-price:before {
    height: calc(100% - 6rem);
    top: 12rem;
  }
}
.sec-price h3 {
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.sec-price .flex-center {
  margin-top: 4rem;
}
.sec-price .flex-center + .sec-price_table {
  margin-top: 6rem;
}
.sec-price_table > .wp-block-group + .wp-block-group {
  margin-top: 4rem;
}
.sec-price_table p {
  font-size: 1.6rem;
  color: #666;
}
.sec-price_table p:not(:last-child) {
  margin-bottom: 2rem;
}
.sec-price_table + .sec-price_table {
  margin-top: 4rem;
}
.sec-price_table figure {
  margin: 0;
  overflow: hidden;
}
.sec-price_table .wp-block-table.is-style-stripes {
  border-bottom: none;
}
.sec-price_table .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #fff;
}
.sec-price_table .wp-block-table.is-style-stripes tbody tr:nth-child(even) {
  background-color: var(--color-bg);
}
.sec-price_table .wp-block-table thead {
  border-bottom: 1px solid var(--color-light);
}
.sec-price_table .wp-block-table th {
  background-color: var(--color-main);
  color: #fff;
  font-weight: 400;
  word-break: break-all;
}
.sec-price_table .wp-block-table th, .sec-price_table .wp-block-table td {
  font-size: 1.4rem;
  line-height: 1.6;
  border: 1px solid var(--color-light) !important;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .sec-price_table .wp-block-table th, .sec-price_table .wp-block-table td {
    padding: 0.5rem 2rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .sec-price_table .wp-block-table th, .sec-price_table .wp-block-table td {
    font-size: 1.8rem;
  }
}
.sec-price_table .wp-block-table th a, .sec-price_table .wp-block-table td a {
  text-decoration: underline;
  text-underline-offset: 0.3em;
  color: var(--color-main);
}
@media screen and (min-width: 1000px) {
  .sec-price_table .wp-block-table th a, .sec-price_table .wp-block-table td a {
    font-size: 1.6rem;
  }
}
@media (hover) {
  .sec-price_table .wp-block-table th a:hover, .sec-price_table .wp-block-table td a:hover {
    text-decoration: none;
  }
}
.sec-price_table .wp-block-table td {
  word-break: break-all;
}
.sec-price_table .wp-block-table td[rowspan] {
  background-color: #fff;
}
.sec-price_table .wp-block-table table {
  border: 1px solid var(--color-light);
  table-layout: fixed;
}
@media screen and (min-width: 768px) {
  .sec-price_table .wp-block-table table {
    width: auto;
    margin: 0 auto;
    min-width: 80%;
  }
}
.sec-price_table .wp-block-table table strong {
  color: var(--color-main);
}
.sec-price_table .wp-block-table + p {
  margin-top: 2rem;
}
.sec-price .sec-price_table .hide {
  display: none;
}
.sec-price .sec-price_table:not(:has(.wp-block-group:not(.hide))) + .flex-center {
  display: none;
}

.sec-qa .article_qa {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .sec-qa .article_qa {
    max-width: 100rem;
    margin-inline: auto;
  }
}
.sec-qa .article_qa details {
  border-bottom: 1px solid var(--color-border-pink);
}
.sec-qa .article_qa details[open] summary::after {
  transform: rotate(45deg);
}
.sec-qa .article_qa summary {
  list-style: none;
  font-size: 1.6rem;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 3rem 1fr 3rem;
  color: var(--color-black);
}
@media screen and (min-width: 768px) {
  .sec-qa .article_qa summary {
    font-size: 1.8rem;
  }
}
.sec-qa .article_qa summary::before {
  content: "Q";
  color: var(--color-main);
}
.sec-qa .article_qa summary::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border: none;
  border-top: 2px solid var(--color-main);
  border-left: 2px solid var(--color-main);
  transform: rotate(-135deg);
  margin: 0.8rem 0 0 auto;
}
.sec-qa .article_qa summary + p {
  position: relative;
}
.sec-qa .article_qa summary + p::before {
  content: "A";
  color: var(--color-light);
  position: absolute;
  left: 2rem;
  top: 0;
}
.sec-qa .article_qa summary ~ :where(*) {
  font-size: 1.6rem;
  padding: 0 2rem 1.5rem 5rem;
  background-color: #fff;
}
.sec-qa .article_qa summary ~ :where(*) a {
  color: var(--color-main);
}
@media (hover) {
  .sec-qa .article_qa summary ~ :where(*) a:hover {
    text-decoration: underline;
  }
}
.sec-qa .article_qa summary ~ :where(*) * {
  font-size: inherit;
}

/*column*/
.column_thumn {
  margin-bottom: 4rem;
}
.column_thumn img {
  width: 100%;
}
.column_ttl {
  margin-bottom: 4rem;
}

#article-column .wysiwyg_area h2, #article-column .wysiwyg_area h3, #article-column .wysiwyg_area h4, #article-column .wysiwyg_area h5, #article-column .wysiwyg_area h6 {
  margin-bottom: 2rem;
  font-weight: 500;
}
#article-column .wysiwyg_area img {
  margin-block: 4rem;
}
#article-column .wysiwyg_area img:first-child {
  margin-block-start: 0;
}
@media screen and (min-width: 768px) {
  #article-column .wp-block-media-text__media img {
    margin-bottom: 0 !important;
  }
}
#article-column .wp-block-media-text > .wp-block-media-text__content {
  padding-left: 0 !important;
  align-self: flex-start;
}
#article-column .wp-block-list {
  margin-block: 2rem;
}
#article-column .wp-block-media-text > .wp-block-media-text__media {
  align-self: flex-start;
}

.article_share {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .article_share {
    display: flex;
    align-items: center;
    text-align: left;
  }
}
.article_share dt {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .article_share dt {
    font-size: 1.8rem;
    margin-right: 2rem;
  }
}
.article_share dd {
  display: flex;
  align-items: center;
  justify-content: center;
}
.article_share dd a {
  padding: 2rem;
  transition: 0.3s;
}
@media (hover) {
  .article_share dd a:hover {
    transform: translateY(-0.2em);
  }
}
.article_share dd img {
  width: auto;
  height: 3rem;
}

.control_btn {
  display: flex;
  justify-content: center;
  position: relative;
  color: var(--color-main);
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .control_btn {
    max-width: 45rem;
    margin-inline: auto;
    margin-top: 4rem;
  }
}
.control_btn p a {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .control_btn p a {
    font-size: 1.8rem;
  }
}
@media (hover) {
  .control_btn p a:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
  }
}
.control_btn .page_control li {
  position: absolute;
  top: 0;
}
.control_btn .page_control li.prev {
  left: 0;
}
.control_btn .page_control li.prev a:before {
  content: "";
  width: 0.7rem;
  height: 1.4rem;
  background-color: var(--color-main);
  clip-path: polygon(0% 50%, 0.7rem 0%, 0.7rem 1.4rem);
  margin-right: 2rem;
  transform: translateY(-0.1em);
}
@media screen and (min-width: 768px) {
  .control_btn .page_control li.prev a:before {
    transform: translateY(-0.05em);
  }
}
.control_btn .page_control li.next {
  right: 0;
}
.control_btn .page_control li.next a:after {
  content: "";
  width: 0.7rem;
  height: 1.4rem;
  background-color: var(--color-main);
  clip-path: polygon(0.7rem 50%, 0% 0%, 0% 1.4rem);
  margin-left: 2rem;
  transform: translateY(-0.1em);
}
@media screen and (min-width: 768px) {
  .control_btn .page_control li.next a:after {
    transform: translateY(-0.05em);
  }
}
.control_btn .page_control a {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--font-en);
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .control_btn .page_control a {
    font-size: 1.8rem;
  }
}
@media (hover) {
  .control_btn .page_control a:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
  }
}

/*price*/
.price_first {
  position: relative;
  display: grid;
  grid-template-columns: 6rem 1fr;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .price_first {
    grid-template-columns: 12rem 1fr;
  }
}
@media screen and (max-width: 767px) {
  .price_first:before {
    content: "";
    width: 100vw;
    height: 100%;
    background-color: var(--color-bg);
    position: absolute;
    left: -1.5rem;
    top: 0;
  }
}
.price_first dt {
  position: relative;
  background-color: var(--color-main);
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .price_first dt {
    writing-mode: vertical-rl;
    letter-spacing: 0.8em;
  }
}
@media screen and (min-width: 768px) {
  .price_first dt {
    height: 12rem;
  }
}
.price_first dd {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .price_first dd {
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 5rem;
    background-color: var(--color-bg);
  }
}
.price_first dd p {
  font-size: 2rem;
  display: flex;
  align-items: center;
  color: #333;
}
.price_first dd p strong {
  font-size: 3rem;
  font-weight: 500;
  padding-left: 3rem;
}
.price_first dd p span {
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .price_first dd p + p {
    margin-left: 5rem;
  }
}
.price_category {
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .price_category {
    margin-bottom: 4rem;
  }
}
.price_category ul {
  margin: 2rem 0 1rem;
}
.price-content + .price-content {
  margin-top: 6rem;
}
.price-content h3 {
  display: none;
}
.price-content h4 {
  margin-bottom: 2rem;
  font-weight: 500;
}
.price-content h5 {
  margin-bottom: 2rem;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
}
.price-content_heading {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .price-content_heading {
    display: grid;
    grid-template-columns: 1fr auto;
  }
}
.price-content_link {
  display: flex;
  align-items: center;
  column-gap: 4rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .price-content_link {
    margin-top: 0;
  }
}
.price-content_link .txt-link {
  font-size: 1.6rem;
}
@media screen and (min-width: 1000px) {
  .price-content_link .txt-link {
    font-size: 1.8rem;
  }
}

.campaign-box {
  margin: 5rem 0 6rem;
}
@media screen and (min-width: 768px) {
  .campaign-box {
    margin: 6rem 0 10rem;
  }
}
.campaign-period {
  border: 1px solid var(--color-main);
  padding: 2rem 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .campaign-period {
    width: fit-content;
    padding: 2rem 4rem;
    margin-inline: auto;
  }
}

.article-price + .article-price {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .article-price + .article-price {
    margin-top: 10rem;
  }
}
.article-price .h1 {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .article-price .sec-price_table .wp-block-table table {
    margin: 0;
  }
}

/*pickup*/
.pickup_list li {
  border-bottom: 1px solid var(--color-border-pink);
}
.pickup_list li:first-child {
  margin-top: -4rem;
}
.pickup_list li a {
  display: block;
  padding-block: 4rem;
  transition: opacity 0.3s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .pickup_list li a {
    display: grid;
    grid-template-columns: 27.8rem 1fr;
    column-gap: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .pickup_list li a {
    column-gap: 5rem;
  }
}
@media (hover) {
  .pickup_list li a:hover {
    opacity: 0.7;
  }
  .pickup_list li a:hover::after {
    opacity: 1;
  }
}
.pickup_list li a::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  transform: rotate(45deg);
  position: absolute;
  right: 0.5rem;
  top: 50%;
  margin-top: -0.6rem;
  opacity: 0;
  pointer-events: none;
}
.pickup_list li figure {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .pickup_list li figure {
    margin-bottom: 0;
  }
}
.pickup_list li figure img {
  width: 100%;
}

/*news*/
.news_item {
  margin: -2rem 0 0;
}
@media screen and (min-width: 768px) {
  .news_item {
    max-width: 100rem;
    margin-inline: auto;
  }
}
.news_item li:not(.noitem) {
  border-bottom: 1px solid var(--color-border-pink);
}
.news_item .noitem {
  padding-top: 5rem;
}
.news_item a {
  display: block;
  padding-block: 2rem;
  position: relative;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .news_item a {
    padding-right: 2rem;
  }
}
.news_item a::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  transform: rotate(45deg);
  position: absolute;
  right: 0.5rem;
  top: 3rem;
}
@media screen and (min-width: 768px) {
  .news_item a::after {
    top: 50%;
    margin-top: -0.4rem;
  }
}
@media (hover) {
  .news_item a:hover {
    background-color: rgba(245, 195, 209, 0.2);
  }
}

@media screen and (max-width: 767px) {
  .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    width: 100% !important;
  }
  #article-column .wysiwyg_area img {
    margin-block-end: 2rem !important;
  }
  .wp-block-media-text > .wp-block-media-text__content {
    padding: 0 !important;
  }
}
:where(.wp-block-list) {
  list-style: disc;
  margin-left: 1.5em;
}

.wp-block-button__link {
  font-size: 1.6rem !important;
  background-color: var(--color-main) !important;
  border: 0.1rem solid var(--color-main) !important;
  color: #fff !important;
  text-align: center !important;
  width: fit-content !important;
  height: 6rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.3 !important;
  border-radius: 0 !important;
  transition: 0.3s;
}
@media (hover) {
  .wp-block-button__link:hover {
    color: var(--color-main) !important;
    background-color: #fff !important;
  }
}

h1.has-background, h2.has-background, h3.has-background, h4.has-background, h5.has-background, h6.has-background {
  padding: 0.5em 1.2em !important;
}

:where(.wp-block-details) {
  list-style: none;
}
:where(.wp-block-details)[open] summary::after {
  border-bottom: none;
  border-top: 2px solid var(--color-main);
  transform: rotate(-45deg);
}
:where(.wp-block-details) summary {
  font-size: 1.6rem;
  color: var(--color-black);
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 3rem;
}
@media screen and (min-width: 1000px) {
  :where(.wp-block-details) summary {
    font-size: 1.8rem;
  }
}
:where(.wp-block-details) summary::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  transform: rotate(45deg);
}

/*media*/
.media_item a {
  display: block;
  height: 100%;
}
.media_item figure {
  aspect-ratio: 593/820;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
}
.media_item figure::before {
  content: "";
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #eee;
  position: absolute;
  top: 0;
  left: 0;
}
.media_item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.media_detail p {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .media_detail p {
    font-size: 1.6rem;
  }
}
.media_detail h3 {
  font-size: 1.6rem;
  color: var(--color-txt);
  font-weight: 400;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .media_detail h3 {
    font-size: 1.8rem;
  }
}
.media_year {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .media_year {
    max-width: 75rem;
    margin-inline: auto;
  }
}
.media_year a {
  display: block;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem 0;
  color: var(--color-main);
  background-color: #fff;
  transition: 0.3s;
}
@media (hover) {
  .media_year a:hover {
    background-color: var(--color-main);
    color: #fff;
  }
}
.media_year a.current {
  background-color: var(--color-main);
  color: #fff;
}
.media_year li {
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}
.media_year li:nth-child(4n), .media_year li:first-child {
  border-left: 1px solid var(--color-main);
}
.media_year li:nth-child(n+4) {
  border-top: none;
}/*# sourceMappingURL=post.css.map */