@charset "UTF-8";
* {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --ink: #1a1a1a;
  --black: #333;
  --white: #fff;
  --blue: #00f;
  --error: #ec0000;
  --primary: #ff9100;
  --secondary: #fffaeb;
  --tertiary: #ffc146;
  --quaternary: #fff0c7;
  --area-primary: #ffd045;
  --bg: #fffaec;
  --bg-gray: #eee;
  --shadow: #e2ae3e;
  --shadow-dark: #ff5e00;
  --shadow-send: #dc7d00;
  --bronze: #ebb664;
  --green: #7ec95f;
  --line-green-mid: #02a802;
  --line-green: #00b900;
  --yellow: #ff0;
  --gray: #838d8f;
  --light-gray: #f7f7f7;
  --border: #ddd;
  --border-light: #efefef;
  --area-hokkaido-tohoku: #646bb3;
  --area-chubu-koshinetsu: #16aa82;
  --area-chugoku-shikoku: #ec994d;
  --area-kanto: #5bc3dc;
  --area-kansai: #cbda3f;
  --area-kyushu-okinawa: #e75076;
  --pale-green: #9bbac8;
  --related-title-bg: #657072;
  --service-cta-border: #cbd5e0;
  --marker-yellow: linear-gradient(180deg, #fff 40%, #ff6 60%);
  --max: 1000px;
  --z-index--contents: 1;
  --z-index--bg: -1;
  --z-index--header: 200;
  --z-index--modal: 100;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 10px;
  color: var(--ink);
  margin: 0 !important;
}

body {
  position: relative;
  z-index: 1;
  min-width: var(--max);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
  overflow-y: scroll;
  background: var(--white);
}
body._blue {
  background: #f3f8fc;
}
@media screen and (max-width: 768px) {
  body {
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }
}

.container {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.preload *,
.preload *:before,
.preload *:after {
  -webkit-transition: none !important;
  transition: none !important;
}

a {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
a:hover {
  opacity: 0.7;
}
a:focus-visible {
  outline: none;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

button {
  display: block;
}

textarea {
  resize: vertical;
}

input:-moz-focus-inner,
button:-moz-focus-inner {
  border: 0;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--ink);
}

input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: var(--ink);
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--ink);
}

input:placeholder-shown,
textarea:placeholder-shown {
  color: var(--ink);
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--ink);
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--ink);
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--ink);
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--ink);
}
input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
  color: var(--ink);
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: var(--ink);
}
input:focus:placeholder-shown,
textarea:focus:placeholder-shown {
  color: var(--ink);
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: var(--ink);
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: var(--ink);
  opacity: 1;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: var(--ink);
  opacity: 1;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: var(--ink);
}

option {
  height: 1.8em;
}

.customize-support {
  isolation: isolate;
}

.c-related__lists {
  margin-top: 25px;
  margin-left: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .c-related__lists {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 50px;
    -webkit-column-gap: 50px;
    column-gap: 50px;
    -moz-column-rule-style: dashed;
    -webkit-column-rule-style: dashed;
    column-rule-style: dashed;
    -moz-column-rule-color: #838d8f;
    -webkit-column-rule-color: #838d8f;
    column-rule-color: #838d8f;
    -moz-column-rule-width: 1px;
    -webkit-column-rule-width: 1px;
    column-rule-width: 1px;
  }
}
.c-related__list {
  padding-bottom: 0.75rem;
}
.c-related__list:before {
  content: "";
  width: 0.6125rem;
  height: 0.6125rem;
  margin-left: -1rem;
  display: inline-block;
  background-color: #838d8f;
  border-radius: 50%;
  position: relative;
  margin-right: 0.625rem;
}
.c-related__link {
  color: rgb(131, 141, 143);
  text-decoration: underline;
}
.c-related__link:hover {
  color: rgb(255, 145, 0);
}
.c-related__item {
  font-size: 16px;
}

.c-serviceMv {
  background-color: var(--bg);
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-serviceMv {
    padding: 15px;
  }
}
.c-serviceMv__img > img {
  width: 340px;
  height: 220px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .c-serviceMv__img > img {
    width: 114px;
    height: 76px;
  }
}
.c-serviceMv__infoLabel {
  background-image: url(../img/base/ico/ico_recommend.png);
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  padding-left: 7px;
  line-height: 23.48px;
  color: #fff;
  font-weight: 700;
  width: 79.18px;
  height: 23.48px;
}
.c-serviceMv__infoTitle {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  .c-serviceMv__infoTitle {
    font-size: 18px;
  }
}

.c-servicePrice {
  border: 1px solid var(--primary);
  padding: 30px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .c-servicePrice {
    padding: 10px 6px;
    margin-top: 20px;
  }
}
.c-servicePrice__title {
  font-size: 30px;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-servicePrice__title {
    font-size: 18px;
  }
}
.c-servicePrice__title > span {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .c-servicePrice__title > span {
    font-size: 14px;
  }
}
.c-servicePrice__sectionTitle {
  font-size: 30px;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-servicePrice__sectionTitle {
    font-size: 18px;
  }
}
.c-servicePrice__sectionTitle > span {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .c-servicePrice__sectionTitle > span {
    font-size: 14px;
  }
}
.c-servicePrice__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}
.c-servicePrice__label {
  padding: 5px 15px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 4px;
  text-align: center;
  line-height: 1.2em;
  font-size: 16px;
  max-width: 20%;
}
@media screen and (max-width: 768px) {
  .c-servicePrice__label {
    padding: 5px 10px;
    font-size: 14px;
    max-width: 32%;
  }
}
.c-servicePrice__price {
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-servicePrice__price {
    font-size: 15px;
  }
}
.c-servicePrice__value {
  margin-left: 25px;
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .c-servicePrice__value {
    font-size: 30px;
    margin-left: 10px;
  }
}
.c-servicePrice__unit {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .c-servicePrice__unit {
    font-size: 15px;
  }
}

.c-sectionTitle {
  position: relative;
  border-bottom: 2px solid var(--primary);
  padding: 0.5rem;
  line-height: 1.2;
  font-size: 20px;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.c-sectionTitle--bgColor {
  background: var(--bg);
}
.c-sectionTitle--textColor {
  color: var(--primary);
}
.c-sectionTitle__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.c-sectionTitle__icon {
  position: relative;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.c-sectionTitle__icon img {
  position: absolute;
  inset: 0;
  margin: auto;
  -o-object-position: center;
  object-position: center;
}
.c-sectionTitle__text {
  margin-left: 0.5rem;
}
.c-sectionTitle__shopCount {
  display: none;
  padding-right: 1.5rem;
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .c-sectionTitle__shopCount {
    padding-right: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    color: var(--ink);
    padding-top: 0.5rem;
  }
}

.c-shopCount__icon {
  margin-right: 0.5rem;
}

.c-shopAndServiceTitle {
  background: var(--primary);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.5rem 2rem;
  gap: 0.5rem;
}
.c-shopAndServiceTitle.is-review {
  gap: 0;
}

.c-shopTitle {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.c-areaTitle {
  padding-left: 10px;
  border-left: 5px solid var(--primary);
}
.c-areaTitle + * {
  margin-top: 2rem;
}

.c-infoSubTitle {
  padding: 0.5rem 0 0.5rem 3rem;
  background: var(--bg-gray);
}
.c-infoSubTitle + * {
  margin-top: 1.5rem;
}

.c-borderBottomTitle {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.c-borderBottomTitle + * {
  margin-top: 1.5rem;
}
.c-borderBottomTitle.is-dotted {
  border-bottom: 1px dotted var(--ink);
}
@media screen and (max-width: 768px) {
  .c-borderBottomTitle {
    padding-bottom: 0;
    border-bottom: 1px dashed var(--ink);
  }
}

.c-btn--tel {
  width: 45px;
  height: 45px;
}
.c-btn--tel a {
  display: block;
  height: 100%;
}
.c-btn--tel .icon {
  display: block;
  width: 90px;
  height: 90px;
  background-image: url(../img/base/sprite.e7c965a.png);
  background-repeat: no-repeat;
  background-position: -200px -100px;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
@media screen and (min-width: 769px) {
  .c-btn--tel {
    display: none;
  }
}
.c-btn--hamburger {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: var(--secondary);
}
.c-btn--hamburger .hamburger__wrap {
  position: relative;
  width: 27px;
  height: 18px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-btn--hamburger .hamburger__wrap > span {
  position: absolute;
  left: 0;
  z-index: 2;
  display: inline-block;
  width: 100%;
  height: 3px;
  margin: auto 0;
  background: var(--primary);
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn--hamburger .hamburger__wrap > span:first-child {
  top: 0;
}
.c-btn--hamburger .hamburger__wrap > span:nth-child(2) {
  top: 0;
  bottom: 0;
}
.c-btn--hamburger .hamburger__wrap > span:last-child {
  bottom: 0;
}
.menu-open .c-btn--hamburger .hamburger__wrap > span:first-child {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-open .c-btn--hamburger .hamburger__wrap > span:nth-child(2) {
  opacity: 0;
}
.menu-open .c-btn--hamburger .hamburger__wrap > span:last-child {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (min-width: 769px) {
  .c-btn--hamburger {
    display: none;
  }
}
.c-btn--back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-btn--back span {
  margin-left: 2px;
  line-height: 1.5rem;
  color: var(--gray);
}
.c-btn--backHome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-btn--backHome span {
  margin-left: 2px;
  line-height: 1.5rem;
  color: var(--gray);
}
.c-btn--currentPost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-btn--currentPost span {
  margin-right: 2px;
  line-height: 1.5rem;
  color: var(--gray);
}
.c-btn--listLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 0.5rem;
  margin-left: auto;
}
.c-btn--listLink > span {
  color: var(--gray);
}
.c-btn--listLink > svg {
  width: 8px;
  height: 12px;
}
.c-btn--listLink:hover > span {
  color: var(--primary);
}
.c-btn--listLink:hover > svg path {
  fill: var(--primary);
}
.c-btn--send {
  position: relative;
  width: 100%;
  height: 64px;
  max-width: 315px;
  border: 2px solid var(--primary);
  border-radius: 9999px;
  background: var(--primary);
  font-size: 2rem;
  letter-spacing: 0.25em;
  color: var(--white);
  text-align: center;
  -webkit-box-shadow: 3px 3px 0 0 var(--shadow-send);
  box-shadow: 3px 3px 0 0 var(--shadow-send);
}
.c-btn--send:disabled {
  border-color: var(--gray);
  background: var(--border-light);
  color: var(--gray);
  font-weight: bold;
  opacity: 0.5;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.c-btn--moreService {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 49px;
  margin-top: 4.5rem;
}
.c-btn--moreService:before {
  display: inline-block;
  content: "もっと見る";
  margin-right: 2rem;
  color: var(--primary);
}
.c-btn--moreService i {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
}
.c-btn--moreService i:before, .c-btn--moreService i:after {
  position: absolute;
  inset: 0;
  content: "";
  width: 10px;
  height: 2px;
  margin: auto;
  background: var(--white);
  border-radius: 9999px;
}
.c-btn--moreService i:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.c-btn--moreService.open:before {
  content: "閉じる";
}
.c-btn--moreService.open i:after {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .c-btn--moreService {
    display: none !important;
  }
}
.c-btn--square {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--gray);
  border-radius: 0.5rem;
  background-image: url(../img/base/ico/ico_menu_arrow.svg);
  background-position: center right 1rem;
  background-repeat: no-repeat;
  background-size: 10px 17px;
}
.c-btn--square > span {
  color: var(--gray);
}
.c-btn--square:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .c-btn--square {
    max-width: 290px;
  }
}
.c-btn--toTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0 1.5rem 0 auto;
  border-radius: 50%;
  background: var(--gray);
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(0.25rem);
  transform: translateY(0.25rem);
}
.c-btn--toTop img {
  -webkit-transform: translateY(-0.15rem);
  transform: translateY(-0.15rem);
}
@media screen and (max-width: 768px) {
  .c-btn--toTop {
    margin-bottom: 1.5rem;
    -webkit-transform: none;
    transform: none;
  }
}
.c-btn--recommend {
  position: relative;
  width: 70%;
  margin: 3rem auto 0;
  padding: 1.5rem 3rem 1.5rem 1.5rem;
  background: var(--primary);
  border-radius: 0.5rem;
  -webkit-box-shadow: var(--shadow-send) 1.5px 1.5px 0px 1px;
  box-shadow: var(--shadow-send) 1.5px 1.5px 0px 1px;
}
.c-btn--recommend span {
  font-size: 1.4rem;
  color: var(--white);
}
.c-btn--recommend svg {
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  margin: auto 0;
}
.c-btn--recommend:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .c-btn--recommend {
    width: 100%;
  }
}
.c-btn--moreRankingCategory {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  background: var(--quaternary);
  cursor: pointer;
}
.c-btn--moreRankingCategory span {
  font-size: 1.2rem;
  color: var(--related-title-bg);
}
.c-btn--moreRankingCategory span:before {
  content: "もっと見る";
}
.c-btn--moreRankingCategory i {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  content: "";
  width: 13px;
  height: 13px;
  margin: auto 0;
  background-image: url(../img/base/ico/ico_arrow_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn--moreRankingCategory.open {
  background: var(--border-light);
}
.c-btn--moreRankingCategory.open span:before {
  content: "閉じる";
}
.c-btn--moreRankingCategory.open i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.c-btn--ctaForm {
  position: relative;
  gap: 0 0.5rem;
  padding: 1.5rem 1.5rem 1.5rem 4.3rem;
  border: 2px solid var(--primary);
  border-radius: 1rem;
  color: var(--primary);
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-btn--ctaForm:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  content: "";
  display: inline-block;
  width: 23px;
  height: 19px;
  margin: auto 0;
  background-image: url(../img/base/ico/ico_mail.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-btn--ctaForm:hover {
  opacity: 0.8;
}
.c-btn--consultForm {
  width: 100%;
  padding: 1.5rem;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 1rem;
  color: var(--primary);
  background-image: url("../img/base/ico/ico_mail.svg"), url("../img/base/ico/ico_arrow_or.svg");
  background-position: left 1.5rem center, right 1.5rem center;
  background-repeat: no-repeat;
  background-size: 23px 18px, 10px 17px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn--consultForm:hover {
  opacity: 0.8;
}
.c-btn--consultation {
  position: relative;
  width: 100%;
  height: 5.3rem;
  padding: 1px 2px 2px 1px;
  border: none;
  border-radius: 1rem;
  background: var(--primary);
  background-repeat: no-repeat;
  background-size: 3rem;
}
.c-btn--consultation .c-btn__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding-inline: 4rem 0.75rem;
  font-size: 1.4rem;
  font-weight: normal;
  vertical-align: text-bottom;
  background: var(--white);
  border-radius: 1rem;
  line-height: 1.2;
}
.c-btn--consultation .c-btn__text i {
  display: contents;
  font-size: 1.6rem;
  line-height: 1.2;
}
.c-btn--consultation .c-btn__text i:first-of-type {
  font-weight: bold;
}
.c-btn--consultation__ico {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.75rem;
  display: block;
  width: 30px;
  height: 24px;
  margin: auto 0;
  margin-right: 0.5rem;
  background: url("../img/base/ico/ico_mail.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-btn--consultation.is-line {
  background: var(--line-green-mid);
}
.c-btn--consultation.is-line .c-btn__text {
  color: var(--white);
  background: var(--line-green);
}
.c-btn--consultation.is-line .c-btn__text i:first-of-type {
  font-weight: normal;
}
.c-btn--consultation.is-line .c-btn--consultation__ico {
  width: 32px;
  height: 30.5px;
  background: url("../img/base/ico/ico_line.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.c-btn--viewList {
  padding-right: 2.3rem;
  font-size: 1.4rem;
  background-image: url("../img/base/ico/ico_circle_arrow_next.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 18px;
  color: var(--gray);
}
.c-btn--serviceMore {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border: 1px solid var(--pale-green);
  border-radius: 0.5rem;
  background: var(--white);
  text-align: center;
  color: var(--gray);
}
.c-btn--serviceMore:after {
  content: "+";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 1rem;
  font-size: 2rem;
  -webkit-transform: translateY(0.2rem);
  transform: translateY(0.2rem);
}
.c-btn--serviceMore span {
  font-size: 1.4rem;
}
.c-btn--ctaTel {
  color: var(--white);
}
.c-btn--ctaTel a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem;
  background: var(--primary);
  border-bottom: solid 5px var(--shadow-dark);
  border-radius: 0.5rem;
  -webkit-transition: 0;
  transition: 0;
}
.c-btn--ctaTel__text {
  font-size: 3.2vw;
  margin-right: 0.4rem;
}
.c-btn--ctaTel__num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 0.4rem;
  font-size: 7vw;
}
.c-btn--toggleForm {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background: var(--white);
  border: 1px solid var(--service-cta-border);
  color: var(--primary);
}
.c-btn--toggleForm:before, .c-btn--toggleForm:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5rem;
  width: 20px;
  height: 2px;
  margin: auto 0;
  background: var(--primary);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.c-btn--toggleForm:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.c-btn--toggleForm.open:before {
  opacity: 0;
}
.c-btn--ctaClose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 68px;
  margin-inline: auto;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  background: #edf2f7;
  border: 1px dotted var(--service-cta-border);
  border-radius: 9999px;
}
.c-btn--ctaClose span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  font-size: 1rem;
}
.c-btn--ctaClose span:before {
  display: inline-block;
  content: "×";
  margin-right: 1rem;
  font-weight: bold;
  font-size: 1.6rem;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.c-nav {
  padding: 3px 10px 0 0;
}
@media screen and (max-width: 768px) {
  .c-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
}
.c-nav__sub, .c-nav__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: var(--gray);
  letter-spacing: 0;
}
.c-nav__sub > li > a,
.c-nav__sub > li > span, .c-nav__main > li > a,
.c-nav__main > li > span {
  -webkit-transition: none;
  transition: none;
  cursor: pointer;
}
.c-nav__sub > li > a:hover,
.c-nav__sub > li > span:hover, .c-nav__main > li > a:hover,
.c-nav__main > li > span:hover {
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .c-nav__sub, .c-nav__main {
    display: block;
    width: 100%;
    color: var(--primary);
  }
  .c-nav__sub > li > a,
  .c-nav__sub > li > span, .c-nav__main > li > a,
  .c-nav__main > li > span {
    position: relative;
    display: block;
    padding: 2rem;
    line-height: 1.5;
  }
  .c-nav__sub > li > a:after,
  .c-nav__sub > li > span:after, .c-nav__main > li > a:after,
  .c-nav__main > li > span:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2rem;
    width: 8px;
    height: 12px;
    margin: auto 0;
    background-image: url(../img/base/ico/ico_menu_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .c-nav__sub > li > span:after, .c-nav__main > li > span:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.c-nav__sub > li {
  line-height: 1.5;
}
.c-nav__sub > li + li {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid var(--gray);
}
.c-nav__sub + .c-nav__main {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-nav__sub {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .c-nav__sub > li + li {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  .c-nav__sub > li a {
    font-size: 1.4rem;
  }
  .c-nav__sub + .nav__main {
    margin-top: 0;
  }
}
.c-nav__main > li + li {
  margin-left: 20px;
}
.c-nav__main > li > a,
.c-nav__main > li > span {
  position: relative;
  padding-bottom: 5px;
}
.c-nav__main > li > a:before,
.c-nav__main > li > span:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.c-nav__main > li > a:hover:before,
.c-nav__main > li > span:hover:before {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-nav__main {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .c-nav__main > li + li {
    margin-left: 0;
  }
  .c-nav__main > li > a,
  .c-nav__main > li > span {
    position: relative;
    padding-bottom: 2rem;
  }
  .c-nav__main > li > a:before,
  .c-nav__main > li > span:before {
    display: none;
  }
}
.c-nav__item--parent.open span:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.c-nav__child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  padding-top: 40px;
  background: var(--white);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-nav__childWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1490px) {
  .c-nav__childWrap {
    max-width: var(--max);
  }
}
.open .c-nav__child {
  visibility: visible;
  opacity: 1;
  border-top: 1px solid var(--border);
}
@media screen and (max-width: 768px) {
  .c-nav__child {
    position: static;
    width: 100%;
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-nav__childWrap {
    display: block;
  }
}
.c-nav__categoryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 30px;
  border-right: 2px solid var(--border);
}
.c-nav__categoryList > li {
  width: 50%;
  line-height: 1.5;
  color: var(--ink);
  -webkit-transition: none;
  transition: none;
  cursor: pointer;
}
.c-nav__categoryList > li:nth-child(n+3) {
  margin-top: 15px;
}
.c-nav__categoryList > li:hover {
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .c-nav__categoryList {
    display: block;
    width: 100%;
    padding-left: 0;
    border-right: none;
  }
  .c-nav__categoryList > li {
    width: 100%;
    padding: 1.5rem 2rem 1.5rem 3rem;
    color: var(--primary);
    border-bottom: 1px dotted var(--border);
    background-image: url(../img/base/ico/ico_menu_arrow.svg);
    background-position: right 2rem center;
    background-repeat: no-repeat;
    background-size: 8px 12px;
  }
  .c-nav__categoryList > li:nth-child(n+3) {
    margin-top: 0;
  }
}
.c-nav__serviceList {
  position: relative;
  width: 100%;
  padding-top: 3px;
}
.c-nav__serviceListItem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 4rem 4rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-nav__serviceListItem.fade-in {
  visibility: visible;
  opacity: 1;
}
.c-nav__serviceListItem > dt {
  color: var(--primary);
}
.c-nav__serviceListItem > dd {
  margin-top: 28px;
  padding-left: 30px;
}
.c-nav__serviceListItem > dd > ul > li + li {
  margin-top: 20px;
}
.c-nav__serviceListItem > dd > ul > li a {
  display: block;
}
.c-nav__serviceListItem > dd a {
  padding-right: 18px;
  background-image: url(../img/base/ico/ico_menu_arrow.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 8px 12px;
  color: var(--ink);
  -webkit-transition: none;
  transition: none;
}
.c-nav__serviceListItem > dd a:hover {
  color: var(--primary);
}
.c-nav__serviceListItem > dd > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 28px;
  color: var(--gray);
}
@media screen and (max-width: 768px) {
  .c-nav__serviceListItem > dd > a.u-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-nav__serviceList {
    position: fixed;
    right: -100%;
    width: 80vw;
    max-width: 409px;
    height: 100%;
    padding-top: 0;
    background: var(--secondary);
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
    overflow: auto;
  }
  .c-nav__serviceList.slide-in {
    right: 0;
  }
  .c-nav__serviceListItem {
    padding: 0 0 66px;
  }
  .c-nav__serviceListItem > dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.5rem 1.5rem;
    font-size: 1.2rem;
  }
  .c-nav__serviceListItem > dd {
    margin-top: 0;
    padding-left: 0;
  }
  .c-nav__serviceListItem > dd > ul > li {
    border-bottom: 1px dotted var(--border);
  }
  .c-nav__serviceListItem > dd > ul > li + li {
    margin-top: 0;
  }
  .c-nav__serviceListItem > dd > ul > li a {
    padding: 2rem 1.5rem;
    background-color: var(--white);
  }
  .c-nav__serviceListItem > dd a {
    padding-right: 18px;
    background-image: url(../img/base/ico/ico_menu_arrow_or.svg);
    background-position: right 2rem center;
    color: var(--primary);
  }
  .c-nav__serviceListItem > dd a.u-pc {
    display: none;
  }
}
.c-nav__itemBottom {
  padding: 2.5rem 1.5rem;
  background: var(--secondary);
}
.c-nav__tel {
  width: 284px;
  height: 100%;
}
.c-nav__tel a {
  display: block;
  height: 100%;
  padding: 2px 10px 0 10px;
  background-color: var(--primary);
  color: var(--white);
}
.c-nav__tel span {
  display: block;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-nav__tel {
    display: none;
  }
}

.c-tel__num {
  padding-left: 29px;
  font-size: 3.6rem;
  background: url(../img/base/ico/ico_tel.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.c-tel__text {
  margin-top: 1px;
  padding-top: 5px;
  border-top: 1px dashed;
}

.c-prevMenu {
  position: relative;
  padding-left: 22px;
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--gray);
  cursor: pointer;
}
.c-prevMenu:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 12px;
  margin: auto 0;
  background-image: url(../img/base/ico/ico_menu_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-page__header + * {
  margin-top: 5rem;
}
.c-page__header > img + h1 {
  margin-top: 1rem;
}
.c-page__header h1 {
  position: relative;
  letter-spacing: 0.1em;
}
.c-page__header h1:after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  width: 50px;
  height: 2px;
  margin: 0 auto;
  background: var(--tertiary);
}

.c-overviewList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 104px;
  border-top: 3px solid var(--border-light);
}
.c-overviewList__item:last-child {
  border-bottom: 3px solid var(--border-light);
}
.c-overviewList__item > dd span.u-display + .u-display {
  margin-top: 0.5rem;
}
.c-overviewList__item > dd dt {
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .c-overviewList__item {
    display: block;
    padding: 2rem 0 2rem 1rem;
  }
  .c-overviewList__item > dt + dd {
    margin-top: 0.75rem;
  }
}

.c-map {
  max-width: 880px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .c-map {
    height: 300px;
  }
}

.c-list > li {
  position: relative;
  padding-left: 1em;
}
.c-list > li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.c-list > li + li {
  margin-top: 0.13rem;
}

.c-ol {
  padding-left: 2em;
}
.c-ol > li {
  list-style: auto;
}
.c-ol > li + li {
  margin-top: 0.4rem;
}
.c-ol--brackets {
  counter-reset: ol-counter;
}
.c-ol--brackets > li {
  position: relative;
  padding-left: 2em;
  counter-increment: ol-counter;
}
.c-ol--brackets > li:before {
  content: "(" counter(ol-counter) ")";
  position: absolute;
  top: 0;
  left: 0;
}
.c-ol--brackets > li + li {
  margin-top: 0.4rem;
}

.c-infoSection > * + * {
  margin-top: 2rem;
}
.c-infoSection > * + .c-list {
  margin-top: 0;
}
.c-infoSection > * + .c-infoList {
  margin-top: 1.5rem;
}
.c-infoSection + .c-infoSection {
  margin-top: 3.5rem;
}
.c-infoSection a {
  text-decoration: underline;
}
.c-infoSection__heading {
  font-size: 20px;
  border-bottom: 2px solid var(--border);
}
.c-infoSection__heading + * {
  margin-top: 8px;
}
.c-infoSection__heading + .c-infoList {
  margin-top: 0.75rem;
}
.c-infoSection__lastText {
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
}
.c-infoList > dt + dd {
  margin-top: 0.2rem;
}
.c-infoList > dd {
  padding-left: 1.2em;
}
.c-infoList > dd + dt {
  margin-top: 1.5rem;
}
.c-infoList.is-largeMt > dd + dt {
  margin-top: 3.4rem;
}
.c-infoList--brackets {
  counter-reset: dl-counter;
}
.c-infoList--brackets dt {
  position: relative;
  padding-left: 2em;
  font-weight: normal;
  counter-increment: dl-counter;
}
.c-infoList--brackets dt:before {
  content: "(" counter(dl-counter) ")";
  position: absolute;
  top: 0;
  left: 0;
}
.c-infoList--brackets dd {
  margin-top: 0.4rem;
}
.c-infoList--brackets dd + dt {
  margin-top: 0.4rem;
}
.c-info__date + .c-infoList {
  margin-top: 2rem;
}

.c-ol {
  padding-left: 2em;
}
.c-ol > li {
  list-style: auto;
}
.c-ol > li + li {
  margin-top: 0.4rem;
}
.c-ol--brackets {
  counter-reset: ol-counter;
}
.c-ol--brackets > li {
  position: relative;
  padding-left: 2em;
  counter-increment: ol-counter;
}
.c-ol--brackets > li:before {
  content: "(" counter(ol-counter) ")";
  position: absolute;
  top: 0;
  left: 0;
}
.c-ol--brackets > li + li {
  margin-top: 0.4rem;
}

.c-contactBanner {
  position: relative;
}
.c-contactBanner + .c-lineBanner {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .c-contactBanner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-contactBanner--decorated {
  margin-top: 6rem;
}
@media screen and (min-width: 1025px) {
  .c-contactBanner__wrapper {
    width: 880px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-contactBanner__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.c-contactBanner__wrapper--border {
  border: 2px solid var(--primary);
}
@media screen and (max-width: 768px) {
  .c-contactBanner__wrapper--border {
    border: none;
  }
}
.c-contactBanner__wrapper--decorated {
  background: var(--bg);
  border-top: 1px solid var(--primary);
  padding: 5rem 3rem 3rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-contactBanner__spWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100vw;
    margin: 10px calc(50% - 50vw) 0;
    padding: 0 1.5rem;
  }
}
.c-contactBanner__decorate {
  display: none;
}
.c-contactBanner__imageContainer {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: var(--bg);
  border-top: 2px solid var(--primary);
  z-index: var(--z-index--bg);
}
.c-contactBanner__imageBg {
  position: absolute;
  content: "";
  width: 259px;
  height: 259px;
  background: var(--bg);
  border-radius: 50%;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-contactBanner__image {
  position: absolute;
  width: 120px;
  height: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0 0.5rem 0.75rem 0.5rem;
  border-bottom: 2px solid var(--primary);
  top: -12px;
}
.c-contactBanner__messageContainer {
  display: none;
  position: relative;
  margin-bottom: 1.5rem;
}
.c-contactBanner__message {
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 2.2rem;
  background: var(--bg);
}
@media screen and (max-width: 768px) {
  .c-contactBanner__message {
    font-size: 16px;
  }
}
.c-contactBanner__subMessage {
  text-align: center;
  font-size: 1.8rem;
  background: var(--bg);
}
.c-contactBanner__contactInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-inline: 1.5rem;
  background: var(--white);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-contactBanner__contactInfo {
    background: var(--primary);
    width: calc(75% - 8px);
    -ms-flex-pack: distribute;
    justify-content: space-around;
    border-bottom: 5px solid var(--shadow-dark);
    border-radius: 0.5rem;
    padding-inline: 0 1.2rem;
  }
}
.c-contactBanner__text {
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  padding: 0.5rem 0;
  text-align: center;
  white-space: nowrap;
  position: relative;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c-contactBanner__text {
    font-weight: 400;
    padding: 0;
    font-size: 3.8vw;
    background: none;
    color: var(--yellow);
  }
}
.c-contactBanner__label {
  color: var(--white);
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 50%;
  width: 7rem;
  background: var(--primary);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-contactBanner__label {
    font-weight: 400;
    padding: 0;
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contactBanner__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.c-contactBanner__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .c-contactBanner__phone {
    color: var(--white);
  }
}
.c-contactBanner__phoneIcon {
  width: 5rem;
  height: 5rem;
}
@media screen and (max-width: 768px) {
  .c-contactBanner__phoneIcon {
    width: 18px;
    height: 18px;
  }
}
.c-contactBanner__phoneNumber {
  font-size: 7rem;
}
@media screen and (max-width: 768px) {
  .c-contactBanner__phoneNumber {
    top: -1px;
    line-height: 1;
    font-size: 5.4vw;
  }
}
@media screen and (max-width: 768px) {
  .c-contactBanner__email {
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--tertiary);
    border-bottom: 5px solid var(--shadow);
    border-radius: 1rem;
  }
}
.c-contactBanner__emailLink {
  border: 2.5px solid var(--primary);
  border-radius: 1rem;
  white-space: nowrap;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .c-contactBanner__emailLink {
    border: none;
    padding: 1rem 0 0.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.c-contactBanner__emailIcon {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .c-contactBanner__emailIcon {
    width: 28px;
    height: 20px;
  }
}
.c-contactBanner__emailText {
  color: var(--primary);
  font-weight: 700;
  margin-left: 0.5rem;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .c-contactBanner__emailText {
    color: var(--white);
    font-weight: 400;
    font-size: 3.8vw;
  }
}

.c-serviceMap__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-serviceMap__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-left: 0.5rem;
}
.c-serviceMap__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  .c-serviceMap__stats {
    padding: 0;
  }
}
.c-serviceMap__statsIcon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-serviceMap__statsIcon {
    height: 28px;
  }
}
.c-serviceMap__statsIcon img {
  width: 24px;
  height: 24px;
  margin: auto;
}
.c-serviceMap__statsText {
  margin-left: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-serviceMap__statsText {
    font-size: 2.5rem;
    color: var(--theme01);
    padding-right: 1.5rem;
  }
}
.c-serviceMap__statsCount {
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c-serviceMap__statsCount {
    font-size: 2.5rem;
  }
}
.c-serviceMap__list {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-serviceMap__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
  }
}
.c-serviceMap__item {
  width: calc(33% - 10px);
  height: 76px;
  line-height: 76px;
}
.c-serviceMap__item.disabled {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-serviceMap__img {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    background-size: cover;
    height: 76px;
  }
  .c-serviceMap__item--tokyo .c-serviceMap__img {
    background-image: url(../img/base/area/tokyo.jpg);
  }
  .c-serviceMap__item--kanagawa .c-serviceMap__img {
    background-image: url(../img/base/area/kanagawa.jpg);
  }
  .c-serviceMap__item--aichi .c-serviceMap__img {
    background-image: url(../img/base/area/aichi.jpg);
  }
  .c-serviceMap__item--osaka .c-serviceMap__img {
    background-image: url(../img/base/area/osaka.jpg);
  }
  .c-serviceMap__item--kyoto .c-serviceMap__img {
    background-image: url(../img/base/area/kyoto.jpg);
  }
  .c-serviceMap__item--fukuoka .c-serviceMap__img {
    background-image: url(../img/base/area/fukuoka.jpg);
  }
}
@media screen and (min-width: 1025px) {
  .c-serviceMap__areaWrap {
    margin: 1.5rem;
    margin-bottom: 3rem;
    height: 600px;
    position: relative;
    background-image: url(../img/base/area/img_map.e2f81ef.png);
    background-repeat: no-repeat;
    background-position: center 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-serviceMap__areaWrap {
    margin: 1.5rem;
    margin-bottom: 3rem;
    height: 600px;
    position: relative;
    background-image: url(../img/base/area/img_map.e2f81ef.png);
    background-repeat: no-repeat;
    background-position: center 40px;
  }
}
@media screen and (min-width: 1025px) {
  .c-serviceMap__area {
    position: absolute;
    width: 20%;
  }
  .c-serviceMap__area--hokkaido-tohoku {
    top: 0;
    right: 0;
  }
  .c-serviceMap__area--kanto {
    bottom: 0;
    right: 0;
  }
  .c-serviceMap__area--chubu-koshinetsu {
    top: 0;
    left: 300px;
  }
  .c-serviceMap__area--kansai {
    bottom: 0;
    left: 400px;
    width: 33.33%;
  }
  .c-serviceMap__area--kyushu-okinawa {
    bottom: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-serviceMap__area {
    position: absolute;
    width: 20%;
  }
  .c-serviceMap__area--hokkaido-tohoku {
    top: 0;
    right: 0;
  }
  .c-serviceMap__area--kanto {
    bottom: 0;
    right: 0;
  }
  .c-serviceMap__area--chubu-koshinetsu {
    top: 0;
    left: 300px;
  }
  .c-serviceMap__area--kansai {
    bottom: 0;
    left: 400px;
    width: 33.33%;
  }
  .c-serviceMap__area--kyushu-okinawa {
    bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .c-serviceMap__areaTitle {
    font-size: 2.5rem;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid;
    padding-top: 0.5rem;
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .c-serviceMap__area--hokkaido-tohoku .c-serviceMap__areaTitle {
    color: var(--area-hokkaido-tohoku);
  }
  .c-serviceMap__area--kanto .c-serviceMap__areaTitle {
    color: var(--area-kanto);
  }
  .c-serviceMap__area--chubu-koshinetsu .c-serviceMap__areaTitle {
    color: var(--area-chubu-koshinetsu);
  }
  .c-serviceMap__area--kansai .c-serviceMap__areaTitle {
    color: var(--area-kansai);
  }
  .c-serviceMap__area--chugoku-shikoku .c-serviceMap__areaTitle {
    color: var(--area-chugoku-shikoku);
  }
  .c-serviceMap__area--kyushu-okinawa .c-serviceMap__areaTitle {
    color: var(--area-kyushu-okinawa);
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-serviceMap__areaTitle {
    font-size: 2.5rem;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid;
    padding-top: 0.5rem;
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .c-serviceMap__area--hokkaido-tohoku .c-serviceMap__areaTitle {
    color: var(--area-hokkaido-tohoku);
  }
  .c-serviceMap__area--kanto .c-serviceMap__areaTitle {
    color: var(--area-kanto);
  }
  .c-serviceMap__area--chubu-koshinetsu .c-serviceMap__areaTitle {
    color: var(--area-chubu-koshinetsu);
  }
  .c-serviceMap__area--kansai .c-serviceMap__areaTitle {
    color: var(--area-kansai);
  }
  .c-serviceMap__area--chugoku-shikoku .c-serviceMap__areaTitle {
    color: var(--area-chugoku-shikoku);
  }
  .c-serviceMap__area--kyushu-okinawa .c-serviceMap__areaTitle {
    color: var(--area-kyushu-okinawa);
  }
}
@media screen and (max-width: 768px) {
  .c-serviceMap__areaTitle {
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .c-serviceMap__areaList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-serviceMap__areaList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .c-serviceMap__areaList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 1rem;
  }
}
.c-serviceMap__areaItem--disabled {
  background: var(--border);
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .c-serviceMap__areaItem {
    margin-top: 0.75rem;
    border: 1px solid var(--theme11);
    border-radius: 0.375rem;
    position: relative;
    width: 47%;
  }
  .c-serviceMap__area--kansai .c-serviceMap__areaItem {
    width: 30%;
  }
  .c-serviceMap__areaItem:hover {
    background-color: var(--primary);
  }
  .c-serviceMap__areaItem::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 0.4rem solid transparent;
    border-bottom: 0.4rem solid transparent;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .c-serviceMap__area--hokkaido-tohoku .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-hokkaido-tohoku);
  }
  .c-serviceMap__area--kanto .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-kanto);
  }
  .c-serviceMap__area--chubu-koshinetsu .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-chubu-koshinetsu);
  }
  .c-serviceMap__area--kansai .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-kansai);
  }
  .c-serviceMap__area--chugoku-shikoku .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-chugoku-shikoku);
  }
  .c-serviceMap__area--kyushu-okinawa .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-kyushu-okinawa);
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-serviceMap__areaItem {
    margin-top: 0.75rem;
    border: 1px solid var(--theme11);
    border-radius: 0.375rem;
    position: relative;
    width: 47%;
  }
  .c-serviceMap__area--kansai .c-serviceMap__areaItem {
    width: 30%;
  }
  .c-serviceMap__areaItem:hover {
    background-color: var(--theme01);
    color: var(--white);
  }
  .c-serviceMap__areaItem::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 0.4rem solid transparent;
    border-bottom: 0.4rem solid transparent;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .c-serviceMap__area--hokkaido-tohoku .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-hokkaido-tohoku);
  }
  .c-serviceMap__area--kanto .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-kanto);
  }
  .c-serviceMap__area--chubu-koshinetsu .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-chubu-koshinetsu);
  }
  .c-serviceMap__area--kansai .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-kansai);
  }
  .c-serviceMap__area--chugoku-shikoku .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-chugoku-shikoku);
  }
  .c-serviceMap__area--kyushu-okinawa .c-serviceMap__areaItem::after {
    border-left: 0.5rem solid var(--area-kyushu-okinawa);
  }
}
@media screen and (max-width: 768px) {
  .c-serviceMap__areaItem {
    width: calc(25% - 22.5px);
    font-size: 1.4rem;
    margin-top: 10px;
  }
  .c-serviceMap__areaItem:not(:nth-of-type(4n + 1)) {
    margin-left: 30px;
  }
  .c-serviceMap__areaItem--disabled {
    background-color: transparent;
  }
}
@media screen and (min-width: 1025px) {
  .c-serviceMap__areaLink {
    border: 1px solid #bcc5c7;
    border-radius: 0.375rem;
  }
  .c-serviceMap__areaLink a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    padding-top: 0.25rem;
    display: block;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-serviceMap__areaLink {
    border: 1px solid #bcc5c7;
    border-radius: 0.375rem;
  }
  .c-serviceMap__areaLink a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    padding-top: 0.25rem;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-serviceMap__areaLink a {
    text-decoration: underline;
  }
}

