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

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

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

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

/* Set core body defaults */
body {
  text-rendering: optimizespeed;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

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

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type=radio] {
  visibility: hidden;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
}

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

/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme=Default] {
  --pc-max-width:1300px;
  --pc-max-width2:1000px;
  --pc-max-width3:820px;
  --pc-max-width4:620px;
  --f-family-main: "Noto Sans JP", sans-serif;
  --f-family-en: "Oswald", sans-serif;
  --f-font-size: 15px;
  --f-font-h2-size: 26px;
  --f-font-h3-size: 24px;
  --f-font3-size: 30px;
  --f-font-min-size: 10px;
  --f-line-height: 2.8;
  --f-line-height2: 2.0;
  --f-line-height3: 1.8;
  --f-h2-marginbottom: 40px;
  --f-h3-marginbottom: 16px;
  --c-white: #fff;
  --c-white2: #FDFCFA;
  --c-black: #505050;
  --c-gray:#F2F5F7;
  --c-gray2:#C1C4C5;
  --c-blue:#005B9C;
  --c-blue2:#304fc2;
  --c-blue3:#0065c0;
  --c-blue4:#1b8fea;
  --c-light-blue:#f2f7fa;
  --c-light-blue2:#e8f4fe;
  --c-light-blue3:#91ccfd;
  --c-light-blue4:#F3F7FB;
  --c-green:#009C8F;
  --c-light-green:#F9FFFD;
  --c-light-green2:#EBFFFB;
  --c-light-green3:#EDF6F2;
  --t-all1:all 0.5s ease;
}
@media (max-width: 768px) {
  :root,
  :root[theme=Default] {
    --c-black: #000;
    --f-font-size: 14px;
    --f-font-h2-size: 20px;
    --f-font-h3-size: 18px;
    --f-h2-marginbottom: 24px;
    --f-h3-marginbottom: 8px;
  }
}

html {
  /* ----------------------------
  * リキッドレイアウト rootのfont-sizeを可変にして、単位をremで指定することでレイアウトを可変にする
    // 計算式参考サイト：https://lpeg.info/html/css_calc_font.html
    // font-size: calc([最小値px] + ([最大値] - [最小値]) * ((100vw - [最小画面幅px]) / ([最大画面幅] - [最小画面幅])));
    // clampと併用して上限下限を設定すること。しないと無限に変化し続ける
  * ---------------------------- */
  font-size: 18px;
  color: var(--c-black);
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 768px) / 372, 16px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  line-height: var(--f-line-height);
  background-color: var(--c-3);
  overflow-wrap: break-word;
  word-break: break-all;
  background-color: var(--c-white);
}

img {
  height: auto;
  vertical-align: top;
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  color: #848484;
  transition: all 0.3s;
}

button {
  transition: 0.3s;
}
button:hover, button:focus {
  opacity: 0.7;
}

p {
  line-height: var(--f-line-height);
}

section {
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  section {
    margin-left: auto;
    margin-right: auto;
  }
}
section h2, section .page-title {
  font-size: var(--f-font-h2-size);
  font-weight: 300;
  text-align: center;
  margin: auto;
  margin-bottom: var(--f-h2-marginbottom);
}
section h3 {
  font-size: var(--f-font-h3-size);
  margin-bottom: var(--f-h3-marginbottom);
}
section p, section li, section dt, section dd, section h3, section h4, section table td, section th {
  text-align: left;
  font-weight: 300;
}
section img {
  width: auto;
  margin: auto;
}

.wp-singular .page-title {
  margin-bottom: 0 !important;
}

.sec-big {
  max-width: var(--pc-max-width);
  margin-left: auto;
  margin-right: auto;
}

.sec-sm {
  max-width: var(--pc-max-width2);
  margin-left: auto;
  margin-right: auto;
}

.sec-sm2 {
  max-width: var(--pc-max-width3);
  margin-left: auto;
  margin-right: auto;
}

.sec-sm3 {
  max-width: var(--pc-max-width4);
  margin-left: auto;
  margin-right: auto;
}

.pa90 {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .pa90 {
    padding: 3rem 1rem;
  }
}

.pa60 {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .pa60 {
    padding: 2rem 1rem;
  }
}

