@charset "UTF-8";
/*
 * FILE_INDEX
 * 概要: コンポーネントCSS — ボタン・カード・ヘッダー・フッター・ナビ・
 *       各ページセクション・フォームなど全UIパーツを収録
 * INDEX:
 *   IDX:010 file-header
 *   IDX:020 c-link-btn (button)
 *   IDX:030 p-notice
 *   IDX:040 c-link2
 *   IDX:050 c-link3 (overlay-link)
 *   IDX:060 c-btn-center / misc-btn
 *   IDX:070 c-wave / c-footer-banner
 *   IDX:080 c-fukidashi-title
 *   IDX:090 p-blue-box
 *   IDX:100 tables (c-table / c-table-price / c-table2 / tablepress)
 *   IDX:110 misc-helpers (c-txt-center / p-wave2 / c-404)
 *   IDX:120 l-header
 *   IDX:130 humburger / nav-open
 *   IDX:140 appear-disappear-animations
 *   IDX:150 l-footer
 *   IDX:160 p-fv (first-view)
 *   IDX:170 p-intro / p-intro-worry
 *   IDX:180 (削除済)
 *   IDX:190 service-link-img
 *   IDX:200 p-company-info
 *   IDX:210 recruit-info
 *   IDX:220 p-footer-img
 *   IDX:230 p-side-banner
 *   IDX:240 p-bottom-banner
 *   IDX:250 p-blue-link / p-blue-link-half
 *   IDX:260 p-infomation
 *   IDX:270 p-area-wrapper
 *   IDX:280 p-biz-item / p-header-cta
 *   IDX:290 p-header-cta-item / p-cta-tel / pharmacy-header
 *   IDX:300 p-cleaning-cta
 *   IDX:310 p-cleaning-intro-img
 *   IDX:320 p-price-link
 *   IDX:330 p-price-toplink-box
 *   IDX:340 price-title / p-flex-btn
 *   IDX:350 p-flow
 *   IDX:360 c-cta-pharmacy
 *   IDX:370 c-media-list
 *   IDX:380 p-green-wave
 *   IDX:390 p-flow-biz / p-flow-step
 *   IDX:400 page-numbers (pagination)
 *   IDX:410 p-form
 *   IDX:420 entry-content (blog)
 *   IDX:430 blog-images
 *   IDX:440 map-area / history-table
 *   IDX:450 mobile-responsive-overrides
 * 編集チートシート:
 *   ボタン全般 → IDX:020-060
 *   ヘッダー → IDX:120-130
 *   フッター → IDX:150
 *   テーブル → IDX:100
 *   料金ページ → IDX:320-340
 *   薬局関連 → IDX:290, 360
 *   フォーム → IDX:410
 *   ブログ記事 → IDX:420-430
 *   SP対応 → IDX:450
 * 依存:
 *   01_variables.css (CSS custom properties)
 *   images/ (SVG backgrounds: bg-footer-wave, bg-kv-pc, wave2, etc.)
 * 注意:
 *   2278行の大規模ファイル — セクション単位で編集すること
 *   [WP override A-G] コメント付きルールはWP上書き — 削除注意
 */

/* IDX:010 file-header */
/* ==========================================================================
   03_components.css
   - buttons / cards / header / footer / nav / page sections / forms
   - Extracted from style.css lines 432-2567. Original order preserved.
   ========================================================================== */