.c-editorList {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 3rem 0;
  margin-left: -1rem;
  margin-right: -1rem;
}
.c-editorList__item {
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .c-editorList {
    gap: 1.5rem 0;
    margin-left: 0;
    margin-right: 0;
  }
  .c-editorList__item {
    padding: 0;
  }
}
.c-editorItem__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
}
.c-editorItem__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 88px;
}
@media screen and (max-width: 768px) {
  .c-editorItem__head {
    min-height: auto;
  }
}
.c-editorItem__img {
  position: relative;
  width: 8rem;
}
.c-editorItem__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.c-editorItem__img + .c-editorItem__text {
  width: calc(100% - 8rem);
  padding-left: 0.5rem;
}
.c-editorItem__text {
  width: 100%;
}
.c-editorItem__name span {
  margin-right: 0.5rem;
}
.c-editorItem__companyName {
  margin-top: 0.5rem;
}
.c-editorItem__companyName a {
  text-decoration: underline;
}
.c-editorItem__supervisionCategory {
  margin-top: 0.5rem;
  letter-spacing: -0.025em;
}
.c-editorItem__supervisionCategory > dt {
  white-space: nowrap;
  font-weight: normal;
}
.c-editorItem__supervisionCategory > dt:after {
  content: "：";
}
.c-editorItem__supervisionCategory > dd > ul > li {
  display: inline-block;
}
.c-editorItem__supervisionCategory > dd > ul > li:not(:last-child) {
  margin-right: 1rem;
}
.c-editorItem__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-top: 0.7rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--gray);
}
.c-editorItem__blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5rem;
}
.c-editorItem__blog > dt {
  white-space: nowrap;
  font-weight: normal;
}
.c-editorItem__blog > dt:after {
  content: "：";
}
.c-editorItem__blog > dd a {
  text-decoration: underline;
  color: var(--primary);
}
.c-editorItem__qualifications {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: 1rem;
  letter-spacing: -0.025em;
}
.c-editorItem__qualifications > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  background: var(--primary);
  color: var(--white);
  white-space: nowrap;
  font-weight: normal;
}
.c-editorItem__qualifications > dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 1rem 0 1rem 1rem;
  background: var(--bg);
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.c-editorItem__qualifications > dd > ul li {
  display: inline-block;
}
.c-editorItem__qualifications > dd > ul li:not(:last-child) {
  margin-right: 0.6rem;
}

.c-overflow {
  margin-top: 1.5rem;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .c-overflow {
    white-space: nowrap;
  }
}

.c-table {
  width: 100%;
}
.c-table th,
.c-table td {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray);
  vertical-align: middle;
}
.c-table th a,
.c-table td a {
  white-space: wrap;
  word-break: word-break;
}
.c-table td {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
@media screen and (max-width: 768px) {
  .c-table td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.c-reviewScore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0.5rem 0;
}
.c-reviewStar {
  position: relative;
  margin-right: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--tertiary);
  line-height: 1;
  font-size: 2rem;
}
.c-reviewStar:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "☆☆☆☆☆";
}
.c-reviewStar__wrap {
  position: relative;
  overflow: hidden;
}
.c-reviewStar__object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 5em;
  text-align: center;
  overflow: hidden;
}
.c-companyInfoReview .c-reviewStar {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .c-companyInfoReview .c-reviewStar {
    font-size: 2.4rem;
  }
}
.c-reviewValue {
  font-size: 2rem;
  font-weight: bold;
  color: var(--tertiary);
}
.c-reviewCount {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-reviewStar {
    font-size: 1.6rem;
  }
  .c-reviewValue {
    font-size: 1.6rem;
  }
  .c-reviewCount {
    font-size: 1.2rem;
    -webkit-transform: translateY(0.1rem);
    transform: translateY(0.1rem);
  }
}

.c-shopReview .c-reviewScore {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-shopReview .c-reviewStar, .c-shopReview .c-reviewValue {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-shopReview .c-reviewStar, .c-shopReview .c-reviewValue {
    font-size: 1.6rem;
  }
}

.c-reviewSummary {
  background-color: var(--bg);
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-reviewSummary {
    padding: 10px;
  }
}
.c-reviewSummary__title {
  font-size: 2rem;
  font-size: 17px;
}
.c-reviewSummary__ratingWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 6px;
}
.c-reviewSummary__starRatingItem {
  position: absolute;
  overflow: hidden;
  font-size: 2.5rem;
}
.c-reviewSummary__score {
  color: var(--primary);
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: -0.05em;
}
.c-reviewSummary__image {
  width: 22px;
  height: 22px;
}
.c-reviewSummary__textWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-reviewSummary__textWrapper {
    font-size: 1.6rem;
    color: var(--ink);
    font-weight: bold;
  }
}
.c-reviewSummary__reviewCount {
  white-space: nowrap;
  font-size: 1.7rem;
  color: var(--gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--gray);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-reviewSummary__reviewCount {
    font-size: 2rem;
    margin: 0;
  }
}
.c-reviewSummary__mobile {
  display: block;
}
@media screen and (max-width: 768px) {
  .c-reviewSummary__mobile {
    display: none;
  }
}
.c-reviewSummary__note {
  text-indent: 1rem;
  font-size: 1rem;
  margin-top: 4px;
}

.c-reviewCard {
  width: 100%;
  border: 1px solid #bcc5c7;
  border-radius: 0.5rem;
  padding: 1rem;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}