@media (max-width: 768px) {
  .pa15-sp {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 768px) {
  .ma15-sp {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.pat90 {
  padding-top: 6rem;
}
@media (max-width: 768px) {
  .pat90 {
    padding-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.pat60 {
  padding-top: 4rem;
}
@media (max-width: 768px) {
  .pat60 {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.pab90 {
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .pab90 {
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.mb90 {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .mb90 {
    margin-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.mb-10 {
  margin-bottom: -0.6666666667rem;
}
@media (max-width: 768px) {
  .mb-10 {
    margin-bottom: -0.3333333333rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.mb60 {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .mb60 {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.mt60 {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .mt60 {
    margin-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.ma90 {
  margin: 6rem auto !important;
}
@media (max-width: 768px) {
  .ma90 {
    margin: 3rem auto !important;
  }
}

.ma60 {
  margin: 4rem auto !important;
}
@media (max-width: 768px) {
  .ma60 {
    margin: 2rem auto !important;
  }
}

.p-notice .sec-sm {
  text-align: center;
}

.border-top {
  border-top: 1px solid rgba(80, 80, 80, 0.3);
}

.border-bottom {
  border-bottom: 1px solid rgba(80, 80, 80, 0.3);
}

.line-height1 {
  line-height: 1 !important;
}

.c-min-txt {
  font-size: 80%;
  font-weight: 400;
  padding-top: 0.2666666667rem;
}

.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;
}
.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;
}
.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);
}
.c-link-btn a:hover, .c-link-btn .wpcf7-submit:hover {
  background-color: transparent;
  color: var(--c-black);
}
.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%;
  }
}
.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;
}

.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;
}

.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;
}

.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%;
}

.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;
}

.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;
}

.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;
  }
}

.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;
}

.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.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;
  }
}
.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;
}

.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;
}

.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;
  }
}

.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);
}

.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%);
  }
}
.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;
  }
}

.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;
}

section.p-intro {
  padding-top: 2.6666666667rem;
}
@media (max-width: 768px) {
  section.p-intro {
    padding-top: 1.3333333333rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
section.p-intro p {
  text-align: center;
}

@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);
  }
}

.p-message > div {
  gap: 4rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .p-message > div {
    gap: 1.3333333333rem;
  }
}
.p-message > div .p-message-item > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.6666666667rem;
}
@media (max-width: 768px) {
  .p-message > div .p-message-item > div {
    flex-direction: column;
    gap: 1.3333333333rem;
    justify-content: center;
  }
}
.p-message > div .p-message-item > div .p-message-txt {
  width: calc(100% - 26.6666666667rem);
}
@media (max-width: 768px) {
  .p-message > div .p-message-item > div .p-message-txt {
    width: 100%;
  }
}
.p-message > div .p-message-item > div .p-message-txt p {
  line-height: var(--f-line-height2);
}
.p-message > div .p-message-item figure {
  overflow: hidden;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .p-message > div .p-message-item figure {
    border-radius: 0.5333333333rem;
  }
}
.p-message > div .p-message-item figure img {
  object-fit: cover;
}
.p-message > div .p-message-item:nth-of-type(2) > div, .p-message > div .p-message-item:nth-of-type(4) > div {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-message > div .p-message-item:nth-of-type(2) > div, .p-message > div .p-message-item:nth-of-type(4) > div {
    flex-direction: column;
  }
}

.service-link-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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;
}

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 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;
  }
}

.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;
}

.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%;
  }
}

.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;
  }
}

.p-bottom-banner {
  padding: 0;
}
.p-bottom-banner > div {
  display: flex;
  z-index: 50;
  justify-content: center;
  position: fixed;
  bottom: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .p-bottom-banner > div {
    width: 100%;
  }
}
.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%;
}

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;
  }
}

@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%;
}

.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;
}

.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;
  }
}

.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);
}

.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;
}

.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);
}

.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;
  }
}

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;
  }
}

@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 .wp-block-columns-is-layout-flex {
  background-color: #F3F7FB;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  section.p-price-toplink-box .wp-block-columns-is-layout-flex {
    gap: 0.6666666667rem;
  }
}
@media (max-width: 768px) {
  section.p-price-toplink-box .wp-block-columns-is-layout-flex section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
section.p-price-toplink-box .wp-block-columns-is-layout-flex .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 .wp-block-columns-is-layout-flex figure {
  border-radius: 0;
}
@media (max-width: 768px) {
  section.p-price-toplink-box .wp-block-columns-is-layout-flex figure:first-of-type {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 768px) {
  section.p-price-toplink-box .wp-block-columns-is-layout-flex figure:first-of-type img {
    object-fit: cover;
  }
}
section.p-price-toplink-box .wp-block-columns-is-layout-flex figure:last-of-type img {
  height: 70%;
}
@media (max-width: 768px) {
  section.p-price-toplink-box .wp-block-columns-is-layout-flex figure:last-of-type img {
    width: 100%;
  }
}
section.p-price-toplink-box .wp-block-columns-is-layout-flex 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 .wp-block-columns-is-layout-flex 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 .wp-block-columns-is-layout-flex h3 {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  section.p-price-toplink-box .wp-block-columns-is-layout-flex h3 {
    margin: auto;
    margin-top: 0;
    margin-bottom: -0.6666666667rem;
  }
}
section.p-price-toplink-box .wp-block-columns-is-layout-flex p {
  text-align: left;
}
@media (max-width: 768px) {
  section.p-price-toplink-box .wp-block-columns-is-layout-flex 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);
}

.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;
  }
}