/* IDX:020 c-link-btn */
.c-link-btn {
  border-radius: 2.1333333333rem;
  border: 1px solid var(--c-black);
  color: #000;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  line-height: 1;
  position: relative;
}
.c-link-btn:after {
  content: "";
  background: url(../images/icon-arrow-b.svg) center center no-repeat;
  background-size: 40%;
  width: 0.8rem;
  height: 0.6666666667rem;
  display: block;
  margin: auto 0 auto 0.2666666667rem;
  opacity: 0.8;
  position: absolute;
  right: 1.0666666667rem;
  top: 0;
  bottom: 0;
}
.c-link-btn a, .c-link-btn .wpcf7-submit {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0.8rem 2.1333333333rem 0.8rem 1.8666666667rem;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
/* [WP override C] */
.c-link-btn a {
    font-size: 15px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.c-link-btn a:before, .c-link-btn .wpcf7-submit:before {
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* [WP override C] */
.c-link-btn a::before { background: var(--c-white, #fff) !important; }
.c-link-btn a:after, .c-link-btn .wpcf7-submit:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: skew(-15deg);
  background: linear-gradient(90deg, #fff, #c6e9ff, #fff);
}
/* [WP override C] */
.c-link-btn a::after {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, #add8e6, transparent) !important;
}
.c-link-btn a:hover, .c-link-btn .wpcf7-submit:hover {
  background-color: transparent;
  color: var(--c-black);
}
/* [WP override C] */
.c-link-btn a:hover { background-color: transparent !important; }
.c-link-btn a:hover:after, .c-link-btn .wpcf7-submit:hover:after {
  animation: shine 1s ease;
}
.c-link-btn.c-link-btn-min a {
  padding: 0.5333333333rem 2rem 0.5333333333rem 1.3333333333rem;
}

@keyframes shine {
  to {
    left: 100%;
  }
}
/* IDX:030 p-notice */
.p-notice div {
  text-align: center;
}
.p-notice div .c-link-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.6666666667rem;
  line-height: var(--f-line-height3);
}
.p-notice div .c-link-btn a {
  margin-left: auto;
  margin-right: auto;
}

/* IDX:040 c-link2 */
.c-link2 {
  text-align: right !important;
  overflow: hidden;
}
.c-link2 a {
  margin-right: 0;
  border-bottom: 1px solid var(--c-black);
  padding-bottom: 0.1333333333rem;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.c-link2 a:after {
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transform: skew(-15deg);
  background: linear-gradient(90deg, transparent, #c6e9ff, transparent);
}
.c-link2 a:hover {
  opacity: 0.8;
}
.c-link2 a:hover:after {
  animation: shine 1s ease;
}

/* IDX:050 c-link3 */
.c-link3-wrapper {
  position: relative;
}

.c-link3 a {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}
.c-link3 a:hover {
  transition: all 0.2s;
  opacity: 0.5;
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
}

/* IDX:060 c-btn-center */
.page-id-12 .c-link2 {
  margin-top: 4rem;
}

.c-btn-center > div {
  text-align: center;
}
.c-btn-center .c-link-btn {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .p-price-link .c-link-btn {
    min-width: 14rem;
  }
}

.c-notice-min {
  font-size: 85%;
}

@media (max-width: 768px) {
  .p-cleaning-cta {
    min-width: 14rem;
  }
}

.c-detail-link {
  text-align: center;
  width: 100%;
}

/* IDX:070 c-wave */
.c-wave {
  position: relative;
}
.c-wave:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 10vw;
  bottom: -0.0666666667rem;
  left: 0;
  background: url(../images/bg-footer-wave.svg) center bottom no-repeat;
  background-size: 100%;
}

.c-footer-banner-wrapper div {
  text-align: center;
}

.c-footer-banner {
  padding: 0;
}
@media (max-width: 768px) {
  .c-footer-banner {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.c-footer-banner div {
  text-align: center;
}
.c-footer-banner figure {
  margin-bottom: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.c-footer-banner a, .c-footer-banner img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  display: block;
}
.c-footer-banner__img {
  max-width: 70%;
  height: auto;
}

.page-template-page-cleaning .c-footer-banner.c-banner-cleaning {
  display: none !important;
}

.page-template-page-pharmacy .c-footer-banner.c-banner-pharmacy {
  display: none !important;
}

/* IDX:080 c-fukidashi-title */
.c-fukidashi-title {
  background-color: var(--c-light-blue4);
  border-radius: 2rem;
  padding: 1.0666666667rem 2.1333333333rem;
  text-align: center;
  position: relative;
  line-height: var(--f-line-height3);
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .c-fukidashi-title {
    margin-bottom: 2.6666666667rem;
    width: calc(100% - 2rem);
  }
}
.c-fukidashi-title:before {
  content: "";
  display: block;
  background-color: var(--c-light-blue4);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.8666666667rem;
  top: 0;
  margin: auto auto 0;
  height: 34.6410161514px;
  width: 2cqmax;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .c-fukidashi-title:before {
    width: 4cqmax;
  }
}

/* IDX:090 p-blue-box */
.p-blue-box {
  background-color: var(--c-light-blue4);
  border-radius: 1rem;
  padding: 1.3333333333rem;
  text-align: center;
  position: relative;
  max-width: var(--pc-max-width4);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .p-blue-box {
    width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.5333333333rem;
    padding: 0.6666666667rem;
  }
}
.p-blue-box h2 {
  margin-bottom: 0;
  font-size: var(--f-font-h3-size);
}
.p-blue-box h3 {
  font-size: 105%;
  text-align: center;
  margin-bottom: 0;
}
.p-blue-box p {
  text-align: center;
}

/* IDX:100 tables */
.tablepress.c-table {
  border-collapse: separate !important;
  border-radius: 1.3333333333rem;
  overflow: hidden;
  border: 1px solid #ddd !important;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .tablepress.c-table {
    width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.6666666667rem;
  }
}
.tablepress tbody tr + tr td {
  border-top: 1px solid #ddd;
}
.tablepress.c-table tbody tr td {
  color: var(--c-black);
  vertical-align: middle;
  padding: 0.8rem 1.3333333333rem;
  line-height: var(--f-line-height3);
}
@media (max-width: 768px) {
  .tablepress.c-table tbody tr td {
    padding: 0.8rem 0.6666666667rem;
  }
}
.tablepress.c-table tbody tr td:first-of-type {
  border-right: 1px solid #ddd;
}
.tablepress.c-table tbody tr:first-of-type td {
  border-right: none;
  background-color: #FAF8F8;
  text-align: center;
  color: #000;
}

@media (max-width: 768px) {
  .tablepress.c-table.c-table-price tr {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .tablepress.c-table.c-table-price tr:first-of-type td {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .tablepress.c-table.c-table-price tr td {
    width: 50%;
    border-right: none;
  }
}
.tablepress.c-table.c-table-price tr td:nth-of-type(1), .tablepress.c-table.c-table-price tr td:nth-of-type(3) {
  border-right: none;
  padding: 0.6666666667rem 2rem;
}
@media (max-width: 768px) {
  .tablepress.c-table.c-table-price tr td:nth-of-type(1), .tablepress.c-table.c-table-price tr td:nth-of-type(3) {
    padding: 0.6666666667rem 1rem;
  }
}
.tablepress.c-table.c-table-price tr td:nth-of-type(2), .tablepress.c-table.c-table-price tr td:nth-of-type(4) {
  text-align: right;
  padding: 0.6666666667rem 2rem;
  min-width: 6.6666666667rem;
}
@media (max-width: 768px) {
  .tablepress.c-table.c-table-price tr td:nth-of-type(2), .tablepress.c-table.c-table-price tr td:nth-of-type(4) {
    padding: 0.6666666667rem 1rem;
    border-right: none !important;
  }
}
.tablepress.c-table.c-table-price tr td:nth-of-type(2) {
  border-right: 1px solid var(--border-color);
}

.tablepress.c-table.c-table2 tr:first-of-type td {
  background-color: #fff;
  color: var(--c-black);
}
.tablepress.c-table.c-table2 tr td {
  text-align: center;
}
.tablepress.c-table.c-table2 tr td:first-of-type {
  border-right: none;
  background-color: #FAF8F8;
  color: #000;
  min-width: 8rem;
}
/* [WP override D] TablePress width adjustments */
.price-table-col4 { max-width: 900px; margin: 0 auto; }
.price-table-col4 .column-1, .price-table-col4 .column-3 { width: 30%; }
.price-table-col4 .column-2, .price-table-col4 .column-4 { width: 20%; }

.c-table-3col { max-width: 850px; width: 100%; margin: 0 auto; }
.c-table-3col th.column-1, .c-table-3col td.column-1 { width: 28% !important; border-right: 1px solid #ddd !important; }
.c-table-3col th.column-2, .c-table-3col td.column-2 { width: 20% !important; border-right: 1px solid #ddd !important; }
.c-table-3col th.column-3, .c-table-3col td.column-3 { width: 52% !important; }

#tablepress-5 {
    width: 400px !important;
    height: 400px !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    border: 1px solid #ddd !important;
    border-radius: 20px !important;
    border-collapse: separate !important;
}
#tablepress-5 th, #tablepress-5 td { display: table-cell !important; padding: 10px !important; border-right: 1px solid #ddd !important; }
#tablepress-5 td:last-child { border-right: none !important; }
#tablepress-5 td:first-child { display: flex !important; align-items: center !important; gap: 0.5em; }
#tablepress-5 td:first-child img { width: auto !important; height: auto !important; margin: 0 !important; }

/* IDX:110 misc-helpers */
.c-txt-center {
  text-align: center;
}

.p-wave2 {
  background: url(../images/wave2.svg) center bottom no-repeat;
  background-size: contain;
  padding-bottom: 16vw;
}

.c-404 {
  padding: 3.3333333333rem 0;
  text-align: center;
}

/* IDX:120 l-header */
.l-header {
  transition: 0.3s;
  height: 4.6666666667rem;
  padding: 0 2.6666666667rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  position: fixed;
  top: 0;
  background-color: var(--c-white);
  width: 100%;
}
@media (max-width: 768px) {
  .l-header {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
  }
}
.l-header .l-header__logo {
  display: flex;
  align-self: center;
  height: 1.8666666667rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .l-header .l-header__logo {
    height: auto;
    margin: auto auto auto 1rem;
    justify-content: flex-start;
    height: 1.6rem;
  }
}
.l-header .l-header__logo a, .l-header .l-header__logo img {
  width: auto;
  height: 100%;
  max-width: unset;
}
.l-header .p-flex-header {
  display: flex;
  gap: 2.6666666667rem;
  height: 100%;
  align-items: center;
}
.l-header ul.menu {
  display: flex;
  gap: 2.6666666667rem;
}
@media (max-width: 768px) {
  .l-header ul.menu {
    opacity: 0;
    position: absolute;
    top: -100vh;
    transition: all 0.2s;
    width: 100%;
    height: 100vh;
    left: 0;
    background-color: var(--c-white);
    flex-direction: column;
    gap: 1.6rem;
  }
}
.l-header ul.menu li a {
  font-size: var(--f-font2-size);
}
.l-header ul.menu li:first-of-type {
  display: none;
}
@media (max-width: 768px) {
  .l-header ul.menu li:first-of-type {
    display: block;
  }
}
@media (max-width: 768px) {
  .l-header .c-link-btn {
    margin-right: 5.3333333333rem;
  }
}

/* IDX:130 humburger */
.humburger {
  display: none;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  .humburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 3000;
    right: 0;
    top: 0;
    width: 4.6666666667rem;
    height: 4.6666666667rem;
  }
}
.humburger span {
  transition: all 0.2s;
  display: block;
  height: 0.1333333333rem;
  width: 2rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  background-color: var(--c-black);
}

.nav-open ul.menu {
  transition: all 0.2s;
  opacity: 1;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
}
.nav-open .humburger {
  transition: all 0.2s;
  padding-top: 8px;
}
.nav-open .humburger span {
  transition: all 0.2s;
}
.nav-open .humburger span:first-of-type {
  transform: rotate(34deg);
}
.nav-open .humburger span:last-of-type {
  position: relative;
  top: -8px;
  transform: rotate(-34deg);
}

/* IDX:140 appear-disappear-animations */
.appear {
  animation: appear 0.4s forwards;
}

@keyframes appear {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
/* 画面外に消える */
.disappear {
  animation: disappear 0.4s forwards;
}

@keyframes disappear {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
/* IDX:150 l-footer */
.l-footer {
  padding: 6rem 5.3333333333rem 5.3333333333rem;
  position: relative;
  background-color: var(--c-gray);
}
@media (max-width: 768px) {
  .l-footer {
    padding: 2.6666666667rem 1rem 0;
    overflow: hidden;
  }
}
.l-footer .footer_main_container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .l-footer .footer_main_container {
    flex-direction: column;
  }
}
.l-footer .footer_main_container h3 {
  position: absolute;
  top: 2.6666666667rem;
}
@media (max-width: 768px) {
  .l-footer .footer_main_container h3 {
    position: static;
    margin-bottom: 1.6rem;
  }
}
.l-footer .footer_main_container h3 img {
  height: 2.1333333333rem;
}
@media (max-width: 768px) {
  .l-footer .footer_main_container h3 img {
    height: 1.7333333333rem;
  }
}
.l-footer .footer_main_wrapper ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-footer .footer_main_wrapper ul li {
  margin-bottom: -0.4rem;
  padding: 0;
}
.l-footer .footer_main_wrapper ul li:first-of-type {
  font-size: 130%;
  margin-top: -0.8rem;
  margin-bottom: -0.4rem;
}
.l-footer p {
  line-height: var(--f-line-height2);
}
.l-footer .footer_description_container {
  display: flex;
  margin-right: 6%;
}
@media (max-width: 768px) {
  .l-footer .footer_description_container {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .l-footer .footer_description_container a {
    display: inline !important;
  }
}
.l-footer .footer_main_wrapper {
  display: flex;
  gap: 4rem;
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 768px) {
  .l-footer .footer_main_wrapper {
    flex-wrap: wrap;
    gap: 1.3333333333rem;
  }
}
.l-footer .footer_sub_container {
  padding: 2.6666666667rem 0 0;
  width: 100%;
}
@media (max-width: 768px) {
  .l-footer .footer_sub_container {
    padding: 1.3333333333rem 0 0;
  }
}
.l-footer .footer_sub_container > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--c-gray2);
  padding: 2rem 0 0;
}
@media (max-width: 768px) {
  .l-footer .footer_sub_container > div {
    flex-direction: column;
    justify-content: flex-start;
    padding: 1rem 0 0;
  }
}
.l-footer .footer_sub_container ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .l-footer .footer_sub_container ul {
    flex-wrap: wrap;
  }
}
.l-footer .footer_sub_container ul li {
  padding-right: 1.3333333333rem;
}
@media (max-width: 768px) {
  .l-footer .footer_sub_container ul li {
    padding-right: 0.6666666667rem;
  }
}
.l-footer .footer_sub_container ul li i {
  margin-right: 0.2666666667rem;
}
.l-footer .footer_copyright {
  font-size: max(12px, 0.8rem);
  text-align: center;
  padding: 2rem 0 0;
  width: 100%;
}
@media (max-width: 768px) {
  .l-footer .footer_copyright {
    padding: 2rem 0;
  }
}

/* IDX:160 p-fv */
.p-fv {
  overflow: hidden;
  position: relative;
  margin-top: 4.5333333333rem;
}
@media (max-width: 768px) {
  .p-fv {
    height: 50svh;
  }
}
.p-fv .p-fv__bg {
  width: 100%;
  top: 0;
  z-index: -1;
  left: 0;
  position: relative;
}
.p-fv .p-fv__bg:after {
  content: "";
  width: 102%;
  height: 20vw;
  display: block;
  background: url(../images/bg-kv-pc.svg) center bottom no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -0.0666666667rem;
  left: -1%;
}
@media (max-width: 768px) {
  .p-fv .p-fv__bg {
    height: 100%;
    width: 100%;
  }
}
.p-fv .p-fv__bg img {
  width: 100%;
  max-width: unset;
  object-fit: cover;
  opacity: 0;
}
@media (max-width: 768px) {
  .p-fv .p-fv__bg img {
    height: 100%;
  }
}

.p-fv2 {
  margin-top: 4.5333333333rem;
}

/* IDX:170 p-intro */
section.p-intro {
  padding-top: 2.6666666667rem;
  text-align: center; /* [WP override A] */
}
@media (max-width: 768px) {
  section.p-intro {
    padding-top: 1.3333333333rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
section.p-intro p,
section.p-intro h1,
section.p-intro h2,
section.p-intro h3 {
  text-align: center;
  max-width: 900px; /* [WP override A] */
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .p-intro-worry {
    width: calc(100% - 2rem);
  }
}
.p-intro-worry .is-layout-flex {
  margin-bottom: 0.6666666667rem;
}
@media (max-width: 768px) {
  .p-intro-worry .is-layout-flex {
    flex-direction: column-reverse;
  }
}
.p-intro-worry .is-layout-flex > div:nth-of-type(2) p {
  background-color: var(--c-light-blue4);
  border-radius: 0.3333333333rem;
  padding: 1.0666666667rem 0.5333333333rem;
  text-align: center;
  position: relative;
  line-height: var(--f-line-height3);
}
@media (max-width: 768px) {
  .p-intro-worry .is-layout-flex > div:nth-of-type(2) p {
    margin-bottom: 0.6666666667rem;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-intro-worry .is-layout-flex > div:nth-of-type(2) p:before {
  content: "";
  display: block;
  background-color: var(--c-light-blue4);
  position: absolute;
  left: -0.6666666667rem;
  bottom: 0;
  top: 0;
  margin: auto;
  height: 13.8564064606px;
  width: 1cqmax;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .p-intro-worry .is-layout-flex > div:nth-of-type(2) p:before {
    transform: rotate(180deg);
    width: 2cqmax;
    left: 0;
    right: 0;
    bottom: -0.8rem;
    top: unset;
    margin-top: 0;
  }
}

.p-intro-worry-p .is-layout-flex, .p-intro-worry-p2 .is-layout-flex {
  transform: translateX(-5.3333333333rem);
}
@media (max-width: 768px) {
  .p-intro-worry-p .is-layout-flex, .p-intro-worry-p2 .is-layout-flex {
    transform: translateX(0);
    margin-bottom: 0.6666666667rem;
  }
}
.p-intro-worry-p .is-layout-flex > div:nth-of-type(2) p, .p-intro-worry-p2 .is-layout-flex > div:nth-of-type(2) p {
  background-color: var(--c-light-green3);
  padding: 0.8rem;
}
.p-intro-worry-p .is-layout-flex > div:nth-of-type(2) p:before, .p-intro-worry-p2 .is-layout-flex > div:nth-of-type(2) p:before {
  background-color: var(--c-light-green3);
}

.p-intro-worry-p2 .is-layout-flex {
  transform: translateX(-5.3333333333rem);
  margin-bottom: -0.6666666667rem;
}
@media (max-width: 768px) {
  .p-intro-worry-p2 .is-layout-flex {
    transform: translateX(0);
    margin-bottom: 0.6666666667rem;
  }
}
.p-intro-worry-p2 .is-layout-flex figure {
  min-height: 6.6666666667rem;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .p-intro-worry-p2 .is-layout-flex figure {
    min-height: unset;
    margin-top: -1.0666666667rem;
  }
}
.p-intro-worry-p2 .c-flex-re {
  flex-direction: row-reverse !important;
  transform: translateX(5.3333333333rem);
  margin-left: auto;
}
@media (max-width: 768px) {
  .p-intro-worry-p2 .c-flex-re {
    transform: translateX(0);
    flex-direction: column-reverse !important;
  }
}
.p-intro-worry-p2 .c-flex-re > div:nth-of-type(2) p {
  background-color: #EDF3F6;
}
.p-intro-worry-p2 .c-flex-re > div:nth-of-type(2) p:before {
  left: unset;
  right: -0.6666666667rem;
  transform: rotate(90deg);
  background-color: #EDF3F6;
}
@media (max-width: 768px) {
  .p-intro-worry-p2 .c-flex-re > div:nth-of-type(2) p:before {
    right: 0;
    left: 0;
    transform: rotate(180deg);
  }
}

/* IDX:190 service-link-img */
.service-link-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-servicelink-countener .c-link3-wrapper {
  gap: 2.6666666667rem;
}
@media (max-width: 768px) {
  .p-servicelink-countener .c-link3-wrapper {
    gap: 1.3333333333rem;
  }
}
.service-link-img figure:first-of-type {
  overflow: hidden;
  border-radius: 1rem;
}
.service-link-img figure:first-of-type img {
  object-fit: cover;
}
.service-link-img figure:last-of-type {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.service-link-img p {
  line-height: var(--f-line-height2);
}

.p-servicelink-countener > div > div {
  margin-bottom: 3.6rem;
}
.p-servicelink-countener > div > div:last-of-type {
  margin-bottom: 0;
}

/* IDX:200 p-company-info */
section.p-company-info table {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
section.p-company-info table tr + tr td {
  border-top: 1px solid var(--border-color);
}
section.p-company-info table tr td {
  line-height: var(--f-line-height3);
  padding: 1.0666666667rem 0.5333333333rem;
}
section.p-company-info table tr td:first-of-type {
  font-weight: 400;
  vertical-align: middle;
  width: 30%;
}
section.p-company-info table tr td .c-link-btn {
  margin-left: 1.6rem;
}
@media (max-width: 768px) {
  section.p-company-info table tr td .c-link-btn {
    margin-left: 0;
    margin-top: 0.8rem;
  }
}

/* IDX:210 recruit-info */
.recruit-info {
  position: relative;
  overflow: hidden;
}
.recruit-info figure {
  position: relative;
  z-index: -1;
}
@media (max-width: 768px) {
  .recruit-info figure {
    height: 20rem;
    overflow: hidden;
    opacity: 0.6;
  }
}
.recruit-info figure img {
  width: 100%;
  max-width: unset;
  z-index: -1;
  height: 100%;
}
@media (max-width: 768px) {
  .recruit-info figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: bottom center;
  }
}
.recruit-info .p-recruit-item {
  overflow: hidden;
}
.recruit-info .p-recruit-item > div {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
.recruit-info .p-recruit-item > div h2 {
  color: #000;
  margin: 0 auto;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}
.recruit-info .p-recruit-item > div p {
  line-height: 1.8;
  text-align: center;
  color: #000;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}
.recruit-info .p-recruit-item > div .c-link-btn {
  margin-top: 2.1333333333rem;
  position: relative;
  z-index: 10;
}

/* IDX:220 p-footer-img */
.p-footer-img {
  padding: 4rem 0 2rem;
  display: block;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .p-footer-img {
    padding: 2rem 1rem 1rem;
    overflow: hidden;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .p-footer-img img {
    width: 200%;
  }
}

/* IDX:230 p-side-banner */
.p-side-banner {
  position: fixed;
  bottom: 2%;
  right: 0;
  opacity: 0;
  z-index: 10;
  transition: all 0.5s;
}
.p-side-banner.is-scroll.is-scroll2 {
  opacity: 1;
}
.p-side-banner figure {
  display: none;
}

.page-template-default .p-side-banner figure, .post-type-archive-post .p-side-banner figure, .single-post .p-side-banner figure, .blog .p-side-banner figure {
  display: none;
}
.page-template-default .p-side-banner figure:nth-of-type(1), .page-template-default .p-side-banner figure:nth-of-type(2), .post-type-archive-post .p-side-banner figure:nth-of-type(1), .post-type-archive-post .p-side-banner figure:nth-of-type(2), .single-post .p-side-banner figure:nth-of-type(1), .single-post .p-side-banner figure:nth-of-type(2), .blog .p-side-banner figure:nth-of-type(1), .blog .p-side-banner figure:nth-of-type(2) {
  display: block;
}

.page-template-page-cleaning .p-side-banner figure, .post-type-archive-info-cleaning .p-side-banner figure, .single-info-cleaning .p-side-banner figure,
.blog-template-default .p-side-banner figure, .post-type-archive-blog .p-side-banner figure {
  display: none;
}
.page-template-page-cleaning .p-side-banner figure:nth-of-type(3), .post-type-archive-info-cleaning .p-side-banner figure:nth-of-type(3), .single-info-cleaning .p-side-banner figure:nth-of-type(3),
.blog-template-default .p-side-banner figure:nth-of-type(3), .post-type-archive-blog .p-side-banner figure:nth-of-type(3) {
  display: block;
}
@media (max-width: 768px) {
  .page-template-page-cleaning .p-side-banner figure:nth-of-type(3), .post-type-archive-info-cleaning .p-side-banner figure:nth-of-type(3), .single-info-cleaning .p-side-banner figure:nth-of-type(3),
  .blog-template-default .p-side-banner figure:nth-of-type(3), .post-type-archive-blog .p-side-banner figure:nth-of-type(3) {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-template-page-cleaning .p-side-banner figure:nth-of-type(5), .post-type-archive-info-cleaning .p-side-banner figure:nth-of-type(5), .single-info-cleaning .p-side-banner figure:nth-of-type(5),
  .blog-template-default .p-side-banner figure:nth-of-type(5), .post-type-archive-blog .p-side-banner figure:nth-of-type(5) {
    display: block;
  }
}

.page-template-page-pharmacy .p-side-banner figure,
.post-type-archive-info-pharmacy .p-side-banner figure, .info-pharmacy-template-default .p-side-banner figure,
.blog-pharmacy-template-default .p-side-banner figure, .post-type-archive-blog-pharmacy .p-side-banner figure {
  display: none;
}
.page-template-page-pharmacy .p-side-banner figure:nth-of-type(4),
.post-type-archive-info-pharmacy .p-side-banner figure:nth-of-type(4), .info-pharmacy-template-default .p-side-banner figure:nth-of-type(4),
.blog-pharmacy-template-default .p-side-banner figure:nth-of-type(4), .post-type-archive-blog-pharmacy .p-side-banner figure:nth-of-type(4) {
  display: block;
}
@media (max-width: 768px) {
  .page-template-page-pharmacy .p-side-banner figure:nth-of-type(4),
  .post-type-archive-info-pharmacy .p-side-banner figure:nth-of-type(4), .info-pharmacy-template-default .p-side-banner figure:nth-of-type(4),
  .blog-pharmacy-template-default .p-side-banner figure:nth-of-type(4), .post-type-archive-blog-pharmacy .p-side-banner figure:nth-of-type(4) {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-template-page-pharmacy .p-side-banner figure:nth-of-type(6),
  .post-type-archive-info-pharmacy .p-side-banner figure:nth-of-type(6), .info-pharmacy-template-default .p-side-banner figure:nth-of-type(6),
  .blog-pharmacy-template-default .p-side-banner figure:nth-of-type(6), .post-type-archive-blog-pharmacy .p-side-banner figure:nth-of-type(6) {
    display: block;
  }
}

/* IDX:240 p-bottom-banner */
.p-bottom-banner {
  padding: 0;
}
.p-bottom-banner > div {
  display: flex;
  z-index: 50;
  justify-content: center;
  position: fixed;
  bottom: 0.6666666667rem;
  padding: 0;
}
@media (max-width: 768px) {
  .p-bottom-banner > div {
    width: 70%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.p-bottom-banner > div figure {
  display: none;
}
@media (max-width: 768px) {
  .p-bottom-banner > div figure {
    max-height: 4rem;
  }
}
@media (max-width: 768px) {
  .p-bottom-banner > div figure img {
    height: 100%;
  }
}
.p-bottom-banner > div figure:nth-of-type(1), .p-bottom-banner > div figure:nth-of-type(2) {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0.2rem 0.3333333333rem;
}
.p-bottom-banner > div figure:nth-of-type(1) a, .p-bottom-banner > div figure:nth-of-type(1) img, .p-bottom-banner > div figure:nth-of-type(2) a, .p-bottom-banner > div figure:nth-of-type(2) img {
  height: 100%;
  width: auto;
}

.page-template-page-cleaning .p-bottom-banner figure, .post-type-archive-info-cleaning .p-bottom-banner figure, .single-info-cleaning .p-bottom-banner figure,
.blog-template-default .p-bottom-banner figure, .post-type-archive-blog .p-bottom-banner figure {
  display: none !important;
}
.page-template-page-cleaning .p-bottom-banner figure:nth-of-type(3), .post-type-archive-info-cleaning .p-bottom-banner figure:nth-of-type(3), .single-info-cleaning .p-bottom-banner figure:nth-of-type(3),
.blog-template-default .p-bottom-banner figure:nth-of-type(3), .post-type-archive-blog .p-bottom-banner figure:nth-of-type(3) {
  display: block !important;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
}

.page-template-page-pharmacy .p-bottom-banner figure,
.post-type-archive-info-pharmacy .p-bottom-banner figure, .info-pharmacy-template-default .p-bottom-banner figure,
.blog-pharmacy-template-default .p-bottom-banner figure, .post-type-archive-blog-pharmacy .p-bottom-banner figure {
  display: none !important;
}
.page-template-page-pharmacy .p-bottom-banner figure:nth-of-type(4),
.post-type-archive-info-pharmacy .p-bottom-banner figure:nth-of-type(4), .info-pharmacy-template-default .p-bottom-banner figure:nth-of-type(4),
.blog-pharmacy-template-default .p-bottom-banner figure:nth-of-type(4), .post-type-archive-blog-pharmacy .p-bottom-banner figure:nth-of-type(4) {
  display: block !important;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
}

/* IDX:250 p-blue-link */
section.p-blue-link {
  background: url(../images/bg-blue-link.svg) top center no-repeat;
  background-size: cover;
  padding: 6.6666666667rem 0 3.3333333333rem;
  margin-top: -13.3333333333rem;
}
@media (max-width: 768px) {
  section.p-blue-link {
    background: url(../images/bg-blue-link-sp.svg) top center no-repeat;
    background-size: cover;
    margin-top: -40vw;
  }
}
section.p-blue-link > div {
  text-align: center;
  position: relative;
  z-index: 10;
}
section.p-blue-link > div h2 {
  margin-bottom: -1rem;
}
section.p-blue-link > div P {
  text-align: center;
  margin-bottom: 2.6666666667rem;
  line-height: var(--f-line-height2);
  margin-top: 0.6666666667rem;
}
section.p-blue-link > div P.c-link-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
  border-color: #fff;
}
section.p-blue-link > div img {
  -webkit-filter: drop-shadow(0px 3px 10px rgba(121, 181, 224, 0.2)); /* SafariなどのWebkitブラウザ用 */
  filter: drop-shadow(0px 3px 10px rgba(121, 181, 224, 0.2));
}
@media (max-width: 768px) {
  section.p-blue-link > div img {
    height: 10vw;
  }
}

.p-blue-link-half-wrapper {
  background: url(../images/bg-blue-link2.svg) top center;
  background-size: cover;
  margin-top: -13.3333333333rem;
}
@media (max-width: 768px) {
  .p-blue-link-half-wrapper {
    background: none;
    margin-top: -45vw;
  }
}
.p-blue-link-half-wrapper > div {
  display: flex;
}
@media (max-width: 768px) {
  .p-blue-link-half-wrapper > div {
    flex-direction: column;
  }
}
.p-blue-link-half-wrapper > div .p-blue-link-half {
  width: 50%;
  background: none;
  margin-top: 0;
}
@media (max-width: 768px) {
  .p-blue-link-half-wrapper > div .p-blue-link-half {
    width: 100%;
    background: url(../images/bg-blue-link-sp.svg) top center no-repeat;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .p-blue-link-half-wrapper > div .p-blue-link-half:last-of-type {
    background: url(../images/bg-blue-link2-sp.svg) top center no-repeat;
    background-size: 180%;
    padding: 6.6666666667rem 0 2rem;
    margin-top: -6rem;
  }
}

/* IDX:260 p-infomation */
.p-infomation .is-layout-flex {
  align-items: center;
}
@media (max-width: 768px) {
  .p-infomation {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 768px) {
  .p-infomation .is-layout-flex {
    justify-content: space-between;
  }
}
.p-infomation li {
  border-bottom: 1px solid rgba(80, 80, 80, 0.3);
  display: flex;
  flex-direction: column-reverse;
}
.p-infomation li time {
  margin-bottom: -0.6666666667rem;
}
.p-infomation a {
  width: 100%;
  height: 100%;
}

.p-infomation-item2 li div {
  padding: 0 !important;
}
.p-infomation-item2 li div div {
  display: flex;
  flex-direction: column-reverse;
  padding: 0;
}
.p-infomation-item2 li div div h3 {
  margin-bottom: 0;
  margin-top: -0.2666666667rem;
  font-size: var(--f-font-size);
  line-height: var(--f-line-height);
}
.p-infomation-item2 li div div a {
  width: 100%;
  height: 100%;
}

/* IDX:270 p-area-wrapper */
.p-area-wrapper > div {
  display: flex;
  gap: 1.3333333333rem;
  width: 100%;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-area-wrapper > div {
    flex-direction: column-reverse;
    gap: 1.3333333333rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.p-area-wrapper > div #tablepress-5 {
  border-collapse: separate;
  border: 1px solid #ddd;
  border-radius: 1.3333333333rem;
}
.p-area-wrapper > div #tablepress-5 tbody tr td:first-of-type {
  border-right: 1px solid #ddd;
  width: 46%;
  min-width: 16rem;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .p-area-wrapper > div #tablepress-5 tbody tr td:first-of-type {
    min-width: 13.3333333333rem;
  }
}
.p-area-wrapper > div #tablepress-5 tbody tr td:first-of-type span {
  width: 10px;
  height: 10px;
  display: block;
  margin-right: 0.4rem;
  margin-left: 0.3333333333rem;
}
.p-area-wrapper > div #tablepress-5 tbody tr td:first-of-type span.c-point1 {
  background-color: #8CA0C7;
}
.p-area-wrapper > div #tablepress-5 tbody tr td:first-of-type span.c-point2 {
  background-color: #8CC7B5;
}
.p-area-wrapper > div #tablepress-5 tbody tr td:first-of-type span.c-point3 {
  background-color: #B6C78C;
}
.p-area-wrapper > div #tablepress-5 tbody tr td:first-of-type span.c-point4 {
  background-color: #C78C8C;
}
.p-area-wrapper > div #tablepress-5 tbody tr td:last-of-type {
  width: 54%;
  text-align: center;
}

/* IDX:280 p-biz-item */
.p-biz-item-item {
  position: relative;
  align-items: center !important;
}
.p-biz-item-item img {
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .p-point-biz p {
    text-align: center !important;
  }
}

/* IDX:290 p-header-cta */
.p-header-cta > div {
  display: flex;
  gap: 1.3333333333rem;
}
.p-header-cta > div .c-link-btn {
  color: var(--c-blue);
  border-color: var(--c-blue);
}
@media (max-width: 768px) {
  .p-header-cta > div .c-link-btn {
    display: none;
  }
}
.p-header-cta > div .c-link-btn:after {
  content: none;
}
.p-header-cta > div .c-link-btn.c-link-btn2 {
  color: var(--c-green);
  border-color: var(--c-green);
  display: none;
}
@media (max-width: 768px) {
  .p-header-cta > div .c-link-btn.c-link-btn2 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .p-header-cta > div .p-header-cta-item {
    display: none;
  }
}

.p-header-cta-item > div p, .p-cta-tel-item > div p {
  font-size: var(--f-font-h3-size);
  line-height: var(--f-line-height3);
  font-weight: 300;
}
.p-header-cta-item > div p:first-of-type, .p-cta-tel-item > div p:first-of-type {
  letter-spacing: 0.07em;
}
.p-header-cta-item > div p:last-of-type, .p-cta-tel-item > div p:last-of-type {
  text-indent: 12px;
  font-size: var(--f-font-min-size);
}
.p-header-cta-item > div p i, .p-cta-tel-item > div p i {
  margin-right: 0.2rem;
  font-size: 85%;
  color: var(--c-white);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--c-black);
}
/* [WP override B] Telephone block size fix */
.p-cta-tel-item p:first-of-type,
.p-cta-tel-item p:first-of-type a,
.p-header-cta-item p:first-of-type,
.p-header-cta-item p:first-of-type a {
    font-size: var(--f-font-h3-size) !important;
    line-height: var(--f-line-height3) !important;
}
.p-cta-tel-item p:last-of-type,
.p-header-cta-item p:last-of-type {
    font-size: var(--f-font-min-size) !important;
    text-indent: 12px !important;
    line-height: var(--f-line-height3) !important;
}
.p-cta-tel-item { font-size: initial !important; }

.page-template-page-pharmacy .l-header .c-link-btn,
.post-type-archive-info-pharmacy .l-header .c-link-btn, .info-pharmacy-template-default .l-header .c-link-btn,
.blog-pharmacy-template-default .l-header .c-link-btn, .post-type-archive-blog-pharmacy .l-header .c-link-btn {
  display: none;
}
.page-template-page-pharmacy .l-header .c-link-btn2,
.post-type-archive-info-pharmacy .l-header .c-link-btn2, .info-pharmacy-template-default .l-header .c-link-btn2,
.blog-pharmacy-template-default .l-header .c-link-btn2, .post-type-archive-blog-pharmacy .l-header .c-link-btn2 {
  display: block !important;
}

/* IDX:300 p-cleaning-cta */
.p-cleaning-cta {
  padding: 0;
  border-top: 1px solid rgba(80, 80, 80, 0.3);
}
.p-cleaning-cta .p-cleaning-cta-item {
  border-bottom: 1px solid rgba(80, 80, 80, 0.3);
}
.p-cleaning-cta .p-cleaning-cta-item > div {
  padding: 2.6666666667rem 0.6666666667rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .p-cleaning-cta .p-cleaning-cta-item > div {
    flex-direction: column;
    justify-content: center;
    padding: 1.3333333333rem 0.3333333333rem;
  }
}
.p-cleaning-cta .p-cleaning-cta-item > div img {
  height: 6.6666666667rem;
  margin-right: 1.3333333333rem;
}
@media (max-width: 768px) {
  .p-cleaning-cta .p-cleaning-cta-item > div .c-link-btn {
    margin-top: 0.6666666667rem;
  }
}
.p-cleaning-cta .p-cleaning-cta-item > div p {
  line-height: var(--f-line-height2);
}
.p-cleaning-cta .p-cleaning-cta-item > div p:last-of-type {
  text-align: center;
}
.p-cleaning-cta .p-cleaning-cta-item > div p:first-of-type {
  text-align: left;
}
@media (max-width: 768px) {
  .p-cleaning-cta .p-cleaning-cta-item > div p:first-of-type {
    text-align: center;
  }
}
.p-cleaning-cta .p-cleaning-cta-item > div p strong {
  font-weight: 400;
  color: var(--c-green);
}

/* IDX:310 p-cleaning-intro-img */
.p-cleaning-intro-img > div {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .p-cleaning-intro-img > div {
    flex-wrap: wrap;
    gap: 1.3333333333rem;
    justify-content: center;
  }
}
.p-cleaning-intro-img > div figure {
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-cleaning-intro-img > div figure {
    height: 32vw;
  }
}
.p-cleaning-intro-img > div figure img {
  opacity: 0;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .p-cleaning-intro-img > div figure img {
    height: 100%;
    border-radius: 1rem;
  }
}

/* IDX:320 p-price-link */
section.p-price-link {
  padding: 6.6666666667rem 0 8rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  section.p-price-link {
    padding: 3.3333333333rem 0 6rem;
  }
}
section.p-price-link p {
  text-align: center;
}
section.p-price-link h2 {
  margin-top: -1.3333333333rem;
}
section.p-price-link > div {
  position: relative;
  text-align: center;
  padding-top: 2.6666666667rem;
}
@media (max-width: 768px) {
  section.p-price-link > div {
    padding-top: 1.3333333333rem;
  }
}
section.p-price-link > div figure {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
}
section.p-price-link > div figure img {
  max-width: unset;
  width: 100%;
  object-fit: cover;
  object-position: 0 0;
  margin: 0;
}
@media (max-width: 768px) {
  section.p-price-link > div figure img {
    max-width: 100%;
  }
}
section.p-price-link > div > div > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  section.p-price-link > div > div > div {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
section.p-price-link > div > div > div p {
  text-align: center;
  line-height: var(--f-line-height3);
  margin-bottom: 2.6666666667rem;
}
section.p-price-link > div .sec-sm {
  padding: 2rem 0 11.3333333333rem;
  gap: 2.6666666667rem;
}
@media (max-width: 768px) {
  section.p-price-link > div .sec-sm {
    gap: 1.3333333333rem;
  }
}
section.p-price-link > div .c-link-btn {
  width: 14.6666666667rem;
}
@media (max-width: 768px) {
  section.p-price-link > div .c-link-btn {
    width: unset;
  }
}

/* IDX:330 p-price-toplink-box */
@media (max-width: 768px) {
  section.p-price-toplink-box .sec-big.pa90 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
section.p-price-toplink-box .p-price-toplink-cols {
  background-color: #F3F7FB;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  section.p-price-toplink-box .p-price-toplink-cols {
    gap: 0.6666666667rem;
  }
}
@media (max-width: 768px) {
  section.p-price-toplink-box .p-price-toplink-cols section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
section.p-price-toplink-box .p-price-toplink-cols .is-layout-flow {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
}
section.p-price-toplink-box .p-price-toplink-cols figure {
  border-radius: 0;
}
@media (max-width: 768px) {
  section.p-price-toplink-box .p-price-toplink-cols figure:first-of-type {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 768px) {
  section.p-price-toplink-box .p-price-toplink-cols figure:first-of-type img {
    object-fit: cover;
  }
}
section.p-price-toplink-box .p-price-toplink-cols figure:last-of-type img {
  height: 70%;
}
@media (max-width: 768px) {
  section.p-price-toplink-box .p-price-toplink-cols figure:last-of-type img {
    width: 100%;
  }
}
section.p-price-toplink-box .p-price-toplink-cols a {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  transition: all 0.2s;
}
section.p-price-toplink-box .p-price-toplink-cols a:hover {
  transition: all 0.2s;
  opacity: 0.5;
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
}
section.p-price-toplink-box .p-price-toplink-cols h3 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  section.p-price-toplink-box .p-price-toplink-cols h3 {
    margin: auto;
    margin-top: 0;
    margin-bottom: -0.6666666667rem;
  }
}
section.p-price-toplink-box .p-price-toplink-cols p {
  text-align: left;
}
@media (max-width: 768px) {
  section.p-price-toplink-box .p-price-toplink-cols p {
    margin: auto;
    margin-bottom: 0.6666666667rem;
    padding: 0 0.6666666667rem 0;
  }
}
section.p-price-toplink-box .c-notice-min {
  text-align: left;
  line-height: var(--f-line-height3);
}

/* IDX:340 price-title */
.price-title strong {
  display: block;
  font-size: 60%;
  font-weight: 300;
  margin-top: -1.3333333333rem;
}

@media (max-width: 768px) {
  .p-flex-btn {
    flex-direction: column;
  }
}
.p-flex-btn .c-link-btn {
  margin-left: 1rem;
  margin-right: 1rem;
  line-height: var(--f-line-height2);
}
@media (max-width: 768px) {
  .p-flex-btn .c-link-btn {
    min-width: 70%;
    margin-bottom: 1.3333333333rem;
  }
}

/* IDX:350 p-flow */
.p-flow {
  text-align: center;
}
.p-flow .p-flow-item > div {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  gap: 2.6666666667rem;
  width: 70%;
}
@media (max-width: 768px) {
  .p-flow .p-flow-item > div {
    gap: 1.3333333333rem;
    width: 100%;
  }
}
.p-flow .p-flow-item > div h4 {
  width: 9.3333333333rem;
  height: 9.3333333333rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  text-align: center;
  line-height: var(--f-line-height3);
  background-color: var(--c-light-blue4);
}
@media (max-width: 768px) {
  .p-flow .p-flow-item > div h4 {
    width: 6.6666666667rem;
    height: 6.6666666667rem;
  }
}
.p-flow .p-flow-item > div p {
  text-align: left;
  width: calc(100% - 12rem);
  line-height: var(--f-line-height3);
}
@media (max-width: 768px) {
  .p-flow .p-flow-item > div p {
    width: calc(100% - 8rem);
  }
}
.p-flow .c-step {
  text-align: center;
  font-size: 120%;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
}
.p-flow .c-step strong {
  font-size: 140%;
  margin-left: 0.2666666667rem;
}

/* IDX:360 c-cta-pharmacy */
.c-cta-pharmacy {
  background-color: var(--c-light-green);
}
.c-cta-pharmacy > div {
  display: flex;
  max-width: var(--pc-max-width2);
  margin-left: auto;
  margin-right: auto;
  gap: 2.6666666667rem;
  align-items: center;
}
@media (max-width: 768px) {
  .c-cta-pharmacy > div {
    flex-direction: column;
    gap: 1.3333333333rem;
  }
}
.c-cta-pharmacy > div .c-link-btn {
  margin-top: 1.0666666667rem;
  z-index: 10;
}
@media (max-width: 768px) {
  .c-cta-pharmacy > div .c-link-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.c-cta-pharmacy.c-cta-pharmacy > div {
  flex-direction: column;
}
.c-cta-pharmacy.c-cta-pharmacy > div .c-flex {
  max-width: 34.6666666667rem;
  margin-left: auto;
  margin-right: auto;
}
.c-cta-pharmacy.c-cta-pharmacy > div .c-flex > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.6666666667rem;
  width: 100%;
}
@media (max-width: 768px) {
  .c-cta-pharmacy.c-cta-pharmacy > div .c-flex > div {
    flex-direction: column;
    gap: 1.3333333333rem;
  }
}
.c-cta-pharmacy.c-cta-pharmacy > div .c-flex > div > div {
  width: 50%;
}
@media (max-width: 768px) {
  .c-cta-pharmacy.c-cta-pharmacy > div .c-flex > div > div {
    width: 100%;
  }
}
.c-cta-pharmacy.c-cta-pharmacy > div .c-flex > div h3 {
  margin-bottom: 0;
  text-align: right;
  width: 16rem;
}
@media (max-width: 768px) {
  .c-cta-pharmacy.c-cta-pharmacy > div .c-flex > div h3 {
    width: 100%;
    text-align: center;
  }
}
.c-cta-pharmacy.c-cta-pharmacy.c-flex2 > div {
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 2.6666666667rem;
  width: 100%;
}
@media (max-width: 768px) {
  .c-cta-pharmacy.c-cta-pharmacy.c-flex2 > div {
    gap: 1.3333333333rem;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .c-cta-pharmacy.c-cta-pharmacy.c-flex2 > div > div:last-of-type {
    text-align: center;
  }
}
.c-cta-pharmacy.c-cta-pharmacy .c-min-txt {
  text-align: center;
}

/* IDX:370 c-media-list */
.c-media-list {
  margin-bottom: 2.6666666667rem;
}
@media (max-width: 768px) {
  .c-media-list {
    margin-bottom: 1.3333333333rem;
  }
}
.c-media-list:nth-of-type(even) > div {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .c-media-list:nth-of-type(even) > div {
    flex-direction: column;
  }
}
.c-media-list > div {
  display: flex;
  align-items: center;
  gap: 2.6666666667rem;
}
@media (max-width: 768px) {
  .c-media-list > div {
    flex-direction: column;
    gap: 1.3333333333rem;
  }
}
.c-media-list > div figure {
  width: 30%;
  height: auto;
  overflow: hidden;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .c-media-list > div figure {
    width: 100%;
  }
}
.c-media-list > div figure img {
  max-width: unset;
  width: 100%;
}
.c-media-list > div > div {
  width: 70%;
}
@media (max-width: 768px) {
  .c-media-list > div > div {
    width: 100%;
  }
}
.c-media-list.c-media-list--no-alt > div {
  flex-direction: row;
}
@media (max-width: 768px) {
  .c-media-list.c-media-list--no-alt > div {
    flex-direction: column;
  }
}
/* --- サイズ修飾: sm（写真小さめ） --- */
.c-media-list--sm > div figure { width: 20%; }
.c-media-list--sm > div > div { width: 80%; }
/* --- サイズ修飾: md（写真やや大きめ） --- */
.c-media-list--md > div figure { width: 40%; }
.c-media-list--md > div > div { width: 60%; }
/* --- サイズ修飾: lg（写真半分） --- */
.c-media-list--lg > div figure { width: 50%; }
.c-media-list--lg > div > div { width: 50%; }
/* --- サイズ修飾: モバイルリセット --- */
@media (max-width: 768px) {
  .c-media-list--sm > div figure,
  .c-media-list--md > div figure,
  .c-media-list--lg > div figure {
    width: 100%;
  }
  .c-media-list--sm > div > div,
  .c-media-list--md > div > div,
  .c-media-list--lg > div > div {
    width: 100%;
  }
}

/* IDX:380 p-green-wave */
.p-green-wave {
  background: url(../images/bg-green-link.svg) top center no-repeat;
  background-size: cover;
  padding: 6.6666666667rem 0 3.3333333333rem;
}
@media (max-width: 768px) {
  .p-green-wave {
    background: url(../images/bg-green-link-sp.svg) top center no-repeat;
    background-size: cover;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.p-green-wave .c-media-list {
  max-width: var(--pc-max-width2);
  margin-left: auto;
  margin-right: auto;
}

/* IDX:390 p-flow-biz */
section.p-flow-biz {
  max-width: var(--pc-max-width4);
}
@media (max-width: 768px) {
  section.p-flow-biz {
    width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
  }
}
.p-flow-step {
  display: flex;
  align-items: center;
  margin-bottom: 2.6666666667rem;
  position: relative;
}
.p-flow-step:before {
  content: "01";
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--c-light-blue4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 200%;
  font-weight: 300;
  margin-right: 1.6rem;
}
.p-flow-step:after {
  content: "";
  display: block;
  height: 130%;
  width: 0.2666666667rem;
  background-color: var(--c-light-blue4);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 2.8rem;
}
.p-flow-step:nth-of-type(2):before {
  content: "02";
}
.p-flow-step:nth-of-type(3):before {
  content: "03";
}
.p-flow-step:nth-of-type(4):before {
  content: "04";
}
.p-flow-step:nth-of-type(5):before {
  content: "05";
}
.p-flow-step:last-of-type:after {
  content: none;
}
.p-flow-step > div {
  width: calc(100% - 8rem);
}
.p-flow-step h3 {
  margin-bottom: -0.6666666667rem;
}
@media (max-width: 768px) {
  .p-flow-step h3 {
    margin-bottom: 0.6666666667rem;
  }
}
.p-flow-step p {
  line-height: var(--f-line-height3);
}
/* IDX:400 page-numbers */
.page-numbers {
  display: flex;
  justify-content: center;
  border: none;
}
.page-numbers li {
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 0.5333333333rem;
  margin-right: 0.5333333333rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(80, 80, 80, 0.1);
  background-color: rgba(80, 80, 80, 0.1);
  color: rgba(80, 80, 80, 0.8);
}
.page-numbers li a {
  width: 100%;
  height: 100%;
  background-color: var(--c-white);
  color: rgba(80, 80, 80, 0.8);
  transition: all 0.3s;
}
.page-numbers li a:hover {
  background-color: rgba(80, 80, 80, 0.3);
  color: Var(--c-white);
  transition: all 0.3s;
}

/* IDX:410 p-form */
.p-form form {
  text-align: center;
}
.p-form form p {
  text-align: center;
}
.p-form form p:first-of-type {
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 1.3333333333rem;
  justify-content: flex-start;
}
.p-form form p:first-of-type label {
  display: inline;
}
.p-form form p:first-of-type span {
  display: inline;
}
@media (max-width: 768px) {
  .p-form form p:first-of-type span {
    margin-left: 0.1333333333rem;
  }
}
.p-form form label {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .p-form form label {
    width: 100%;
  }
}
.p-form form label span {
  width: 70%;
  margin-left: 1.0666666667rem;
}
.p-form form input[type=text], .p-form form input[type=email], .p-form form textarea {
  border-radius: 0.3333333333rem;
  border: 1px solid var(--c-black);
  width: 100%;
}
.p-form form .c-link-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .p-form form .c-link-btn {
    margin-top: 2rem;
  }
}

/* IDX:420 entry-content */
/* [WP override E] Blog article text and image styling */
.entry-content p, .entry-content li, .entry-content dt, .entry-content dd {
    text-align: left;
    font-weight: 300;
    line-height: var(--f-line-height);
    margin-bottom: 1.8em;
}
.entry-content h2 { font-size: var(--f-font-h2-size); font-weight: 300; text-align: center; margin-bottom: var(--f-h2-marginbottom); }
.entry-content h3 { font-size: var(--f-font-h3-size); font-weight: 300; text-align: left; margin-bottom: var(--f-h3-marginbottom); }
.entry-content h4 { font-size: 1.1em; font-weight: 300; text-align: left; margin-bottom: var(--f-h3-marginbottom); }

/* IDX:430 blog-images */
.single-blog article img,
.single-blog-pharmacy article img {
    width: 100% !important;
    max-width: 450px !important;
    height: auto !important;
    object-fit: cover;
    display: block !important;
    margin-top: 35px !important;
    margin-bottom: 35px !important;
    margin-left: 20px !important;
    margin-right: auto !important;
    float: none !important;
    clear: both !important;
    border-radius: 15px;
    border: 1px solid #ddd;
    padding: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* IDX:440 map-area */
/* [WP override G] Map and history table */
.map-area-box { width: 400px !important; height: 400px !important; margin: 0 auto !important; border-radius: 20px !important; overflow: hidden !important; border: 1px solid #A0A090 !important; }
.map-area-box img { width: 100% !important; height: 100% !important; object-fit: contain !important; }

.tablepress.c-table.c-history-table { background-color: #fff !important; border: 1px solid #ddd !important; border-radius: 0 !important; }
.tablepress.c-table.c-history-table thead tr,
.tablepress.c-table.c-history-table tbody tr td { background-color: #fff !important; text-align: left; padding: 10px 15px; }
.tablepress.c-table.c-history-table tbody tr td:first-of-type { border-right: 1px solid #ddd !important; }

/* IDX:450 mobile-responsive-overrides */
/* [WP override F] Mobile responsive overrides (768px) */
@media (max-width: 768px) {
    .p-fv, .p-fv__bg, .post-thumbnail, .entry-thumbnail { height: 0 !important; min-height: 0 !important; display: none !important; }

    .p-intro, .p-intro p, .p-intro h1, .p-intro h2, .p-intro h3,
    .entry-content p, .entry-content h2, .entry-content h3, .entry-content h4,
    .p-intro-text {
        text-align: left !important;
        margin-left: initial !important;
        margin-right: initial !important;
    }

    .single-blog article img,
    .single-blog-pharmacy article img {
        max-width: 100% !important;
        margin-top: 25px !important;
        margin-bottom: 25px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 10px;
    }

    #tablepress-5 { width: 100% !important; height: auto !important; max-width: 100% !important; }
    #tablepress-5 th.column-1, #tablepress-5 td.column-1 { width: 60% !important; }
    #tablepress-5 th.column-2, #tablepress-5 td.column-2 { width: 40% !important; }

    .c-table-3col td.column-3 { display: block !important; font-size: 80% !important; border-top: none !important; padding: 0.3rem !important; }
    .c-table-3col th.column-1, .c-table-3col td.column-1 { width: 60% !important; }
    .c-table-3col th.column-2, .c-table-3col td.column-2 { width: 40% !important; text-align: right !important; }
    .c-table-3col tr { border-bottom: 1px solid #ddd !important; }
}