.p-about .c-reviewCard {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .c-reviewCard {
    width: 100%;
    padding: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.c-reviewCard--full-width {
  width: 100% !important;
}
.c-reviewCard__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-reviewCard__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-reviewCard__header--isCompany {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-reviewCard__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: auto;
}
.c-reviewCard__starRating {
  position: relative;
  display: inline-block;
  font-size: 2rem;
}
.c-reviewCard__starRatingItem {
  position: absolute;
  overflow: hidden;
  width: 100%;
  font-size: 2rem;
}
.c-reviewCard__score {
  color: var(--tertiary);
  font-weight: bold;
  margin-left: 0.5rem;
  font-size: 2rem;
}
.c-reviewCard__smallCategoryTag {
  background: var(--pale-green);
  color: var(--white);
  padding: 0.1rem 0.25rem;
  vertical-align: middle;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  text-align: right;
  font-size: 1.2rem;
}
@media screen and (max-width: 384px) {
  .c-reviewCard__smallCategoryTag {
    margin-left: 0;
  }
}
.c-reviewCard__company {
  margin-top: 0.5rem;
  margin-left: auto;
  text-align: right;
  font-size: 1.2rem;
}
.c-reviewCard__company p {
  margin-bottom: 0.2rem;
}
.c-reviewCard__companyText {
  color: var(--gray);
}
.c-reviewCard__reviewer {
  margin-right: 2rem;
}
.c-reviewCard__info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1rem;
}
.c-reviewCard__location {
  font-size: 1.2rem;
}
.c-reviewCard__date {
  white-space: nowrap;
  width: 100%;
  font-size: 1.25rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-reviewCard__date {
    display: block;
    margin-top: 0;
  }
}
.c-reviewCard__comment {
  margin-top: 0.3rem;
}
.c-reviewCard__comment .relative .overflow-y-hidden {
  height: auto;
}
.c-reviewCard__comment .relative .gradation-filter {
  display: none;
}
.c-reviewCard__comment .relative p {
  margin: 0;
  font-size: 1.4rem;
}
.c-reviewCard__comment .flex {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.c-reviewCard .c-reviewStar {
  font-size: 2rem;
}

.c-checkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.c-checkList--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-checkList--pc {
    display: none;
  }
}
.c-checkList--sp {
  display: none;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .c-checkList--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-checkList__item {
  width: calc(50% - 15px);
  padding: 18px 30px;
  position: relative;
  font-weight: 700;
  overflow-wrap: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-checkList__item.add-border {
  border-bottom: 1px dashed var(--primary);
}
@media screen and (max-width: 768px) {
  .c-checkList__item {
    width: 100%;
    padding: 8px 0 8px 30px;
  }
  .c-checkList__item:not(:last-child) {
    border-bottom: 1px dashed var(--primary);
  }
}
.c-checkList__item:not(:nth-of-type(odd)) {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .c-checkList__item:not(:nth-of-type(odd)) {
    margin-left: 0;
  }
}
.c-checkList__item:nth-of-type(n + 3) {
  border-top: 1px dashed var(--primary);
}
@media screen and (max-width: 768px) {
  .c-checkList__item:nth-of-type(n + 3) {
    border-top: none;
  }
}
.c-checkList__item::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../img/base/ico_check.png) center/contain no-repeat;
}
.c-checkList__annotation {
  font-size: 10px;
  vertical-align: text-top;
  font-weight: 400;
}
.c-checkList__annotationMessage {
  font-size: 10px;
  margin-top: 5px;
}

.c-checkListService {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-top: 1px solid var(--tertiary);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.c-checkListService--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-checkListService--pc {
    display: none;
  }
}
.c-checkListService--sp {
  display: none;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .c-checkListService--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-checkListService__item {
  width: calc(50% - 15px);
  min-height: 55px;
  padding: 1.5rem 0.25rem 1.5rem 3rem;
  position: relative;
  overflow-wrap: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px dashed var(--tertiary);
}
@media screen and (max-width: 768px) {
  .c-checkListService__item {
    width: 100%;
    padding: 8px 0 8px 30px;
  }
  .c-checkListService__item:not(:last-child) {
    border-bottom: 1px dashed var(--primary);
  }
}
.c-checkListService__item:not(:nth-of-type(odd)) {
  margin-left: 3rem;
}
@media screen and (max-width: 768px) {
  .c-checkListService__item:not(:nth-of-type(odd)) {
    margin-left: 0;
  }
}
.c-checkListService__item::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background: url(../img/base/ico/ico_check.svg) center/contain no-repeat;
}
.c-checkListService__annotation {
  font-size: 10px;
  vertical-align: text-top;
  font-weight: 400;
}
.c-checkListService__annotationMessage {
  font-size: 10px;
  margin-top: 5px;
}

.c-lineBanner {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.c-lineBanner a {
  display: block;
}
.c-lineBanner img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-lineBanner {
    max-width: 393px;
  }
}

.c-publish {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.c-publish__ttls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  border-bottom: 2px solid #ff9100;
  padding-bottom: 1rem;
  padding-left: 0.5rem;
}
.c-publish__ttl {
  font-size: 2rem;
  font-weight: 700;
}
.c-publish__icon {
  width: 2rem;
  height: 2rem;
}
.c-publish__icon > img {
  width: 100%;
}
.c-publish__content {
  margin-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-publish__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.c-publish__txt {
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-publish__btn {
  display: inline-block;
  font-size: 1.4rem;
  background: #fffaec;
  border: 1px solid #ff9100;
  padding: 1rem 2rem;
  font-weight: 700;
  color: #ff9102;
  border-radius: 10px;
  min-width: 26rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-publish__btn {
    padding: 2rem;
    width: 100%;
  }
}
.c-publish__btn::after {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #ff9100;
  border-right: 2px solid #ff9100;
  top: 50%;
  right: 1rem;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-sitemapSection + .c-sitemapSection {
  margin-top: 5rem;
}
.c-sitemapSection__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: var(--bg-gray);
}
.c-sitemapSection__title > i {
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-sitemapSection__title > i + span {
  width: calc(100% - (25px + 1rem));
}
.c-sitemapSection__wrap {
  padding: 1.5rem 3rem 0 3rem;
}
@media screen and (max-width: 768px) {
  .c-sitemapSection + .c-sitemapSection {
    margin-top: 0.75rem;
  }
  .c-sitemapSection__title.js-toggle {
    position: relative;
    cursor: pointer;
  }
  .c-sitemapSection__title.js-toggle:before, .c-sitemapSection__title.js-toggle:after {
    content: "";
    position: absolute;
    top: 0;
    right: 1.5rem;
    bottom: 0;
    width: 15px;
    height: 2px;
    margin: auto 0;
    background: var(--gray);
  }
  .c-sitemapSection__title.js-toggle:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .c-sitemapSection__title.js-toggle + .c-sitemapSection__wrap {
    max-height: 0;
    padding: 0 1rem;
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
    overflow: hidden;
  }
  .c-sitemapSection__title.js-toggle + .c-sitemapSection__wrap .c-sitemapList {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .c-sitemapSection__title.js-toggle + .c-sitemapSection__wrap .c-btn {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  .c-sitemapSection__wrap {
    padding: 1.5rem 0 3rem 0;
  }
}
.c-sitemapSection.active .c-sitemapSection__title:after {
  opacity: 0;
}
.c-sitemapList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-sitemapList > li {
  width: 25%;
  padding: 1.25rem 1rem;
}
.c-sitemapList > li a {
  font-size: 1.2rem;
  -webkit-transition: none;
  transition: none;
  color: var(--gray);
}
.c-sitemapList > li a:hover {
  color: var(--primary);
}
.c-sitemapList + .c-btn {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .c-sitemapList > li {
    width: 50%;
    padding: 1.25rem 0.5rem;
  }
  .c-sitemapList + .c-btn {
    margin-top: 1rem;
  }
}

.c-pageLinkList {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.c-pageLinkList__item {
  width: 50%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.c-pageLinkList__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px dotted var(--border);
}
.c-pageLinkList__item a svg {
  width: 14px;
  aspect-ratio: 1/1;
}

.c-faqSection + .c-faqSection {
  margin-top: 3rem;
}
.c-faqSection__title {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.c-faqSection__title + * {
  margin-top: 3rem;
}
.c-faqList__item {
  border: 2px solid var(--bg-gray);
}
.c-faqList__item + div {
  margin-top: 1rem;
}
.c-faqList__item > dt,
.c-faqList__item > dd {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-faqList__item > dt:before,
.c-faqList__item > dd:before {
  position: absolute;
  top: 4px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  content: "";
  width: 53px;
  height: 100%;
  font-size: 3rem;
  font-weight: bold;
}
.c-faqList__item > dt {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 55px;
  padding: 1.725rem 4rem 1.725rem 53px;
  background: var(--bg-gray);
  font-weight: normal;
}
.c-faqList__item > dt:before {
  content: "Q";
  color: var(--gray);
}
.c-faqList__item > dt i {
  display: inline-block;
}
.c-faqList__item > dt i:before, .c-faqList__item > dt i:after {
  content: "";
  position: absolute;
  top: 26px;
  right: 1.5rem;
  width: 15px;
  height: 2px;
  margin: auto 0;
  background: var(--gray);
}
.c-faqList__item > dt i:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.c-faqList__item > dd {
  padding-left: 53px;
  background: var(--white);
}
.c-faqList__item > dd:before {
  content: "A";
  color: var(--primary);
}
.c-faqList__item > dd > div {
  width: 100%;
  padding: 1.5rem 2rem 1.5rem 0;
}
.c-faqList__item > dd > div a {
  text-decoration: underline;
}
.c-faqList__item.active {
  border-color: var(--bg);
}
.c-faqList__item.active > dt {
  background: var(--bg);
}
.c-faqList__item.active > dt i:after {
  opacity: 0;
}

.c-aboutPageHeading {
  padding-top: 1rem;
}
.c-aboutPageHeading:before {
  display: block;
  content: "";
  width: 100%;
  height: 53px;
  background-image: url(../img/base/bg_about_heading.png);
  background-position: left;
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.c-aboutPageHeading + .c-aboutSection {
  padding-top: 0;
}
.c-aboutPageHeading__title {
  padding: 2rem 0 8.7rem 0;
  background-color: var(--primary);
}
.c-aboutPageHeading__title img + span {
  margin-top: 2rem;
}
.c-aboutPageHeading__title span {
  display: block;
  margin: auto;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .c-aboutPageHeading__title {
    padding: 1rem 0 8.3rem 0;
  }
  .c-aboutPageHeading__title img + span {
    margin-top: 1rem;
  }
  .c-aboutPageHeading__title span {
    font-size: 2rem;
  }
}
.c-aboutPageService {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 3rem;
  border: 2px solid var(--black);
  border-radius: 2rem;
  background: var(--white);
  line-height: 1.8;
}
.c-aboutPageService + * {
  margin-top: 2rem;
}
.c-aboutPageService__title {
  padding-bottom: 1rem;
  font-size: 1.6rem;
  border-bottom: 2px dashed var(--black);
}
.c-aboutPageService p {
  padding: 2rem 1rem 0;
  font-size: 1.4rem;
}
.c-aboutPageService p i {
  font-style: normal;
  background: var(--marker-yellow);
}
.c-aboutPageService.is-overlaid {
  margin-bottom: -6.3rem;
  -webkit-transform: translateY(-6.3rem);
  transform: translateY(-6.3rem);
}
@media screen and (max-width: 768px) {
  .c-aboutPageService {
    margin-bottom: -7.8rem;
    padding: 1.5rem 1.5rem;
  }
  .c-aboutPageService + * {
    margin-top: 5rem;
  }
  .c-aboutPageService__title {
    font-size: 1.4rem;
  }
  .c-aboutPageService p {
    padding: 1rem 0.5rem 0;
  }
  .c-aboutPageService.is-overlaid {
    margin-bottom: -7.8rem;
    -webkit-transform: translateY(-7.8rem);
    transform: translateY(-7.8rem);
  }
}
.c-aboutPageSatisfaction {
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.c-aboutPageSatisfaction__title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: var(--z-index--contents);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 95px;
  height: 95px;
  margin: auto 0;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
}
.c-aboutPageSatisfaction__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 5rem;
  padding: 1.5rem 1.5rem 1.5rem 6rem;
  background: var(--white);
  border-radius: 2rem;
  -webkit-box-shadow: 2px 2px 0 4px rgba(255, 244, 212, 0.6);
  box-shadow: 2px 2px 0 4px rgba(255, 244, 212, 0.6);
}
.c-aboutPageSatisfaction__content img {
  width: 350px;
  height: auto;
}
.c-aboutPageSatisfaction__content > div {
  width: calc(100% - 350px);
  padding-left: 3rem;
}
.c-aboutPageSatisfaction__content > div a {
  -webkit-transform: none;
  transform: none;
  text-decoration: underline;
}
.c-aboutPageSatisfaction__content > div a:hover {
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .c-aboutPageSatisfaction {
    max-width: 100%;
  }
  .c-aboutPageSatisfaction__title {
    position: absolute;
    top: -16.5px;
    bottom: auto;
    right: 0;
    width: 190px;
    height: 33px;
    margin: 0 auto;
    border-radius: 9999px;
  }
  .c-aboutPageSatisfaction__content {
    display: block;
    margin-left: 0;
    padding: 3rem 3.5rem 1.5rem;
    text-align: center;
  }
  .c-aboutPageSatisfaction__content img {
    width: auto;
    max-width: 100%;
  }
  .c-aboutPageSatisfaction__content img + * {
    margin-top: 1rem;
  }
  .c-aboutPageSatisfaction__content > div {
    width: 100%;
    padding-left: 0;
  }
  .c-aboutPageSatisfaction__content > div a {
    -webkit-transform: none;
    transform: none;
    text-decoration: underline;
  }
  .c-aboutPageSatisfaction__content > div a:hover {
    color: var(--primary);
  }
}
.c-aboutPageFlow {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.c-aboutPageFlow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-aboutPageFlow__item {
  width: 32%;
  padding: 1.5rem 2rem 4rem;
  border: 2px solid var(--black);
  border-radius: 2rem;
  background: var(--bg);
}
.c-aboutPageFlow__itemHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-aboutPageFlow__itemHeading + * {
  margin-top: 1rem;
}
.c-aboutPageFlow__itemNumber {
  position: relative;
  width: 50px;
  height: 50px;
  padding: 1rem 0 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--primary);
}
.c-aboutPageFlow__itemNumber:before {
  position: absolute;
  top: 18px;
  right: -9px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--primary);
  border-right: 0;
}
.c-aboutPageFlow__itemNumber span {
  display: block;
  line-height: 1;
}
.c-aboutPageFlow__itemNumber span:last-of-type {
  margin-top: 2px;
  color: var(--white);
}
.c-aboutPageFlow__itemTitle {
  width: calc(100% - 50px);
  margin-left: 2rem;
}
.c-aboutPageFlow__item p {
  font-size: 1.4rem;
  line-height: normal;
}
.c-aboutPageFlow__item p + p {
  margin-top: 1rem;
}
.c-aboutPageFlow__item p small {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .c-aboutPageFlow__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .c-aboutPageFlow__item {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem;
  }
  .c-aboutPageFlow__item + li {
    margin-top: 1.5rem;
  }
}

.c-aboutSection {
  padding-top: 3rem;
}
.c-aboutSection + .c-aboutSection {
  padding-top: 0;
}
.c-aboutSection .container {
  padding-bottom: 3rem;
  background: var(--white);
}
.c-aboutSection.is-aboutFlow {
  padding-top: 3rem;
}
.c-aboutSection.is-flow {
  padding-bottom: 0;
}
.c-aboutSection.is-flow .container {
  padding-bottom: 3rem;
}
.c-aboutSection.is-category .container {
  max-width: 1000px;
  margin-inline: auto;
}
.c-aboutSection__cta {
  margin-top: 4rem;
}
.c-aboutSection__cta p {
  margin-top: 1rem;
  line-height: 1.625;
}
.c-aboutSection__cta .c-cta {
  margin-top: 1.5rem;
}

.c-commonUsageFlowList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: var(--max);
  padding: 0 2.5rem;
  margin-inline: auto;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-commonUsageFlowList {
    display: block;
    padding: 0;
  }
}
.c-commonUsageFlow__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--white);
  padding-top: 3rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  margin-top: 2.5rem;
}
.c-commonUsageFlow__item:not(:last-child) {
  border-right: 2px dashed var(--ink);
}
@media screen and (max-width: 768px) {
  .c-commonUsageFlow__item {
    display: block;
    margin-top: 1.5rem;
  }
  .c-commonUsageFlow__item + li {
    margin-top: 3rem;
  }
  .c-commonUsageFlow__item:not(:last-child) {
    border-bottom: 2px dashed var(--ink);
    border-right: none;
  }
  .c-commonUsageFlow__item:first-child {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
  .c-commonUsageFlow__item:last-child {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}
.c-commonUsageFlow__item:not(:last-of-type)::after {
  content: "";
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid var(--ink);
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: -11%;
  -webkit-transform: rotate(270deg) translateY(-50%);
  transform: rotate(270deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-commonUsageFlow__item:not(:last-of-type)::after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid var(--ink);
    bottom: -10px;
    right: 50%;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.c-commonUsageFlow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-commonUsageFlow__step {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-commonUsageFlow__stepInner {
    width: 55%;
  }
}
.c-commonUsageFlow__stepNumber {
  position: absolute;
  width: 90px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.c-commonUsageFlow__image {
  margin-inline: 5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-commonUsageFlow__image {
    width: 45%;
    margin: 0;
  }
}
.c-commonUsageFlow__image > img {
  width: 100%;
  height: auto;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-commonUsageFlow__title {
  text-align: center;
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .c-commonUsageFlow__title {
    text-align: left;
  }
  .c-commonUsageFlow__title + * {
    margin-top: 0.5rem;
  }
}
.c-commonUsageFlow__description {
  padding: 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-commonUsageFlow__description {
    display: block;
    padding: 0;
  }
}

.c-serviceReferencePrice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
}
.c-serviceReferencePrice__itemTitle {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 30%;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .c-serviceReferencePrice__itemTitle {
    font-size: 14px;
    width: 35%;
  }
}
.c-serviceReferencePrice__itemPrice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  background: var(--light-gray);
  font-weight: 700;
  font-size: 20px;
  padding: 0 20px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .c-serviceReferencePrice__itemPrice {
    font-size: 18px;
    padding: 0 10px;
    width: 65%;
  }
  .c-serviceReferencePrice__itemPrice span {
    font-size: 1.4rem;
  }
}

.c-exampleCard {
  width: 100%;
  border: 1px solid #bcc5c7;
  border-radius: 0.5rem;
  padding: 1rem;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  width: calc(50% - 15px);
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 768px) {
  .c-exampleCard {
    width: 100%;
  }
}
.c-exampleCard--full-width {
  width: 100% !important;
}
.c-exampleCard__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-bottom: 1px solid var(--primary);
}
.c-exampleCard__itemTitle {
  padding-left: 25.49px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 7.5px;
}
.c-exampleCard__itemTitle::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 17.69px;
  height: 21.75px;
  background: url(../img/base/ico/ico_example_or.png) 50%/contain no-repeat;
}
.c-exampleCard__itemArea {
  font-size: 12px;
}
.c-exampleCard__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 14px;
}
.c-exampleCard__smallCategoryTag {
  background: var(--pale-green);
  color: var(--white);
  padding: 0.1rem 0.25rem;
  vertical-align: middle;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
}
.c-exampleCard__price {
  font-size: 18px;
  font-weight: 700;
  margin-left: 15px;
}
.c-exampleCard__comment {
  margin-top: 6px;
}
.c-exampleCardList {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-exampleCardList {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
}

.c-semicirculHeading__title span {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.c-semicirculHeading__ico {
  position: relative;
  z-index: var(--z-index--contents);
}
.c-semicirculHeading__ico:before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: var(--z-index--bg);
  content: "";
  width: 100%;
  height: 48px;
  background: var(--white);
}
.c-semicirculHeading__ico img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.c-semicirculHeading__ico.is-bgc:before {
  background: var(--bg);
}
.c-semicirculHeading__ico.is-bgc + .c-semicirculHeading__text {
  background: var(--bg);
}
.c-semicirculHeading__ico.is-border:before {
  border-top: 3px solid var(--primary);
}
.c-semicirculHeading__text {
  padding-top: 1rem;
  background: var(--white);
}
.c-semicirculHeading + * {
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .c-semicirculHeading {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (max-width: 500px) {
  .c-semicirculHeading__ico:before {
    display: none;
  }
}

.c-serviceCateogoryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem 2.5rem;
}
.c-serviceCateogoryList + .c-serviceCateogoryList {
  margin-top: 3rem;
}
.c-serviceCateogoryList.js-serviceModal {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .c-serviceCateogoryList {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    gap: 0;
  }
  .c-serviceCateogoryList + .c-serviceCateogoryList {
    margin-top: 0;
    display: none !important;
  }
}
.c-serviceCateogoryItem {
  width: calc((100% - 5rem) / 3);
}
.c-serviceCateogoryItem__title,
.c-serviceCateogoryItem figure {
  position: relative;
}
.c-serviceCateogoryItem__title > img,
.c-serviceCateogoryItem figure > img {
  width: 100%;
  height: auto;
}
.c-serviceCateogoryItem__title figcaption,
.c-serviceCateogoryItem figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0.25rem 0.5rem;
  background: var(--bg);
  opacity: 0.8;
}
.c-serviceCateogoryItem__title i,
.c-serviceCateogoryItem figure i {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
}
.c-serviceCateogoryItem__title i > img,
.c-serviceCateogoryItem figure i > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.c-serviceCateogoryItem__title span,
.c-serviceCateogoryItem figure span {
  padding-left: 0.5rem;
  font-size: 1.4rem;
  font-weight: bold;
}
.c-serviceCateogoryItem__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  background: var(--bg);
}
.c-serviceCateogoryItem__title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.c-serviceCateogoryItem__toggleWrap {
  padding: 0 1rem;
}
.c-serviceCateogoryItem__toggleWrap ul {
  gap: 1rem;
  margin-top: 1.5rem;
}
.c-serviceCateogoryItem__toggleWrap ul > li {
  width: 100%;
}
.c-serviceCateogoryItem__toggleWrap ul > li a {
  -webkit-transition: none;
  transition: none;
  color: var(--gray);
}
.c-serviceCateogoryItem__toggleWrap ul > li a:hover {
  color: var(--primary);
}
.c-serviceCateogoryItem__toggleWrap ul.is-2col > li {
  width: calc(50% - 0.5rem);
}
@media screen and (max-width: 768px) {
  .c-serviceCateogoryItem {
    width: 50%;
    border-bottom: 1px solid var(--border);
  }
  .c-serviceCateogoryItem:nth-child(-n+2) {
    border-top: 1px solid var(--border);
  }
  .c-serviceCateogoryItem:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .c-serviceCateogoryItem__title > img,
  .c-serviceCateogoryItem figure > img {
    display: none;
  }
  .c-serviceCateogoryItem__title figcaption,
  .c-serviceCateogoryItem figure figcaption {
    position: relative;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: static;
    min-height: 64px;
    padding: 0 3rem 0 0.5rem;
    background: transparent;
    cursor: pointer;
  }
  .c-serviceCateogoryItem__title figcaption:before,
  .c-serviceCateogoryItem figure figcaption:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    content: "";
    width: 12px;
    height: 12px;
    margin: auto 0;
    background-image: url(../img/base/ico/ico_arrow_down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .c-serviceCateogoryItem__title span,
  .c-serviceCateogoryItem figure span {
    padding-left: 1rem;
    font-weight: normal;
  }
  .c-serviceCateogoryItem__toggleWrap {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .c-serviceCateogoryItem__toggleWrap ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 1.5rem 1rem;
    margin-top: 0;
    text-align: left;
  }
  .c-serviceCateogoryItem__toggleWrap ul > li {
    width: calc(50% - 0.5rem);
  }
  .c-serviceCateogoryItem__toggleWrap ul > li a {
    color: var(--black);
  }
  .active .c-serviceCateogoryItem__toggleWrap {
    z-index: var(--z-index--contents);
  }
  .c-serviceCateogoryItem__listLink {
    margin-top: 1.5rem;
  }
  .c-serviceCateogoryItem__listLink a {
    padding: 0.1rem 2.3rem 0.1rem 0;
    color: var(--gray);
    background-image: url(../img/base/ico/ico_circle_arrow_next.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 1.8rem;
  }
  .c-serviceCateogoryItem__title {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-height: 64px;
    padding: 0 3rem 0 0.5rem;
    background: transparent;
    background-image: url(../img/base/ico/ico_arrow_down.svg);
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    cursor: pointer;
  }
  .c-serviceCateogoryItem__title a {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0;
    pointer-events: none;
  }
  .active .c-serviceCateogoryItem__title {
    background: var(--bg);
  }
  .c-serviceCateogoryItem.active .js-toggleServiceTarget:before {
    content: "";
    position: absolute;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    width: 50%;
    height: 1px;
    background: var(--border);
  }
  .c-serviceCateogoryItem.active .js-toggleServiceTarget__wrap {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    opacity: 1;
  }
  .c-serviceCateogoryItem.active .js-toggleServiceTarget__wrap ul {
    width: 100%;
  }
  .c-serviceCateogoryItem.active__title,
  .c-serviceCateogoryItem.active figure {
    background: var(--bg);
  }
  .c-serviceCateogoryItem.active__title figcaption span,
  .c-serviceCateogoryItem.active figure figcaption span {
    font-weight: bold;
  }
  .c-serviceCateogoryItem.active__title figcaption:before,
  .c-serviceCateogoryItem.active figure figcaption:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .c-serviceCateogoryItem.active__title {
    display: none;
    background: var(--bg);
  }
  .c-serviceCateogoryItem:nth-child(odd).active .js-toggleServiceTarget:before {
    right: 0;
  }
  .c-serviceCateogoryItem:nth-child(even).active .js-toggleServiceTarget:before {
    left: 0;
  }
}

.c-categoryConductingWire {
  margin-top: 3rem;
}
.c-categoryConductingWire p {
  color: var(--primary);
}
.c-categoryConductingWire p + * {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .c-categoryConductingWire p {
    font-size: 1.4rem;
  }
}

.c-reviewsList {
  width: 100%;
  max-width: 1000px;
  gap: 2rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.c-reviewsList > li {
  width: calc((100% - 2rem) / 2);
}
.c-reviewsList + .c-note {
  max-width: 1000px;
  margin-top: 1rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-reviewsList {
    gap: 1.5rem;
    padding-left: 0;
    padding-right: 0;
  }
  .c-reviewsList > li {
    width: 100%;
  }
  .c-reviewsList + .c-note {
    padding-left: 0;
    padding-right: 0;
  }
}
.is-fullSize .c-reviewsList > li {
  width: 100%;
}

.c-note {
  margin-inline: auto;
}

.c-pickupServiceList {
  gap: 3rem 30.8571428571px;
}
.c-pickupServiceList__item {
  width: 98px;
}
.c-pickupServiceList__item figure > div {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  overflow: hidden;
}
.c-pickupServiceList__item figure > div > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.c-pickupServiceList__item figure figcaption {
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .c-pickupServiceList {
    gap: 2rem 1rem;
  }
  .c-pickupServiceList__item {
    width: calc((100% - 3rem) / 4);
  }
  .c-pickupServiceList__item figure figcaption {
    font-size: 1rem;
  }
}

.c-semicirculDottedHeading {
  position: relative;
  padding-top: 36px;
}
.c-semicirculDottedHeading__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-index--contents);
  margin: auto;
  text-align: center;
}
.c-semicirculDottedHeading__bg img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.c-semicirculDottedHeading__title {
  position: relative;
  height: 190px;
  padding-top: 5rem;
  background: var(--primary);
  border-top: 4px solid var(--black);
}
.c-semicirculDottedHeading__title:after {
  position: absolute;
  top: 0.45rem;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: -webkit-repeating-linear-gradient(left, var(--tertiary) 0, var(--tertiary) 7px, transparent 7px, transparent 14px);
  background: repeating-linear-gradient(to right, var(--tertiary) 0, var(--tertiary) 7px, transparent 7px, transparent 14px);
}
.c-semicirculDottedHeading__title span {
  position: relative;
  z-index: var(--z-index--contents);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.c-semicirculDottedHeading__title span i {
  display: block;
  font-style: normal;
  color: var(--white);
  font-size: 2.4rem;
}
.c-semicirculDottedHeading__title span i:first-child {
  font-size: 1.6rem;
}
.c-semicirculDottedHeading__title span i:first-child + i {
  margin-top: 0.5rem;
}
.c-semicirculDottedHeading + * {
  padding-top: 2rem;
}
.c-semicirculDottedHeading.is-bgc .c-semicirculDottedHeading__title {
  background: var(--bg);
}
.c-semicirculDottedHeading.is-bgc .c-semicirculDottedHeading__title span i {
  color: var(--ink);
}
@media screen and (max-width: 768px) {
  .c-semicirculDottedHeading {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-top: 7.2916666667vw;
  }
  .c-semicirculDottedHeading__bg img {
    max-width: 100%;
  }
  .c-semicirculDottedHeading__title {
    height: 140px;
    padding-top: 3.5rem;
  }
  .c-semicirculDottedHeading__title span i {
    font-size: 2rem;
  }
  .c-semicirculDottedHeading__title span i:first-child {
    font-size: 1.4rem;
  }
}

.c-libraryPostList {
  gap: 1.5rem 1rem;
}
.c-libraryPostItem {
  width: calc((100% - 3rem) / 4);
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5em;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}
.c-libraryPostItem a {
  -webkit-transition: none;
  transition: none;
}
.c-libraryPostItem a:hover .c-libraryPostItem__title {
  color: var(--primary);
}
.c-libraryPostItem__thumb {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: var(--border-light);
  overflow: hidden;
}
.c-libraryPostItem__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.c-libraryPostItem__text {
  padding: 0.5rem 0;
}
.c-libraryPostItem__text .c-categoryList + * {
  margin-top: 0.5rem;
}
.c-libraryPostItem__text time {
  display: block;
  text-align: right;
  line-height: 1;
  color: var(--gray);
  font-size: 1.125rem;
}
.c-libraryPostItem__title {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-libraryPostItem {
    width: calc((100% - 1rem) / 2);
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 0.5em;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  }
  .c-libraryPostItem a {
    -webkit-transition: none;
    transition: none;
  }
  .c-libraryPostItem a:hover .c-libraryPostItem__title {
    color: var(--primary);
  }
  .c-libraryPostItem__thumb {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: var(--border-light);
    overflow: hidden;
  }
  .c-libraryPostItem__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  .c-libraryPostItem__text {
    padding: 0.5rem 0;
  }
  .c-libraryPostItem__text .c-categoryList + * {
    margin-top: 0.5rem;
  }
  .c-libraryPostItem__text time {
    display: block;
    text-align: right;
    line-height: 1;
    color: var(--gray);
    font-size: 1.125rem;
  }
  .c-libraryPostItem__title {
    font-size: 1.4rem;
  }
}

.c-categoryList > li span {
  padding: 0.1rem 0.25rem;
  color: var(--white);
  background: var(--pale-green);
}

.c-gyoushaPostList {
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-gyoushaPostList {
    gap: 1.5rem 0;
  }
}

.c-floatBox {
  position: relative;
  z-index: var(--z-index--contents);
  width: 100%;
  max-width: 1000px;
  margin-bottom: -6.5rem;
  margin-inline: auto;
  padding: 3rem 2.5rem;
  -webkit-box-shadow: 2px 2px 0 5px var(--secondary);
  box-shadow: 2px 2px 0 5px var(--secondary);
  border-radius: 1rem;
  background: var(--white);
  -webkit-transform: translateY(-6.5rem);
  transform: translateY(-6.5rem);
}
.c-floatBox .c-btn {
  max-width: 400px;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .c-floatBox {
    margin-bottom: -4.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
    -webkit-transform: translateY(-4.5rem);
    transform: translateY(-4.5rem);
  }
  .c-floatBox .c-btn {
    max-width: 100%;
    margin-top: 1.5rem;
  }
}

.c-listedCompany {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-listedCompany img {
  width: 41.4px;
  height: auto;
}
.c-listedCompany__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 41.4px);
  padding-left: 1.5rem;
  font-size: 1.4rem;
}
.c-listedCompany__info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-listedCompany__info dl dt + dd {
  margin-left: 1rem;
}
.c-listedCompany__info dl + p {
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .c-listedCompany {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .c-listedCompany img {
    width: 50.4px;
  }
  .c-listedCompany__info {
    display: block;
    width: calc(100% - 50.4px);
    font-size: 1.2rem;
  }
  .c-listedCompany__info dl {
    display: block;
  }
  .c-listedCompany__info dl dt + dd {
    margin: 0.5rem 0 0 0;
  }
  .c-listedCompany__info dl + p {
    margin: 0.5em 0 0 0;
  }
  .c-listedCompany__info p {
    font-size: 1.125rem;
  }
}

.c-copyright {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
.c-copyright img {
  width: 12rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-copyright {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (max-width: 374px) {
  .c-copyright {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.c-footerSitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--gray);
}
.c-footerSitemap__title {
  padding: 0.78rem 1rem;
  border-bottom: 2px solid var(--gray);
}
.c-footerSitemap__title + .c-footerSitemap__list {
  margin-top: 1rem;
}
.c-footerSitemap__list {
  padding: 0 1rem;
}
.c-footerSitemap__list + .c-footerSitemap__title {
  margin-top: 2.5rem;
}
.c-footerSitemap__list > li {
  margin-top: 0.5rem;
  line-height: normal;
}
.c-footerSitemap__list > li a {
  -webkit-transition: none;
  transition: none;
}
.c-footerSitemap__single {
  width: 25%;
}
.c-footerSitemap__double {
  width: 66.6666666667%;
}
.c-footerSitemap__double > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-footerSitemap__double > ul > li {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .c-footerSitemap {
    display: block;
  }
  .c-footerSitemap__title {
    padding-left: 0;
    padding-right: 0;
  }
  .c-footerSitemap__title + .c-footerSitemap__list {
    margin-top: 1.5rem;
  }
  .c-footerSitemap__list {
    display: table;
    padding: 0;
    border-collapse: collapse;
  }
  .c-footerSitemap__list > li {
    display: table-cell;
    min-height: 5rem;
    margin-top: 0;
    border-bottom: 1px solid var(--gray);
    border-right: 1px solid var(--gray);
  }
  .c-footerSitemap__list > li:nth-child(-n+2) {
    border-top: 1px solid var(--gray);
  }
  .c-footerSitemap__list > li:nth-child(odd) {
    border-left: 1px solid var(--gray);
  }
  .c-footerSitemap__list > li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 0.5rem 1rem;
    background-color: var(--white);
  }
  .c-footerSitemap__single {
    width: 100%;
  }
  .c-footerSitemap__single > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .c-footerSitemap__single > ul > li {
    width: 50%;
  }
  .c-footerSitemap__double {
    width: 100%;
  }
  .c-footerSitemap__double + .c-footerSitemap__single {
    margin-top: 2.5rem;
  }
}
.c-footerAboutLink {
  color: var(--gray);
}
.c-footerAboutLink li {
  line-height: normal;
}
.c-footerAboutLink__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem 0;
}
.c-footerAboutLink__about + .c-footerAboutLink__other {
  margin-top: 3rem;
}
.c-footerAboutLink__about > li {
  width: 25%;
}
.c-footerAboutLink__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.2rem;
}
.c-footerAboutLink__other > li:not(:last-child) {
  margin-right: 1.5rem;
  padding-right: 1.5rem;
  border-right: 1px solid var(--gray);
}
@media screen and (max-width: 768px) {
  .c-footerAboutLink__about + .c-footerAboutLink__other {
    margin-top: 1.5rem;
  }
  .c-footerAboutLink__about > li {
    width: 50%;
  }
  .c-footerAboutLink__other {
    font-size: 1rem;
  }
  .c-footerAboutLink__other > li:not(:last-child) {
    margin-right: 0.75rem;
    padding-right: 0.75rem;
  }
}

.c-relatedSite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-relatedSite__title {
  width: 40%;
  padding: 3rem;
  background: var(--related-title-bg);
}
.c-relatedSite__title > div {
  width: 306px;
  margin-left: auto;
  text-align: center;
}
.c-relatedSite__title > div img {
  width: 208px;
}
.c-relatedSite__title > div img + * {
  margin-top: 2rem;
}
.c-relatedSite__title > div h2 {
  color: var(--white);
}
.c-relatedSite__list {
  width: 60%;
  padding: 3rem 5rem;
  background: var(--gray);
}
.c-relatedSite__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
.c-relatedSite__list ul li {
  width: 50%;
}
.c-relatedSite__list a {
  color: var(--white);
  -webkit-transition: none;
  transition: none;
}
.c-relatedSite__list dl {
  font-size: 1.2rem;
}
.c-relatedSite__list dl dd {
  margin-top: 0.3rem;
}
@media screen and (max-width: 768px) {
  .c-relatedSite {
    display: block;
  }
  .c-relatedSite__title {
    width: 100%;
    padding: 2.25rem 1.5rem 2rem;
  }
  .c-relatedSite__title > div {
    width: 100%;
    margin: 0;
  }
  .c-relatedSite__title > div img {
    width: 100%;
    max-width: 208px;
    height: auto;
    margin-inline: auto;
  }
  .c-relatedSite__title > div img + * {
    margin-top: 1.3rem;
  }
  .c-relatedSite__list {
    width: 100%;
    padding: 2rem 1.5rem;
  }
  .c-relatedSite__list ul {
    gap: 0.5rem 0;
  }
  .c-relatedSite__list ul li {
    width: 100%;
  }
  .c-relatedSite__list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1rem;
    line-height: normal;
  }
  .c-relatedSite__list dl dt {
    margin-right: 0.75rem;
    padding-right: 0.75rem;
    font-weight: normal;
    border-right: 1px solid var(--white);
  }
  .c-relatedSite__list dl dd {
    margin: 0;
  }
}

.c-stickyCta {
  padding: 1.5rem;
  background: rgba(255, 250, 235, 0.8);
}
.c-stickyCta .container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 1.25rem;
  width: 100%;
  max-width: 1000px;
  min-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-stickyCta {
    padding: 1rem 0;
  }
  .c-stickyCta .container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: auto;
  }
}
@media screen and (max-width: 385px) {
  .c-stickyCta .container {
    gap: 0 1rem;
  }
}
.c-stickyCta__line {
  width: 230px;
  padding-right: 0.4rem;
  padding-bottom: 0.4rem;
  border-radius: 1.1rem;
  background: #02a802;
}
.c-stickyCta__line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 0.75rem;
  padding: 0.5rem 3rem;
  border-radius: 10px;
  background: #00b900;
}
.c-stickyCta__line a > img {
  width: 45px;
  height: auto;
}
.c-stickyCta__line a > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: 1.4rem;
  color: var(--white);
}
.c-stickyCta__line a > div span:first-child {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-stickyCta__line {
    width: 100%;
    max-width: none;
    -ms-flex-preferred-size: 130px;
    flex-basis: 130px;
  }
  .c-stickyCta__line a {
    gap: 0 1rem;
    padding: 0.5rem 0.75rem;
  }
  .c-stickyCta__line a > img {
    width: 3.5rem;
  }
  .c-stickyCta__line a > div {
    display: block;
  }
}
@media screen and (max-width: 385px) {
  .c-stickyCta__line {
    -ms-flex-preferred-size: 110px;
    flex-basis: 110px;
    padding-right: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .c-stickyCta__line a {
    gap: 0 0.75rem;
  }
  .c-stickyCta__line a > img {
    width: 3rem;
  }
  .c-stickyCta__line a > div {
    font-size: 1.125rem;
  }
  .c-stickyCta__line a > div span:first-child {
    font-size: 1.4rem;
  }
  .c-stickyCta__line a > div span:last-of-type {
    display: block;
    margin-top: 0.25rem;
  }
}
.c-stickyCta__tel {
  width: calc(100% - 245.5px);
}
.c-stickyCta__tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: var(--white);
  border-radius: 0.4rem;
  overflow: hidden;
}
.c-stickyCta__telLabel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 200px;
  height: 100%;
  min-height: 60px;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--white);
}
.c-stickyCta__telLabel:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: -44px;
  border-color: transparent transparent transparent #ff9100;
  border-style: solid;
  border-width: 30px 22px;
  z-index: 1;
}
.c-stickyCta__telLabel > div {
  width: 100%;
  text-align: center;
}
.c-stickyCta__telLabel > div:first-child {
  font-weight: bold;
  font-size: 1.6rem;
}
.c-stickyCta__telLabel > div:last-child {
  font-size: 1.4rem;
}
.c-stickyCta__telLabel > div:last-child i {
  font-size: 1.6rem;
  font-style: normal;
}
.c-stickyCta__telNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 1.5rem 0 2.5rem;
}
.c-stickyCta__telNum > div:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.4rem;
  color: var(--white);
  background: var(--primary);
}
.c-stickyCta__telNum > div:last-child {
  font-size: 4rem;
  font-weight: bold;
  color: var(--primary);
  white-space: nowrap;
}
.c-stickyCta__telNum > div:last-child svg {
  margin: 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-stickyCta__tel {
    -webkit-box-flex: inherit;
    -ms-flex-positive: inherit;
    flex-grow: inherit;
    -ms-flex-preferred-size: 220px;
    flex-basis: 220px;
    padding: 0 0.4rem 0.4rem 0;
    background: var(--border);
    border-radius: 9999px;
  }
  .c-stickyCta__tel a {
    position: relative;
    display: block;
    padding: 0.5rem 1.5rem 0.5rem 5.5rem;
    background: var(--white);
    border-radius: 9999px;
  }
  .c-stickyCta__telLabel {
    max-width: none;
    height: auto;
    min-height: inherit;
    padding: 0;
    background: transparent;
    color: var(--primary);
  }
  .c-stickyCta__telLabel span {
    display: inline-block;
    padding: 0.1rem 0.5rem 0;
    border-radius: 9999px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: bold;
  }
  .c-stickyCta__telLabel:after {
    display: none;
  }
  .c-stickyCta__telLabel > div {
    text-align: left;
  }
  .c-stickyCta__telLabel > div:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: normal;
  }
  .c-stickyCta__telLabel > div:last-child {
    display: none;
  }
  .c-stickyCta__telNum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 0.1rem;
    padding: 0;
  }
  .c-stickyCta__telNum > div:first-child {
    display: none;
  }
  .c-stickyCta__telNum > div:last-child {
    font-size: 2rem;
  }
  .c-stickyCta__telNum > div:last-child svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.5rem;
    width: 2.6rem;
    margin: auto 0;
  }
}
@media screen and (max-width: 385px) {
  .c-stickyCta__tel {
    -ms-flex-preferred-size: 180px;
    flex-basis: 180px;
    padding: 0 0.25rem 0.25rem 0;
  }
  .c-stickyCta__tel a {
    padding: 0.75rem 1rem 0.5rem 4.75rem;
  }
  .c-stickyCta__telLabel span {
    padding: 0.1rem 0.25rem 0;
    font-size: 1rem;
  }
  .c-stickyCta__telLabel > div:first-child {
    font-size: 1.2rem;
  }
  .c-stickyCta__telNum > div:last-child {
    font-size: 1.6rem;
  }
  .c-stickyCta__telNum > div:last-child svg {
    top: 0.1rem;
    left: 1.25rem;
    width: 2.5rem;
  }
}