.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;
}

.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;
}

.p-item-p {
  margin-bottom: 2.6666666667rem;
}
@media (max-width: 768px) {
  .p-item-p {
    margin-bottom: 1.3333333333rem;
  }
}
.p-item-p:nth-of-type(even) > div {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-item-p:nth-of-type(even) > div {
    flex-direction: column;
  }
}
.p-item-p > div {
  display: flex;
  align-items: center;
  gap: 2.6666666667rem;
}
@media (max-width: 768px) {
  .p-item-p > div {
    flex-direction: column;
    gap: 1.3333333333rem;
  }
}
.p-item-p > div figure {
  width: 30%;
  height: auto;
  overflow: hidden;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .p-item-p > div figure {
    width: 100%;
  }
}
.p-item-p > div figure img {
  max-width: unset;
  width: 100%;
}
.p-item-p > div > div {
  width: 70%;
}
@media (max-width: 768px) {
  .p-item-p > div > div {
    width: 100%;
  }
}
.p-item-p.p-item-p2 > div {
  flex-direction: row;
}
@media (max-width: 768px) {
  .p-item-p.p-item-p2 > div {
    flex-direction: column;
  }
}

.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 .p-item-p {
  max-width: var(--pc-max-width2);
  margin-left: auto;
  margin-right: auto;
}

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;
  }
}
section.p-flow-biz > div > div.wp-block-group {
  display: flex;
  align-items: center;
  margin-bottom: 2.6666666667rem;
  position: relative;
}
section.p-flow-biz > div > div.wp-block-group: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;
}
section.p-flow-biz > div > div.wp-block-group: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;
}
section.p-flow-biz > div > div.wp-block-group:nth-of-type(2):before {
  content: "02";
}
section.p-flow-biz > div > div.wp-block-group:nth-of-type(3):before {
  content: "03";
}
section.p-flow-biz > div > div.wp-block-group:nth-of-type(4):before {
  content: "04";
}
section.p-flow-biz > div > div.wp-block-group:nth-of-type(5):before {
  content: "05";
}
section.p-flow-biz > div > div.wp-block-group:last-of-type:after {
  content: none;
}
section.p-flow-biz > div > div.wp-block-group > div {
  width: calc(100% - 8rem);
}
section.p-flow-biz > div > div.wp-block-group h3 {
  margin-bottom: -0.6666666667rem;
}
@media (max-width: 768px) {
  section.p-flow-biz > div > div.wp-block-group h3 {
    margin-bottom: 0.6666666667rem;
  }
}
section.p-flow-biz > div > div.wp-block-group p {
  line-height: var(--f-line-height3);
}
section.p-flow-biz.p-flow-p > div > div.wp-block-group:before {
  background-color: var(--c-light-green2);
}
section.p-flow-biz.p-flow-p > div > div.wp-block-group:after {
  background-color: var(--c-light-green2);
}
section.p-flow-biz.p-flow-p .c-flex3 > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.6666666667rem;
}
@media (max-width: 768px) {
  section.p-flow-biz.p-flow-p .c-flex3 > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6666666667rem;
  }
}

.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;
}

.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;
  }
}

.u-pc-hidden {
  display: none !important;
}
@media (max-width: 768px) {
  .u-pc-hidden {
    display: block !important;
  }
}

.u-sm-hidden {
  display: none;
}
@media (max-width: 450px) {
  .u-sm-hidden {
    display: initial;
  }
}

.u-xl-hidden {
  display: none;
}
@media (max-width: 1200px) {
  .u-xl-hidden {
    display: initial;
  }
}

.u-sp-hidden {
  display: initial;
}
@media (max-width: 768px) {
  .u-sp-hidden {
    display: none !important;
  }
}

.u-space-contact {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .u-space-contact {
    margin-top: 10.6666666667rem;
  }
}/*# sourceMappingURL=style.css.map */