.c-exampleCard {
  width: 100%;
  border: 1px solid #bcc5c7;
  border-radius: 0.5rem;
  padding: 1rem;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  width: calc(50% - 15px);
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 768px) {
  .c-exampleCard {
    width: 100%;
  }
}
.c-exampleCard--full-width {
  width: 100% !important;
}
.c-exampleCard__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-bottom: 1px solid var(--primary);
}
.c-exampleCard__itemTitle {
  padding-left: 25.49px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 7.5px;
}
.c-exampleCard__itemTitle::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 17.69px;
  height: 21.75px;
  background: url(../img/base/ico/ico_example_or.png) 50%/contain no-repeat;
}
.c-exampleCard__itemArea {
  font-size: 12px;
}
.c-exampleCard__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 14px;
}
.c-exampleCard__smallCategoryTag {
  background: var(--pale-green);
  color: var(--white);
  padding: 0.1rem 0.25rem;
  vertical-align: middle;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
}
.c-exampleCard__price {
  font-size: 18px;
  font-weight: 700;
  margin-left: 15px;
}
.c-exampleCard__comment {
  margin-top: 6px;
}

.c-relatedService__list {
  margin-left: 1rem;
  margin-top: 25px;
}
@media screen and (min-width: 1025px) {
  .c-relatedService__list {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    -webkit-column-rule-style: dashed;
    -moz-column-rule-style: dashed;
    column-rule-style: dashed;
    -webkit-column-rule-color: var(--gray);
    -moz-column-rule-color: var(--gray);
    column-rule-color: var(--gray);
    -webkit-column-rule-width: 1px;
    -moz-column-rule-width: 1px;
    column-rule-width: 1px;
  }
}
.c-relatedService__item {
  text-decoration: underline;
  color: var(--gray);
  padding-bottom: 0.75rem;
}
.c-relatedService__item::before {
  content: "";
  width: 0.6125rem;
  height: 0.6125rem;
  margin-left: -1rem;
  display: inline-block;
  background-color: var(--gray);
  border-radius: 50%;
  position: relative;
  margin-right: 0.625rem;
}

.c-currentPost__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-inline: 3.5rem;
  color: var(--gray);
}
@media screen and (max-width: 768px) {
  .c-currentPost__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-inline: 0;
  }
}
.c-currentPost__link {
  display: block;
  color: inherit;
  width: 100%;
  height: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.c-currentPost__item {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px dashed var(--gray);
}
@media screen and (max-width: 768px) {
  .c-currentPost__item {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.c-currentPost__item:nth-of-type(2n) {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .c-currentPost__item:nth-of-type(2n) {
    margin-left: 0;
  }
}
.c-currentPost__item > svg {
  margin-left: 1rem;
  margin-right: 0.5rem;
}
.c-currentPost__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.c-currentPost__img {
  margin-right: 0.5rem;
}

.c-currentPost__item.u-full-width {
  margin-left: 0 !important;
}

.c-categoryServiceFlow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-categoryServiceFlow__item {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 26.66667%;
  padding-right: 5%;
  margin-right: 5%;
  border-right: 1px dotted;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-categoryServiceFlow__item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.c-categoryServiceFlow__item:last-child::after {
  display: none;
}
.c-categoryServiceFlow__item::after {
  content: "";
  position: absolute;
  right: -20px;
  top: calc(50% - 20px);
  width: 0;
  height: 0;
  margin: auto;
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 20px 0 20px 20px;
}
@media screen and (max-width: 768px) {
  .c-categoryServiceFlow__item::after {
    right: -8px;
    top: calc(50% - 8px);
    border-width: 8px 0 8px 8px;
  }
}
.c-categoryServiceFlow__itemLabel {
  padding: 3px 25px;
  border-radius: 20px;
  background-color: #ff9100;
  border: 1.5px solid #333;
  font-size: 15px;
  display: inline-block;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-categoryServiceFlow__itemLabel {
    height: 20px;
    width: 52px;
    line-height: 16px !important;
    padding: 0;
    font-size: 10px;
  }
}
.c-categoryServiceFlow__itemLabelNumber {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .c-categoryServiceFlow__itemLabelNumber {
    font-size: 12px;
  }
}
.c-categoryServiceFlow__itemTitle {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 10px;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .c-categoryServiceFlow__itemTitle {
    font-size: 12px;
  }
}
.c-categoryServiceFlow__img > img {
  margin-top: 15px;
  border-radius: 10px;
  max-width: 100%;
}

.c-servicePriceIncludes {
  margin-top: 12px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-servicePriceIncludes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.c-servicePriceIncludes__title {
  font-weight: 700;
  border-left: 5px solid var(--primary);
  padding-left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-servicePriceIncludes__text {
    margin-top: 5px;
  }
}
.c-servicePriceIncludes__annotation {
  margin-top: 5px;
}

.c-serviceAvgCost {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 522px;
  background: var(--bg);
  text-align: center;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  .c-serviceAvgCost {
    background: var(--white);
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-serviceAvgCost__title {
    display: none;
  }
}
.c-serviceAvgCost__subTitle {
  font-weight: 700;
}
.c-serviceAvgCost__price {
  color: var(--primary);
  font-weight: 700;
  margin-left: 0.5rem;
}
.c-serviceAvgCost__annotation {
  max-width: 395px;
  margin: 35px auto 0;
}
@media screen and (max-width: 768px) {
  .c-serviceAvgCost__annotation {
    display: none;
  }
}

.c-serviceAvgCostGraph {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-serviceAvgCostGraph {
    width: 100%;
  }
}

.c-singleBlogTitle {
  padding-bottom: 1.2rem;
  border-bottom: 2px solid var(--tertiary);
  font-size: 1.8rem;
}
.is-gyosha .c-singleBlogTitle {
  border-color: var(--primary);
}

.c-shareList {
  gap: 0.5rem;
}
.c-shareList > li {
  width: 25px;
}

/*
* toggle利用時の基本スタイル
*/
.js-toggle .js-toggleBtn {
  cursor: pointer;
}
.js-toggle .js-toggleTarget {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s;
  transition: max-height 0.3s;
}
@media screen and (max-width: 768px) {
  .js-toggleSp .js-toggleBtn {
    cursor: pointer;
  }
  .js-toggleSp .js-toggleTarget {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
  }
}

.js-sidebarToggle:nth-child(odd) .js-sidebarToggleTarget:before {
  right: 0;
}
.js-sidebarToggle:nth-child(even) .js-sidebarToggleTarget:before {
  left: 0;
}
.js-sidebarToggleBtn {
  cursor: pointer;
}
.js-sidebarToggleTarget {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
.js-sidebarToggleTarget__wrap {
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.active .js-sidebarToggleTarget__wrap {
  background-color: var(--bg);
  opacity: 1;
  z-index: var(--z-index--contents);
}
@media screen and (max-width: 768px) {
  .js-sidebarToggle:last-child.active {
    border-bottom: none;
  }
  .js-sidebarToggle:last-child.active .js-sidebarToggleTarget__wrap:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
    width: 100%;
    height: 1px;
    background: var(--border);
  }
  .active .js-sidebarToggleTarget:before {
    content: "";
    position: absolute;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    width: 50%;
    height: 1px;
    background: var(--border);
  }
  .js-sidebarToggleTarget__wrap {
    position: absolute;
    left: 0;
    padding: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .js-toggleServiceBtn {
    cursor: pointer;
  }
  .js-toggleServiceTarget {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
  }
}

.c-toggleButton {
  position: relative;
  text-align: center;
  color: #bcc5c7;
  font-weight: 700;
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
}
.c-toggleButton--open::after {
  position: absolute;
  content: "+";
  font-size: 18px;
  font-weight: 400;
  top: 5px;
  right: 10px;
}
.c-toggleButton--close::after {
  position: absolute;
  content: "-";
  font-size: 18px;
  font-weight: 400;
  top: 5px;
  right: 10px;
}

/*
* スティッキー要素の表示
*/
.js-sticky {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.js-sticky.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: inherit;
}

.c-labelTitle {
  color: var(--gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 0.5rem;
}
.c-labelTitle__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 15px;
}
.c-labelTitle__icon > img {
  display: block;
  vertical-align: middle;
}

.c-serviceAreaCard {
  width: 100%;
  border: 1px solid #bcc5c7;
  border-radius: 0.5rem;
  padding: 1rem;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  padding: 0;
  margin-top: 2rem;
  margin-inline: auto;
  width: 100%;
  display: block;
  position: relative;
}
.c-serviceAreaCard__title {
  background: var(--area-primary);
  font-weight: 700;
  padding: 1rem;
  border-radius: 5px 5px 0 0;
}
.c-serviceAreaCard__summary {
  padding: 1.5rem;
}
.c-serviceAreaCard__summary._hidden {
  height: 340px;
  overflow: hidden;
}
.c-serviceAreaCard__catchphraseTitle {
  font-weight: 700;
}
.c-serviceAreaCard__catchphraseText {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-serviceAreaCard__information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2rem;
}
.c-serviceAreaCard__basicInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 186px;
}
@media screen and (max-width: 768px) {
  .c-serviceAreaCard__basicInfo {
    width: 40%;
  }
}
.c-serviceAreaCard__thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75.8064516129%;
  overflow: hidden;
}
.c-serviceAreaCard__thumbnail > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.c-serviceAreaCard__detailedInfo {
  width: calc(100% - 186px);
  padding-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-serviceAreaCard__detailedInfo {
    width: 60%;
    padding-left: 1rem;
  }
}
.c-serviceAreaCard__detailedInfoData {
  margin-top: 1rem;
}
.c-serviceAreaCard__detailedInfoItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-serviceAreaCard__detailedInfoItem + * {
  margin-top: 0.3rem;
}
.c-serviceAreaCard__detailedInfoInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-serviceAreaCard__detailedInfoInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.c-serviceAreaCard__label {
  width: 8rem;
}
.c-serviceAreaCard__label + * {
  font-size: 1.4rem;
}
.c-serviceAreaCard__estimateValue {
  font-weight: 700;
  color: var(--primary);
}
.c-serviceAreaCard__shopReview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-serviceAreaCard__count {
  vertical-align: middle;
}
.c-serviceAreaCard__feature {
  background: var(--bg);
  line-height: 2;
  padding: 0.5rem;
  margin-top: 1rem;
}
.c-serviceAreaCard__featureItem:not(:last-child) {
  margin-right: 0.75rem;
  padding-right: 1rem;
  border-right: 1px solid var(--gray);
}
.c-serviceAreaCard__review {
  margin-top: 1.5rem;
  position: relative;
}
.c-serviceAreaCard__review._hidden {
  overflow: hidden;
  height: 130px;
}
.c-serviceAreaCard__reviewScore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}
.c-serviceAreaCard__reviewScoreCommentwrap {
  margin: 10px 0 0;
  padding: 0 10px 0;
}
@media screen and (max-width: 768px) {
  .c-serviceAreaCard__reviewScoreCommentwrap {
    padding-inline: 0;
  }
}
.c-serviceAreaCard__reviewDate {
  font-size: 12px;
  text-align: right;
}
.c-serviceAreaCard__areaInfoTitle {
  padding-top: 0.5rem;
}
.c-serviceAreaCard__areaInfoText {
  margin: 1.5rem 3rem 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-serviceAreaCard__areaInfoText {
    margin-inline: 1.5rem;
  }
}
.c-serviceAreaCard__subinfo {
  margin: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-serviceAreaCard__reviewarea span {
  font-size: 12px;
  display: inline-block;
}
.c-serviceAreaCard__reviewarea span:not(:first-of-type) {
  margin: 0 20px 0 5px;
}
.c-serviceAreaCard__reviewmorebtn {
  position: absolute;
  bottom: 0;
  right: 25px;
  width: calc(100% - 50px);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, #fff), to(#fff));
  background: -webkit-linear-gradient(top, transparent 0%, #fff 50%, #fff 100%);
  background: linear-gradient(to bottom, transparent 0%, #fff 50%, #fff 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 40px 25px 15px;
}
.c-serviceAreaCard__reviewmorebtn._close {
  background: none;
}
.c-serviceAreaCard__reviewmorebtn._close .c-serviceAreaCard__reviewmoretxt:before {
  bottom: 4px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .c-serviceAreaCard__reviewmorebtn {
    color: var(--gray);
    right: 1.5rem;
    width: calc(100% - 3rem);
  }
}
.c-serviceAreaCard__reviewmoretxt {
  font-size: 12px;
  position: relative;
}
.c-serviceAreaCard__reviewmoretxt:before {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: 8px;
  right: -13px;
}
.c-serviceAreaCard.is-pr {
  width: 100%;
  max-width: 648px;
  margin-inline: 3rem;
  padding: 1rem 1.5rem 1.5rem;
  border-radius: 0%;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .c-serviceAreaCard.is-pr {
    margin-inline: 0;
    max-width: 100%;
  }
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 1rem;
  background: none;
  border-bottom: 1px solid var(--border);
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__summary {
  padding: 1rem 0 0;
}
@media screen and (max-width: 768px) {
  .c-serviceAreaCard.is-pr .c-serviceAreaCard__detailedInfoData {
    margin-top: 0;
  }
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__catchphraseTitle {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-serviceAreaCard.is-pr .c-serviceAreaCard__catchphraseTitle {
    font-size: 1.4rem;
  }
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__catchphraseText {
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
  overflow: visible;
  text-overflow: clip;
}
@media screen and (max-width: 768px) {
  .c-serviceAreaCard.is-pr .c-serviceAreaCard__catchphraseText {
    margin-top: 1rem;
  }
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__label {
  width: 10rem;
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__label + * {
  width: calc(100% - 10rem);
  font-size: 1.6rem;
  color: var(--primary);
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__site {
  color: var(--primary);
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__site button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 0.75rem;
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__site button svg {
  display: inline-block;
  width: 15px;
  height: auto;
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__appeal {
  margin-top: 1rem;
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__appeal__ttl {
  padding: 0.5rem;
  background: #bcc5c7;
  font-size: 1.2rem;
  color: var(--white);
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__appeal__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--border);
}
.c-serviceAreaCard.is-pr .c-serviceAreaCard__appeal__txt svg {
  width: 24px;
  min-width: 24px;
  margin-right: 1rem;
}

.c-movie__movie {
  width: 790px;
  max-width: 100%;
  margin: 40px auto 0;
}
.c-movie__movieArea {
  padding-bottom: 56%;
  overflow: hidden;
  height: 0;
  margin-bottom: 1.5rem;
  position: relative;
}
.c-movie__movieArea > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-pager_num {
  margin-block: 3rem;
}
.c-pager_num__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7rem;
}
.c-pager_num__numList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin: 0 12px 0 0;
}
@media screen and (max-width: 768px) {
  .c-pager_num__numList + img {
    width: 12px;
  }
}
.c-pager_num__link {
  width: 48px;
  height: 48px;
  border: 1px solid var(--primary);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6em;
  color: var(--primary);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-pager_num__link {
    width: 33px;
    height: 33px;
  }
}
.c-pager_num__link:focus-visible:after {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  border: 2px solid var(--focus);
  border-radius: 50%;
}
.c-pager_num__link--current {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
}
.c-pager_num__arr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .c-pager_num__arr {
    width: 30px;
    height: 30px;
  }
}
.c-pager_num__arr:focus-visible:after {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  border: 2px solid var(--focus);
  border-radius: 50%;
}
.c-pager_num__arr img {
  width: 100%;
}
.c-pager_num__arr--prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-compactTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 1rem;
  font-weight: 700;
  background: var(--bg);
  padding: 1rem 1rem 0;
}

.c-sort {
  margin-top: 0.5rem;
}
.c-sort__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-sort__selectBox {
  border: 1px solid var(--gray);
  padding-left: 1rem;
  padding-right: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.c-sort__selectBox-icon {
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
}

.c-searchAreaBox__title {
  background: var(--light-gray);
  font-weight: 700;
  padding: 1rem;
}
.c-searchAreaBox__list {
  margin-left: 1rem;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  text-decoration: underline;
  color: var(--gray);
}
.c-searchAreaBox__list > li {
  list-style-type: none !important;
}
@media screen and (max-width: 768px) {
  .c-searchAreaBox__list {
    gap: 0.75rem 2rem;
    margin-left: 0;
    padding-bottom: 0;
  }
}

.c-relatedPost__title {
  background: var(--light-gray);
  font-weight: 700;
  padding: 1rem;
}
.c-relatedPost__list {
  margin-left: 1rem;
  padding: 1.5rem;
}
.l-sidebar .c-relatedPost__list > li + li {
  margin-top: 0.75rem;
}
.l-sidebar .c-relatedPost__list > li:before {
  display: inline-block;
  position: relative;
  content: "";
  width: 0.6125rem;
  height: 0.6125rem;
  margin-left: -1rem;
  margin-right: 0.625rem;
  background-color: var(--gray);
  border-radius: 50%;
}
.l-sidebar .c-relatedPost__list > li a {
  color: var(--gray);
  text-decoration: underline;
  line-height: 1.5;
}

.c-infoReviewLink {
  vertical-align: middle;
  border-bottom: 1px solid var(--related-title-bg);
  padding-bottom: 0.5rem;
  gap: 0.5rem;
  color: var(--related-title-bg);
}

.c-libraryCategoryInfo__title {
  padding: 0.75rem;
  background: var(--primary);
  color: var(--white);
}
.c-libraryCategoryInfo__wrap {
  padding: 1.5rem 1.5rem 3rem;
  border: 2px solid var(--primary);
  border-top-width: 0;
}
.c-libraryCategoryInfo__header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed var(--black);
  text-align: center;
}
.c-libraryCategoryInfo__header h3 + p {
  display: inline-block;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-libraryCategoryInfo__header {
    text-align: left;
  }
}
.c-libraryCategoryInfo__copy {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--black);
  border-radius: 1rem;
  background: var(--white);
  text-align: center;
}
.c-libraryCategoryInfo__copy > dl > dd {
  margin-top: 1rem;
}
.c-libraryCategoryInfo__price {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--primary);
}
.c-libraryCategoryInfo__price dt {
  margin-right: 1em;
}

.c-findeCategoryVendor__title {
  position: relative;
  z-index: var(--z-index--contents);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.c-findeCategoryVendor__title span {
  display: inline-block;
  padding: 0.75rem 0.75rem 0.75rem 3rem;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 9999px;
  background-image: url(../img/base/ico/ico_search.svg);
  background-position: left 0.75rem center;
  background-repeat: no-repeat;
  background-size: 17px;
}
.c-findeCategoryVendor__wrap {
  padding: 4rem 1.5rem 3rem;
  border: 2px solid var(--black);
  border-radius: 1rem;
}
.c-findeCategoryVendor__copy:before, .c-findeCategoryVendor__copy:after {
  content: "";
  display: inline-block;
}
.c-findeCategoryVendor__copy:before {
  content: "＼ ";
  margin-right: 0.5em;
}
.c-findeCategoryVendor__copy:after {
  content: "／";
  margin-left: 0.5em;
}
.c-findeCategoryVendor__copy + p {
  margin-top: 0.5rem;
}
.c-findeCategoryVendor__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-findeCategoryVendor__form {
    display: block;
  }
}
.c-findeCategoryVendor__clossIcon {
  padding-inline: 2rem;
  color: var(--gray);
}
@media screen and (max-width: 768px) {
  .c-findeCategoryVendor__clossIcon {
    display: block;
    text-align: center;
  }
}
.c-findeCategoryVendor input,
.c-findeCategoryVendor select {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 1.6rem;
  background: var(--white);
}
.c-findeCategoryVendor input:focus, .c-findeCategoryVendor input:focus-visible,
.c-findeCategoryVendor select:focus,
.c-findeCategoryVendor select:focus-visible {
  outline: 2px solid -webkit-focus-ring-color;
}
.c-findeCategoryVendor select:last-child {
  color: var(--border);
}
.c-findeCategoryVendor select:last-child:focus, .c-findeCategoryVendor select:last-child:focus-visible {
  color: var(--related-title-bg);
}

.c-relatedCategoryList > ul {
  gap: 1rem;
  margin-top: 1.5rem;
  padding-inline: 1.5rem;
}
.c-relatedCategoryList > ul > li > a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--gray);
  -webkit-transition: none;
  transition: none;
}
.c-relatedCategoryList > ul > li > a:hover {
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .c-relatedCategoryList {
    padding-bottom: 3rem;
  }
  .c-relatedCategoryList > ul {
    padding-inline: 0;
  }
}

.c-postItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: none;
  transition: none;
}
.c-postItem a:hover {
  opacity: 1;
  color: var(--primary);
}
.c-postItem__thumb {
  position: relative;
  height: 0;
  overflow: hidden;
}
.c-postItem__thumb > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0.5rem;
  z-index: var(--z-index--contents);
  width: 28px;
  background: var(--secondary);
  color: var(--tertiary);
  font-size: 1.7rem;
}
.c-postItem__thumb > span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-bottom: 6px solid transparent;
  border-left: 14px solid #fffaeb;
  border-right: 14px solid #fffaeb;
  border-right-color: var(--secondary);
  border-left-color: var(--secondary);
}
.c-postItem__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.c-postItem__text .c-categoryList + * {
  margin-top: 0.5rem;
}
.c-postItem__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
.c-postItem__title + time, .c-postItem__title + p {
  margin-top: 0.5rem;
}
.c-postItem p {
  font-size: 1.4rem;
}
.c-postItem time {
  display: block;
  line-height: 1;
  color: var(--gray);
}
.c-postItem:nth-child(-n+3) .c-postItem__thumb > span {
  color: var(--white);
}
.c-postItem:first-child .c-postItem__thumb > span {
  background: var(--primary);
}
.c-postItem:first-child .c-postItem__thumb > span:after {
  border-right-color: var(--primary);
  border-left-color: var(--primary);
}
.c-postItem:nth-child(2) .c-postItem__thumb > span {
  background: var(--area-primary);
}
.c-postItem:nth-child(2) .c-postItem__thumb > span:after {
  border-right-color: var(--area-primary);
  border-left-color: var(--area-primary);
}
.c-postItem:nth-child(3) .c-postItem__thumb > span {
  background: var(--bronze);
}
.c-postItem:nth-child(3) .c-postItem__thumb > span:after {
  border-right-color: var(--bronze);
  border-left-color: var(--bronze);
}
.c-postItem.is-default a {
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5em;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}
.c-postItem.is-default .c-postItem__text time {
  font-size: 1.125rem;
}
.c-postItem.is-default .c-postItem__companyName {
  margin-top: 1rem;
  text-decoration: underline;
  color: var(--gray);
}
.c-postItem.is-default .c-postItem__companyName + * {
  margin-top: 1rem;
}
.c-postItem.is-default .c-postItem__title {
  font-size: 1.4rem;
}
.c-postItem.is-recommend a {
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5em;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}
.c-postItem.is-recommend .c-postItem__text time {
  font-size: 1.125rem;
}
.c-postItem.is-recommend .c-postItem__title {
  font-size: 1.4rem;
}
.c-gyoushaPostList .c-postItem {
  width: calc((100% - 2.5rem) / 2);
}
.c-gyoushaPostList .c-postItem .c-postItem__thumb {
  width: 175px;
  padding-top: 135px;
}
.c-gyoushaPostList .c-postItem .c-postItem__text {
  width: calc(100% - 175px);
  padding: 0.5rem 0.5rem 0 1rem;
}
.c-gyoushaPostList .c-postItem .c-postItem__text .c-categoryList + * {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .c-gyoushaPostList .c-postItem {
    width: 100%;
  }
  .c-gyoushaPostList .c-postItem .c-postItem__thumb {
    width: 40%;
    padding-top: 30%;
  }
  .c-gyoushaPostList .c-postItem .c-postItem__text {
    width: 60%;
  }
}
.c-sidebarPostList .c-postItem a {
  padding: 1.5rem 0;
  border-bottom: 1px dashed var(--border);
}
.c-sidebarPostList .c-postItem__thumb {
  width: 8.6rem;
  padding-top: 6.5rem;
}
.c-sidebarPostList .c-postItem__text {
  width: calc(100% - 8.6rem);
  padding-left: 0.75rem;
}
.l-sidebarSection.u-bgc .c-sidebarPostList .c-postItem a {
  padding-inline: 1rem;
  border-bottom: dotted;
  border-color: var(--tertiary);
}
@media screen and (max-width: 768px) {
  .c-sidebarPostList .c-postItem + li {
    margin-top: 1.5rem;
  }
  .c-sidebarPostList .c-postItem a {
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  }
  .c-sidebarPostList .c-postItem__thumb {
    width: 33.3333333333%;
    padding-top: 24.8956639566%;
  }
  .c-sidebarPostList .c-postItem__text {
    width: 66.6666666667%;
  }
  .l-sidebarSection.u-bgc .c-sidebarPostList .c-postItem {
    margin-top: 0;
  }
  .l-sidebarSection.u-bgc .c-sidebarPostList .c-postItem:first-child a {
    padding-top: 0;
  }
  .l-sidebarSection.u-bgc .c-sidebarPostList .c-postItem a {
    padding: 1.5rem 0;
    border-radius: 0;
    border: none;
    border-bottom: 2px dotted var(--tertiary);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.c-libraryPostList .c-postItem {
  width: calc((100% - 1rem) / 2);
}
.c-libraryPostList .c-postItem a {
  padding: 0.5rem;
}
.c-libraryPostList .c-postItem__thumb {
  width: 40%;
  padding-top: 30%;
}
.c-libraryPostList .c-postItem__text {
  width: 60%;
  padding-left: 0.75rem;
}
@media screen and (max-width: 768px) {
  .c-libraryPostList .c-postItem {
    width: 100%;
  }
}
.c-accessRankingPostList .c-postItem + li {
  margin-top: 1.5rem;
}
.c-accessRankingPostList .c-postItem__thumb {
  width: 155px;
  padding-top: 116.25px;
}
.c-accessRankingPostList .c-postItem__text {
  width: calc(100% - 155px);
  padding-left: 0.75rem;
}
.c-accessRankingPostList .c-postItem__title {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-accessRankingPostList .c-postItem__thumb {
    width: 40%;
    padding-top: 29.9568965517%;
  }
  .c-accessRankingPostList .c-postItem__text {
    position: relative;
    width: 60%;
    padding-bottom: 1.3rem;
  }
  .c-accessRankingPostList .c-postItem__text time {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
  }
  .c-accessRankingPostList .c-postItem__title {
    font-weight: normal;
  }
  .c-accessRankingPostList .c-postItem__excerpt {
    display: none;
  }
}
.c-recommendList .c-postItem {
  width: calc((100% - 1rem) / 2);
}
.c-recommendList .c-postItem .c-postItem__thumb {
  width: 40%;
  padding-top: 27.3425499232%;
}
.c-recommendList .c-postItem .c-postItem__text {
  width: 60%;
  padding: 0.5rem 0.5rem 0 1rem;
}
.c-recommendList .c-postItem .c-postItem__text .c-categoryList + * {
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-recommendList .c-postItem {
    width: 100%;
  }
}

.c-sidebar__title {
  padding: 0.5rem 1rem;
  color: var(--white);
  background: var(--tertiary);
}
@media screen and (max-width: 768px) {
  .c-sidebar__title {
    margin-inline: -1.5rem;
  }
}
.l-sidebarSection.u-bgc .c-sidebarPostList {
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .c-sidebarPostList {
    padding-top: 1.5rem;
  }
}
.c-sidebarCategoryItem {
  border: 2px solid var(--border);
  border-top-width: 0;
}
.c-sidebarCategoryItem > dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: normal;
  min-height: 6rem;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
}
.c-sidebarCategoryItem > dt:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  content: "";
  width: 13px;
  height: 13px;
  margin: auto 0;
  background-image: url(../img/base/ico/ico_arrow_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-sidebarCategoryItem > dt i {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
  margin-right: 0.75rem;
}
.c-sidebarCategoryItem > dt i img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.c-sidebarCategoryItem > dt i img path {
  fill: var(--tertiary);
}
.c-sidebarCategoryItem > dt span {
  width: calc(100% - 25px);
}
.c-sidebarCategoryItem > dd > div {
  padding-bottom: 2rem;
}
.c-sidebarCategoryItem > dd ul li {
  width: 100%;
}
.c-sidebarCategoryItem > dd ul li a {
  font-size: 1.4rem;
  color: var(--ink);
}
.c-sidebarCategoryItem.active {
  background: var(--bg);
}
.c-sidebarCategoryItem.active > dt {
  font-weight: bold;
}
.c-sidebarCategoryItem.active > dt:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .c-sidebarCategoryList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-inline: -1.5rem;
  }
  .c-sidebarCategoryItem {
    width: 50%;
    border: none;
    border-bottom: 1px solid var(--border);
  }
  .c-sidebarCategoryItem:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .c-sidebarCategoryItem .c-sitemapList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem 1rem;
    margin-top: 0;
    text-align: left;
  }
  .c-sidebarCategoryItem .c-sitemapList > li {
    width: calc(50% - 0.5rem);
    padding: 0;
  }
}
.c-sidebarAreaList {
  gap: 1rem 1em;
  padding: 2rem 1rem 3rem;
}
.c-sidebarAreaList > li a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .c-sidebarAreaList {
    gap: 1rem 1.5em;
    padding-left: 0;
    padding-right: 0;
  }
}
.c-sidebarRelatedCategoryList {
  padding: 2rem 1rem 3rem;
}
.c-sidebarRelatedCategoryList > li {
  width: 100%;
  padding: 0;
}
.c-sidebarRelatedCategoryList > li + li {
  margin-top: 0.5rem;
}
.c-sidebarRelatedCategoryList > li a {
  display: block;
  padding: 1rem;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .c-sidebarRelatedCategoryList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
  .c-sidebarRelatedCategoryList > li {
    width: calc((100% - 1rem) / 2);
    text-align: center;
  }
  .c-sidebarRelatedCategoryList > li + li {
    margin-top: 0;
  }
}

.c-btnContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  margin-top: 1rem;
  padding-inline: 1rem;
}
.c-btnContainer .c-btn:hover span {
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .c-btnContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 1.5rem 0;
  }
  .c-btnContainer .c-btn {
    margin-left: auto;
  }
}
.c-btnContainerTable {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .c-btnContainerTable {
    width: 100%;
  }
}
.c-btnContainerTableData tr th,
.c-btnContainerTableData td {
  padding: 1.5rem;
}
.c-btnContainerTableData tr {
  border-bottom: 2px dotted var(--border);
}

.c-accessRanking > li {
  padding: 0.25rem;
}
.c-accessRanking > li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.8rem 0;
  font-size: 1.2rem;
  color: var(--gray);
  background: var(--secondary);
  cursor: pointer;
}
.c-accessRanking > li.active span {
  color: var(--white);
  background: var(--tertiary);
  font-weight: bold;
}
.c-accessRanking + .c-btn {
  margin-top: 0.5rem;
}
.c-accessRankingPost {
  margin-top: 2rem;
  border-radius: 1rem;
  background: var(--white);
  -webkit-box-shadow: inset -2px -2px 2px 3px rgba(255, 244, 212, 0.6);
  box-shadow: inset -2px -2px 2px 3px rgba(255, 244, 212, 0.6);
}
.c-accessRankingPost > p {
  padding: 1.5rem;
  font-size: 1.4rem;
  text-align: center;
}
.c-accessRankingPost__title {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 1rem 1rem 0 0;
  color: var(--white);
  background: var(--tertiary);
  font-weight: bold;
}
.c-accessRankingPostList {
  padding: 2rem 1.5rem 2rem;
}
@media screen and (max-width: 768px) {
  .c-accessRanking > li span {
    background: var(--white);
  }
}
@media screen and (max-width: 350px) {
  .c-accessRanking > li span {
    font-size: 1rem;
  }
}

.js-rankingModal {
  display: none;
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.js-rankingModal.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: static;
  visibility: visible;
}

.c-serviceShopAreaList {
  gap: 0.75em;
}
.c-serviceShopAreaList > li {
  width: calc((100% - 3.75em) / 6);
}
.c-serviceShopAreaList > li a {
  font-size: 1.4rem;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .c-serviceShopAreaList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .c-serviceShopAreaList > li {
    width: auto;
  }
}

.c-accessRanking > li {
  padding: 0.25rem;
}
.c-accessRanking > li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.8rem 0;
  font-size: 1.2rem;
  color: var(--gray);
  background: var(--secondary);
  cursor: pointer;
}
.c-accessRanking > li.active span {
  color: var(--white);
  background: var(--tertiary);
  font-weight: bold;
}
.c-accessRanking + .c-btn {
  margin-top: 0.5rem;
}
.c-accessRankingPost {
  margin-top: 2rem;
  border-radius: 1rem;
  background: var(--white);
  -webkit-box-shadow: inset -2px -2px 2px 3px rgba(255, 244, 212, 0.6);
  box-shadow: inset -2px -2px 2px 3px rgba(255, 244, 212, 0.6);
}
.c-accessRankingPost > p {
  padding: 1.5rem;
  font-size: 1.4rem;
  text-align: center;
}
.c-accessRankingPost__title {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 1rem 1rem 0 0;
  color: var(--white);
  background: var(--tertiary);
  font-weight: bold;
}
.c-accessRankingPostList {
  padding: 2rem 1.5rem 2rem;
}
@media screen and (max-width: 768px) {
  .c-accessRanking > li span {
    background: var(--white);
  }
}
@media screen and (max-width: 350px) {
  .c-accessRanking > li span {
    font-size: 1rem;
  }
}

.js-rankingModal {
  display: none;
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.js-rankingModal.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: static;
  visibility: visible;
}

.c-serviceShopAreaList {
  gap: 0.75em;
}
.c-serviceShopAreaList > li {
  width: calc((100% - 3.75em) / 6);
}
.c-serviceShopAreaList > li a {
  font-size: 1.4rem;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .c-serviceShopAreaList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .c-serviceShopAreaList > li {
    width: auto;
  }
}

.c-infoReviewLink {
  vertical-align: middle;
  border-bottom: 1px solid var(--related-title-bg);
  padding-bottom: 0.5rem;
  gap: 0.5rem;
  color: var(--related-title-bg);
}

.c-search {
  /* コンテンツのスタイル */
}
.c-search__tabList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1.6rem;
}
.c-search__tabItem {
  padding: 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--light-gray);
  color: var(--gray);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.c-search__tabItem.active {
  border-bottom: 4px solid var(--primary);
  font-weight: bold;
  background: var(--white);
  position: relative;
  color: var(--primary);
  font-weight: 700;
  padding-bottom: 0.6rem;
}
.c-search__tabItem.active::after {
  content: "▼";
  color: var(--primary);
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-search__tabContent {
  display: none;
  padding: 15px 0;
}
.c-search__tabContent.active {
  display: block;
}
.c-search__tabContentList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.c-search__tabContentListItem {
  color: var(--gray);
  text-decoration: underline;
}

.c-shopInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 1.5rem 3rem;
}
@media screen and (max-width: 768px) {
  .c-shopInfo {
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-shopInfo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 1.5rem 0;
  }
}
.c-shopInfoTable {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .c-shopInfoTable {
    width: 100%;
  }
}
.c-shopInfoTableData tr th,
.c-shopInfoTableData td {
  padding: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-shopInfoTableData tr th,
  .c-shopInfoTableData td {
    width: 7rem;
  }
}
.c-shopInfoTableData tr {
  border-bottom: 2px dotted var(--border);
}

.c-glossaryItem + div {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-glossaryItem + div {
    margin-top: 0.75rem;
  }
}
.c-glossaryItem__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 1rem;
}
.c-glossaryItem__heading i {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
  margin-right: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .c-glossaryItem__heading {
    position: relative;
    padding-right: 4rem;
  }
  .c-glossaryItem__heading:before, .c-glossaryItem__heading:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.5rem;
    width: 1.4rem;
    height: 0.2rem;
    margin: auto 0;
    background: var(--gray);
  }
  .c-glossaryItem__heading:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .active .c-glossaryItem__heading:after {
    opacity: 0;
  }
}
.c-glossaryItem__body {
  padding-inline: 1rem;
}
@media screen and (max-width: 768px) {
  .c-glossaryItem__wrap {
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .active .c-glossaryItem__wrap {
    opacity: 1;
  }
}
.c-glossaryItem__list {
  gap: 0 2%;
}
.c-glossaryItem__list > li {
  width: 32%;
  border-bottom: 1px dotted var(--border);
}
.c-glossaryItem__list > li a {
  display: block;
  padding: 1.5rem 1.5rem;
  -webkit-transition: none;
  transition: none;
  background-image: url(../img/base/ico/ico_menu_arrow.svg);
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 8px 12px;
}
.c-glossaryItem__list > li a:hover {
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .c-glossaryItem__list > li {
    width: 100%;
  }
}

.c-kanaLink {
  gap: 1rem;
}
.c-kanaLink__item {
  width: calc((100% - 9rem) / 10);
  background: var(--bg);
  color: var(--primary);
}
.c-kanaLink__item.disabled {
  background: var(--bg-gray);
  pointer-events: none;
  color: var(--border);
}
.c-kanaLink__item a,
.c-kanaLink__item span {
  display: block;
  height: 100%;
  padding: 1rem 0;
}
.c-kanaLink__item a svg,
.c-kanaLink__item span svg {
  display: block;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  .c-kanaLink__item {
    width: calc((100% - 4rem) / 5);
  }
}
.c-kanaContent {
  margin-top: 4rem;
}
.c-kanaContent__title {
  position: relative;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: var(--white);
}
.c-kanaContent__title:before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-right: 20px solid var(--shadow-send);
  border-bottom: 10px solid transparent;
}
.c-kanaList {
  padding: 1.5rem;
}
.c-kanaList + .c-kanaContent__title {
  margin-top: 0.5rem;
}
.c-kanaList > div {
  padding: 1.5rem 0;
}
.c-kanaList > div:not(:last-child) {
  border-bottom: 1px dashed var(--border);
}
.c-kanaList > div > dt + dd {
  margin-top: 0.5rem;
}

.c-relatedCategoryList {
  gap: 1rem;
}
.c-relatedCategoryItem {
  width: calc((100% - 4rem) / 5);
}
.c-relatedCategoryItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 1rem;
  border: 1px solid var(--primary);
  border-radius: 0.5rem;
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .c-relatedCategoryItem {
    width: calc((100% - 1rem) / 2);
  }
}

.c-cta i {
  font-style: normal;
}
.c-ctaTel {
  display: block;
  width: 100%;
  max-width: 880px;
  height: 100%;
  margin-inline: auto;
  background: var(--primary);
  border: 2px solid var(--primary);
}
.c-ctaTel a {
  display: block;
  height: 100%;
  pointer-events: none;
}
.c-ctaTel__description > span {
  color: var(--white);
}
.c-ctaTel__description > span i {
  font-style: normal;
  color: var(--yellow);
}
.l-single.p-library .c-ctaTel__description, .p-serviceArea .c-ctaTel__description {
  padding: 0.5rem 0;
}
.l-single.p-library .c-ctaTel__description span, .p-serviceArea .c-ctaTel__description span {
  font-size: 2rem;
}
.c-ctaTel__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 1.5rem;
  color: var(--primary);
}
@media screen and (min-width: 769px) {
  .c-ctaTel__info {
    background: var(--white);
  }
}
.c-ctaTel__info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  pointer-events: none;
}
.c-ctaTel__freeCall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  line-height: 1.25;
}
.l-single.p-library .c-ctaTel__freeCall, .p-serviceArea .c-ctaTel__freeCall {
  width: 50px;
  height: 50px;
  font-size: 1.4rem;
}
.c-ctaTel__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}
.c-ctaTel__number svg {
  width: 50px;
  height: auto;
  margin-right: 1.25rem;
}
.c-ctaTel__number > span {
  font-size: 7rem;
  margin-right: 1rem;
}
.l-single.p-library .c-ctaTel__number svg, .p-serviceArea .c-ctaTel__number svg {
  width: 34px;
}
.l-single.p-library .c-ctaTel__number > span, .p-serviceArea .c-ctaTel__number > span {
  font-size: 5rem;
}
.c-ctaTel__tracking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(100% + 3rem);
  margin-inline: -1.5rem;
  padding: 0.6rem 1.5rem 0.5rem;
  background: var(--bg);
  color: var(--ink);
  font-size: 1.6rem;
}
.c-ctaTel__tracking p {
  margin-right: 0.5rem;
}
.c-ctaTel + .c-ctaBtns {
  margin-top: 3rem;
}
.l-single.p-library .c-ctaTel + .c-ctaBtns, .p-serviceArea .c-ctaTel + .c-ctaBtns {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .is-default .c-ctaTel {
    border: none;
    border-radius: 1rem;
    -webkit-box-shadow: 0.2rem 0.4rem 0 0.2rem var(--shadow-send);
    box-shadow: 0.2rem 0.4rem 0 0.2rem var(--shadow-send);
    cursor: pointer;
  }
  .is-default .c-ctaTel:hover a {
    opacity: 0.8;
  }
  .is-default .c-ctaTel a {
    pointer-events: auto;
    -webkit-transition: none;
    transition: none;
  }
  .is-default .c-ctaTel a :hover {
    opacity: 1;
  }
  .is-default .c-ctaTel__description {
    padding-top: 0.75rem;
  }
  .l-footer .is-default .c-ctaTel__description {
    padding-top: 1rem;
  }
  .is-default .c-ctaTel__description:after {
    content: "";
    display: block;
    width: calc(100% - 1.5rem);
    height: 0.2rem;
    margin: 0.5em auto 0;
    background: var(--white);
  }
  .l-footer .is-default .c-ctaTel__description:after {
    margin: 0.9em auto 0;
  }
  .is-default .c-ctaTel__description > span {
    font-size: clamp(1.6rem, 5.4054054054vw, 2rem);
  }
  .l-footer .is-default .c-ctaTel__info {
    padding: 0.8rem 0 0.8em;
  }
  .is-default .c-ctaTel__freeCall {
    display: none;
  }
  .is-default .c-ctaTel__number {
    color: var(--white);
  }
  .is-default .c-ctaTel__number svg {
    width: 2.4rem;
    margin-right: 1.5rem;
    -webkit-transform: translateY(-0.1rem);
    transform: translateY(-0.1rem);
  }
  .is-default .c-ctaTel__number svg path {
    fill: var(--white);
  }
  .is-default .c-ctaTel__number > span {
    font-size: clamp(3.2rem, 10.8108108108vw, 4rem);
  }
  .c-ctaTel + .c-ctaBtns {
    margin-top: 2rem;
  }
  .l-single.p-library .c-ctaTel + .c-ctaBtns, .p-serviceArea .c-ctaTel + .c-ctaBtns {
    margin-top: 0;
  }
}
.c-ctaCredit {
  width: 100%;
  max-width: 733px;
  height: 100%;
  margin: 1rem auto 0;
}
.c-ctaCredit img {
  max-width: 100%;
  height: auto;
}
.c-ctaCredit__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
  font-size: 1.125rem;
}
.c-ctaCredit + * {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .c-ctaCredit {
    margin-top: 0;
    padding: 0 1.5rem 1.5rem;
    background: var(--bg);
  }
  .c-ctaCredit__note {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--black);
  }
}
.c-ctaLineBtn {
  max-width: 880px;
  margin-inline: auto;
}
.c-ctaLineBtn > a {
  display: block;
  height: 100%;
}
.c-ctaLineBtn > a img {
  width: 100%;
  height: auto;
}
.is-library .c-ctaLineBtn > a img {
  margin-top: 0;
  margin-bottom: 0;
}
.c-ctaLineBtn + .c-btn {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .is-default .c-ctaLineBtn {
    max-width: 345px;
  }
  .c-ctaLineBtn + .c-btn {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-cta.is-library, .c-cta.is-serviceDetail {
    max-width: 450px;
    margin-inline: auto;
  }
  .c-cta.is-library .c-ctaBtns, .c-cta.is-serviceDetail .c-ctaBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0 0.5rem;
    margin-top: 0;
    padding: 1rem;
  }
  .c-cta.is-library .c-ctaLineBtn, .c-cta.is-serviceDetail .c-ctaLineBtn {
    width: 68.4%;
  }
  .c-cta.is-library .c-ctaLineBtn + .c-btn, .c-cta.is-serviceDetail .c-ctaLineBtn + .c-btn {
    margin-top: 0;
  }
  .c-cta.is-library {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    background-color: var(--white);
  }
  .c-cta.is-library:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 71.1111111111%;
    background-image: url(../img/base/bg_library_cta.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .c-cta.is-library .c-ctaTel {
    background: transparent !important;
    border: none;
    margin-top: 1rem;
  }
  .c-cta.is-library .c-ctaTel__description {
    display: none;
  }
  .c-cta.is-library .c-ctaTel__info {
    color: var(--white);
    padding-inline: 1rem;
  }
  .c-cta.is-library .c-ctaTel__info a {
    position: relative;
    padding-top: 22.2209302326%;
    background-image: url(../img/base/library_cta_btn_tel.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: all;
  }
  .c-cta.is-library .c-ctaTel__freeCall {
    display: none;
  }
  .c-cta.is-library .c-ctaTel__number {
    position: absolute;
    inset: 0;
    display: block;
    padding-top: 2rem;
  }
  .c-cta.is-library .c-ctaTel__number svg {
    display: none;
  }
  .c-cta.is-library .c-ctaTel__number span {
    display: block;
    line-height: 1;
  }
  .c-cta.is-library .c-ctaTel__number span:first-of-type {
    font-size: 2rem;
  }
  .c-cta.is-library .c-ctaTel__number span:last-of-type {
    margin-top: 0.5rem;
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .c-cta.is-library .c-ctaTel__number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 0;
  }
  .c-cta.is-library .c-ctaTel__number span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 50%;
  }
  .c-cta.is-library .c-ctaTel__number span:first-of-type {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: max(1.6rem, 4.1666666667vw);
    -webkit-transform: translateY(-1.25vw);
    transform: translateY(-1.25vw);
  }
  .c-cta.is-library .c-ctaTel__number span:last-of-type {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 0;
    font-size: max(2.2rem, 5.625vw);
  }
}
@media screen and (max-width: 768px) {
  .c-cta.is-library .c-ctaFormBtn {
    width: calc(31.6% - 0.5rem);
    padding: 1rem 1.5rem 0.9rem 1rem;
    text-align: left;
    line-height: 1.4;
    background-image: url(../img/base/ico/ico_arrow_or.svg);
    background-position: right 1rem center;
    background-size: 10px;
    font-size: 1.8rem;
    -webkit-box-shadow: 0 4px 0 var(--shadow-send);
    box-shadow: 0 4px 0 var(--shadow-send);
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .c-cta.is-library .c-ctaFormBtn {
    padding: 2.0833333333vw 4.1666666667vw 2.0833333333vw 2.0833333333vw;
    background-position: right 2.0833333333vw center;
    background-size: 2.0833333333vw;
    font-size: 3.3333333333vw;
    -webkit-box-shadow: 0 0.8333333333vw 0 var(--shadow-send);
    box-shadow: 0 0.8333333333vw 0 var(--shadow-send);
  }
}
@media screen and (max-width: 768px) {
  .c-cta.is-serviceDetail .c-ctaTel {
    background: transparent;
    border: none;
  }
  .c-cta.is-serviceDetail .c-ctaTel__description {
    display: none;
  }
  .c-cta.is-serviceDetail .c-ctaTel__info {
    background: transparent;
    margin-top: 1.5rem;
    padding: 1.5rem 1.5rem 1rem;
    background: var(--bg);
  }
  .c-cta.is-serviceDetail .c-ctaTel__info > a {
    position: relative;
    display: block;
    width: 450px;
    height: 0;
    padding-top: 18.4444444444%;
    background: url("../img/base/service_cta_btn.webp") no-repeat center/contain;
    pointer-events: all;
  }
  .c-cta.is-serviceDetail .c-ctaTel__info > a span {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    color: var(--white);
  }
  .c-cta.is-serviceDetail .c-ctaTel__freeCall {
    display: none;
  }
  .c-cta.is-serviceDetail .c-ctaTel__freeCall--sd {
    width: 100%;
    height: auto;
    background: transparent;
    color: var(--primary);
    text-align: center;
    font-weight: bold;
  }
  .c-cta.is-serviceDetail .c-ctaTel__freeCall--sd:before, .c-cta.is-serviceDetail .c-ctaTel__freeCall--sd:after {
    display: inline-block;
    content: "";
    width: 2px;
    height: 30px;
    background: var(--primary);
  }
  .c-cta.is-serviceDetail .c-ctaTel__freeCall--sd:before {
    -webkit-transform: translateY(0.5rem) translateX(-1rem) rotate(-25deg);
    transform: translateY(0.5rem) translateX(-1rem) rotate(-25deg);
  }
  .c-cta.is-serviceDetail .c-ctaTel__freeCall--sd:after {
    -webkit-transform: translateY(0.5rem) translateX(1rem) rotate(25deg);
    transform: translateY(0.5rem) translateX(1rem) rotate(25deg);
  }
  .c-cta.is-serviceDetail .c-ctaTel__tracking {
    display: none;
  }
  .c-cta.is-serviceDetail .c-ctaTel__tracking--sp {
    width: 100%;
    color: var(--ink);
  }
  .c-cta.is-serviceDetail .c-ctaTel__tracking--sp span {
    display: block;
  }
  .c-cta.is-serviceDetail .c-ctaTel__tracking--sp span i {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #fff), color-stop(0, yellow));
    background: -webkit-linear-gradient(#fff 60%, yellow 0);
    background: linear-gradient(#fff 60%, yellow 0);
  }
  .c-cta.is-serviceDetail .c-ctaTel__tracking--sp span + span {
    margin-top: 0.25rem;
  }
  .c-cta.is-serviceDetail .c-ctaTel__tracking--sp > div {
    display: block;
    width: 100%;
    margin: 1rem auto 0;
    padding: 0.5rem;
    background: transparent;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid var(--border);
  }
  .c-cta.is-serviceDetail .c-ctaTel__tracking span {
    display: block;
    font-size: 1.4rem;
  }
  .c-cta.is-serviceDetail .c-ctaBtns {
    padding-top: 0;
    background: var(--bg);
  }
  .c-cta.is-serviceDetail .c-ctaFormBtn {
    width: 100%;
  }
}

.c-blogImage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3rem;
  max-width: 790px;
  margin-inline: auto;
}
.c-blogImage__main {
  position: relative;
  width: 400px;
  padding-top: 38.3544303797%;
  overflow: hidden;
}
.c-blogImage__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.c-blogImage__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  gap: 1.5rem;
  padding: 1rem;
  background: var(--light-gray);
}
.c-blogImage__list > li {
  position: relative;
  width: calc((100% - 1.5rem) / 2);
  padding-top: 36.0606060606%;
  overflow: hidden;
  cursor: pointer;
}
.c-blogImage__list > li img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .c-blogImage {
    display: block;
  }
  .c-blogImage__main {
    width: 100%;
    padding-top: 75.7143%;
  }
  .c-blogImage__list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 2rem;
    padding: 0;
    gap: 0 1px;
  }
  .c-blogImage__list > li {
    width: calc((100% - 3px) / 4);
    padding-top: 18.7245590231%;
  }
}

.c-movie {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.c-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.c-servicePd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 1rem;
  color: var(--primary);
}
.c-servicePd__name {
  font-size: 1.6rem;
}
.c-servicePd__price {
  font-size: 1.6rem;
}
.c-servicePd__price > dl {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.c-servicePd__price > dl > dt {
  -webkit-transform: translateY(-0.2rem);
  transform: translateY(-0.2rem);
  margin-right: 0.5rem;
}
.c-servicePd__price > dl > dd {
  font-size: 2.4rem;
}
.c-servicePd__day {
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  color: var(--ink);
}
@media screen and (max-width: 768px) {
  .c-servicePd {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .c-servicePd__name {
    font-size: 1.4rem;
  }
  .c-servicePd__price > dl > dt {
    -webkit-transform: none;
    transform: none;
  }
  .c-servicePd__price > dl > dd {
    font-size: 1.8rem;
  }
  .c-servicePd__price:last-of-type {
    width: 100%;
  }
  .c-servicePd__price:last-of-type > dl > dd {
    font-size: 1.8rem;
  }
  .c-servicePd__day {
    font-size: 1.3rem;
  }
}

.c-tabNav {
  overflow: auto;
  overflow-y: hidden;
  padding-bottom: 1rem;
}
.c-tabNav::-webkit-scrollbar {
  height: 6px;
}
.c-tabNav::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--border);
}
.c-tabNav::-webkit-scrollbar-track {
  margin: 0 2px;
  background-color: #eee;
  border-radius: 5px;
}
.c-tabNav > ul {
  gap: 0.5rem;
}
.c-tabNav__item {
  padding: 1rem;
  background: var(--light-gray);
  text-align: center;
  font-size: 1.6rem;
  color: var(--gray);
  cursor: pointer;
  white-space: nowrap;
}
.c-tabNav__item.is-active {
  position: relative;
  color: var(--primary);
  border-bottom: 4px solid var(--primary);
  font-weight: 700;
  background-color: var(--white);
  padding-bottom: 0.6rem;
}
.c-tabNav__item.is-active:after {
  content: "▼";
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-tabContent {
  margin-top: 2rem;
}
.c-tabContent__item {
  display: none;
}
.c-tabContent__item > li {
  margin-right: 1rem;
  font-size: 1.4rem;
  color: var(--gray);
  display: inline-block;
  border-width: 0;
  border-style: solid;
  border-color: var(--primary);
}
.c-tabContent__item > li > a {
  text-decoration: underline;
}
.c-tabContent__item.is-active {
  display: block;
}
@media screen and (max-width: 768px) {
  .c-tabContent {
    padding-inline: 1.5rem;
  }
}

.c-corpData {
  gap: 0 3rem;
}
.c-corpData > dl {
  width: calc((100% - 3rem) / 2);
}
.c-corpData > dl > div {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 1.4rem;
  border-bottom: 2px dotted var(--border);
}
.c-corpData > dl > div > dt {
  width: 12rem;
  color: var(--related-title-bg);
}
.c-corpData > dl > div > dd {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  word-break: break-word;
}
.c-corpData > dl > div > dd a:hover {
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .c-corpData {
    padding-inline: 1.5rem;
  }
  .c-corpData > dl {
    width: 100%;
  }
  .c-corpData > dl > div > dt {
    width: 10rem;
  }
  .c-corpData > dl > div > dd {
    width: calc(100% - 10rem);
  }
}

.c-corpServiceList {
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-corpServiceList {
    display: block;
    padding-bottom: 3rem;
  }
}
.c-corpServiceItem {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 2rem) / 2);
}
.c-corpServiceItem a {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--white);
  -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 var(--black)), var(--tw-ring-shadow, 0 0 var(--black)), var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 var(--black)), var(--tw-ring-shadow, 0 0 var(--black)), var(--tw-shadow);
}
.c-corpServiceItem__name {
  padding: 0.5rem 1rem;
  color: var(--white);
  background: var(--pale-green);
  font-size: 1.4rem;
}
.c-corpServiceItem__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 1rem;
}
.c-corpServiceItem__thumb {
  position: relative;
  width: 160px;
  padding-top: 120px;
  overflow: hidden;
}
.c-corpServiceItem__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.c-corpServiceItem__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-inline: 3rem;
}
.c-corpServiceItem__text > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-corpServiceItem__text > dl .c-labelTitle__icon {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.c-corpServiceItem__text > dl > dd {
  font-size: 1.6rem;
  color: var(--primary);
}
.c-corpServiceItem__text .p-shopBlog__infoRateInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-corpServiceItem__text .c-reviewSummary__starRating {
  width: auto;
}
.c-corpServiceItem__text .scoreValue {
  color: var(--tertiary);
  font-size: 2rem;
  font-weight: bold;
  margin-left: 0.5rem;
}
.c-corpServiceItem__text .scoreCount {
  font-size: 1.4rem;
  margin-left: 0.5rem;
}
.c-corpServiceItem__more {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index--contents);
  width: 100%;
  height: 100%;
}
.c-corpServiceItem__more:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--white);
  opacity: 0.7;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 5px;
}
.c-corpServiceItem__more > div {
  position: relative;
  z-index: var(--z-index--contents);
}
.c-corpServiceItem__more span {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  color: var(--gray);
  text-align: center;
}
.c-corpServiceItem__more svg {
  display: block;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-corpServiceItem {
    width: 100%;
    -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 var(--black)), var(--tw-ring-shadow, 0 0 var(--black)), var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 var(--black)), var(--tw-ring-shadow, 0 0 var(--black)), var(--tw-shadow);
  }
  .c-corpServiceItem .c-reviewSummary__starRating {
    font-size: 1.4rem !important;
  }
  .c-corpServiceItem__thumb {
    width: 120px;
    padding-top: 90px;
  }
  .c-corpServiceItem__text {
    padding-inline: 0.5rem;
  }
  .c-corpServiceItem__text .scoreValue {
    font-size: 1.6rem;
  }
  .c-corpServiceItem__text .scoreCount {
    font-size: 1.2rem;
  }
  .c-corpServiceItem__more {
    top: calc(100% + 2rem);
    width: 100%;
    height: 38px;
    margin-top: 0;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border: 1px solid var(--pale-green);
    border-radius: 0.5rem;
    background: var(--white);
    text-align: center;
    color: var(--gray);
  }
  .c-corpServiceItem__more:after {
    content: "+";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 1rem;
    font-size: 2rem;
    -webkit-transform: translateY(0.2rem);
    transform: translateY(0.2rem);
  }
  .c-corpServiceItem__more span {
    font-size: 1.4rem;
  }
  .c-corpServiceItem__more svg {
    display: none;
  }
}

.c-companyInfoReview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .c-companyInfoReview {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-companyInfoReview__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.c-companyInfoReview__scoreWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-companyInfoReview__thumbnail {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 240px;
  height: 0;
  padding-top: 182px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-companyInfoReview__thumbnail {
    width: 132px;
    padding-top: 100px;
  }
}
.c-companyInfoReview__thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.c-companyInfoReview__thumbnail .c-companyInfoReview__thumbnailInner {
  position: relative;
}
.c-companyInfoReview__thumbnail .c-companyInfoReview__thumbnailInner img {
  width: 100%;
  height: auto;
}
.c-companyInfoReview__content {
  width: calc(100% - 240px);
  padding-left: 3rem;
}
@media screen and (max-width: 768px) {
  .c-companyInfoReview__content {
    width: calc(100% - 132px);
    padding-left: 1rem;
  }
}
.c-companyInfoReview__titleLink {
  font-weight: bold;
  color: var(--primary);
  text-decoration: underline;
}
.c-companyInfoReview__ratingWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .c-companyInfoReview__ratingWrapper {
    display: block;
    margin-top: 0;
  }
}
.c-companyInfoReview__ratingWrapper .c-companyInfoReview__stars {
  display: inline-block;
  font-size: 2.4rem;
  position: relative;
}
.c-companyInfoReview__ratingWrapper .c-companyInfoReview__stars .c-companyInfoReview__starsFill {
  width: 84%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.c-companyInfoReview__ratingWrapper .c-companyInfoReview__score {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--tertiary);
  margin-left: 0.5rem;
}
@media (min-width: 640px) {
  .c-companyInfoReview__ratingWrapper .c-companyInfoReview__score {
    font-size: 3rem;
  }
}
.c-companyInfoReview__ratingWrapper .c-companyInfoReview__scoreText {
  color: var(--tertiary);
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-companyInfoReview__ratingWrapper .c-companyInfoReview__scoreText {
    font-size: 2.4rem;
  }
}
.c-companyInfoReview__ratingWrapper .c-companyInfoReview__reviewCount {
  color: var(--gray);
  border-bottom: solid 1px var(--gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 2rem;
  gap: 0.5rem;
}
.c-companyInfoReview__ratingWrapper .c-companyInfoReview__reviewCount svg {
  width: 24px;
  height: 24px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-companyInfoReview__ratingWrapper .c-companyInfoReview__reviewCount {
    display: inline-block;
    margin-left: 0;
  }
}
.c-companyInfoReview__ratingWrapper .c-companyInfoReview__reviewCountIcon img {
  width: 20px;
  height: 20px;
  fill: var(--gray) !important;
  margin-bottom: 0.5rem;
}
.c-companyInfoReview__reviewLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--related-title-bg);
  margin-left: 2rem;
  border-bottom: 1px solid transparent;
}
.c-companyInfoReview__reviewLink:hover {
  border-bottom: 1px solid var(--related-title-bg);
}
.c-companyInfoReview__reviewLink svg {
  margin-right: 0.5rem;
}
.c-companyInfoReview__details {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .c-companyInfoReview__details {
    margin-top: 1.5rem;
  }
}
.c-companyInfoReview__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.c-companyInfoReview__detail svg {
  fill: var(--gray);
  width: 24px;
  height: 24px;
}
.c-companyInfoReview__detail span.c-companyInfoReview__label {
  font-weight: bold;
  white-space: nowrap;
}
.c-companyInfoReview__detail span.c-companyInfoReview__value {
  margin-left: 0.5rem;
}
.c-companyInfoReview__detailIcon img {
  width: 2rem;
  height: 2rem;
}
.c-companyInfoReview__detailLabel {
  width: 10rem;
}
.c-companyInfoReview__label {
  color: var(--related-title-bg);
  font-weight: 700;
}

.c-scoreDistributionGraph {
  min-width: 485px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-scoreDistributionGraph {
    width: 100%;
    min-width: 100%;
  }
}
.c-scoreDistributionGraph__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 2px 0;
  margin-bottom: 0.5rem;
}
.c-scoreDistributionGraph__row:hover {
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .c-scoreDistributionGraph__row {
    padding: 0.25rem 0;
    margin: 0;
  }
}
.c-scoreDistributionGraph__label {
  width: 50px;
  text-align: right;
  font-weight: bold;
  color: var(--tertiary);
  margin-right: 1.5rem;
}
.c-scoreDistributionGraph__barWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: var(--bg-gray);
  overflow: hidden;
  margin-right: 1rem;
}
.c-scoreDistributionGraph__bar {
  height: 32px;
  background-color: var(--tertiary);
}
.c-scoreDistributionGraph__count {
  width: 50px;
  text-align: left;
  font-weight: bold;
  text-decoration: underline;
}

.p-serviceReview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--bg);
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-serviceReview__section .container {
  padding: 3rem 3rem 6rem;
}
@media screen and (max-width: 768px) {
  .p-serviceReview__section .container {
    padding: 1.5rem;
  }
}
.p-serviceReview__section.p-areaContent .container {
  padding: 0 1.5rem 6rem;
}
.p-serviceReview__reviewSummary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3rem;
}
.p-serviceReview__reviewSummary .c-reviewSummary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 425px;
}
.p-serviceReview__reviewSummary .c-reviewSummary .c-reviewStar {
  font-size: 3rem;
}
.p-serviceReview__reviewSummary .c-scoreDistributionGraph {
  width: calc(100% - 425px);
}
@media screen and (max-width: 768px) {
  .p-serviceReview__reviewSummary {
    display: block;
  }
  .p-serviceReview__reviewSummary .c-reviewSummary {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
  .p-serviceReview__reviewSummary .c-scoreDistributionGraph {
    width: 100%;
    margin: 3rem 0 1.5rem;
  }
}
.p-serviceReview__clear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
}
.p-serviceReview__filtertxt {
  font-size: 14px;
}
.p-serviceReview__filterlink {
  font-size: 14px;
  text-decoration: underline;
  margin: 0 0 0 20px;
}
.p-serviceReview__reviewCards .c-reviewCard + .c-reviewCard {
  margin-top: 1.5rem;
}
.p-serviceReview__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-serviceReview__summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-inline: 1.5rem;
  }
}
.p-serviceReview__reviewCount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  border-bottom: 1px solid var(--border);
}
@media screen and (max-width: 768px) {
  .p-serviceReview__reviewCount {
    text-decoration: underline;
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .p-serviceReview__summaryWrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 0;
  }
}
.p-serviceReview__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-area {
  margin-top: 1.5rem;
}

.c-serviceHistory.is-areaArchive {
  background: var(--white);
  margin-top: 3rem;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--primary);
}
@media screen and (max-width: 768px) {
  .c-serviceHistory.is-areaArchive {
    padding: 0 0 3rem;
    border-top: none;
  }
}
.c-serviceHistory__body {
  padding: 1.5rem 1.5rem;
}
.is-areaArchive .c-serviceHistory__body {
  padding-inline: 0;
}
.c-serviceHistoryItem {
  width: 100%;
}
.c-serviceHistoryItem__wrap {
  padding-bottom: 2rem;
  border-bottom: 2px dotted var(--border);
}
.c-serviceHistoryItem__wrap + div {
  margin-top: 1.5rem;
}
.c-serviceHistoryItem__wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.c-serviceHistoryItem__thumb {
  position: relative;
  width: 40%;
  padding-top: 29.6460176991%;
  overflow: hidden;
}
.c-serviceHistoryItem__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.c-serviceHistoryItem__text {
  width: 60%;
  padding-left: 0.5rem;
}
.c-serviceHistoryItem__text h4 {
  line-height: 1.4;
}
.c-serviceHistory__category span {
  display: inline;
  background: var(--pale-green);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-serviceHistory .c-postItem {
    padding-bottom: 0;
    border-bottom: none;
  }
  .c-serviceHistory .c-postItem + div {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-serviceHistory .c-postItem > a {
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  }
}
.c-serviceHistory .c-postItem__thumb {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-serviceHistory .c-postItem__thumb {
    width: 124px;
    padding-top: 94px;
  }
}
.c-serviceHistory .c-postItem__text {
  width: 100%;
  padding-left: 0;
}
.c-serviceHistory .c-postItem__text h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .c-serviceHistory .c-postItem__text {
    width: calc(100% - 124px);
    padding-top: 1rem;
    padding-left: 0.5rem;
  }
  .c-serviceHistory .c-postItem__text h4 {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-serviceHistory.is-service {
    padding: 3rem 1.5rem 0rem;
  }
}
@media screen and (max-width: 768px) {
  .c-serviceHistory.is-service .c-serviceHistory__body {
    padding: 1rem 0 0;
  }
}
.c-serviceHistory.is-service .c-serviceHistoryItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .c-serviceHistory.is-service .c-serviceHistoryItem {
    display: block;
  }
}
.c-serviceHistory.is-service .c-serviceHistoryItem__wrap {
  width: 33.3333333333%;
  padding-inline: 1.5rem;
  padding-bottom: 0;
  border-bottom: none;
}
.c-serviceHistory.is-service .c-serviceHistoryItem__wrap + div {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .c-serviceHistory.is-service .c-serviceHistoryItem__wrap + div {
    margin-top: 1.5rem;
  }
}
.c-serviceHistory.is-service .c-serviceHistoryItem__wrap:nth-child(2) {
  border-right: 1px dashed var(--border);
  border-left: 1px dashed var(--border);
}
@media screen and (max-width: 768px) {
  .c-serviceHistory.is-service .c-serviceHistoryItem__wrap {
    width: 100%;
    padding-inline: 0;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  }
  .c-serviceHistory.is-service .c-serviceHistoryItem__wrap:nth-child(2) {
    border-right: none;
    border-left: none;
  }
  .c-serviceHistory.is-service .c-serviceHistoryItem__wrap a {
    padding: 0.5rem;
  }
}
.c-serviceHistory.is-service .c-serviceHistoryItem__thumb {
  width: 124px;
  padding-top: 94px;
}
.c-serviceHistory.is-service .c-serviceHistoryItem__text {
  width: calc(100% - 124px);
  padding-left: 1.5rem;
}
.c-serviceHistory.is-service .c-serviceHistoryItem__text h4 {
  margin-top: 0.4rem;
}
@media screen and (max-width: 768px) {
  .c-serviceHistory.is-service .c-serviceHistoryItem__text {
    padding-top: 1rem;
    padding-left: 0.5rem;
  }
}
.c-serviceHistory.is-service .c-serviceHistory__category {
  border: 1px solid #ab7b41;
  padding: 0.25rem 0.5rem 0.1rem;
}
.c-serviceHistory.is-service .c-serviceHistory__category span {
  background: transparent;
  color: #ab7b41;
}
@media screen and (max-width: 768px) {
  .c-serviceHistory.is-service .c-serviceHistory__category {
    border: none;
    padding: 0;
  }
  .c-serviceHistory.is-service .c-serviceHistory__category span {
    padding: 0.1rem;
    background: var(--pale-green);
    color: var(--white);
  }
}

.c-shopBlog__listItem {
  width: 100%;
  margin-bottom: 20px;
  width: 100%;
  border: 1px solid #bcc5c7;
  border-radius: 0.5rem;
  padding: 1rem;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}
.c-shopBlog__link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.c-shopBlog__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-shopBlog__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.c-shopBlog__images {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-shopBlog__images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .c-shopBlog__images {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    width: 40%;
  }
}
.c-shopBlog__imagesInner {
  width: 100%;
  aspect-ratio: 121/91;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-shopBlog__imagesInner {
    aspect-ratio: 135/102;
  }
}
.c-shopBlog__images .p-shopBlog__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.c-shopBlog__summary {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 60%;
}
.c-shopBlog__summaryInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-shopBlog__summaryInner {
    display: block;
  }
}
.c-shopBlog__categoryTag {
  background: var(--pale-green);
  color: var(--white);
  padding: 0.1rem 0.25rem;
  vertical-align: middle;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.75rem;
}
.c-shopBlog__finishDate {
  color: var(--gray);
}
@media screen and (max-width: 768px) {
  .c-shopBlog__finishDate {
    text-align: right;
  }
}
.c-shopBlog__content {
  width: 100%;
  margin-top: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  max-height: 4.5em;
}
@media screen and (max-width: 768px) {
  .c-shopBlog__content.pc {
    display: none;
  }
}
.c-shopBlog__content.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-shopBlog__content.sp {
    display: -webkit-box;
  }
}
.c-shopBlog__readMore {
  position: absolute;
  bottom: 0;
  color: var(--gray);
  text-align: center;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-shopBlog__readMore > svg {
  vertical-align: middle;
  display: inline;
}
@media screen and (max-width: 768px) {
  .c-shopBlog__readMore {
    position: static;
    margin-left: auto;
  }
}
.c-shopBlog__readMore--sp {
  color: var(--gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 1rem;
}
@media screen and (min-width: 1025px) {
  .c-shopBlog__readMore--sp {
    display: none;
  }
}

.c-shopBasicInfo {
  font-size: 1.4rem;
  color: var(--gray);
}
.c-shopBasicInfo > div {
  margin-top: 1.25rem;
}
.c-shopBasicInfo > div > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100px;
}
.c-shopBasicInfo > div > dt i {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  -webkit-transform: translateY(-0.1rem);
  transform: translateY(-0.1rem);
}
.c-shopBasicInfo > div > dt i svg {
  position: absolute;
  inset: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  -o-object-position: center;
  object-position: center;
}
.c-shopBasicInfo > div > dd {
  width: calc(100% - 100px);
}

.c-serviceAreaCta {
  width: calc(100% + 3rem);
  margin: 1.5rem -1.5rem;
  padding: 1.5rem;
  background: var(--light-gray);
}
.c-serviceAreaCta__head {
  gap: 0 1rem;
}
.c-serviceAreaCta__head p {
  width: 83.33333%;
  text-align: left;
}
.c-serviceAreaCta__thumb {
  position: relative;
  width: 16.66667%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.c-serviceAreaCta__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto !important;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.c-serviceAreaCta__body {
  margin-top: 0.5rem;
}
.c-serviceAreaCta__body .c-btn--toggleForm {
  margin-top: 1rem;
}
.c-serviceAreaCta__form {
  position: relative;
  margin-top: 25px;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--service-cta-border);
}
.c-serviceAreaCta__form:before, .c-serviceAreaCta__form:after {
  content: "";
  position: absolute;
}
.c-serviceAreaCta__form:before {
  top: -24px;
  left: 88%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-bottom-color: var(--white);
  z-index: var(--z-index--contents);
}
.c-serviceAreaCta__form:after {
  top: -28.1px;
  left: 88%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-bottom-color: var(--service-cta-border);
}
.c-serviceAreaCta__form__atention {
  color: var(--shadow-dark);
}
.c-serviceAreaCta__formContent {
  font-size: 1.4rem;
}
.c-serviceAreaCta__formContent input,
.c-serviceAreaCta__formContent textarea {
  width: 100%;
  margin-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #edf2f7;
  border-radius: 0.5rem;
  font-size: 1.6rem;
}
.c-serviceAreaCta__formContent input:-moz-placeholder-shown, .c-serviceAreaCta__formContent textarea:-moz-placeholder-shown {
  color: #c9d4df;
}
.c-serviceAreaCta__formContent input:-ms-input-placeholder, .c-serviceAreaCta__formContent textarea:-ms-input-placeholder {
  color: #c9d4df;
}
.c-serviceAreaCta__formContent input:placeholder-shown,
.c-serviceAreaCta__formContent textarea:placeholder-shown {
  color: #c9d4df;
}
.c-serviceAreaCta__formContent input::-webkit-input-placeholder,
.c-serviceAreaCta__formContent textarea::-webkit-input-placeholder {
  color: #c9d4df;
}
.c-serviceAreaCta__formContent input:-moz-placeholder,
.c-serviceAreaCta__formContent textarea:-moz-placeholder {
  color: #c9d4df;
  opacity: 1;
}
.c-serviceAreaCta__formContent input::-moz-placeholder,
.c-serviceAreaCta__formContent textarea::-moz-placeholder {
  color: #c9d4df;
  opacity: 1;
}
.c-serviceAreaCta__formContent input:-ms-input-placeholder,
.c-serviceAreaCta__formContent textarea:-ms-input-placeholder {
  color: #c9d4df;
}
.c-serviceAreaCta__formContent input:focus,
.c-serviceAreaCta__formContent textarea:focus {
  outline: 2px solid var(--blue);
}
.c-serviceAreaCta__formContent input:focus:-moz-placeholder-shown, .c-serviceAreaCta__formContent textarea:focus:-moz-placeholder-shown {
  color: #c9d4df;
}
.c-serviceAreaCta__formContent input:focus:-ms-input-placeholder, .c-serviceAreaCta__formContent textarea:focus:-ms-input-placeholder {
  color: #c9d4df;
}
.c-serviceAreaCta__formContent input:focus:placeholder-shown,
.c-serviceAreaCta__formContent textarea:focus:placeholder-shown {
  color: #c9d4df;
}
.c-serviceAreaCta__formContent input:focus::-webkit-input-placeholder,
.c-serviceAreaCta__formContent textarea:focus::-webkit-input-placeholder {
  color: #c9d4df;
}
.c-serviceAreaCta__formContent input:focus:-moz-placeholder,
.c-serviceAreaCta__formContent textarea:focus:-moz-placeholder {
  color: #c9d4df;
  opacity: 1;
}
.c-serviceAreaCta__formContent input:focus::-moz-placeholder,
.c-serviceAreaCta__formContent textarea:focus::-moz-placeholder {
  color: #c9d4df;
  opacity: 1;
}
.c-serviceAreaCta__formContent input:focus:-ms-input-placeholder,
.c-serviceAreaCta__formContent textarea:focus:-ms-input-placeholder {
  color: #c9d4df;
}
.c-serviceAreaCta__formContent input {
  height: 4rem;
}
.c-serviceAreaCta__formContent textarea {
  height: 14rem;
  padding: 1rem;
}
.c-serviceAreaCta__formContent .text-red-500 {
  color: #f56565;
}
.c-serviceAreaCta__formContent .privacy-and-term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 1.2rem;
}
.c-serviceAreaCta__formContent .privacy-and-term input {
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0;
}
.c-serviceAreaCta__formContent .privacy-and-term input:focus {
  outline: none;
}
.c-serviceAreaCta__formContent .underline {
  text-decoration: underline;
}
.c-serviceAreaCta__formContent button {
  width: 100%;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background: var(--primary);
  border-bottom: 5px solid var(--shadow-dark);
  border-radius: 0.5rem;
  color: var(--white);
}
.c-serviceAreaCta__formContent button:focus {
  outline: 2px solid var(--blue);
}
.c-serviceAreaCta__flow {
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  counter-reset: item;
  padding-top: 4rem;
}
.c-serviceAreaCta__flow:before {
  content: "";
  position: absolute;
  top: 14px;
  left: 10%;
  display: block;
  width: 80%;
  height: 2px;
  background: var(--primary);
}
.c-serviceAreaCta__flow li {
  position: relative;
  padding: 0.5rem 0.5rem 0.5rem 0.6rem;
  border: 1px solid var(--shadow-dark);
  border-radius: 0.5rem;
  color: var(--shadow-dark);
}
.c-serviceAreaCta__flow li:after {
  counter-increment: item !important;
  content: counter(item) !important;
  position: absolute;
  top: -38px;
  left: calc(50% - 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
}
.c-serviceAreaCta__flow li span:before, .c-serviceAreaCta__flow li span:after {
  position: absolute;
  content: "";
  left: calc(50% - 6px);
  display: block;
  width: 6px;
  height: 6px;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.c-serviceAreaCta__flow li span:before {
  top: -10px;
  border-bottom: 10px solid var(--primary);
}
.c-serviceAreaCta__flow li span:after {
  top: -8px;
  border-bottom: 10px solid var(--white);
}
.c-serviceAreaCta__thanks {
  padding: 1.5rem 1.5rem 3rem;
  background: var(--white);
  border: 1px solid var(--service-cta-border);
  border-top: none;
}
.c-serviceAreaCta__thanks__title {
  margin-bottom: 1.4rem;
}
.c-serviceAreaCta__thanks__message {
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
  background: #edf2f7;
}
.c-serviceAreaCta__thanks__message p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-serviceAreaCta__thanks__message p:before {
  display: inline-block;
  content: "";
  width: 17px;
  height: 17px;
  margin-right: 0.8rem;
  background-image: url(../img/base/ico/ico_checked_or.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--white);
  border-radius: 0.25rem;
  overflow: hidden;
}
.c-serviceAreaCta__thanks__message + * {
  margin-top: 2rem;
}
.c-serviceAreaCta__thanks__atention {
  color: var(--shadow-dark);
}
.c-serviceAreaCta__thanks__atention + p {
  margin-top: 0.5rem;
}
.c-serviceAreaCta__thanks__catch {
  color: var(--shadow-dark);
}
.c-serviceAreaCta__thanks__tel {
  margin-top: 1rem;
}
.c-serviceAreaCta__thanks__hurry {
  position: relative;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--ink);
  border-radius: 0.5rem;
}
.c-serviceAreaCta__thanks__hurry:before, .c-serviceAreaCta__thanks__hurry:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  display: block;
  width: 6px;
  height: 6px;
  margin-inline: auto;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.c-serviceAreaCta__thanks__hurry:before {
  bottom: -10px;
  border-top: 10px solid var(--ink);
}
.c-serviceAreaCta__thanks__hurry:after {
  bottom: -8px;
  border-top: 10px solid var(--white);
}
.c-serviceAreaCta__thanks__catch {
  margin-bottom: 0.5rem;
}
.c-serviceAreaCta__thanks__catch span {
  position: relative;
  padding-inline: 1.4rem;
}
.c-serviceAreaCta__thanks__catch span:before, .c-serviceAreaCta__thanks__catch span:after {
  position: absolute;
  top: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 1.6rem;
  height: 1px;
  margin: auto 0;
  background: var(--primary);
  font-size: 1.6rem;
}
.c-serviceAreaCta__thanks__catch span:before {
  left: 0;
  -webkit-transform: rotate(75deg);
  transform: rotate(75deg);
}
.c-serviceAreaCta__thanks__catch span:after {
  right: 0;
  -webkit-transform: rotate(-75deg);
  transform: rotate(-75deg);
}
.c-serviceAreaCta__thanks .c-btn--ctaClose {
  margin-top: 2rem;
}

.c-recommend {
  margin: 4rem 0 6rem;
}
.c-recommend__title {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--area-primary);
}
.c-recommendList {
  gap: 1.5rem 1rem;
}

/*
管理画面の独自追加したBlock EditorやStyleを調整する
.b-ttl {}
**/
.l-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 0 3rem;
  line-height: 1.5;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .l-main {
    max-width: 100%;
  }
}

.l-bread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
}
.l-bread li:not(:last-child):after {
  content: ">";
  margin-right: 0.5rem;
}
.l-bread li:not(:last-child) a {
  margin-right: 0.5rem;
}

.l-header {
  position: relative;
  z-index: var(--z-index--header);
  height: 60px;
  background: var(--white);
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}
.l-header__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 10px;
}
@media screen and (min-width: 1490px) {
  .l-header__wrap {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__wrap {
    padding-right: 70px;
  }
}

.l-globalNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-globalNav {
    position: fixed;
    right: -100%;
    width: 80vw;
    max-width: 409px;
    height: 100%;
    padding-bottom: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background: var(--secondary);
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
    overflow: auto;
  }
  .menu-open .l-globalNav {
    right: 0;
  }
}

.l-header .l-siteBrand {
  width: 176px;
}
.l-header .l-siteBrand a {
  display: block;
  height: 100%;
}
.l-header .l-siteBrand img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1064px) {
  .l-header .l-siteBrand {
    width: 117px;
  }
}

.l-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(var(--z-index--header) - 1);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  visibility: hidden;
}
.menu-open .l-overlay {
  visibility: visible;
}

.l-footer {
  padding-bottom: 9rem;
}
.l-footer .container {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
}
.l-footer .container.is-wm1000 {
  max-width: 1000px;
}
.l-footer__bread {
  padding: 0.5rem 0;
}
.l-footer__cta {
  padding: 3rem 0;
}
.l-footer__sitemap {
  padding: 3rem 0;
}
.l-footer__listedCompany {
  margin-top: 0.25rem;
  padding: 1.5rem 0;
}
.l-footer__listedCompany .container {
  padding: 0 1.5rem;
}
.l-footer__copyright {
  padding: 1.5rem 0;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .l-footer__sitemap {
    padding: 1.5rem 0;
  }
}

.l-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.l-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-sidebar {
  margin-top: 3rem;
}
.l-sidebarSection + .l-sidebarSection.l-sidebarSection {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .l-sidebarSection {
    padding-inline: 1.5rem;
  }
  .l-sidebarSection:last-of-type {
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
}
.l-sidebar__wrap {
  height: 100%;
}
.l-sidebar__review {
  background: var(--bg);
  padding: 1.5rem 0.5rem;
}
.l-sidebar__reviewInner {
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.l-sidebar__reviewScore {
  color: var(--primary);
  font-weight: 700;
}
.l-sidebar__reviewCount {
  margin-left: 1rem;
}
.l-sidebar__review .c-reviewStar {
  font-size: 2.5rem;
}
.l-sidebar__avgCost {
  background: var(--bg);
  padding: 1.5rem 0.5rem;
  margin-top: 1.5rem;
}
.l-sidebar__avgCostPrice {
  background: var(--white);
  margin-top: 1.5rem;
  padding: 1.5rem 0.5rem;
}
.l-sidebar__avgCostPriceInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-inline: auto;
  line-height: 1;
}
.l-sidebar__avgCostPriceLabel {
  font-weight: 700;
  -webkit-transform: translateY(-0.1rem);
  transform: translateY(-0.1rem);
}
.l-sidebar__avgCostPriceValue {
  line-height: 1;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-left: 0.5rem;
  -webkit-transform: translateY(0.2rem);
  transform: translateY(0.2rem);
}
.l-sidebar__avgCostPriceUnit {
  color: var(--primary);
  font-weight: 700;
  margin-left: 0.5rem;
}
.l-sidebar__avgCostPriceAnnotation {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  line-height: 1.5;
}
.l-sidebar__relatedPost {
  border: 2px solid var(--border-light);
  margin-top: 3rem;
}
.l-sidebar__searchAreaBox {
  border: 2px solid var(--border-light);
  margin-top: 3rem;
}

.l-single {
  max-width: 100%;
  position: relative;
  padding: 3.2rem 0 4rem;
}
.l-single:before, .l-single:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
}
.l-single:before {
  z-index: var(--z-index--bg);
  height: 10.2rem;
  background: var(--primary);
  border-top: 2px solid var(--black);
}
.l-single:after {
  top: 0.9rem;
  height: 0.3rem;
  background: -webkit-repeating-linear-gradient(left, var(--tertiary) 0, var(--tertiary) 7px, transparent 7px, transparent 14px);
  background: repeating-linear-gradient(to right, var(--tertiary) 0, var(--tertiary) 7px, transparent 7px, transparent 14px);
}
.l-singleContent {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 3.1rem 3rem 3rem;
  background: var(--white);
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .l-singleContent {
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
}
.l-singleContent__header > div {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 1rem;
}
.l-singleContent__header > div time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 16px;
  padding-left: 1.85rem;
  background-image: url(../img/base/ico/ico_clock.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .l-singleContent__header {
    padding: 3rem 1.5rem 0;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    background: var(--white);
  }
}
.l-singleContent__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
}
.l-singleContent__body .l-sidebar {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .l-singleContent__body {
    display: block;
  }
  .l-singleContent__body .l-sidebar {
    width: 100%;
  }
}
.l-singleContent__main + * {
  margin-top: 3rem;
}
.l-single.is-gyosha:before {
  background: var(--bg);
}
.l-single.is-gyosha:after {
  background: -webkit-repeating-linear-gradient(left, var(--primary) 0, var(--primary) 7px, transparent 7px, transparent 14px);
  background: repeating-linear-gradient(to right, var(--primary) 0, var(--primary) 7px, transparent 7px, transparent 14px);
}
.l-singleSection {
  width: 75%;
  padding-right: 2rem;
  background: var(--white);
}
.l-singleSection__eyecatch img {
  width: 100%;
  height: auto;
}
.l-singleSection__eyecatch + * {
  margin-top: 2rem;
}
.l-singleSection > section {
  margin-top: 3rem;
}
.l-singleSection > section.c-findeCategoryVendor {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .l-singleSection {
    width: 100%;
    padding-inline: 1.5rem;
  }
}

.l-single + .l-footer,
.p-libraryArchive + .l-footer {
  position: relative;
}
.l-single + .l-footer:before, .l-single + .l-footer:after,
.p-libraryArchive + .l-footer:before,
.p-libraryArchive + .l-footer:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
}
.l-single + .l-footer:before,
.p-libraryArchive + .l-footer:before {
  top: -2rem;
  z-index: var(--z-index--bg);
  height: 2rem;
  background: var(--primary);
  border-bottom: 2px solid var(--black);
}
.l-single + .l-footer:after,
.p-libraryArchive + .l-footer:after {
  top: -0.9rem;
  height: 0.3rem;
  background: -webkit-repeating-linear-gradient(left, var(--tertiary) 0, var(--tertiary) 7px, transparent 7px, transparent 14px);
  background: repeating-linear-gradient(to right, var(--tertiary) 0, var(--tertiary) 7px, transparent 7px, transparent 14px);
}
@media screen and (max-width: 768px) {
  .l-single + .l-footer:before,
  .p-libraryArchive + .l-footer:before {
    top: -6rem;
    height: 6rem;
  }
}

/*! destyle.css v1.0.15 | MIT License | https://github.com/nicolas-cusan/destyle.css */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

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

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

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

.u-sp_ib {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp_ib {
    display: inline-block;
  }
}

.u-sp_tb {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp_tb {
    display: table;
  }
}

.u-table-pc {
  display: table-cell;
}
@media screen and (max-width: 768px) {
  .u-table-pc {
    display: none;
  }
}

.u-table-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-table-sp {
    display: table-row;
  }
}

.u-text-xs {
  font-size: 0.75rem; /* 12px */
}

.u-text-sm {
  font-size: 0.875rem; /* 14px */
}

.u-text-base {
  font-size: 1rem; /* 16px */
}

.u-text-lg {
  font-size: 1.125rem; /* 18px */
}

.u-text-xl {
  font-size: 1.2rem; /* 19.2px */
}

.u-text-2xl {
  font-size: 1.4rem; /* 22.4px */
}

.u-text-3xl {
  font-size: 1.6rem; /* 25.6px */
}

.u-text-4xl {
  font-size: 2rem; /* 32px */
}

.u-text-5xl {
  font-size: 2.4rem; /* 38.4px */
}

.u-text-6xl {
  font-size: 3rem; /* 48px */
}

.u-borderBottomTertiary_2 {
  border-bottom: 2px solid var(--tertiary);
}

.u-cf:after {
  content: "";
  display: block;
  clear: both;
}

.u-lh_1 {
  line-height: 1;
}

.u-fw_semibold {
  font-weight: 600;
}

.u-fw_bold {
  font-weight: 700;
}

@media screen and (min-width: 769px) {
  .u-ta_lcc {
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .u-ta_llc {
    text-align: center;
  }
}

.u-ta_r {
  text-align: right;
}

.u-ta_c {
  text-align: center;
}

.u-ff_roboto {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}

.u-ff_meiryo {
  font-family: "メイリオ", sans-serif;
  letter-spacing: 0;
}

.u-parag + .u-parag {
  margin-top: 15px;
}

.u-mt5 {
  margin-top: 0.5rem;
}

.u-mt10 {
  margin-top: 1rem;
}

.u-mt15 {
  margin-top: 1.5rem;
}

.u-mt20 {
  margin-top: 2rem;
}

.u-mt25 {
  margin-top: 2.5rem;
}

.u-mt30 {
  margin-top: 3rem;
}

.u-mt35 {
  margin-top: 3.5rem;
}

.u-mt40 {
  margin-top: 4rem;
}

.u-mt45 {
  margin-top: 4.5rem;
}

.u-mt50 {
  margin-top: 5rem;
}

.u-mt55 {
  margin-top: 5.5rem;
}

.u-mt60 {
  margin-top: 6rem;
}

.u-mt65 {
  margin-top: 6.5rem;
}

.u-mt70 {
  margin-top: 7rem;
}

.u-mt75 {
  margin-top: 7.5rem;
}

.u-mt80 {
  margin-top: 8rem;
}

.u-mt85 {
  margin-top: 8.5rem;
}

.u-mt90 {
  margin-top: 9rem;
}

.u-mt95 {
  margin-top: 9.5rem;
}

.u-mt100 {
  margin-top: 10rem;
}

.u-mt105 {
  margin-top: 10.5rem;
}

.u-mt110 {
  margin-top: 11rem;
}

.u-mt115 {
  margin-top: 11.5rem;
}

.u-mt120 {
  margin-top: 12rem;
}

.u-mt125 {
  margin-top: 12.5rem;
}

.u-mt130 {
  margin-top: 13rem;
}

.u-mt135 {
  margin-top: 13.5rem;
}

.u-mt140 {
  margin-top: 14rem;
}

.u-mt145 {
  margin-top: 14.5rem;
}

.u-mt150 {
  margin-top: 15rem;
}

.u-mt155 {
  margin-top: 15.5rem;
}

.u-mt160 {
  margin-top: 16rem;
}

.u-mt165 {
  margin-top: 16.5rem;
}

.u-mt170 {
  margin-top: 17rem;
}

.u-mt175 {
  margin-top: 17.5rem;
}

.u-mt180 {
  margin-top: 18rem;
}

.u-mt185 {
  margin-top: 18.5rem;
}

.u-mt190 {
  margin-top: 19rem;
}

.u-mt195 {
  margin-top: 19.5rem;
}

.u-mt200 {
  margin-top: 20rem;
}

.u-noPt {
  padding-top: 0 !important;
}

.u-noPl {
  padding-left: 0 !important;
}

.u-pl_xl {
  padding-left: 1.2rem;
}

.u-pl_2xl {
  padding-left: 2rem;
}

.u-mt_s {
  margin-top: 1rem !important;
}

.u-noMt {
  margin-top: 0 !important;
}

.u-mr_a {
  margin-right: auto;
}

.u-ml_a {
  margin-left: auto;
}

.u-w10p {
  width: 10%;
}

.u-w11p {
  width: 11%;
}

.u-w12p {
  width: 12%;
}

.u-w13p {
  width: 13%;
}

.u-w14p {
  width: 14%;
}

.u-w15p {
  width: 15%;
}

.u-w16p {
  width: 16%;
}

.u-w17p {
  width: 17%;
}

.u-w18p {
  width: 18%;
}

.u-w19p {
  width: 19%;
}

.u-w20p {
  width: 20%;
}

.u-w21p {
  width: 21%;
}

.u-w22p {
  width: 22%;
}

.u-w23p {
  width: 23%;
}

.u-w24p {
  width: 24%;
}

.u-w25p {
  width: 25%;
}

.u-w26p {
  width: 26%;
}

.u-w27p {
  width: 27%;
}

.u-w28p {
  width: 28%;
}

.u-w29p {
  width: 29%;
}

.u-w30p {
  width: 30%;
}

.u-w31p {
  width: 31%;
}

.u-w32p {
  width: 32%;
}

.u-w33p {
  width: 33%;
}

.u-w34p {
  width: 34%;
}

.u-w35p {
  width: 35%;
}

.u-w36p {
  width: 36%;
}

.u-w37p {
  width: 37%;
}

.u-w38p {
  width: 38%;
}

.u-w39p {
  width: 39%;
}

.u-w40p {
  width: 40%;
}

.u-w41p {
  width: 41%;
}

.u-w42p {
  width: 42%;
}

.u-w43p {
  width: 43%;
}

.u-w44p {
  width: 44%;
}

.u-w45p {
  width: 45%;
}

.u-w46p {
  width: 46%;
}

.u-w47p {
  width: 47%;
}

.u-w48p {
  width: 48%;
}

.u-w49p {
  width: 49%;
}

.u-w50p {
  width: 50%;
}

.u-w51p {
  width: 51%;
}

.u-w52p {
  width: 52%;
}

.u-w53p {
  width: 53%;
}

.u-w54p {
  width: 54%;
}

.u-w55p {
  width: 55%;
}

.u-w56p {
  width: 56%;
}

.u-w57p {
  width: 57%;
}

.u-w58p {
  width: 58%;
}

.u-w59p {
  width: 59%;
}

.u-w60p {
  width: 60%;
}

.u-w61p {
  width: 61%;
}

.u-w62p {
  width: 62%;
}

.u-w63p {
  width: 63%;
}

.u-w64p {
  width: 64%;
}

.u-w65p {
  width: 65%;
}

.u-w66p {
  width: 66%;
}

.u-w67p {
  width: 67%;
}

.u-w68p {
  width: 68%;
}

.u-w69p {
  width: 69%;
}

.u-w70p {
  width: 70%;
}

.u-w71p {
  width: 71%;
}

.u-w72p {
  width: 72%;
}

.u-w73p {
  width: 73%;
}

.u-w74p {
  width: 74%;
}

.u-w75p {
  width: 75%;
}

.u-w76p {
  width: 76%;
}

.u-w77p {
  width: 77%;
}

.u-w78p {
  width: 78%;
}

.u-w79p {
  width: 79%;
}

.u-w80p {
  width: 80%;
}

.u-w81p {
  width: 81%;
}

.u-w82p {
  width: 82%;
}

.u-w83p {
  width: 83%;
}

.u-w84p {
  width: 84%;
}

.u-w85p {
  width: 85%;
}

.u-w86p {
  width: 86%;
}

.u-w87p {
  width: 87%;
}

.u-w88p {
  width: 88%;
}

.u-w89p {
  width: 89%;
}

.u-w90p {
  width: 90%;
}

.u-w91p {
  width: 91%;
}

.u-w92p {
  width: 92%;
}

.u-w93p {
  width: 93%;
}

.u-w94p {
  width: 94%;
}

.u-w95p {
  width: 95%;
}

.u-w96p {
  width: 96%;
}

.u-w97p {
  width: 97%;
}

.u-w98p {
  width: 98%;
}

.u-w99p {
  width: 99%;
}

.u-w100p {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .u-sp_w10p {
    width: 10%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w11p {
    width: 11%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w12p {
    width: 12%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w13p {
    width: 13%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w14p {
    width: 14%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w15p {
    width: 15%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w16p {
    width: 16%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w17p {
    width: 17%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w18p {
    width: 18%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w19p {
    width: 19%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w20p {
    width: 20%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w21p {
    width: 21%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w22p {
    width: 22%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w23p {
    width: 23%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w24p {
    width: 24%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w25p {
    width: 25%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w26p {
    width: 26%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w27p {
    width: 27%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w28p {
    width: 28%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w29p {
    width: 29%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w30p {
    width: 30%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w31p {
    width: 31%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w32p {
    width: 32%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w33p {
    width: 33%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w34p {
    width: 34%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w35p {
    width: 35%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w36p {
    width: 36%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w37p {
    width: 37%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w38p {
    width: 38%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w39p {
    width: 39%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w40p {
    width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w41p {
    width: 41%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w42p {
    width: 42%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w43p {
    width: 43%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w44p {
    width: 44%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w45p {
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w46p {
    width: 46%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w47p {
    width: 47%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w48p {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w49p {
    width: 49%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w50p {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w51p {
    width: 51%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w52p {
    width: 52%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w53p {
    width: 53%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w54p {
    width: 54%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w55p {
    width: 55%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w56p {
    width: 56%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w57p {
    width: 57%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w58p {
    width: 58%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w59p {
    width: 59%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w60p {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w61p {
    width: 61%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w62p {
    width: 62%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w63p {
    width: 63%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w64p {
    width: 64%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w65p {
    width: 65%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w66p {
    width: 66%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w67p {
    width: 67%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w68p {
    width: 68%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w69p {
    width: 69%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w70p {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w71p {
    width: 71%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w72p {
    width: 72%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w73p {
    width: 73%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w74p {
    width: 74%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w75p {
    width: 75%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w76p {
    width: 76%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w77p {
    width: 77%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w78p {
    width: 78%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w79p {
    width: 79%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w80p {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w81p {
    width: 81%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w82p {
    width: 82%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w83p {
    width: 83%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w84p {
    width: 84%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w85p {
    width: 85%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w86p {
    width: 86%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w87p {
    width: 87%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w88p {
    width: 88%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w89p {
    width: 89%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w90p {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w91p {
    width: 91%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w92p {
    width: 92%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w93p {
    width: 93%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w94p {
    width: 94%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w95p {
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w96p {
    width: 96%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w97p {
    width: 97%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w98p {
    width: 98%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w99p {
    width: 99%;
  }
}

@media screen and (max-width: 768px) {
  .u-sp_w100p {
    width: 100%;
  }
}

.u-w_max {
  width: var(--max);
}

.u-no_max {
  max-width: none;
}

.u-table_equal {
  table-layout: fixed;
}
.u-table_equal th,
.u-table_equal td {
  width: auto;
  white-space: wrap;
  word-break: word-break;
}

.u-full-width {
  width: 100%;
}

.u-display {
  display: block !important;
}

.u-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.u-flex_wrap {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.u-align_c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.u-justify_c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-bc_primary {
  border-color: var(--primary);
}
.u-bc_secondary {
  border-color: var(--secondary);
}
.u-bc_tertiary {
  border-color: var(--tertiary);
}

.u-bgc {
  background-color: var(--bg) !important;
}
.u-bgc_lightgGray {
  background-color: var(--light-gray);
}

.is-hover {
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}
/*# sourceMappingURL=style.css.map */
